/* ═══════════════════════════════════════════════════
   MK SOLUTIONS — style.css
   Brand Colors: Navy #1B2A6B, Silver #8C9BB0, Gold #C9A84C
   Fonts: Cormorant Garamond (display) + DM Sans (body)
═══════════════════════════════════════════════════ */

/* ── Reset & Variables ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #1B2A6B;
  --navy-dark:  #0F1A4A;
  --navy-mid:   #243380;
  --silver:     #8C9BB0;
  --silver-lt:  #C8D0DC;
  --gold:       #C9A84C;
  --gold-lt:    #E8CC7E;
  --white:      #FFFFFF;
  --off-white:  #F5F6FA;
  --gray-100:   #F0F2F7;
  --gray-300:   #CBD0DC;
  --text-dark:  #111827;
  --text-mid:   #374151;
  --text-light: #6B7280;
  --radius:     14px;
  --radius-lg:  24px;
  --shadow-sm:  0 2px 12px rgba(27,42,107,.08);
  --shadow-md:  0 8px 32px rgba(27,42,107,.14);
  --shadow-lg:  0 20px 60px rgba(27,42,107,.18);
  --transition: .3s cubic-bezier(.25,.46,.45,.94);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: top;}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Reusable ── */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 24px;
}

.section-label {
  display: inline-block;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,.12);
  border: 1px solid rgba(201,168,76,.3);
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.section-label.light { color: var(--gold-lt); background: rgba(201,168,76,.15); border-color: rgba(201,168,76,.35); }

.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy-dark);
  margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-title.light { color: var(--white); }

.section-subtitle {
  max-width: 560px;
  margin: 0 auto 56px;
  color: var(--text-light);
  font-size: 1.05rem;
  text-align: center;
}
.section-subtitle.left { text-align: left; margin: 0 0 40px; }

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-dark));
  color: var(--white);
  font-size: .95rem;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(27,42,107,.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(27,42,107,.35);
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
}
.btn-primary.full { width: 100%; justify-content: center; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  font-size: .95rem;
  font-weight: 600;
  padding: 13px 30px;
  border-radius: var(--radius);
  border: 2px solid var(--white);
  transition: var(--transition);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

/* Fade-in animation */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(11,18,52,.96);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,.3);
}

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

.nav-logo { display: flex; align-items: center; }
.logo-img { height: 50px; width: auto; }

.logo-fallback {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-shield {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-dark));
  border: 2px solid var(--silver);
  border-radius: 10px 10px 18px 18px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .05em;
}
.logo-text-wrap { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 700; color: var(--white); }
.logo-tag { font-size: .62rem; color: var(--silver-lt); letter-spacing: .08em; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,.1); }
.nav-links .nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: var(--navy-dark) !important;
  font-weight: 700;
  padding: 10px 22px;
  margin-left: 8px;
}
.nav-links .nav-cta:hover { background: var(--gold-lt); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, #1e3a7a 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(201,168,76,.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(140,155,176,.08) 0%, transparent 50%),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(255,255,255,.015) 40px,
      rgba(255,255,255,.015) 41px
    );
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.4);
  color: var(--gold-lt);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-title em { color: var(--gold); font-style: italic; }

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

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

.hero-stats { display: flex; align-items: center; gap: 0; }
.stat { padding: 0 24px; }
.stat:first-child { padding-left: 0; }
.stat strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 700; color: var(--gold-lt); }
.stat span { font-size: .8rem; color: rgba(255,255,255,.6); letter-spacing: .04em; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,.2); }

/* Hero Visual */
.hero-visual { position: relative; }

.hero-card-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 420px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hero-card-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(11,18,52,.85));
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 600;
  font-size: .95rem;
}
.hero-card-overlay i { font-size: 1.4rem; color: var(--gold); }

.hero-float-card, .hero-float-card2 {
  position: absolute;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  animation: float 3s ease-in-out infinite;
}
.hero-float-card { top: -20px; right: -20px; animation-delay: 0s; }
.hero-float-card2 { bottom: 30px; left: -30px; animation-delay: 1.5s; }
.hero-float-card i, .hero-float-card2 i { font-size: 1.5rem; color: var(--navy); }
.hero-float-card strong, .hero-float-card2 strong { display: block; font-size: .85rem; color: var(--navy-dark); font-weight: 700; }
.hero-float-card p, .hero-float-card2 p { font-size: .75rem; color: var(--text-light); margin: 0; }

