/* ═══════════════════════════════════════
   CSS VARIABLES
═══════════════════════════════════════ */
:root {
  --blue:      #1A365D;
  --blue-dark: #0f2440;
  --blue-mid:  #244e82;
  --teal:      #2C7A7B;
  --teal-lt:   #3a9ea0;
  --yellow:    #F6C30A;
  --yellow-dk: #d4a800;
  --card-a:    #5B8DB8;
  --gray-bg:   #EEF3F8;
  --gray-lt:   #F7FAFC;
  --dark-txt:  #2D3748;
  --body-txt:  #4A5568;
  --white:     #ffffff;
  --border:    #E2E8F0;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.07);
  --shadow-md: 0 4px 18px rgba(0,0,0,.11);
  --shadow-lg: 0 12px 36px rgba(0,0,0,.15);
}

/* ═══════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', sans-serif; color: var(--dark-txt); background: #fff; }
h1,h2,h3,h4,h5,h6 { font-family: 'Montserrat', sans-serif; }
a { text-decoration: none; }
img { max-width: 100%; }

/* scroll offset for fixed nav */
section { scroll-margin-top: 72px; }

/* ═══════════════════════════════════════
   UTILITIES
═══════════════════════════════════════ */
.sec-pad { padding: 80px 0; }
.sec-pad-sm { padding: 60px 0; }
.sec-title {
  font-weight: 900; font-size: clamp(22px,3vw,32px);
  color: var(--blue); text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 12px;
}
.sec-sub { color: var(--body-txt); font-size: 15px; max-width: 560px; margin: 0 auto 48px; line-height: 1.7; }
.text-teal { color: var(--teal); }
.bg-gray { background: var(--gray-bg); }
.bg-blue { background: var(--blue); }

/* CTA Buttons */
.btn-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--yellow); color: var(--blue);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800; font-size: 13px;
  text-transform: uppercase; letter-spacing: .6px;
  padding: 13px 24px; border-radius: 8px;
  border: none; cursor: pointer;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.btn-cta:hover {
  background: var(--yellow-dk); color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(246,195,10,.42);
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: .6px;
  padding: 12px 24px; border-radius: 8px;
  border: 2px solid rgba(255,255,255,.5); cursor: pointer;
  transition: border-color .2s, background .2s, transform .2s;
}
.btn-outline:hover {
  border-color: #fff; background: rgba(255,255,255,.1);
  color: #fff; transform: translateY(-2px);
}

/* Card base */
.card-base {
  border-radius: 14px; background: #fff;
  box-shadow: var(--shadow-md);
  transition: transform .25s, box-shadow .25s;
  overflow: hidden;
}
.card-base:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

/* Icon circle */
.ic-circle {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: #fff; flex-shrink: 0;
}
.ic-circle-teal {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(44,122,123,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--teal); flex-shrink: 0;
}
.ic-circle-blue {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(26,54,93,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--blue); flex-shrink: 0;
}

/* Animate on scroll */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }

