/* =============================================
   VK Group of Companies — Main Stylesheet
   ============================================= */

:root {
  --red:          #cc1e1e;
  --red-lt:       #e53535;
  --red-deep:     #a01515;
  --blue:         #0b2255;
  --blue-mid:     #1a3a80;
  --blue-lt:      #2a5298;
  --grey:         #f5f3f0;
  --grey-alt:     #edeae6;
  --grey-card:    #faf9f7;
  --white:        #ffffff;
  --text-dark:    #0b2255;
  --text-body:    #2c3e6b;
  --muted-dark:   #5a6e95;
  --muted:        #a0b4d0;
  --accent:       #cc1e1e;
  --accent-lt:    #e53535;
  --border:       rgba(255,255,255,0.14);
  --border-light: rgba(11,34,85,0.1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* offset for fixed navbar */
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--grey);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ---- UTILITIES ---- */
.text-accent       { color: var(--accent) !important; }
.text-muted-light  { color: var(--muted); }
.text-dark-navy    { color: var(--text-dark) !important; }
.text-body-muted   { color: var(--muted-dark); }

/* ---- Section alternating backgrounds ---- */
/* LIGHT 1 — About */
.bg-about { background: #f5f3f0; }

/* DARK 1 — Companies */
.bg-dark-navy { background: linear-gradient(160deg, #0c1f4a 0%, #0a1a3e 100%) !important; }
.bg-deep { background: linear-gradient(160deg, #0c1f4a 0%, #0a1a3e 100%) !important; }

/* LIGHT 2 — Why Choose Us */
.services-banner {
  background: #edeae6 !important;
  border-top: 4px solid var(--accent);
  border-bottom: 4px solid var(--accent);
}

/* ACCENT — CTA quote */
.cta-strip { background: linear-gradient(90deg, #0c1f4a 0%, #1a3a80 100%) !important; }

/* Footer — blue & red gradient */
.footer {
  background: linear-gradient(135deg, #0c1f4a 0%, #1a3a80 40%, #8b1010 75%, #cc1e1e 100%) !important;
}
.section-pad       { padding: 100px 0; }
.section-pad-sm    { padding: 60px 0; }
.z-1               { z-index: 1; }

.section-eyebrow {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
}

/* ---- BUTTONS ---- */
.btn-accent {
  background: var(--accent);
  color: #fff;
  border: none;
  font-weight: 600;
  transition: background .25s, transform .2s;
}
.btn-accent:hover { background: var(--accent-lt); color: #fff; transform: translateY(-2px); }

/* =============================================
   NAVBAR
   ============================================= */
#mainNav {
  background: transparent;
  transition: background .4s, box-shadow .4s, padding .3s;
  padding: 18px 0;
}
#mainNav.scrolled {
  background: linear-gradient(90deg, rgba(11,34,85,.97) 0%, rgba(100,10,10,.97) 100%);
  box-shadow: 0 2px 24px rgba(0,0,0,.4);
  padding: 10px 0;
  backdrop-filter: blur(12px);
}
.brand-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}
.nav-link {
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.8) !important;
  transition: color .2s;
  padding: 6px 12px !important;
}
.nav-link:hover { color: var(--accent) !important; }

/* =============================================
   HERO
   ============================================= */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: #0b2255;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11,34,85,.92) 0%, rgba(11,34,85,.55) 45%, rgba(139,16,16,.75) 100%);
}
/* Red glow accent behind hero title */
.hero-section::after {
  content: '';
  position: absolute;
  top: 30%;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(204,30,30,.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero-eyebrow {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  opacity: 0;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  min-height: 2rem;
  opacity: 0;
}

/* Typewriter cursor */
.cursor-blink {
  display: inline-block;
  color: var(--accent);
  animation: blink 0.7s infinite;
  font-weight: 300;
}
@keyframes blink { 0%,100% { opacity:1 } 50% { opacity:0 } }

/* Hero stats */
.hero-stats { opacity: 0; }
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent);
}
.stat-label {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
  margin: 4px 0 0;
}
.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--border);
  align-self: center;
}

/* Scroll down button */
.scroll-down-btn {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.4);
  font-size: 1.4rem;
  animation: bounce 2s infinite;
  text-decoration: none;
  transition: color .2s;
  z-index: 2;
}
.scroll-down-btn:hover { color: var(--accent); }
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0) }
  50% { transform: translateX(-50%) translateY(8px) }
}

