
/* ===================== RESET & BASE ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy: #0A1628;
  --navy-mid: #132040;
  --navy-light: #1E3056;
  --gold: #C9A84C;
  --gold-light: #E8C876;
  --gold-pale: #F5E8C0;
  --cream: #FAF7F0;
  --white: #FFFFFF;
  --gray-100: #F4F6FA;
  --gray-200: #E8ECF4;
  --gray-400: #9AA5BF;
  --gray-600: #5A6580;
  --gray-800: #2D3550;
  --success: #1E8A5E;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --shadow-sm: 0 2px 8px rgba(10,22,40,0.08);
  --shadow-md: 0 8px 32px rgba(10,22,40,0.12);
  --shadow-lg: 0 20px 60px rgba(10,22,40,0.16);
  --shadow-gold: 0 8px 32px rgba(201,168,76,0.25);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
/*
:root {
  --navy: #3B1F14;
  --navy-mid: #5A2E20;
  --navy-light: #7A402D;
  --gold: #FF9F43;
  --gold-light: #FFCB76;
  --gold-pale: #FFE8C0;
  --cream: #FFF7F0;
  --white: #FFFFFF;
  --gray-100: #FFF1E6;
  --gray-200: #FFE3CC;
  --gray-400: #BF8C66;
  --gray-600: #805432;
  --gray-800: #402A19;
  --success: #1E8A5E;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --shadow-sm: 0 2px 8px rgba(59,31,20,0.08);
  --shadow-md: 0 8px 32px rgba(59,31,20,0.12);
  --shadow-lg: 0 20px 60px rgba(59,31,20,0.16);
  --shadow-gold: 0 8px 32px rgba(255,159,67,0.25);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

:root {
  --navy: #1B1B1F;
  --navy-mid: #2D2D33;
  --navy-light: #40404C;
  --gold: #FF4D94;
  --gold-light: #FF99BF;
  --gold-pale: #FFD0E0;
  --cream: #F8F5F9;
  --white: #FFFFFF;
  --gray-100: #F1EDF3;
  --gray-200: #E2D9E5;
  --gray-400: #A98CA8;
  --gray-600: #4C4454;
  --gray-800: #2B2733;
  --success: #1E8A5E;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --shadow-sm: 0 2px 8px rgba(27,27,31,0.08);
  --shadow-md: 0 8px 32px rgba(27,27,31,0.12);
  --shadow-lg: 0 20px 60px rgba(27,27,31,0.16);
  --shadow-gold: 0 8px 32px rgba(255,77,148,0.25);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
*/
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--navy);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }

/* ===================== UTILITIES ===================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-title span { color: var(--gold); }
.section-sub {
  font-size: 17px;
  color: var(--gray-600);
  max-width: 560px;
  line-height: 1.7;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ===================== HEADER ===================== */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 18px 0;
}
#header.scrolled {
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--navy);
}
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}
.logo-tagline {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
}
nav { display: flex; align-items: center; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  padding: 8px 14px;
  border-radius: 6px;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--gold); background: rgba(201,168,76,0.1); }
.header-cta {
  padding: 10px 22px;
  font-size: 14px;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--white);
  transition: var(--transition);
  display: block;
  border-radius: 2px;
}
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--navy);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  padding: 14px 40px;
  transition: var(--transition);
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none; border: none;
  color: var(--white);
  font-size: 28px;
}

