/* ===== VARIABLES ===== */
:root {
  --navy: #0F2B4B;
  --navy-light: #163a5e;
  --navy-dark: #091c33;
  --gray: #909598;
  --gray-light: #c8c9cb;
  --gray-lighter: #f4f4f5;
  --gray-bg: #f8f8f9;
  --white: #ffffff;
  --text: #2d2d2d;
  --text-light: #5a5a5a;
  --metal-gradient: linear-gradient(135deg, #7a7d80 0%, #b0b2b4 30%, #909598 50%, #c0c1c3 70%, #909598 100%);
  --shadow-sm: 0 1px 3px rgba(15, 43, 75, 0.08);
  --shadow-md: 0 4px 16px rgba(15, 43, 75, 0.1);
  --shadow-lg: 0 8px 32px rgba(15, 43, 75, 0.14);
  --radius: 8px;
  --radius-lg: 12px;
  --max-width: 1140px;
  --transition: 0.3s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Montserrat', -apple-system, sans-serif;
  color: var(--navy);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section--gray {
  background: var(--gray-bg);
}

.section-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.75rem;
}

.section-title {
  margin-bottom: 1.25rem;
}

.section-intro {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 680px;
}

.section-intro--center {
  margin: 0 auto;
  text-align: center;
}

/* Metal divider */
.metal-divider {
  height: 3px;
  background: var(--metal-gradient);
  border: none;
  border-radius: 2px;
  margin: 3rem 0;
  max-width: 80px;
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid rgba(144, 149, 152, 0.15);
  transition: box-shadow var(--transition);
}

.nav.scrolled {
  box-shadow: var(--shadow-md);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}

.nav__logo img {
  height: 80px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--navy);
  position: relative;
  padding: 0.25rem 0;
  transition: color var(--transition);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--navy);
  transition: width var(--transition);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

.nav__phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  background: var(--navy);
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius);
  transition: background var(--transition);
}

.nav__phone:hover {
  background: var(--navy-light);
}

.nav__phone svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: var(--transition);
  border-radius: 2px;
}

/* Mobile-only phone button (next to hamburger) */
.nav__phone-mobile {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: 50%;
  flex-shrink: 0;
}

.nav__phone-mobile svg {
  width: 20px;
  height: 20px;
  color: var(--white);
}

.nav__mobile-actions {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  background: var(--navy);
  padding: 8rem 0 5rem;
  overflow: hidden;
  margin-top: 88px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(22, 58, 94, 0.8) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(22, 58, 94, 0.4) 0%, transparent 50%);
  pointer-events: none;
}

/* Subtle diagonal lines for industrial texture */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 1) 10px,
    rgba(255, 255, 255, 1) 11px
  );
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero__subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.hero__microcopy {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn--primary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn--primary:hover {
  background: transparent;
  color: var(--white);
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn--navy:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.btn--outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn--outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

.btn svg {
  width: 18px;
  height: 18px;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid rgba(144, 149, 152, 0.12);
  padding: 2rem 0;
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.trust-bar__item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.trust-bar__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--gray-lighter);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-bar__icon svg {
  width: 20px;
  height: 20px;
  color: var(--navy);
}

.trust-bar__text {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
}

/* ===== BENEFITS ===== */
.benefits {
  padding: 5rem 0;
}

.benefits__grid {
  display: grid;
  gap: 3rem;
  margin-top: 3rem;
}

.benefit-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 2.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(144, 149, 152, 0.1);
}

.benefit-card:nth-child(even) {
  direction: rtl;
}

.benefit-card:nth-child(even) > * {
  direction: ltr;
}

.benefit-card__content h3 {
  margin-bottom: 1rem;
  font-size: 1.35rem;
}

.benefit-card__content p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.benefit-card__quote {
  background: var(--gray-bg);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  border-left: 3px solid transparent;
  border-image: var(--metal-gradient) 1;
}

.benefit-card__quote blockquote {
  font-style: italic;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.benefit-card__quote cite {
  font-style: normal;
  font-size: 0.8rem;
  color: var(--gray);
  font-weight: 600;
}

/* ===== SERVICES OVERVIEW (Homepage) ===== */
.services-overview__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(144, 149, 152, 0.1);
  transition: all var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.service-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}

.service-card h4 {
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.service-card ul {
  font-size: 0.85rem;
  color: var(--text-light);
}

.service-card li {
  padding: 0.25rem 0;
  padding-left: 1rem;
  position: relative;
}

.service-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gray);
}