/* ═══════════════════════════════════════
   NAVBAR
═══════════════════════════════════════ */
.navbar {
  background: var(--blue) !important;
  padding: 14px 0;
  position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 2px 16px rgba(0,0,0,.2);
  transition: padding .3s;
}
.navbar.scrolled { padding: 10px 0; }
.navbar-brand {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-size: 20px; color: #fff !important;
}
.navbar-brand span { color: var(--yellow); }
.navbar-toggler { border: 2px solid rgba(255,255,255,.4); padding: 4px 8px; }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255%2c255%2c255%2c0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.nav-link {
  color: rgba(255,255,255,.8) !important;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600; font-size: 13px;
  text-transform: uppercase; letter-spacing: .5px;
  padding: 6px 14px !important;
  transition: color .2s;
}
.nav-link:hover, .nav-link.active { color: var(--yellow) !important; }
.nav-cta {
  background: var(--yellow); color: var(--blue) !important;
  border-radius: 7px; padding: 8px 18px !important;
  font-weight: 800 !important;
  transition: background .2s, transform .2s !important;
}
.nav-cta:hover { background: var(--yellow-dk) !important; transform: translateY(-1px); color: var(--blue) !important;}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
#home {
  background: var(--blue);
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}
.hero-blob {
  position: absolute; right: -100px; top: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(44,122,123,.25) 0%, transparent 70%);
  pointer-events: none;
}
.hero-blob2 {
  position: absolute; left: -80px; bottom: -80px;
  width: 350px; height: 350px; border-radius: 50%;
  background: radial-gradient(circle, rgba(246,195,10,.1) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(246,195,10,.15);
  border: 1px solid rgba(246,195,10,.3);
  color: var(--yellow); font-size: 12px; font-weight: 600;
  padding: 6px 14px; border-radius: 30px; margin-bottom: 22px;
}
#home h1 {
  font-weight: 900;
  font-size: clamp(28px,5vw,56px);
  color: #fff; line-height: 1.1;
  text-transform: uppercase; margin-bottom: 16px;
}
#home h1 span { color: var(--yellow); }
#home .hero-sub {
  color: rgba(255,255,255,.78); font-size: 16px; line-height: 1.7; margin-bottom: 32px;
}
.hero-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.hero-tag {
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.85);
  font-size: 12px; font-weight: 600;
  padding: 6px 14px; border-radius: 20px;
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; gap: 6px;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-photo-wrap {
  position: relative; text-align: center;
}
.hero-photo-wrap img {
  border-radius: 20px;
  width: 100%; max-width: 420px;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
  position: relative; z-index: 1;
}
.hero-photo-wrap::before {
  content: '';
  position: absolute; top: 20px; left: 20px; right: -20px; bottom: -20px;
  border: 3px solid rgba(246,195,10,.3);
  border-radius: 24px; z-index: 0;
}
.hero-stat-card {
  position: absolute; z-index: 2;
  background: #fff; border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
  display: flex; align-items: center; gap: 10px;
}
.hero-stat-card.sc1 { bottom: 30px; left: -20px; }
.hero-stat-card.sc2 { top: 30px; right: -10px; }
.hero-stat-card .sc-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-size: 22px; color: var(--blue); line-height: 1;
}
.hero-stat-card .sc-lbl { font-size: 11px; color: var(--body-txt); font-weight: 600; }
.hero-stat-card .sc-icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--teal);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 16px; flex-shrink: 0;
}

/* ═══════════════════════════════════════
   PAIN POINTS
═══════════════════════════════════════ */
#pain { background: #fff; }
.pain-card {
  border-radius: 14px;
  padding: 28px 22px; height: 100%; text-align: center; color: #fff;
  transition: transform .25s, box-shadow .25s;
}
.pain-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.pain-card.pc-a { background: var(--card-a); }
.pain-card.pc-b { background: var(--teal); }
.pain-card .pic {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 24px; color: #fff;
}
.pain-card h5 {
  font-weight: 800; font-size: 14px;
  text-transform: uppercase; letter-spacing: .5px;
  margin-bottom: 10px;
}
.pain-card p { font-size: 13px; opacity: .9; line-height: 1.55; margin: 0; }

/* ═══════════════════════════════════════
   ABOUT
═══════════════════════════════════════ */
#about { background: var(--gray-bg); }
.about-img-wrap { position: relative; }
.about-img-wrap img {
  border-radius: 16px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  position: relative; z-index: 1;
}
.about-img-wrap::before {
  content: '';
  position: absolute; top: 16px; right: -16px;
  width: 100%; height: 100%;
  border: 3px solid var(--teal);
  border-radius: 18px; z-index: 0;
}
.about-badge {
  position: absolute; bottom: -18px; left: 24px; z-index: 2;
  background: var(--blue); color: #fff;
  border-radius: 12px; padding: 14px 20px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.about-badge .ab-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-size: 28px; color: var(--yellow); line-height: 1;
}
.about-badge .ab-lbl { font-size: 11px; opacity: .8; margin-top: 2px; }
.about-qual {
  display: flex; align-items: flex-start; gap: 14px;
  background: #fff; border-radius: 10px;
  padding: 14px 16px; margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
}
.about-qual .aq-icon {
  width: 40px; height: 40px; border-radius: 8px;
  background: var(--teal); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; flex-shrink: 0;
}
.about-qual h6 { font-weight: 700; font-size: 13px; margin-bottom: 2px; }
.about-qual p { font-size: 12px; color: var(--body-txt); margin: 0; }