/* ===================== HERO ===================== */
#hero {
  min-height: 100vh;
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 50%, #0D1E3D 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 90px;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(201,168,76,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(201,168,76,0.05) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(30,48,86,0.8) 0%, transparent 50%);
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 60px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 40px;
  padding: 8px 18px;
  margin-bottom: 28px;
}
.hero-badge span {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero-badge i { color: var(--gold); font-size: 12px; }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
max-width: 580px;
}
.hero-title .gold-text { color: var(--gold); }
.hero-title .line-break { display: block; }
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 580px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
}
.hero-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-card-stack { position: relative; width: 480px; height: 420px; }
.hero-card {
  position: absolute;
  border-radius: var(--radius-md);
  padding: 28px;
}
.hero-card-main {
  background: linear-gradient(135deg, #1A3060, #0E2048);
  border: 1px solid rgba(201,168,76,0.2);
  width: 320px;
  top: 30px; left: 30px;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.hero-card-back {
  background: linear-gradient(135deg, var(--gold), #B8922A);
  width: 300px;
  top: 0; left: 60px;
  z-index: 1;
  opacity: 0.6;
}
.card-chip { font-size: 28px; color: var(--gold); margin-bottom: 40px; }
.card-number {
  font-family: var(--font-display);
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 3px;
  margin-bottom: 24px;
}
.card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.card-name {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 4px;
}
.card-holder { color: var(--white); font-weight: 600; font-size: 15px; }
.card-logo { font-family: var(--font-display); color: var(--gold); font-size: 22px; font-weight: 700; }
.float-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  z-index: 3;
}
.float-badge-1 { bottom: 40px; right: 0; }
.float-badge-2 { top: 10px; left: 0; }
.float-badge i { color: var(--success); font-size: 18px; margin-bottom: 4px; }
.float-badge-num { font-weight: 700; font-size: 17px; color: var(--navy); }
.float-badge-txt { font-size: 11px; color: var(--gray-600); }
.float-badge-2 i { color: var(--gold); }

/* ===================== ABOUT ===================== */
#about { background: var(--white); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-img-box {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.about-img-box::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(201,168,76,0.1);
}
.about-icons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}
.about-icon-item {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 20px;
  text-align: center;
  transition: var(--transition);
}
.about-icon-item:hover { background: rgba(201,168,76,0.15); border-color: rgba(201,168,76,0.3); }
.about-icon-item i { font-size: 26px; color: var(--gold); margin-bottom: 8px; }
.about-icon-item span { font-size: 12px; color: rgba(255,255,255,0.7); display: block; }
.about-year-badge {
  position: absolute;
  bottom: -20px; left: 40px;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius-sm);
  padding: 16px 24px;
  font-family: var(--font-display);
  font-weight: 700;
}
.about-year-badge .big { font-size: 32px; display: block; line-height: 1; }
.about-year-badge .small { font-size: 12px; }
.about-content { padding-left: 20px; }
.mission-box {
  background: var(--gray-100);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 24px 28px;
  margin: 28px 0;
  font-style: italic;
  color: var(--gray-600);
  font-size: 16px;
  line-height: 1.7;
}

/* ===================== WHY CHOOSE US ===================== */
#why { background: var(--cream); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.why-card:hover::after { transform: scaleX(1); }
.why-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(201,168,76,0.05));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--gold);
  margin-bottom: 24px;
  border: 1px solid rgba(201,168,76,0.2);
}
.why-card h3 { font-family: var(--font-display); font-size: 20px; margin-bottom: 12px; color: var(--navy); }
.why-card p { font-size: 15px; color: var(--gray-600); line-height: 1.6; }