/* ---- Fade-up animations ---- */
.animate-fade-up { animation: fadeUp .7s ease forwards; }
.delay-1 { animation-delay: .3s; }
.delay-2 { animation-delay: .6s; }
.delay-3 { animation-delay: .9s; }
.delay-4 { animation-delay: 1.2s; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =============================================
   MILESTONE STRIP
   ============================================= */
.milestone-strip {
  background: linear-gradient(100deg, #cc1e1e 0%, #8b1010 30%, #1a3a80 65%, #0b2255 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.milestone-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.milestone-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 1;
}
.milestone-left {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-shrink: 0;
}
.milestone-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(5rem, 12vw, 9rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  text-shadow: 0 4px 30px rgba(0,0,0,.3);
}
.milestone-plus {
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: rgba(255,255,255,.75);
}
.milestone-word {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  color: rgba(255,255,255,.85);
  letter-spacing: .04em;
}
.milestone-divider {
  width: 2px;
  height: 100px;
  background: rgba(255,255,255,.25);
  flex-shrink: 0;
}
.milestone-right { flex: 1; }
.milestone-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
}
.milestone-sub {
  font-size: .95rem;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  margin: 0 0 16px;
  max-width: 480px;
}
.milestone-dots { display: flex; gap: 8px; }
.milestone-dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
}
.milestone-dots span:first-child { background: #fff; width: 24px; border-radius: 4px; }

@media (max-width: 767px) {
  .milestone-inner { flex-direction: column; gap: 24px; text-align: center; }
  .milestone-divider { width: 80px; height: 2px; }
  .milestone-sub { margin: 0 auto 16px; }
  .milestone-dots { justify-content: center; }
}

/* =============================================
   ABOUT — Redesigned
   ============================================= */
.about-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 20px;
  text-align: left;
  padding-left: 0;
  margin-left: 0;
}
.about-title-accent { color: var(--accent); }

.about-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--blue) 100%);
  border-radius: 2px;
  margin-bottom: 24px;
}
.about-body {
  font-size: 1rem;
  color: var(--muted-dark);
  line-height: 1.8;
}

/* Stats row */
.about-stats-row {
  display: flex;
  align-items: center;
  gap: 0;
  background: #fff;
  border: 1px solid rgba(11,34,85,.1);
  border-radius: 14px;
  padding: 20px 10px;
  box-shadow: 0 4px 20px rgba(11,34,85,.08);
  margin-bottom: 8px;
}
.about-stat {
  flex: 1;
  text-align: center;
  padding: 0 12px;
}
.about-stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.about-stat-label {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted-dark);
  margin-top: 5px;
}
.about-stat-sep {
  width: 1px;
  height: 44px;
  background: rgba(11,34,85,.12);
  flex-shrink: 0;
}

/* Feature list */
.about-features { display: flex; flex-direction: column; gap: 10px; }
.about-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-dark);
}
.about-feature-item i { color: var(--accent); font-size: 1rem; flex-shrink: 0; }

/* Image frame */
.about-img-frame {
  position: relative;
  display: inline-block;
  width: 100%;
}
.about-main-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(11,34,85,.18);
  display: block;
  position: relative;
  z-index: 1;
}
.about-img-accent-top {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 120px;
  height: 120px;
  border-top: 4px solid var(--accent);
  border-right: 4px solid var(--accent);
  border-radius: 0 20px 0 0;
  z-index: 0;
}
.about-img-accent-bottom {
  position: absolute;
  bottom: -14px;
  left: -14px;
  width: 120px;
  height: 120px;
  border-bottom: 4px solid var(--blue);
  border-left: 4px solid var(--blue);
  border-radius: 0 0 0 20px;
  z-index: 0;
}
.about-img-badge {
  position: absolute;
  bottom: 24px;
  right: -18px;
  background: var(--accent);
  color: #fff;
  padding: 16px 22px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(204,30,30,.4);
  z-index: 2;
}
.about-img-badge .badge-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}
.about-img-badge .badge-text {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  opacity: .9;
  margin-top: 4px;
  display: block;
}

