/* ================================================
   Timeless Relocation - Custom Design System
   Palette: Navy + Gold + Clean Whites
   Font: Outfit (Google Fonts)
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* ---------- Variables ---------- */
:root {
  --navy: #0f2b46;
  --navy-light: #173a5c;
  --navy-dark: #091e33;
  --gold: #d4943a;
  --gold-light: #e8b36a;
  --gold-pale: #fdf5ea;
  --green: #25D366;
  --white: #ffffff;
  --off-white: #f7f8fa;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.05), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.07), 0 4px 10px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 40px rgba(0,0,0,0.08);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-full: 999px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.25s var(--ease); }
ul, ol { list-style: none; }
button, input, textarea, select { font-family: inherit; font-size: inherit; border: none; outline: none; background: none; }
button { cursor: pointer; }

/* ---------- Utility ---------- */
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--gray { background: var(--off-white); }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.section-heading {
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.18;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.08rem);
  color: var(--gray-500);
  max-width: 580px;
  line-height: 1.7;
}

.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.93rem;
  border-radius: var(--radius-md);
  padding: 13px 30px;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn--primary {
  background: var(--navy);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--gold {
  background: var(--gold);
  color: var(--white);
}
.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,148,58,0.3);
}

.btn--outline {
  border: 2px solid var(--navy);
  color: var(--navy);
  padding: 11px 28px;
}
.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
}
.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--whatsapp {
  background: var(--green);
  color: var(--white);
  border-radius: var(--radius-full);
}
.btn--whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.35);
}

.btn--sm { padding: 10px 20px; font-size: 0.85rem; }
.btn--lg { padding: 16px 36px; font-size: 1rem; }

/* ---------- Top Bar ---------- */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  padding: 9px 0;
  font-size: 0.78rem;
  font-weight: 500;
  overflow: hidden;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar-marquee {
  flex: 1;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.topbar-track {
  display: flex;
  gap: 36px;
  animation: marquee 35s linear infinite;
  width: max-content;
}

.topbar-track span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.topbar-track svg { width: 13px; height: 13px; opacity: 0.7; }

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.topbar-right {
  display: flex;
  gap: 20px;
  margin-left: 24px;
  flex-shrink: 0;
}
.topbar-right a {
  color: rgba(255,255,255,0.85);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.topbar-right a:hover { color: var(--gold-light); }
.topbar-right svg { width: 13px; height: 13px; }

/* ---------- Navbar ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow 0.3s var(--ease), transform 0.35s var(--ease);
}
.navbar.scrolled { box-shadow: var(--shadow-md); border-bottom-color: transparent; }
.navbar.nav-hidden { transform: translateY(-100%); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo img { height: 120px; width: auto; object-fit: contain; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 8px 16px;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--gray-700);
  border-radius: var(--radius-sm);
  transition: all 0.2s var(--ease);
}
.nav-link:hover, .nav-link.active {
  color: var(--navy);
  background: var(--gray-50);
}

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.nav-dropdown .nav-link svg {
  width: 15px; height: 15px;
  transition: transform 0.2s var(--ease);
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: -12px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 8px;
  min-width: 250px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.25s var(--ease);
}
.nav-dropdown:hover .dropdown-panel {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dropdown:hover .nav-link svg { transform: rotate(180deg); }

.dropdown-panel a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--radius-sm);
  transition: all 0.2s var(--ease);
}
.dropdown-panel a:hover {
  background: var(--gold-pale);
  color: var(--navy);
}
.dropdown-panel a svg {
  width: 18px; height: 18px; color: var(--gold); flex-shrink: 0;
}

.nav-cta {
  margin-left: 12px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border: none;
  background: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile */
.mobile-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
}
.mobile-backdrop.show { 
  opacity: 1; 
  visibility: visible;
  pointer-events: auto;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: var(--white);
  z-index: 999;
  padding: 24px;
  transition: right 0.35s var(--ease);
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
}
.mobile-drawer.show { right: 0; }

.mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-200);
}
.mobile-close {
  font-size: 1.5rem;
  color: var(--gray-500);
  padding: 4px;
}