/* ===================== SERVICES ===================== */
#services { background: var(--white); }
.services-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 48px 0 40px;
  border-bottom: 2px solid var(--gray-200);
  padding-bottom: 0;
}
.tab-btn {
  padding: 12px 24px;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  font-size: 14px;
  font-weight: 600;
  background: transparent;
  border: 2px solid transparent;
  border-bottom: none;
  color: var(--gray-600);
  transition: var(--transition);
  position: relative;
  bottom: -2px;
}
.tab-btn.active {
  background: var(--white);
  color: var(--navy);
  border-color: var(--gray-200);
  border-bottom-color: var(--white);
}
.tab-btn:hover:not(.active) { color: var(--gold); }
.tab-panel { display: none; }
.tab-panel.active { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card {
  background: var(--gray-100);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  cursor: pointer;
}
.service-card:hover {
  background: var(--white);
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-card:hover .service-icon { background: var(--gold); color: var(--navy); }
.service-icon {
  width: 48px; height: 48px;
  background: var(--navy);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 20px;
  margin-bottom: 18px;
  transition: var(--transition);
}
.service-card h4 { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.service-card p { font-size: 13px; color: var(--gray-600); line-height: 1.5; margin-bottom: 14px; }
.service-link { font-size: 13px; color: var(--gold); font-weight: 600; display: flex; align-items: center; gap: 4px; }

/* ===================== TESTIMONIALS ===================== */
#testimonials { background: var(--navy); }
#testimonials .section-title { color: var(--white); }
#testimonials .section-label { color: var(--gold); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}
.testi-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  transition: var(--transition);
}
.testi-card:hover {
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-4px);
}
.testi-stars { color: var(--gold); font-size: 14px; margin-bottom: 20px; letter-spacing: 2px; }
.testi-text { color: rgba(255,255,255,0.8); font-size: 15px; line-height: 1.7; margin-bottom: 28px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
}
.testi-name { color: var(--white); font-weight: 600; font-size: 15px; }
.testi-role { color: var(--gray-400); font-size: 13px; }

/* ===================== FAQ ===================== */
#faq { background: var(--cream); }
.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.faq-list { margin-top: 40px; }
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--white);
  transition: var(--transition);
}
.faq-item.open { border-color: var(--gold); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  transition: var(--transition);
  gap: 16px;
}
.faq-q i { color: var(--gold); transition: var(--transition); font-size: 14px; flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 24px 20px; }
.faq-aside {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  color: var(--white);
  position: sticky;
  top: 100px;
}
.faq-aside h3 { font-family: var(--font-display); font-size: 26px; margin-bottom: 16px; }
.faq-aside p { color: rgba(255,255,255,0.7); margin-bottom: 28px; font-size: 15px; line-height: 1.7; }
.faq-contact-items { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.faq-contact-item { display: flex; align-items: center; gap: 14px; }
.faq-contact-item i { color: var(--gold); width: 20px; text-align: center; }
.faq-contact-item span { color: rgba(255,255,255,0.85); font-size: 15px; }

/* ===================== CONTACT ===================== */
#contact { background: var(--white); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info { padding-top: 20px; }
.contact-info-items { display: flex; flex-direction: column; gap: 24px; margin: 40px 0; }
.contact-info-item { display: flex; align-items: flex-start; gap: 18px; }
.ci-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(201,168,76,0.05));
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 20px; flex-shrink: 0;
  border: 1px solid rgba(201,168,76,0.2);
}
.ci-label { font-size: 12px; color: var(--gray-400); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.ci-value { font-size: 16px; color: var(--navy); font-weight: 500; }
.contact-form-box {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  border: 1px solid var(--gray-200);
}
.contact-form-box h3 {
  font-family: var(--font-display);
  font-size: 26px;
  margin-bottom: 32px;
  color: var(--navy);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--navy);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(201,168,76,0.1); }
.form-group textarea { height: 120px; resize: vertical; }
.form-group select { appearance: none; cursor: pointer; }
.form-success {
  display: none;
  background: rgba(30,138,94,0.1);
  border: 1px solid rgba(30,138,94,0.3);
  border-radius: var(--radius-sm);
  padding: 18px 24px;
  color: var(--success);
  font-weight: 600;
  font-size: 15px;
  margin-top: 16px;
  align-items: center;
  gap: 10px;
}
.form-success.show { display: flex; }

