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

:root {
  --navy: #1e3a5f;
  --navy-light: #2a5298;
  --navy-dark: #0f1f38;
  --gold: #d4a843;
  --gold-light: #f0cc6b;
  --gold-dark: #b08930;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-700: #334155;
  --gray-900: #0f172a;
  --font-sans: 'Noto Sans', system-ui, -apple-system, sans-serif;
  --font-heading: 'Nunito', system-ui, -apple-system, sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -1px rgba(0,0,0,.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -2px rgba(0,0,0,.05);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,.1), 0 10px 10px -5px rgba(0,0,0,.04);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: auto;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }
@media (min-width: 768px) { .section { padding: 100px 0; } }

.bg-light { background: var(--gray-50); }
.bg-white { background: var(--white); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy-dark);
  border-color: transparent;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212,168,67,.4);
}

.btn-ghost {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border-color: rgba(255,255,255,.25);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.4);
}

.btn-ghost-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--gold);
  color: var(--gold-light);
}

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

.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: transparent;
}
.btn-white:hover {
  background: var(--gold);
  color: var(--navy-dark);
}

.btn-white-solid {
  background: var(--white);
  color: var(--navy);
  border-color: transparent;
}
.btn-white-solid:hover {
  background: var(--gold);
  color: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,255,255,.3);
}

.btn-lg { padding: 15px 32px; font-size: 0.95rem; }
.w-full { width: 100%; justify-content: center; }

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(30,58,95,.07);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
}
.section-tag-gold {
  background: rgba(212,168,67,.12);
  color: var(--gold-dark);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title.text-left { text-align: left; }

.section-desc {
  font-size: 1.05rem;
  color: var(--gray-500);
  line-height: 1.7;
}

.section-divider {
  width: 48px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin-top: 20px;
}
.section-header .section-divider { margin: 20px auto 0; }

.section-more {
  text-align: center;
  margin-top: 48px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all var(--transition);
}
.navbar.scrolled {
  background: var(--navy-dark);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,.25);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo .logo-img {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 4px;
}
@media (min-width: 1024px) { .nav-links { display: flex; } }

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  color: rgba(255,255,255,.82);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,.08); }

.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 240px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-100);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; }

.dropdown-section-label {
  padding: 8px 16px 4px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.dropdown-divider {
  height: 1px;
  background: var(--gray-100);
  margin: 6px 0;
}
.dropdown-item {
  display: block;
  padding: 9px 16px;
  font-size: 0.875rem;
  color: var(--gray-700);
  transition: all var(--transition);
}
.dropdown-item:hover { background: var(--gray-50); color: var(--navy); }

.nav-actions {
  display: none;
  align-items: center;
  gap: 16px;
}
@media (min-width: 1024px) { .nav-actions { display: flex; } }

.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.8);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color var(--transition);
}
.nav-phone:hover { color: var(--gold-light); }

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  width: 42px;
  height: 42px;
  color: var(--white);
  cursor: pointer;
}
@media (min-width: 1024px) { .mobile-menu-btn { display: none; } }

/* Mobile Menu */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}
.mobile-overlay.active { opacity: 1; visibility: visible; }

.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  height: 100vh;
  width: min(360px, 90vw);
  background: var(--white);
  z-index: 1002;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-menu.active { transform: translateX(0); }

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--gray-100);
}
.mobile-menu-header .logo-img {
  height: 38px;
  width: auto;
}
.mobile-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray-500);
  padding: 4px;
}

.mobile-nav { padding: 8px 0; flex: 1; }
.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 24px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-700);
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: color var(--transition), background var(--transition);
}
.mobile-nav-link:hover { color: var(--navy); background: var(--gray-50); }

.mobile-submenu { background: var(--gray-50); }
.mobile-sub-link {
  display: block;
  padding: 11px 24px 11px 36px;
  font-size: 0.875rem;
  color: var(--gray-500);
  transition: color var(--transition);
}
.mobile-sub-link:hover { color: var(--navy); }
.hidden { display: none; }