/* ===== TESTIMONIALS ===== */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.quote-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(144, 149, 152, 0.1);
  position: relative;
  display: flex;
  flex-direction: column;
}

.quote-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--metal-gradient);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.quote-card__stars {
  color: #f0a500;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.quote-card blockquote {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 1.25rem;
}

.quote-card cite {
  font-style: normal;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray);
  display: block;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-lighter);
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--navy);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 1) 10px,
    rgba(255, 255, 255, 1) 11px
  );
  pointer-events: none;
}

.cta-section__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.cta-section__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.cta-section__address {
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.85rem;
}

.cta-section__address a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cta-section__address a:hover {
  color: var(--white);
}

/* ===== TEAM (About Page) ===== */
.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(144, 149, 152, 0.1);
}

.team-card__header {
  background: var(--metal-gradient);
  padding: 2rem 1.75rem 1.5rem;
}

.team-card__name {
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.team-card__role {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
  font-weight: 500;
  margin-top: 0.25rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.team-card__body {
  padding: 1.75rem;
}

.team-card__body p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

.team-card__quote {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--gray-lighter);
}

.team-card__quote blockquote {
  font-style: italic;
  font-size: 0.85rem;
  color: var(--navy);
  line-height: 1.6;
}

.team-card__quote cite {
  display: block;
  font-style: normal;
  font-size: 0.75rem;
  color: var(--gray);
  margin-top: 0.5rem;
}

/* ===== STORY SECTION (About Page) ===== */
.story {
  padding: 5rem 0;
}

.story__content {
  max-width: 720px;
}

.story__content p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
}

.story__quote {
  margin-top: 2rem;
  padding: 1.5rem 2rem;
  background: var(--gray-bg);
  border-left: 3px solid transparent;
  border-image: var(--metal-gradient) 1;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.story__quote blockquote {
  font-style: italic;
  color: var(--navy);
  font-size: 1rem;
}

.story__quote cite {
  display: block;
  font-style: normal;
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 0.5rem;
}

/* ===== COMMUNITY SECTION ===== */
.community {
  background: var(--gray-bg);
  padding: 4rem 0;
}

.community__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.community p {
  color: var(--text-light);
  font-size: 1.05rem;
}

.community .story__quote {
  text-align: left;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

/* ===== SERVICE DETAIL (Services Page) ===== */
.service-detail-section {
  padding: 4rem 0;
}

.service-detail-section:nth-child(even) {
  background: var(--gray-bg);
}

.service-detail-section__header {
  margin-bottom: 2rem;
}

.service-detail-section__header h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}

.service-group {
  display: grid;
  gap: 2rem;
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(144, 149, 152, 0.08);
}

.service-detail--full {
  grid-template-columns: 1fr;
  max-width: 720px;
}

.service-detail h3 {
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.service-detail p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.service-detail__note {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  font-style: italic;
  margin-top: 0.5rem;
}

.service-detail__quote {
  padding: 1.5rem;
  background: var(--gray-bg);
  border-radius: var(--radius);
  border-left: 3px solid transparent;
  border-image: var(--metal-gradient) 1;
  align-self: center;
}

.service-detail__quote blockquote {
  font-style: italic;
  color: var(--navy);
  font-size: 0.9rem;
  line-height: 1.6;
}

.service-detail__quote cite {
  display: block;
  font-style: normal;
  font-size: 0.75rem;
  color: var(--gray);
  margin-top: 0.5rem;
}

/* Services page trust bar variant (inside dark hero) */
.trust-bar--services {
  background: none;
  padding: 0;
  border-bottom: none;
  margin-top: 2rem;
}

.trust-bar--services .trust-bar__grid {
  gap: 1rem;
}

.trust-bar--services .trust-bar__item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
}

.trust-bar--services .trust-bar__icon {
  background: rgba(255, 255, 255, 0.15);
}

.trust-bar--services .trust-bar__icon svg {
  color: #ffffff;
}

.trust-bar--services .trust-bar__text {
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
}

/* "Not sure" section */
.not-sure {
  background: var(--navy);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.not-sure::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 1) 10px,
    rgba(255, 255, 255, 1) 11px
  );
  pointer-events: none;
}