@media (max-width: 991px) {
  .about-img-accent-top, .about-img-accent-bottom { display: none; }
  .about-img-badge { right: 12px; bottom: 12px; }
  .about-main-img { height: 320px; }
}
/* Section backgrounds — alternating light / dark */
.bg-dark-navy { background: linear-gradient(135deg, #0b1f4a 0%, #0d2a60 100%); }
.bg-deep      { background: var(--light-bg); }
.bg-light     { background: var(--light-alt); }

.about-img-wrap { position: relative; display: inline-block; }
.about-img-wrap .main-img { width: 100%; max-height: 480px; object-fit: cover; }
.about-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--accent);
  color: #fff;
  padding: 18px 22px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(204,30,30,.4);
}
.badge-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}
.badge-text { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; opacity: .9; }

.feature-pill {
  background: var(--grey-card);
  border: 1px solid rgba(11,34,85,.1);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  box-shadow: 0 2px 8px rgba(11,31,74,.06);
}

/* =============================================
   VIDEO BANNER
   ============================================= */
.video-banner {
  position: relative;
  height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,34,85,.82) 0%, rgba(139,16,16,.65) 100%);
}
.video-content {
  z-index: 2;
  padding: 0 16px;
}
.video-content .section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.video-sub {
  font-size: 1rem;
  color: rgba(255,255,255,.75);
  margin: 0 auto;
  max-width: 480px;
  line-height: 1.6;
}
.video-scroll-hint {
  margin-top: 28px;
  font-size: 1.4rem;
  color: rgba(255,255,255,.5);
  animation: bounce 2s infinite;
}

/* =============================================
   COMPANY CARDS
   ============================================= */
.company-card {
  background: var(--grey-card);
  border: 1px solid rgba(11,34,85,.1);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  box-shadow: 0 2px 16px rgba(11,34,85,.07);
}
.company-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(11,31,74,.15);
}
.company-card.featured {
  border-color: rgba(204,30,30,.35);
  box-shadow: 0 0 0 1px rgba(204,30,30,.15), 0 8px 30px rgba(204,30,30,.1);
}

.card-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.company-card:hover .card-img-wrap img { transform: scale(1.08); }
.card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,15,30,.9) 0%, transparent 60%);
}
.card-tag {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(10,15,30,.8);
  color: var(--muted);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid var(--border);
  backdrop-filter: blur(6px);
}
.featured-tag {
  background: rgba(204,30,30,.2);
  color: var(--accent);
  border-color: rgba(204,30,30,.4);
}

.card-body-custom { padding: 24px; }

.company-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--light-bg);
  border: 1px solid var(--border-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 14px;
}
.company-icon.accent { background: rgba(204,30,30,.15); border-color: rgba(204,30,30,.3); color: var(--accent); }

.company-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}
.company-desc { font-size: .875rem; color: var(--muted-dark); line-height: 1.65; margin-bottom: 16px; }

.company-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.company-features span {
  font-size: .78rem;
  color: var(--muted-dark);
  display: flex;
  align-items: center;
  gap: 6px;
}
.company-features span i { color: var(--accent); font-size: .8rem; }

/* =============================================
   WHY CHOOSE US
   ============================================= */
.services-banner {
  background: linear-gradient(135deg, #0b1f4a 0%, #0e2a60 50%, #0b1f4a 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Title box — styled like PDF with double border */
.wcus-title-box {
  display: inline-block;
  position: relative;
  padding: 14px 28px;
  border: 3px solid var(--accent);
  border-radius: 4px;
  margin-top: 8px;
}
.wcus-title-box::before {
  content: '';
  position: absolute;
  inset: 5px;
  border: 1.5px solid rgba(204,30,30,.35);
  border-radius: 2px;
  pointer-events: none;
}
.wcus-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: .06em;
  margin: 0;
}
.wcus-sub-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.wcus-intro {
  font-style: italic;
  color: var(--muted-dark);
  font-size: .95rem;
  line-height: 1.75;
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  margin: 0;
}

/* Reason cards */
.wcus-card {
  background: #ffffff;
  border: 1px solid rgba(11,34,85,.1);
  border-radius: 14px;
  padding: 28px 24px;
  height: 100%;
  transition: transform .3s, border-color .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
}
.wcus-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--accent);
  opacity: 0;
  transition: opacity .3s;
}
.wcus-card:hover {
  transform: translateY(-6px);
  border-color: rgba(204,30,30,.35);
  box-shadow: 0 16px 48px rgba(0,0,0,.4);
}
.wcus-card:hover::before { opacity: 1; }