.mobile-menu-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--gray-500);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(212,168,67,.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(42,82,152,.3) 0%, transparent 60%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-particles span {
  position: absolute;
  border-radius: 50%;
  background: rgba(212,168,67,.12);
  animation: float 8s ease-in-out infinite;
}
.hero-particles span:nth-child(1) { width:300px; height:300px; top:-100px; right:-80px; animation-delay:0s; }
.hero-particles span:nth-child(2) { width:200px; height:200px; bottom:100px; left:-60px; animation-delay:2s; }
.hero-particles span:nth-child(3) { width:120px; height:120px; top:30%; left:15%; animation-delay:4s; }
.hero-particles span:nth-child(4) { width:80px; height:80px; top:20%; right:25%; animation-delay:1s; }
.hero-particles span:nth-child(5) { width:160px; height:160px; bottom:20%; right:10%; animation-delay:3s; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: grid;
  gap: 48px;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 100px;
}
@media (min-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    padding-top: 140px;
    padding-bottom: 120px;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.85);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,.1);
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.hero-badge-dot {
  width: 8px; height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot { 0%,100% { opacity:1; } 50% { opacity:.4; } }

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}
.hero-title-highlight {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,.72);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}

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

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stat { display: flex; align-items: center; gap: 14px; }
.hero-stat-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  flex-shrink: 0;
}
.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
}
.hero-stat-label { font-size: 0.75rem; color: rgba(255,255,255,.55); }

/* Hero Visual */
.hero-visual { display: none; }
@media (min-width: 1024px) { .hero-visual { display: block; } }

.hero-card {
  position: relative;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-xl);
  padding: 20px;
  backdrop-filter: blur(12px);
}
.hero-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.hero-float-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-xl);
}
.hero-float-1 { bottom: -16px; left: -20px; animation: float-badge 3s ease-in-out infinite; }
.hero-float-2 { top: -16px; right: -20px; animation: float-badge 3s ease-in-out 1.5s infinite; }

@keyframes float-badge {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.float-badge-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.float-badge-gold { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); }
.float-badge-navy { background: linear-gradient(135deg, var(--navy), var(--navy-light)); }
.float-badge-title { font-size: 0.875rem; font-weight: 700; color: var(--gray-900); }
.float-badge-sub { font-size: 0.75rem; color: var(--gray-400); }

/* Hero Ribbon */
.hero-ribbon {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,.07);
  border-top: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
  padding: 16px 0;
}
.hero-ribbon-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 32px;
}
.ribbon-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.7);
  font-size: 0.85rem;
}
.ribbon-item svg { color: var(--gold); }
.ribbon-item strong { color: rgba(255,255,255,.9); }
.ribbon-divider {
  width: 1px; height: 24px;
  background: rgba(255,255,255,.12);
}
@media (max-width: 640px) { .ribbon-divider { display: none; } }

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(30,58,95,.1);
}

.service-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(30,58,95,.07);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: all var(--transition);
}
.service-card:hover .service-icon {
  background: var(--navy);
  color: var(--gold-light);
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
  transition: color var(--transition);
}
.service-card:hover .service-title { color: var(--navy); }

.service-desc {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold-dark);
  transition: gap var(--transition);
}
.service-card:hover .service-link { gap: 10px; }

/* CTA service card */
.service-card-cta {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-color: transparent;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.service-card-cta::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 120px; height: 120px;
  background: rgba(255,255,255,.05);
  border-radius: 50%;
}
.service-card-cta .service-title { color: var(--white); }
.service-card-cta .service-desc { color: rgba(255,255,255,.7); }
.service-icon-white {
  background: rgba(255,255,255,.15) !important;
  color: var(--white) !important;
}
.service-card-cta:hover .service-icon { background: rgba(255,255,255,.25) !important; }

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  gap: 60px;
  align-items: center;
}
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; } }

.about-image-wrap {
  position: relative;
}
.about-img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}
.about-badge {
  position: absolute;
  bottom: -20px;
  right: 20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 24px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-100);
  text-align: center;
}
.about-badge-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.about-badge-label {
  font-size: 0.75rem;
  color: var(--gray-500);
  font-weight: 500;
}
.about-deco {
  position: absolute;
  top: -16px; left: -16px;
  width: 80px; height: 80px;
  background: rgba(212,168,67,.12);
  border-radius: 16px;
  z-index: -1;
}