.mobile-nav { display: flex; flex-direction: column; gap: 2px; }

.mobile-link {
  display: block;
  padding: 12px 14px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--gray-700);
  border-radius: var(--radius-sm);
  transition: all 0.2s var(--ease);
}
.mobile-link:hover, .mobile-link.active { background: var(--gold-pale); color: var(--navy); }

.mobile-dd-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 14px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--gray-700);
  border-radius: var(--radius-sm);
}
.mobile-dd-toggle svg { width: 16px; height: 16px; transition: transform 0.25s var(--ease); }
.mobile-dd-toggle.open svg { transform: rotate(180deg); }

.mobile-dd-list {
  display: none;
  flex-direction: column;
  padding-left: 14px;
  gap: 2px;
  margin-top: 2px;
}
.mobile-dd-list.open { display: flex; }
.mobile-dd-list a {
  padding: 9px 14px;
  font-size: 0.88rem;
  color: var(--gray-500);
  border-radius: var(--radius-sm);
  transition: all 0.2s var(--ease);
}
.mobile-dd-list a:hover { color: var(--navy); background: var(--gray-50); }

.mobile-cta {
  margin-top: 28px;
  width: 100%;
  text-align: center;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 72px 0 80px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 50%, var(--gold-pale) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: var(--gold-pale);
  color: var(--gold);
  font-weight: 600;
  font-size: 0.82rem;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  border: 1px solid rgba(212,148,58,0.2);
}
.hero-badge svg { width: 15px; height: 15px; }

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}
.hero h1 .accent { color: var(--gold); }

.hero-desc {
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero-stats {
  display: flex;
  gap: 36px;
}
.hero-stat {
  text-align: left;
  position: relative;
  padding-left: 16px;
}
.hero-stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 3px;
  height: calc(100% - 8px);
  background: var(--gold);
  border-radius: 3px;
}
.hero-stat-val {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.78rem;
  color: var(--gray-400);
  font-weight: 500;
  margin-top: 4px;
}

.hero-visual {
  position: relative;
}
.hero-visual img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}
.hero-visual::after {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  border: 4px solid var(--gold);
  border-radius: var(--radius-xl);
  bottom: -20px;
  left: -20px;
  z-index: -1;
  opacity: 0.3;
}

/* ---------- Services Grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.svc-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all 0.35s var(--ease);
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.svc-card-img {
  height: 210px;
  overflow: hidden;
}
.svc-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.svc-card:hover .svc-card-img img { transform: scale(1.05); }

.svc-card-body { padding: 24px; }
.svc-card-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.svc-card-body p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 18px;
}

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--gold);
  transition: gap 0.25s var(--ease), color 0.25s var(--ease);
}
.svc-link:hover { gap: 10px; color: var(--navy); }
.svc-link svg { width: 16px; height: 16px; }

/* ---------- Features ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.feat-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: all 0.35s var(--ease);
  position: relative;
}
.feat-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 3px;
  background: var(--gold);
  border-radius: 0 0 3px 3px;
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
}
.feat-card:hover::after { transform: scaleX(1); }
.feat-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}

.feat-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.feat-icon svg { width: 22px; height: 22px; color: var(--gold); }

.feat-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.feat-card p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ---------- Locations ---------- */
.loc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
  gap: 14px;
  margin-top: 48px;
}

.loc-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 22px 16px;
  text-align: center;
  transition: all 0.3s var(--ease);
}
.loc-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.loc-card svg { width: 24px; height: 24px; color: var(--gold); margin: 0 auto 10px; }
.loc-card h3 { font-size: 0.88rem; font-weight: 600; color: var(--navy); }

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 60px 48px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212,148,58,0.15), transparent 70%);
  top: -150px;
  right: -100px;
}
.cta-banner::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212,148,58,0.1), transparent 70%);
  bottom: -100px;
  left: -80px;
}