/* ===================== NEWSLETTER ===================== */
#newsletter {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 80px 0;
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.newsletter-content { color: var(--white); }
.newsletter-content h2 { font-family: var(--font-display); font-size: 38px; margin-bottom: 16px; }
.newsletter-content h2 span { color: var(--gold); }
.newsletter-content p { color: rgba(255,255,255,0.7); font-size: 16px; line-height: 1.7; }
.newsletter-form-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.newsletter-form-box .form-group label { color: rgba(255,255,255,0.8); }
.newsletter-form-box input {
  background: rgba(255,255,255,0.08) !important;
  border-color: rgba(255,255,255,0.15) !important;
  color: var(--white) !important;
}
.newsletter-form-box input:focus { border-color: var(--gold) !important; }
.newsletter-form-box input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-check { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 20px; }
.newsletter-check input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; width: 16px; height: 16px; }
.newsletter-check label { font-size: 13px; color: rgba(255,255,255,0.6); cursor: pointer; }
.nl-success {
  display: none;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  color: var(--gold);
  font-weight: 600;
  font-size: 14px;
  margin-top: 16px;
  align-items: center;
  gap: 8px;
}
.nl-success.show { display: flex; }

/* ===================== FOOTER ===================== */
#footer { background: #060E1E; padding: 80px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-about .logo-name { font-size: 18px; }
.footer-about p { color: rgba(255,255,255,0.5); font-size: 14px; line-height: 1.7; margin: 20px 0 24px; max-width: 300px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.08);
}
.footer-social a:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--white);
  margin-bottom: 24px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.footer-contact-item i { color: var(--gold); width: 16px; margin-top: 2px; font-size: 13px; }
.footer-contact-item span { color: rgba(255,255,255,0.5); font-size: 14px; line-height: 1.5; }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 13px; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: rgba(255,255,255,0.35); font-size: 13px; transition: var(--transition); }
.footer-legal a:hover { color: var(--gold); }

/* ===================== MODALS ===================== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(4px);
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 700px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 48px;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 20px; right: 24px;
  background: var(--gray-100);
  border: none;
  border-radius: 50%;
  width: 36px; height: 36px;
  font-size: 18px;
  color: var(--gray-600);
  transition: var(--transition);
}
.modal-close:hover { background: var(--navy); color: var(--white); }
.modal-box h2 { font-family: var(--font-display); font-size: 30px; color: var(--navy); margin-bottom: 8px; }
.modal-box .modal-subtitle { color: var(--gray-600); margin-bottom: 32px; font-size: 15px; }
.modal-section h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin: 24px 0 10px; }
.modal-section p { font-size: 14px; color: var(--gray-600); line-height: 1.7; margin-bottom: 12px; }
.modal-section ul { padding-left: 20px; }
.modal-section ul li { font-size: 14px; color: var(--gray-600); line-height: 1.7; margin-bottom: 6px; list-style: disc; }

/* ===================== TRUST BADGES ===================== */
.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 28px 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 10px; color: var(--gray-600); font-size: 14px; font-weight: 500; }
.trust-item i { color: var(--gold); font-size: 20px; }
.trust-divider { width: 1px; height: 32px; background: var(--gray-200); }

/* ===================== SCROLL ANIMATIONS ===================== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; text-align: center; }
  .hero-sub { margin: 0 auto 40px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .about-inner, .faq-inner, .contact-inner, .newsletter-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-content { padding-left: 0; }
  .faq-aside { position: static; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .tab-panel.active { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .nav-links, .header-cta { display: none; }
  .hamburger { display: flex; }
  .why-grid { grid-template-columns: 1fr; }
  .tab-panel.active { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .services-tabs { gap: 4px; }
  .tab-btn { padding: 10px 16px; font-size: 12px; }
  .trust-inner { justify-content: center; }
  .trust-divider { display: none; }
}
@media (max-width: 480px) {
  .tab-panel.active { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .modal-box { padding: 32px 24px; }
}

/* ===================== FLOATING ANIMATION ===================== */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.float-badge-1 { animation: float 4s ease-in-out infinite; }
.float-badge-2 { animation: float 4s ease-in-out infinite 2s; }
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.live-dot {
  width: 8px; height: 8px;
  background: var(--success);
  border-radius: 50%;
  display: inline-block;
  animation: pulse-dot 2s ease-in-out infinite;
  margin-right: 6px;
}