.about-content .section-tag { margin-bottom: 16px; }

.about-text-main {
  font-size: 1.05rem;
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-text {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.75;
  margin-bottom: 32px;
}

.about-features {
  display: grid;
  gap: 12px;
  margin-bottom: 36px;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--gray-700);
}
.about-feature-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: rgba(30,58,95,.08);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.about-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ===== WHY US ===== */
.trust-grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 640px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }

.trust-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
  text-align: center;
}
.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
}
.trust-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(30,58,95,.07);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  transition: all var(--transition);
}
.trust-card:hover .trust-icon {
  background: rgba(255,255,255,.15);
  color: var(--gold-light);
}
.trust-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
  transition: color var(--transition);
}
.trust-card:hover .trust-title { color: var(--white); }
.trust-desc {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.65;
  transition: color var(--transition);
}
.trust-card:hover .trust-desc { color: rgba(255,255,255,.7); }

/* ===== STATS ===== */
.stats-section {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 60px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  text-align: center;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }

.stat-item {}
.stat-num {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.stat-num::after { content: '+'; }
.stat-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,.6);
  margin-top: 8px;
  font-weight: 500;
}

/* ===== CTA ===== */
.cta-section {
  background: linear-gradient(135deg, var(--navy-light), var(--navy));
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  background: rgba(212,168,67,.08);
  border-radius: 50%;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 200px; height: 200px;
  background: rgba(212,168,67,.06);
  border-radius: 50%;
}
.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
  margin-bottom: 36px;
}
.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }

/* ===== NEWS ===== */
.news-grid {
  display: grid;
  gap: 28px;
}
@media (min-width: 768px) { .news-grid { grid-template-columns: repeat(3, 1fr); } }

.news-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}
.news-img-wrap { overflow: hidden; height: 200px; }
.news-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.news-card:hover .news-img { transform: scale(1.05); }

.news-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.news-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-bottom: 12px;
}
.news-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.4;
  margin-bottom: 10px;
  transition: color var(--transition);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card:hover .news-title { color: var(--navy); }
.news-excerpt {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold-dark);
  transition: gap var(--transition);
}
.news-card:hover .news-link { gap: 10px; }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  gap: 60px;
  align-items: start;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 2fr 3fr; } }

.contact-intro {
  font-size: 1rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 36px;
  margin-top: 12px;
}
.contact-items { display: flex; flex-direction: column; gap: 24px; margin-bottom: 32px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-item-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(30,58,95,.07);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-item-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 4px;
}
.contact-item-text { font-size: 0.875rem; color: var(--gray-500); line-height: 1.6; }
.contact-link {
  display: block;
  font-size: 0.875rem;
  color: var(--gray-500);
  transition: color var(--transition);
}
.contact-link:hover { color: var(--navy); }

.contact-social { display: flex; gap: 10px; }
.social-btn {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(30,58,95,.07);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.social-btn:hover { background: var(--navy); color: var(--white); }

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-100);
}
.contact-form-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 6px;
}
.contact-form-sub { font-size: 0.875rem; color: var(--gray-400); margin-bottom: 28px; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; gap: 18px; }
@media (min-width: 480px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 0.85rem; font-weight: 600; color: var(--gray-700); }
.form-input {
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--gray-900);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
.form-input:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(30,58,95,.1);
}
.form-select { cursor: pointer; }
.form-textarea { resize: vertical; min-height: 110px; }

.contact-map {
  margin-top: 48px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}
.contact-map iframe { display: block; }

/* ===== USEFUL LINKS ===== */
.links-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .links-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .links-grid { grid-template-columns: repeat(3, 1fr); } }

.useful-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: all var(--transition);
}
.useful-link:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  transform: translateX(4px);
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: var(--white);
  padding-top: 72px;
  padding-bottom: 0;
}
.footer-grid {
  display: grid;
  gap: 40px;
  margin-bottom: 56px;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; } }