.cta-banner h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 800;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.cta-banner p {
  font-size: 1rem;
  opacity: 0.8;
  margin-bottom: 28px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
.cta-banner .btn { position: relative; z-index: 1; }

/* ---------- Testimonials ---------- */
.test-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.test-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: all 0.35s var(--ease);
}
.test-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.test-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.test-stars svg { width: 17px; height: 17px; color: #f59e0b; fill: #f59e0b; }

.test-text {
  font-size: 0.93rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.test-author { display: flex; align-items: center; gap: 12px; }
.test-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}
.test-name { font-weight: 600; font-size: 0.9rem; color: var(--navy); }
.test-loc { font-size: 0.78rem; color: var(--gray-400); }

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.8);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.6);
}

.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s var(--ease);
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-2px); }
.footer-social svg { width: 16px; height: 16px; }

.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: all 0.2s var(--ease);
}
.footer-col ul a:hover { color: var(--gold-light); padding-left: 4px; }

.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
}
.footer-contact-row svg {
  width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: 3px;
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ---------- WhatsApp Float ---------- */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 950;
}
.wa-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 4px 18px rgba(37,211,102,0.4);
  transition: all 0.3s var(--spring);
  position: relative;
}
.wa-float a:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(37,211,102,0.5); }
.wa-float svg { width: 28px; height: 28px; color: #fff; fill: #fff; }

.wa-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--green);
  animation: wa-pulse 2.2s ease infinite;
  z-index: -1;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.45; }
  100% { transform: scale(1.65); opacity: 0; }
}

.wa-tip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  color: var(--gray-700);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease);
}
.wa-float a:hover .wa-tip { opacity: 1; }

/* ---------- Page Header ---------- */
.page-hero {
  background: var(--navy);
  padding: 44px 0;
  text-align: center;
  color: var(--white);
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.84rem;
  margin-bottom: 14px;
  opacity: 0.7;
}
.breadcrumb a { color: rgba(255,255,255,0.8); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb svg { width: 14px; height: 14px; opacity: 0.5; }

.page-hero h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-img { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl); }
.about-img img { width: 100%; height: 100%; object-fit: cover; }

.about-text h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 18px;
  line-height: 1.2;
}
.about-text p {
  color: var(--gray-500);
  line-height: 1.75;
  margin-bottom: 14px;
  font-size: 0.93rem;
}
.about-text a { color: var(--gold); font-weight: 600; }
.about-text a:hover { text-decoration: underline; }

/* ---------- Values ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.val-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  text-align: center;
  transition: all 0.35s var(--ease);
}
.val-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }

.val-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.val-icon svg { width: 24px; height: 24px; color: var(--gold); }
.val-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.val-card p { font-size: 0.85rem; color: var(--gray-500); line-height: 1.6; }

/* ---------- Stats Row ---------- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  color: var(--white);
  text-align: center;
}
.stat-item {}
.stat-num {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 6px;
  color: var(--gold-light);
}
.stat-label { font-size: 0.88rem; opacity: 0.7; font-weight: 400; }

/* ---------- Mission/Vision ---------- */
.mv-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
}
.mv-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all 0.35s var(--ease);
}
.mv-card:hover { box-shadow: var(--shadow-lg); border-color: transparent; }
.mv-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.mv-card h3 svg { width: 22px; height: 22px; color: var(--gold); }
.mv-card p { font-size: 0.93rem; color: var(--gray-500); line-height: 1.7; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 36px;
  align-items: start;
}

.contact-info {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 36px;
  color: var(--white);
}
.contact-info h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 28px;
}

.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}
.ci-item:last-child { margin-bottom: 0; }
.ci-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ci-icon svg { width: 18px; height: 18px; }
.ci-label { font-size: 0.78rem; opacity: 0.6; margin-bottom: 3px; }
.ci-val { font-size: 0.93rem; font-weight: 600; }
.ci-val a { color: var(--white); }
.ci-val a:hover { color: var(--gold-light); }

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 36px;
}
.contact-form-wrap h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
}