.not-sure__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.not-sure h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.not-sure p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
}

.not-sure .service-detail__quote {
  background: rgba(255, 255, 255, 0.08);
  border-image: none;
  border-left-color: rgba(255, 255, 255, 0.25);
}

.not-sure .service-detail__quote blockquote {
  color: rgba(255, 255, 255, 0.9);
}

.not-sure .service-detail__quote cite {
  color: rgba(255, 255, 255, 0.5);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-dark);
  padding: 3.5rem 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
}

.footer__brand img {
  height: 36px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer__brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  line-height: 1.6;
  max-width: 300px;
}

.footer h4 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

.footer__links li {
  margin-bottom: 0.6rem;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--white);
}

.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
}

.footer__contact svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.35);
}

.footer__contact a {
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition);
}

.footer__contact a:hover {
  color: var(--white);
}

.footer__bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
}

/* ===== HERO SPLIT (with images) ===== */
.hero--split .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero__images {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.hero__images img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero__images img:first-child {
  grid-column: 1 / -1;
  height: 220px;
}

/* ===== RATING BADGE ===== */
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  padding: 0.5rem 1.25rem;
  margin-bottom: 1.5rem;
}

.rating-badge__stars {
  color: #f5b731;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.rating-badge__score {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
}

.rating-badge__text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  font-weight: 500;
}

/* Rating badge on light backgrounds */
.rating-badge--light {
  background: var(--white);
  border: 1px solid rgba(144, 149, 152, 0.15);
  box-shadow: var(--shadow-sm);
}

.rating-badge--light .rating-badge__score {
  color: var(--navy);
}

.rating-badge--light .rating-badge__text {
  color: var(--text-light);
}

/* ===== PHOTO GALLERY ===== */
.gallery {
  padding: 3rem 0;
  overflow: hidden;
  background: var(--navy-dark);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
}

.gallery__item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery__item:hover img {
  transform: scale(1.08);
}

/* ===== MAP SECTION ===== */
.map-section {
  background: var(--gray-bg);
  padding: 4rem 0;
}

.map-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.map-section__info h2 {
  margin-bottom: 1rem;
}

.map-section__info p {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.map-section__info .rating-badge--light {
  margin-bottom: 1.5rem;
  margin-top: 0.5rem;
}

.map-section__detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--text);
  font-size: 0.95rem;
}

.map-section__detail svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--navy);
  margin-top: 2px;
}

.map-section__detail a {
  color: var(--navy);
  font-weight: 600;
}

.map-section__detail a:hover {
  text-decoration: underline;
}

.map-section__embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(144, 149, 152, 0.12);
}

.map-section__embed iframe {
  width: 100%;
  height: 380px;
  border: none;
  display: block;
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero--split .container {
    grid-template-columns: 1fr;
  }

  .hero__images {
    max-width: 500px;
  }

  .services-overview__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefit-card {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .benefit-card:nth-child(even) {
    direction: ltr;
  }

  .team__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .not-sure__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-detail {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .map-section__inner {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }

  .nav__inner { height: 70px; }
  .nav__logo img { height: 50px; }

  .hero {
    padding: 5rem 0 3rem;
    margin-top: 70px;
  }

  .nav__links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid rgba(144, 149, 152, 0.15);
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    visibility: hidden;
    pointer-events: none;
    transition: transform var(--transition), visibility var(--transition);
    z-index: 999;
  }

  .nav__links.open {
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
  }

  /* Hide desktop phone in nav links on mobile */
  .nav__phone {
    width: 100%;
    justify-content: center;
  }

  .nav__mobile-actions {
    display: flex;
  }

  .nav__phone-mobile {
    display: flex;
  }

  .nav__toggle {
    display: block;
  }

  .nav__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav__toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .trust-bar__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .trust-bar--services .trust-bar__grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .services-overview__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .cta-section__buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-section__buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  .hero__cta-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .trust-bar__grid {
    grid-template-columns: 1fr;
  }

  .trust-bar--services .trust-bar__grid {
    grid-template-columns: 1fr;
  }

  .services-overview__grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    padding: 1.5rem;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__images img {
    height: 140px;
  }

  .hero__images img:first-child {
    height: 170px;
  }
}