.hero-dots {
  position: absolute;
  top: -30px; left: -20px;
  width: 100px; height: 100px;
  background-image: radial-gradient(circle, rgba(201,168,76,.4) 1px, transparent 1px);
  background-size: 14px 14px;
}

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

/* ══════════════════════════════════════════
   ABOUT
══════════════════════════════════════════ */
.about { background: var(--white); }

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

.about-visual { position: relative; }
.about-img-main {
  width: 100%; height: 400px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-img-secondary {
  position: absolute;
  width: 200px; height: 150px;
  border-radius: var(--radius);
  bottom: -30px; right: -20px;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
}
.about-badge {
  position: absolute;
  top: -20px; left: -20px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--white);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
}
.about-badge i { font-size: 1.4rem; color: var(--gold); }
.about-badge strong { display: block; font-size: .85rem; font-weight: 700; }
.about-badge span { font-size: .72rem; color: rgba(255,255,255,.7); }

.about-content { padding-left: 8px; }
.about-lead {
  font-size: 1.05rem;
  color: var(--text-light);
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1.7;
}
.about-body { color: var(--text-light); margin-bottom: 36px; }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--navy);
  transition: var(--transition);
}
.about-feature:hover { background: var(--navy); color: var(--white); }
.about-feature i { color: var(--gold); font-size: 1rem; }
.about-feature:hover i { color: var(--gold-lt); }

/* ══════════════════════════════════════════
   MISSION & VISION
══════════════════════════════════════════ */
.mission {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  position: relative;
  overflow: hidden;
}
.mission-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 10% 50%, rgba(201,168,76,.08), transparent 40%),
    radial-gradient(circle at 90% 50%, rgba(140,155,176,.06), transparent 40%);
}
.mission .section-container { text-align: center; position: relative; z-index: 1; }

.mv-grid {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 56px;
}

.mv-card {
  flex: 1;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.mv-card:hover { background: rgba(255,255,255,.09); transform: translateY(-4px); }

.mv-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.mv-icon i { font-size: 1.6rem; color: var(--navy-dark); }

.mv-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.mv-card p { color: rgba(255,255,255,.7); line-height: 1.8; }

.mv-accent {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
}

.mv-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  gap: 16px;
}
.mv-divider-line { width: 1px; flex: 1; background: rgba(255,255,255,.2); }
.mv-divider-icon {
  width: 44px; height: 44px;
  border: 1px solid rgba(201,168,76,.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1rem;
}

/* ══════════════════════════════════════════
   SERVICES
══════════════════════════════════════════ */
.services {
  background: var(--off-white);
}
.services .section-container { text-align: center; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  border: 1px solid var(--gray-300);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-icon i { font-size: 1.4rem; color: var(--gold); }
.service-card:hover .service-icon { background: linear-gradient(135deg, var(--gold), var(--gold-lt)); }
.service-card:hover .service-icon i { color: var(--navy-dark); }

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}
.service-card p { color: var(--text-light); font-size: .92rem; line-height: 1.7; margin-bottom: 20px; }

.service-list { display: flex; flex-direction: column; gap: 8px; }
.service-list li {
  font-size: .85rem;
  color: var(--text-mid);
  padding-left: 18px;
  position: relative;
}
.service-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

/* ══════════════════════════════════════════
   WHY CHOOSE US
══════════════════════════════════════════ */
.why-us { background: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: center;
}

.why-list { display: flex; flex-direction: column; gap: 20px; }

.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 20px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.why-item:hover { background: var(--gray-100); }

.why-check {
  width: 32px; height: 32px;
  min-width: 32px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: .8rem;
}
.why-item strong { display: block; font-size: .95rem; color: var(--navy-dark); font-weight: 700; margin-bottom: 4px; }
.why-item p { font-size: .87rem; color: var(--text-light); margin: 0; }

.why-img-wrap { position: relative; }
.why-img-wrap img { border-radius: var(--radius-lg); height: 480px; box-shadow: var(--shadow-lg); }

.why-counter-card {
  position: absolute;
  bottom: -24px; left: 50%;
  transform: translateX(-50%);
  background: var(--navy-dark);
  color: var(--white);
  border-radius: var(--radius);
  padding: 20px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
}
.why-counter { text-align: center; }
.why-counter strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--gold); }
.why-counter span { font-size: .78rem; color: rgba(255,255,255,.65); }
.why-counter-divider { width: 1px; height: 40px; background: rgba(255,255,255,.2); }