.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--gray-800);
  background: var(--gray-50);
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}
.form-row textarea { resize: vertical; min-height: 110px; }
.form-row input::placeholder,
.form-row textarea::placeholder { color: var(--gray-400); }

.form-submit { width: 100%; }

/* ---------- Map ---------- */
.map-wrap { padding: 0 0 96px; }
.map-wrap iframe {
  width: 100%;
  height: 380px;
  border: none;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 48px auto 0; }

.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color 0.25s var(--ease);
}
.faq-item.open { border-color: var(--gold); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 20px;
  font-weight: 600;
  font-size: 0.93rem;
  color: var(--gray-800);
  text-align: left;
  transition: color 0.2s var(--ease);
}
.faq-q:hover { color: var(--navy); }
.faq-q svg {
  width: 18px; height: 18px; flex-shrink: 0;
  color: var(--gold);
  transition: transform 0.25s var(--ease);
}
.faq-item.open .faq-q svg { transform: rotate(180deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}
.faq-a-inner {
  padding: 0 20px 16px;
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ---------- Service Page ---------- */
.svc-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.svc-detail-text h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 18px;
  line-height: 1.2;
}
.svc-detail-text p {
  color: var(--gray-500);
  line-height: 1.75;
  margin-bottom: 14px;
  font-size: 0.93rem;
}
.svc-detail-img { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl); }
.svc-detail-img img { width: 100%; object-fit: cover; }

/* Checklist */
.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 48px;
}
.check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 18px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: all 0.3s var(--ease);
}
.check-item:hover { border-color: var(--gold); transform: translateX(4px); }
.check-item svg { width: 20px; height: 20px; color: var(--green); flex-shrink: 0; }

/* Process */
.process-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.proc-step { text-align: center; }
.proc-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  font-weight: 800;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.proc-step h3 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.proc-step p { font-size: 0.82rem; color: var(--gray-500); line-height: 1.55; }

/* Related */
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.rel-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: all 0.35s var(--ease);
}
.rel-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.rel-card svg { width: 32px; height: 32px; color: var(--gold); margin-bottom: 14px; }
.rel-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.rel-card p { font-size: 0.82rem; color: var(--gray-500); margin-bottom: 16px; line-height: 1.5; }

/* ---------- 404 ---------- */
.error-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}
.error-code {
  font-size: clamp(7rem, 18vw, 12rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 12px;
  opacity: 0.12;
}
.error-section h1 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.error-section p {
  color: var(--gray-500);
  max-width: 440px;
  margin: 0 auto 28px;
}

/* ---------- Scroll Reveal ---------- */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal { transform: translateY(28px); }
.reveal-left { transform: translateX(-28px); }
.reveal-right { transform: translateX(28px); }
.reveal.shown, .reveal-left.shown, .reveal-right.shown {
  opacity: 1;
  transform: translate(0);
}

/* ---------- Print ---------- */
@media print {
  .topbar, .navbar, .wa-float, .mobile-drawer, .mobile-backdrop { display: none !important; }
  .section { padding: 20px 0; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); padding: 36px 28px; }
  .process-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .topbar-right { display: none; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 40px 0 48px; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-visual { order: -1; }
  .hero-stats { gap: 20px; }

  .about-grid, .contact-grid, .svc-detail-grid { grid-template-columns: 1fr; gap: 28px; }
  .mv-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .check-grid { grid-template-columns: 1fr; }
  .services-grid, .test-grid, .features-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 40px 24px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 1.8rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stats-bar { grid-template-columns: 1fr 1fr; gap: 20px; padding: 28px 20px; }
  .process-row { grid-template-columns: 1fr; }
  .loc-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .wa-float { bottom: 18px; right: 18px; }
  .wa-float a { width: 50px; height: 50px; }
  .wa-tip { display: none; }
}