.footer-logo { height: 48px; width: auto; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer-logo-text { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 800; color: var(--white); margin-bottom: 16px; }
.footer-tagline { font-size: 0.875rem; color: rgba(255,255,255,.55); line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 8px; }
.footer-social-btn {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.7);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.footer-social-btn:hover { background: var(--gold); color: var(--navy-dark); }

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.footer-nav { display: flex; flex-direction: column; gap: 8px; }
.footer-link {
  font-size: 0.875rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer-link:hover { color: var(--gold-light); }

.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255,255,255,.55);
}
.footer-contact-item svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-phone {
  display: block;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer-phone:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,.4); }
.footer-copy strong { color: rgba(255,255,255,.65); }
.footer-dev { font-size: 0.75rem; color: rgba(255,255,255,.25); }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px; height: 44px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(16px);
  transition: all var(--transition);
  z-index: 999;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--gold);
  color: var(--navy-dark);
}

/* ===== ANIMATIONS ===== */
.animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.services-grid .service-card:nth-child(2) { transition-delay: 0.1s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.2s; }
.services-grid .service-card:nth-child(4) { transition-delay: 0.3s; }
.services-grid .service-card:nth-child(5) { transition-delay: 0.4s; }
.services-grid .service-card:nth-child(6) { transition-delay: 0.5s; }
.news-grid .news-card:nth-child(2) { transition-delay: 0.1s; }
.news-grid .news-card:nth-child(3) { transition-delay: 0.2s; }
.trust-grid .trust-card:nth-child(2) { transition-delay: 0.1s; }
.trust-grid .trust-card:nth-child(3) { transition-delay: 0.2s; }
.trust-grid .trust-card:nth-child(4) { transition-delay: 0.3s; }

/* ===== NAVBAR SOLID (service pages) ===== */
.navbar-solid {
  background: var(--navy-dark);
  box-shadow: 0 2px 20px rgba(0,0,0,.2);
}

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,.55); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: var(--gold-light); }
.breadcrumb svg { color: rgba(255,255,255,.3); }

.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}
.page-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.65);
  line-height: 1.6;
}

/* ===== SERVICE SINGLE PAGE ===== */
.service-single-section {
  padding: 60px 0 80px;
  background: var(--white);
}
.service-single-grid {
  display: grid;
  gap: 48px;
  align-items: start;
}
@media (min-width: 1024px) {
  .service-single-grid {
    grid-template-columns: 1fr 300px;
  }
}

/* Prose content styles */
.prose h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin: 40px 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gray-100);
}
.prose h2:first-child { margin-top: 0; }

.prose h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 28px 0 10px;
}

.prose p {
  font-size: 1rem;
  color: var(--gray-600, #475569);
  line-height: 1.8;
  margin-bottom: 16px;
}

.prose ul, .prose ol {
  margin: 12px 0 20px 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.prose ul li, .prose ol li {
  font-size: 0.95rem;
  color: var(--gray-600, #475569);
  line-height: 1.65;
  padding-left: 24px;
  position: relative;
}
.prose ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}
.prose ol { counter-reset: item; }
.prose ol li { counter-increment: item; }
.prose ol li::before {
  content: counter(item) '.';
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.875rem;
}

.prose strong { color: var(--navy); font-weight: 700; }

.prose hr {
  border: none;
  border-top: 1px solid var(--gray-100);
  margin: 36px 0;
}

/* Sidebar */
.sidebar-box {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 20px;
}
.sidebar-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-100);
}
.sidebar-nav { display: flex; flex-direction: column; gap: 2px; }
.sidebar-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  font-size: 0.875rem;
  color: var(--gray-600, #475569);
  border-radius: 8px;
  transition: all var(--transition);
}
.sidebar-link:hover { background: var(--gray-50); color: var(--navy); }
.sidebar-link.active {
  background: rgba(30,58,95,.08);
  color: var(--navy);
  font-weight: 600;
}
.sidebar-link.active svg { color: var(--gold-dark); }
.sidebar-link svg { color: var(--gray-300, #d1d5db); flex-shrink: 0; }

.sidebar-cta {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-color: transparent;
}
.sidebar-cta-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,.15);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  margin-bottom: 14px;
}
.sidebar-cta-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.sidebar-cta-text {
  font-size: 0.875rem;
  color: rgba(255,255,255,.7);
  line-height: 1.6;
  margin-bottom: 14px;
}
.sidebar-phone {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.02em;
}