/* ══════════════════════════════════════════
   LEADERSHIP
══════════════════════════════════════════ */
.leadership { background: var(--off-white); }
.leadership .section-container { text-align: center; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: left;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-300);
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.team-avatar {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.team-avatar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(transparent, rgba(27,42,107,.4));
}
.team-avatar img { transition: transform .5s ease; }
.team-card:hover .team-avatar img { transform: scale(1.05); }

.team-info { padding: 22px; }
.team-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 4px;
}
.team-role {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  color: var(--gold);
  background: rgba(201,168,76,.1);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
  letter-spacing: .03em;
}
.team-info p { font-size: .85rem; color: var(--text-light); line-height: 1.65; }

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
.contact {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  position: relative;
  overflow: hidden;
}
.contact-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(201,168,76,.06), transparent 40%),
    radial-gradient(circle at 10% 80%, rgba(140,155,176,.05), transparent 40%);
}
.contact .section-container { position: relative; z-index: 1; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: start;
}

.contact-desc { color: rgba(255,255,255,.7); line-height: 1.75; margin-bottom: 40px; font-size: 1.05rem; }

.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon {
  width: 44px; height: 44px;
  min-width: 44px;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.35);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1rem;
}
.contact-item strong { display: block; font-size: .85rem; color: rgba(255,255,255,.5); font-weight: 500; margin-bottom: 4px; letter-spacing: .05em; text-transform: uppercase; }
.contact-item p { color: rgba(255,255,255,.85); font-size: .95rem; line-height: 1.6; margin: 0; }
.contact-item a { color: rgba(255,255,255,.85); transition: var(--transition); }
.contact-item a:hover { color: var(--gold-lt); }

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--text-mid); letter-spacing: .03em; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: .92rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,42,107,.1);
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer { background: var(--navy-dark); color: rgba(255,255,255,.75); }

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding: 72px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.logo-shield-sm {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy));
  border: 1.5px solid var(--silver);
  border-radius: 8px 8px 14px 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: .9rem;
}
.footer-logo strong { display: block; color: var(--white); font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 700; }
.footer-logo span { font-size: .65rem; color: rgba(255,255,255,.5); letter-spacing: .07em; }

.footer-brand p { font-size: .9rem; line-height: 1.7; margin-bottom: 24px; }

.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-dark); }

.footer-links-group h4 {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links-group ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-group li { font-size: .88rem; display: flex; align-items: flex-start; gap: 8px; }
.footer-links-group a { transition: var(--transition); }
.footer-links-group a:hover { color: var(--gold-lt); }
.footer-links-group i { color: var(--gold); margin-top: 3px; min-width: 14px; font-size: .85rem; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: .83rem;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom i { color: #ef4444; margin: 0 2px; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { transition: var(--transition); }
.footer-legal a:hover { color: var(--gold-lt); }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { order: -1; }
  .about-img-secondary { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .why-visual { display: none; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .section-container { padding: 72px 20px; }
  .nav-links { display: none; flex-direction: column; position: fixed; top: 0; right: 0; bottom: 0; width: 280px; background: var(--navy-dark); padding: 80px 24px 24px; gap: 4px; z-index: 999; transform: translateX(100%); transition: transform .35s ease; }
  .nav-links.open { display: flex; transform: translateX(0); }
  .nav-links a { color: rgba(255,255,255,.85); padding: 12px 16px; border-radius: 10px; }
  .nav-links .nav-cta { margin: 12px 0 0; text-align: center; justify-content: center; }
  .nav-toggle { display: flex; position: relative; z-index: 1001; }

  .mv-grid { flex-direction: column; }
  .mv-divider { flex-direction: row; padding: 16px 0; }
  .mv-divider-line { height: 1px; flex: 1; width: auto; }

  .services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .stat-divider { display: none; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary, .hero-actions .btn-outline { text-align: center; justify-content: center; }
}

@media (max-width: 480px) {
  .contact-form-wrap { padding: 24px; }
}