.wcus-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(204,30,30,.1);
  border: 1px solid rgba(204,30,30,.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  color: var(--accent);
  margin-bottom: 16px;
}
.wcus-card h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.wcus-card p {
  font-size: .875rem;
  color: var(--muted-dark);
  line-height: 1.65;
  margin: 0;
}

/* =============================================
   CTA STRIP / QUOTE
   ============================================= */
.cta-strip { background: linear-gradient(135deg, #0b1f4a 0%, #0d2a60 100%); }
.cta-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
}

/* =============================================
   CONTACT
   ============================================= */
.contact-card {
  background: var(--grey-card);
  border: 1px solid rgba(11,34,85,.1);
  border-radius: 14px;
  padding: 30px 20px;
  transition: border-color .3s, transform .3s, box-shadow .3s;
  height: 100%;
  box-shadow: 0 2px 16px rgba(11,31,74,.07);
}
.contact-card:hover { border-color: rgba(204,30,30,.3); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(11,31,74,.12); }
.contact-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(204,30,30,.08);
  border: 1px solid rgba(204,30,30,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--accent);
  margin: 0 auto 16px;
}
.contact-card h5 { font-size: .95rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.contact-card p { font-size: .88rem; color: var(--muted-dark); margin: 0; }
.contact-link { color: var(--muted-dark); text-decoration: none; transition: color .2s; }
.contact-link:hover { color: var(--accent); }

/* Contact section background */
.contact-section {
  position: relative;
  background: url('Images/contact-bg.png') center center / cover no-repeat;
}
.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}
.contact-section > .container {
  position: relative;
  z-index: 1;
}
.contact-section .section-eyebrow,
.contact-section .section-title,
.contact-section .text-body-muted { color: #fff !important; }
.contact-section .contact-card {
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.3);
  backdrop-filter: blur(14px);
}
.contact-section .contact-card h5 { color: #fff; }
.contact-section .contact-card p,
.contact-section .contact-link { color: rgba(255,255,255,.75); }
.contact-section .contact-link:hover { color: #fff; }
.contact-section .contact-form-wrap {
  background: rgba(255,255,255,.28);
  border-color: rgba(255,255,255,.35);
  backdrop-filter: blur(16px);
}
.contact-section .contact-form-wrap h4 { color: #fff !important; }
.contact-section .form-control-dark {
  background: rgba(255,255,255,.30) !important;
  border-color: rgba(255,255,255,.4) !important;
  color: #fff !important;
}
.contact-section .form-control-dark::placeholder { color: rgba(255,255,255,.55) !important; opacity: 1; }
.contact-section .form-select.form-control-dark option { background: #0b2255; color: #fff; }
.contact-section .map-wrap { border-color: rgba(255,255,255,.2); }
.contact-section .map-header {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.15);
  color: rgba(255,255,255,.8);
  backdrop-filter: blur(8px);
}

/* Quick contact buttons */
.quick-contact-row {
  display: flex;
  gap: 12px;
}
.quick-btn {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 14px;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.quick-btn:hover { transform: translateY(-3px); }
.quick-btn > i { font-size: 1.8rem; flex-shrink: 0; }
.whatsapp-btn { background: #25d366; border-color: #25d366; }
.whatsapp-btn > i { color: #fff; }
.whatsapp-btn:hover { background: #1ebe5d; border-color: #1ebe5d; box-shadow: 0 8px 30px rgba(37,211,102,.4); }
.email-btn { background: var(--accent); border-color: var(--accent); }
.email-btn > i { color: #fff; }
.email-btn:hover { background: var(--accent-lt); border-color: var(--accent-lt); box-shadow: 0 8px 30px rgba(204,30,30,.4); }
.qb-label { display: block; font-size: .9rem; font-weight: 700; color: #fff; }
.qb-sub   { display: block; font-size: .75rem; color: rgba(255,255,255,.8); margin-top: 2px; }

@media (max-width: 576px) {
  .quick-contact-row { flex-direction: column; }
}

/* Map */
.map-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 24px rgba(11,31,74,.1);
}
.map-header {
  background: var(--grey-card);
  padding: 14px 20px;
  font-size: .875rem;
  color: var(--muted-dark);
  border-bottom: 1px solid rgba(11,34,85,.1);
  display: flex;
  align-items: center;
}
.map-wrap iframe { display: block; }

.contact-form-wrap {
  background: var(--grey-card);
  border: 1px solid rgba(11,34,85,.1);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(11,31,74,.08);
}
.contact-form-wrap h4 { color: var(--text-dark) !important; }
.form-control-dark {
  background: var(--grey-alt) !important;
  border: 1px solid rgba(11,31,74,.15) !important;
  color: var(--text-dark) !important;
  border-radius: 8px !important;
  padding: 12px 16px !important;
  font-size: .9rem !important;
  transition: border-color .2s;
}
.form-control-dark::placeholder { color: var(--muted-dark) !important; opacity: .6; }
.form-control-dark:focus {
  border-color: rgba(204,30,30,.5) !important;
  box-shadow: 0 0 0 3px rgba(204,30,30,.1) !important;
  outline: none;
}
.form-select.form-control-dark option { background: #fff; color: var(--text-dark); }

/* =============================================
   FOOTER
   ============================================= */
.footer { background: linear-gradient(180deg, #08183a 0%, #050f28 100%); }
.footer-brand { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 800; color: #fff; }
.footer-heading { font-size: .8rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--muted);
  font-size: .875rem;
  margin-bottom: 10px;
}
.footer-links li i { color: var(--accent); margin-top: 3px; flex-shrink: 0; }
.footer-link { color: var(--muted); text-decoration: none; transition: color .2s; }
.footer-link:hover { color: var(--accent); }

.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 38px; height: 38px;
  border-radius: 8px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  font-size: .95rem;
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s;
}
.social-links a:hover { background: rgba(204,30,30,.15); color: var(--accent); border-color: rgba(204,30,30,.4); }

.footer-divider { border-color: var(--border); margin: 0; }

/* =============================================
   SCROLL REVEAL ANIMATIONS
   ============================================= */

/* Slide up */
.sr-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity .7s cubic-bezier(.25,.8,.25,1), transform .7s cubic-bezier(.25,.8,.25,1);
}
/* Slide from left */
.sr-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity .8s cubic-bezier(.25,.8,.25,1), transform .8s cubic-bezier(.25,.8,.25,1);
}
/* Slide from right */
.sr-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity .8s cubic-bezier(.25,.8,.25,1), transform .8s cubic-bezier(.25,.8,.25,1);
}
/* Visible state — same for all */
.sr-up.in-view,
.sr-left.in-view,
.sr-right.in-view {
  opacity: 1;
  transform: none;
}
/* Stagger cards inside a row */
.row .sr-up:nth-child(1) { transition-delay: .05s; }
.row .sr-up:nth-child(2) { transition-delay: .15s; }
.row .sr-up:nth-child(3) { transition-delay: .25s; }
.row .sr-up:nth-child(4) { transition-delay: .35s; }
.row .sr-up:nth-child(5) { transition-delay: .45s; }
.row .sr-up:nth-child(6) { transition-delay: .55s; }

/* Typewriter on scroll */
.tw-char {
  display: inline;
  opacity: 0;
  animation: twFadeIn .03s forwards;
}
@keyframes twFadeIn {
  to { opacity: 1; }
}

/* Old reveal compat */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* =============================================
   RESPONSIVE TWEAKS
   ============================================= */
@media (max-width: 991px) {
  .about-badge { left: 10px; bottom: -10px; }
  .services-img-grid .img-thumb { display: none; }
  .services-img-grid .img-main { width: 100%; }
  .contact-form-wrap { padding: 24px; }
}

@media (max-width: 576px) {
  .section-pad { padding: 70px 0; }
  .hero-stats { gap: 20px; }
  .stat-divider { display: none; }
}