/* ═══════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════ */
#process { background: #fff; }
.step-card {
  border-radius: 14px; padding: 30px 24px;
  height: 100%; text-align: center; color: #fff;
  position: relative; overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.step-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.step-card.sc-blue { background: var(--blue); }
.step-card.sc-teal { background: var(--teal); }
.step-card .step-num {
  position: absolute; top: 16px; right: 16px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-size: 48px;
  color: rgba(255,255,255,.08); line-height: 1;
}
.step-card .sic {
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 26px; color: #fff;
}
.step-card h5 { font-weight: 800; font-size: 15px; text-transform: uppercase; margin-bottom: 10px; }
.step-card p { font-size: 13px; opacity: .85; line-height: 1.6; margin: 0; }
.step-arrow {
  color: var(--teal); font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; padding: 0 8px;
  align-self: center;
}

/* ═══════════════════════════════════════
   SERVICES
═══════════════════════════════════════ */
#services { background: var(--gray-bg); }
.service-card {
  border-radius: 14px; background: #fff;
  padding: 30px 24px; height: 100%;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
  border-top: 4px solid var(--teal);
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.service-card.sb { border-top-color: var(--blue); }
.service-card.sy { border-top-color: var(--yellow); }
.service-card .sv-icon {
  width: 54px; height: 54px; border-radius: 12px;
  background: var(--gray-bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: var(--teal); margin-bottom: 18px;
}
.service-card.sb .sv-icon { color: var(--blue); }
.service-card.sy .sv-icon { color: var(--yellow-dk); }
.service-card h5 { font-weight: 800; font-size: 16px; color: var(--blue); margin-bottom: 10px; }
.service-card p { font-size: 13px; color: var(--body-txt); line-height: 1.65; margin-bottom: 16px; }
.service-tag {
  display: inline-block;
  background: var(--gray-bg); color: var(--teal);
  font-size: 11px; font-weight: 700;
  padding: 4px 10px; border-radius: 20px; margin: 2px;
}

/* ═══════════════════════════════════════
   PRICING
═══════════════════════════════════════ */
#pricing { background: #fff; }
.tog-wrap { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 36px; }
.tog-lbl {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 13px; text-transform: uppercase; letter-spacing: .5px;
  color: #aaa; cursor: pointer; user-select: none;
  display: flex; align-items: center; gap: 6px;
  transition: color .2s;
}
.tog-lbl.on { color: var(--teal); }
.sw { position: relative; width: 56px; height: 28px; cursor: pointer; flex-shrink: 0; }
.sw input { display: none; }
.sw-bg { position: absolute; inset: 0; background: var(--teal); border-radius: 14px; }
.sw-dot {
  position: absolute; top: 4px; left: 4px;
  width: 20px; height: 20px; background: #fff; border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,.22);
  transition: transform .3s;
}
.sw input:checked ~ .sw-dot { transform: translateX(28px); }
.p-panel { display: none; }
.p-panel.on { display: block; }
.prc-card {
  border-radius: 16px; padding: 32px 26px; color: #fff; height: 100%;
  box-shadow: var(--shadow-md);
  transition: transform .25s, box-shadow .25s;
  position: relative; overflow: hidden;
}
.prc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.prc-card::before {
  content: '';
  position: absolute; top: -30px; right: -30px;
  width: 120px; height: 120px; border-radius: 50%;
  background: rgba(255,255,255,.07);
}
.prc-card.navy { background: var(--blue); }
.prc-card.teal { background: var(--teal); }
.prc-card.popular {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
  border: 2px solid var(--yellow);
}
.popular-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--yellow); color: var(--blue);
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; font-weight: 800; text-transform: uppercase;
  padding: 4px 10px; border-radius: 20px;
}
.prc-card .pc-head {
  display: flex; align-items: center; gap: 12px; margin-bottom: 20px;
}
.prc-card .ph-ic {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.prc-card .ph-title { font-weight: 800; font-size: 14px; text-transform: uppercase; letter-spacing: .5px; }
.prc-card .ph-sub { font-size: 11.5px; opacity: .8; }
.prc-card .pc-price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-size: 48px; line-height: 1; margin-bottom: 6px;
}
.prc-card .pc-price sup { font-size: 22px; vertical-align: super; }
.prc-card .pc-price small { font-size: 14px; font-weight: 600; opacity: .8; }
.prc-card .pc-desc { font-size: 13px; opacity: .8; margin-bottom: 20px; }
.prc-card .pc-divider { border-color: rgba(255,255,255,.2); margin-bottom: 18px; }
.prc-list { list-style: none; padding: 0; margin: 0 0 24px; }
.prc-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; margin-bottom: 10px; opacity: .9;
}
.prc-list li i { font-size: 12px; flex-shrink: 0; color: var(--yellow); }
.btn-prc {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 13px;
  background: var(--yellow); color: var(--blue);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800; font-size: 13px; text-transform: uppercase;
  border-radius: 10px; border: none; cursor: pointer;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.btn-prc:hover {
  background: var(--yellow-dk); transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(246,195,10,.4);
}
.btn-prc-outline {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 12px;
  background: transparent; color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 13px; text-transform: uppercase;
  border-radius: 10px; border: 2px solid rgba(255,255,255,.4); cursor: pointer;
  transition: border-color .2s, background .2s;
}
.btn-prc-outline:hover { border-color: #fff; background: rgba(255,255,255,.1); }

/* ═══════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════ */
#testimonials { background: var(--gray-bg); }
.testi-slider { position: relative; overflow: hidden; border-radius: 16px; }
.testi-track { display: flex; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.testi-slide {
  min-width: 100%;
  background: #fff; border-radius: 16px;
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
}
.testi-slide .tq-icon { font-size: 40px; color: var(--teal); margin-bottom: 16px; line-height: 1; }
.testi-stars { color: var(--yellow); font-size: 16px; letter-spacing: 3px; margin-bottom: 20px; }
.testi-text {
  font-size: 16px; font-style: italic; color: var(--dark-txt);
  line-height: 1.75; margin-bottom: 28px;
}
.testi-author { display: flex; align-items: center; gap: 16px; }
.testi-av {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--teal); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.testi-name { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 15px; color: var(--blue); }
.testi-role { font-size: 12.5px; color: var(--body-txt); }
.testi-controls { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 28px; }
.tdot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(44,122,123,.25);
  border: none; cursor: pointer; padding: 0;
  transition: background .25s, transform .25s;
}
.tdot.active { background: var(--teal); transform: scale(1.4); }
.tnav {
  width: 40px; height: 40px; border-radius: 50%;
  border: 2px solid var(--teal); background: transparent;
  color: var(--teal); font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .2s, color .2s;
}
.tnav:hover { background: var(--teal); color: #fff; }

/* Stats */
.stat-item {
  text-align: center; padding: 28px 20px;
  background: #fff; border-radius: 14px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s;
}
.stat-item:hover { transform: translateY(-4px); }
.stat-item .st-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-size: 40px; color: var(--blue); line-height: 1;
}
.stat-item .st-num span { color: var(--teal); }
.stat-item .st-ic { font-size: 28px; color: var(--teal); margin-bottom: 10px; }
.stat-item .st-lbl { font-size: 13px; color: var(--body-txt); margin-top: 6px; font-weight: 600; }

/* ═══════════════════════════════════════
   FAQ
═══════════════════════════════════════ */
#faq { background: #fff; }
.faq-item {
  background: var(--gray-bg);
  border-radius: 12px; margin-bottom: 12px;
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: box-shadow .2s;
}
.faq-item.open { box-shadow: var(--shadow-md); }
.faq-btn {
  width: 100%; background: none; border: none;
  display: flex; align-items: center;
  padding: 18px 20px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600; font-size: 14px;
  color: var(--dark-txt); text-align: left;
  cursor: pointer; gap: 14px; transition: color .2s;
}
.faq-btn:hover { color: var(--teal); }
.faq-q-ic {
  width: 36px; height: 36px; border-radius: 8px;
  background: #fff; color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.faq-btn .fchev {
  margin-left: auto; font-size: 12px;
  color: var(--teal); transition: transform .3s; flex-shrink: 0;
}
.faq-item.open .fchev { transform: rotate(180deg); }
.faq-item.open .faq-btn { color: var(--teal); }
.faq-ans {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .4s;
  font-size: 14px; color: var(--body-txt); line-height: 1.7;
  padding: 0 20px;
}
.faq-item.open .faq-ans { max-height: 220px; padding: 0 20px 18px 70px; }

/* ═══════════════════════════════════════
   CONTACT
═══════════════════════════════════════ */
#contact { background: var(--gray-bg); }
.contact-info-card {
  background: var(--blue); border-radius: 16px;
  padding: 36px 28px; height: 100%;
  position: relative; overflow: hidden;
}
.contact-info-card::before {
  content: '';
  position: absolute; bottom: -40px; right: -40px;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(44,122,123,.2);
  pointer-events: none;
}
.contact-info-card h4 {
  font-weight: 800; font-size: 22px; color: #fff;
  margin-bottom: 8px;
}
.contact-info-card .ci-sub { color: rgba(255,255,255,.7); font-size: 13.5px; margin-bottom: 32px; }
.ci-item {
  display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px;
}
.ci-item .ci-ic {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--yellow); flex-shrink: 0;
}
.ci-item .ci-label { font-size: 11px; color: rgba(255,255,255,.6); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }
.ci-item .ci-val { font-size: 14px; color: #fff; font-weight: 600; margin-top: 2px; }
.ci-item a { color: #fff; transition: color .2s; }
.ci-item a:hover { color: var(--yellow); }
.social-row { display: flex; gap: 10px; margin-top: 28px; }
.soc-btn {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; color: #fff;
  background: rgba(255,255,255,.15);
  transition: background .2s, transform .2s;
  text-decoration: none;
}
.soc-btn:hover { background: var(--yellow); color: var(--blue); transform: translateY(-2px); }
.wa-btn {
  display: flex; align-items: center; gap: 10px;
  background: #25D366; color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 13.5px;
  padding: 13px 22px; border-radius: 10px;
  margin-top: 28px; transition: background .2s, transform .2s;
  text-decoration: none;
}
.wa-btn:hover { background: #1fb558; color: #fff; transform: translateY(-2px); }

/* Contact Form */
.contact-form-card {
  background: #fff; border-radius: 16px;
  padding: 36px 28px; height: 100%;
  box-shadow: var(--shadow-md);
}
.contact-form-card h4 { font-weight: 800; font-size: 22px; color: var(--blue); margin-bottom: 8px; }
.contact-form-card .cf-sub { color: var(--body-txt); font-size: 13.5px; margin-bottom: 28px; }
.form-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 12px;
  text-transform: uppercase; letter-spacing: .5px;
  color: var(--dark-txt); margin-bottom: 6px;
}
.form-control, .form-select {
  border: 1.5px solid var(--border);
  border-radius: 8px; padding: 12px 14px;
  font-size: 13.5px; color: var(--dark-txt);
  transition: border-color .2s, box-shadow .2s;
}
.form-control:focus, .form-select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(44,122,123,.15);
  outline: none;
}
.form-control.with-icon { padding-left: 42px; }
.input-wrap { position: relative; }
.input-wrap .fi {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  color: var(--teal); font-size: 15px; pointer-events: none;
}
.input-wrap.ta .fi { top: 16px; transform: none; }
textarea.form-control { resize: none; }
.btn-submit {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 15px;
  background: var(--blue); color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800; font-size: 14px; text-transform: uppercase;
  border-radius: 10px; border: none; cursor: pointer;
  transition: background .2s, transform .2s, box-shadow .2s;
  margin-top: 6px;
}
.btn-submit:hover {
  background: var(--blue-mid); transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(26,54,93,.35);
}
/* Success message */
.form-success {
  display: none; text-align: center; padding: 30px 20px;
}
.form-success .fs-icon { font-size: 50px; color: var(--teal); margin-bottom: 14px; }
.form-success h5 { font-weight: 800; color: var(--blue); margin-bottom: 8px; }
.form-success p { color: var(--body-txt); font-size: 14px; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer {
  background: var(--blue-dark);
  padding: 60px 0 0;
}
.footer-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-size: 22px; color: #fff;
  margin-bottom: 14px; display: block;
}
.footer-logo span { color: var(--yellow); }
.footer-desc { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.fsoc {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7); font-size: 15px;
  transition: background .2s, color .2s; text-decoration: none;
}
.fsoc:hover { background: var(--yellow); color: var(--blue); }
.footer-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800; font-size: 13px;
  text-transform: uppercase; letter-spacing: .8px;
  color: #fff; margin-bottom: 20px;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,.6); font-size: 13px;
  display: flex; align-items: center; gap: 8px;
  transition: color .2s;
}
.footer-links a i { font-size: 11px; color: var(--teal); }
.footer-links a:hover { color: var(--yellow); }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px;
}
.footer-contact-item i { color: var(--teal); font-size: 14px; margin-top: 2px; flex-shrink: 0; }
.footer-contact-item span { color: rgba(255,255,255,.65); font-size: 13px; line-height: 1.5; }
.footer-contact-item a { color: rgba(255,255,255,.65); transition: color .2s; }
.footer-contact-item a:hover { color: var(--yellow); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 0; margin-top: 48px;
}
.footer-bottom p { color: rgba(255,255,255,.4); font-size: 12px; margin: 0; }
.footer-bottom a { color: rgba(255,255,255,.5); transition: color .2s; }
.footer-bottom a:hover { color: var(--yellow); }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 991px) {
  .hero-photo-wrap { margin-top: 50px; }
  .hero-photo-wrap::before { display: none; }
  .hero-stat-card.sc1 { left: 0; bottom: -10px; }
  .hero-stat-card.sc2 { right: 0; top: 10px; }
  .about-img-wrap::before { display: none; }
  .about-badge { position: static; margin-top: 16px; display: inline-block; }
}
@media (max-width: 767px) {
  .sec-pad { padding: 56px 0; }
  .step-arrow { display: none; }
  #home { min-height: auto; padding: 30px 0 60px; }
}