/* ════════════════════════════════════════════════════════════
   MASTER STYLESHEET – style.css
   Covers: Base / Index · Services · About · Contact
   ════════════════════════════════════════════════════════════ */

/* ── CSS VARIABLES ── */
:root {
  --navy: #0d1b3e;
  --navy-mid: #112257;
  --gold: #fddc00;
  --gold-light: #ffc233;
  --blue-accent: #1a6fe8;
  --blue-bright: #2d8cf0;
  --white: #ffffff;
  --gray-soft: #f4f6fb;
  --text-dark: #111827;
  --text-mid: #4b5563;
  --card-bg: #0e2050;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Barlow', sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ════════════════════════════════════════
   SHARED ANIMATIONS
   ════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes expandLine {
  from { width: 0; }
  to   { width: 60px; }
}

@keyframes ctaSweep {
  from { transform: translateX(-10%); }
  to   { transform: translateX(10%); }
}

@keyframes cardZoomPulse {
  0%   { opacity: 0; transform: scale(0.8); }
  60%  { opacity: 1; transform: scale(1.08); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes floatParticle {
  0%   { transform: translateY(0)     scale(1);   opacity: .6; }
  50%  { transform: translateY(-28px) scale(1.2); opacity: 1; }
  100% { transform: translateY(0)     scale(1);   opacity: .6; }
}

@keyframes badgePulse {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

@keyframes rotateDot {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes dotPulse {
  0%, 100% { transform: scale(1);   opacity: .6; }
  50%       { transform: scale(1.4); opacity: 1; }
}

@keyframes successPop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

/* ════════════════════════════════════════
   NAVBAR
   ════════════════════════════════════════ */
.navbar {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 55%);
  padding: 0.75rem 0;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
}
.navbar-brand img { max-width: 130px; }

.brand-text { line-height: 1; }
.brand-text .t1 { display: block; font-weight: 600; font-size: 1rem; color: var(--navy); letter-spacing: .5px; }
.brand-text .t2 { display: block; font-size: 0.7rem; color: var(--blue-accent); font-weight: 600; letter-spacing: 1px; }

.navbar-nav .nav-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white) !important;
  letter-spacing: .5px;
  padding: 0.5rem 1rem !important;
  transition: color .2s;
}
.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover { color: var(--gold) !important; }

.btn-contact {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: .5px;
  padding: 0.5rem 1.4rem;
  border-radius: 6px;
  border: none;
  transition: background .2s, transform .15s;
}
.btn-contact:hover { background: var(--gold-light); transform: translateY(-1px); }

.navbar-toggler { border: none; outline: none !important; box-shadow: none !important; }
.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,255,255,0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ════════════════════════════════════════
   SHARED TYPOGRAPHY HELPERS
   ════════════════════════════════════════ */
.section-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue-accent);
  display: block;
  margin-bottom: .6rem;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2.5rem;
}

/* ════════════════════════════════════════
   SHARED BUTTONS
   ════════════════════════════════════════ */
.btn-cta {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.7rem 2rem;
  border-radius: 6px;
  border: none;
  letter-spacing: .5px;
  transition: background .2s, transform .15s;
}
.btn-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ════════════════════════════════════════
   SHARED PAGE HERO  (services / about / contact)
   ════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 55%, var(--blue-accent) 100%);
  position: relative;
  overflow: hidden;
  padding: 5rem 0 6rem;
  min-height: 280px;
  display: flex;
  align-items: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 20%; left: -80px;
  width: 280px; height: 280px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.06);
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 70px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.page-hero-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 110px;
  background: var(--blue-bright);
  clip-path: ellipse(60% 100% at 50% 100%);
  opacity: .28;
}

.page-hero-glow {
  position: absolute;
  top: -80px; right: -60px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,168,0,.18) 0%, transparent 70%);
  pointer-events: none;
}

/* floating particles (about + contact) */
.page-hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.page-hero-particles span {
  position: absolute;
  display: block;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  animation: floatParticle linear infinite;
}
.page-hero-particles span:nth-child(1) { width:14px; height:14px; left:10%; top:20%; animation-duration:7s;  animation-delay:0s; }
.page-hero-particles span:nth-child(2) { width:8px;  height:8px;  left:30%; top:60%; animation-duration:9s;  animation-delay:1s; }
.page-hero-particles span:nth-child(3) { width:18px; height:18px; left:55%; top:30%; animation-duration:11s; animation-delay:2s; }
.page-hero-particles span:nth-child(4) { width:6px;  height:6px;  left:70%; top:70%; animation-duration:6s;  animation-delay:.5s; }
.page-hero-particles span:nth-child(5) { width:12px; height:12px; left:85%; top:15%; animation-duration:8s;  animation-delay:1.5s; }
.page-hero-particles span:nth-child(6) { width:10px; height:10px; left:45%; top:80%; animation-duration:10s; animation-delay:3s; }

.page-hero-content {
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: fadeUp .7s ease .15s forwards;
}

.page-hero-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .7rem;
}

.page-hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  margin-bottom: .6rem;
}

.page-hero-line {
  width: 60px;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 1rem;
  animation: expandLine .8s ease .5s both;
}

.page-hero-sub {
  color: rgba(255,255,255,.72);
  font-size: 1rem;
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.page-breadcrumb {
  --bs-breadcrumb-divider-color: rgba(255,255,255,.4);
  --bs-breadcrumb-item-active-color: rgba(255,255,255,.55);
  font-size: 0.82rem;
}
.page-breadcrumb .breadcrumb-item a { color: var(--gold); text-decoration: none; }
.page-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.35); }

/* ════════════════════════════════════════
   SHARED FOOTER
   ════════════════════════════════════════ */
footer {
  background: var(--navy);
  padding: 3.5rem 0 0;
  color: rgba(255,255,255,.7);
}

.footer-brand .t1 { color: var(--white); font-size: 1.1rem; }
.footer-brand .t2 { color: var(--blue-bright); }

.footer-desc {
  font-size: 0.85rem;
  line-height: 1.7;
  margin: 1rem 0 1.5rem;
  color: rgba(255,255,255,.6);
}

.footer-hours {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,.6);
}
.footer-hours i { color: var(--gold); }

.footer-heading {
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: .5px;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: .55rem; }
.footer-links li a {
  color: rgba(255,255,255,.6);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color .2s;
}
.footer-links li a:hover { color: var(--gold); }

.footer-phone {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.6rem 1.4rem;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
  transition: background .2s;
}
.footer-phone:hover { background: var(--gold-light); color: var(--navy); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 2.5rem;
  padding: 1rem 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,.4);
  text-align: center;
}

.number-content {
  position: fixed;
  bottom: 60px;
  right: 30px;
  z-index: 999;
}

/* ════════════════════════════════════════
   HOME PAGE – HERO
   ════════════════════════════════════════ */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 55%, var(--blue-accent) 100%);
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: flex-start;
  padding-top: 60px;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 80px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: var(--blue-bright);
  clip-path: ellipse(60% 100% at 50% 100%);
  opacity: .35;
}

.hero-glow {
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,168,0,.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: .75rem;
}

.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: .25rem;
}
.hero h1 .accent { color: var(--gold); display: block; }

.hero p {
  color: rgba(255,255,255,.75);
  font-size: 0.95rem;
  max-width: 420px;
  line-height: 1.7;
  margin: 1rem 0 1.5rem;
}

.btn-hero {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.7rem 2rem;
  border-radius: 6px;
  border: none;
  letter-spacing: .5px;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(245,168,0,.4);
}
.btn-hero:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245,168,0,.5);
}

.hero-content > * {
  opacity: 0;
  animation: fadeUp .65s ease forwards;
}
.hero-content > *:nth-child(1) { animation-delay: .1s; }
.hero-content > *:nth-child(2) { animation-delay: .25s; }
.hero-content > *:nth-child(3) { animation-delay: .4s; }
.hero-content > *:nth-child(4) { animation-delay: .55s; }

.hero-img-wrap {
  position: relative;
  z-index: 2;
  text-align: right;
  opacity: 0;
  animation: fadeUp .7s ease .3s forwards;
}
.hero-img-wrap img {
  max-height: 420px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.35));
}

/* ════════════════════════════════════════
   HOME PAGE – SERVICES FLIP CARDS
   ════════════════════════════════════════ */
.services-section {
  padding: 5rem 0 4rem;
  background: var(--white);
}

.flip-col { perspective: 1000px; opacity: 0; }

.flip-card {
  width: 100%;
  height: 200px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform .65s cubic-bezier(.4,0,.2,1);
  cursor: pointer;
}

.flip-col:hover .flip-card,
.flip-card.flipped { transform: rotateY(180deg); }

.flip-front,
.flip-back {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
}

.flip-front {
  background: var(--card-bg);
  box-shadow: 0 8px 32px rgba(0,0,0,.22);
}
.flip-front::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(26,111,232,.18) 0%, transparent 65%);
  pointer-events: none;
}

.service-icon {
  width: 66px; height: 66px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 2px solid rgba(255,255,255,.12);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  font-size: 1.65rem;
  color: var(--white);
  transition: background .3s;
  position: relative;
  z-index: 1;
}

.flip-front h5 {
  color: var(--white);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: .3px;
  position: relative;
  z-index: 1;
}

.flip-back {
  background: linear-gradient(135deg, var(--gold) 0%, #e08f00 100%);
  transform: rotateY(180deg);
  box-shadow: 0 8px 36px rgba(245,168,0,.35);
  gap: .5rem;
}

.flip-back .back-icon {
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: .4rem;
}

.flip-back h5 {
  color: var(--navy);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: .3px;
  margin-bottom: .3rem;
}

.flip-back p {
  color: rgba(13,27,62,.75);
  font-size: 0.78rem;
  line-height: 1.5;
  margin: 0;
}

.flip-back .back-btn {
  display: inline-block;
  margin-top: .6rem;
  padding: .35rem 1.1rem;
  background: var(--navy);
  color: var(--gold);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-decoration: none;
  transition: background .2s;
}
.flip-back .back-btn:hover { background: var(--navy-mid); }

/* Scroll entrance for flip cards */
.services-section .flip-col.card-visible {
  animation: cardZoomPulse 0.7s ease forwards;
}
.services-section .flip-col.card-visible:nth-child(1) { animation-delay: 0.00s; }
.services-section .flip-col.card-visible:nth-child(2) { animation-delay: 0.10s; }
.services-section .flip-col.card-visible:nth-child(3) { animation-delay: 0.20s; }
.services-section .flip-col.card-visible:nth-child(4) { animation-delay: 0.30s; }
.services-section .flip-col.card-visible:nth-child(5) { animation-delay: 0.40s; }
.services-section .flip-col.card-visible:nth-child(6) { animation-delay: 0.50s; }
.services-section .flip-col.card-done { opacity: 1; }

/* ════════════════════════════════════════
   HOME PAGE – CONSULTANCY BANNER
   ════════════════════════════════════════ */
.consultancy-banner {
  background: linear-gradient(rgba(11,24,60,.78), rgba(11,24,60,.85)),
              url('images/investment-bg.jpg') center/cover no-repeat;
  padding: 5rem 0;
  text-align: center;
}
.consultancy-banner .section-tag { color: var(--gold); }
.consultancy-banner h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600;
  color: var(--white);
}

/* ════════════════════════════════════════
   HOME PAGE – ABOUT SECTION
   ════════════════════════════════════════ */
.about-section {
  padding: 5rem 0;
  background: var(--white);
}

.about-section .about-img-col,
.about-section .about-content-col { opacity: 0; }

.about-section .about-img-col.about-visible {
  animation: slideInLeftHome 0.75s cubic-bezier(.25,.8,.25,1) forwards;
}
.about-section .about-content-col.about-visible {
  animation: slideInRightHome 0.75s cubic-bezier(.25,.8,.25,1) 0.15s forwards;
}

@keyframes slideInLeftHome {
  from { opacity: 0; transform: translateX(-70px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRightHome {
  from { opacity: 0; transform: translateX(70px); }
  to   { opacity: 1; transform: translateX(0); }
}

.about-img-wrap {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.12);
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }

.certified-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue-accent);
  display: block;
  margin-bottom: .6rem;
}

.about-section h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.about-section p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.check-list { list-style: none; padding: 0; margin: 0 0 1.8rem; }
.check-list li {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: .6rem;
}
.check-list li i { color: var(--blue-accent); font-size: 1rem; flex-shrink: 0; }

/* ════════════════════════════════════════
   SERVICES PAGE – STAT STRIP
   ════════════════════════════════════════ */
.intro-strip {
  background: var(--gray-soft);
  padding: 2.2rem 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.intro-stat {
  padding: .8rem 1rem;
  opacity: 0;
  animation: fadeUp .6s ease forwards;
}
.intro-stat:nth-child(1) { animation-delay: .1s; }
.intro-stat:nth-child(2) { animation-delay: .2s; }
.intro-stat:nth-child(3) { animation-delay: .3s; }
.intro-stat:nth-child(4) { animation-delay: .4s; }

.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
}

.stat-plus {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  vertical-align: top;
  margin-left: 1px;
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-mid);
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-top: .2rem;
}

/* ════════════════════════════════════════
   SERVICES PAGE – SVC CARDS GRID
   ════════════════════════════════════════ */
.svc-grid-section {
  padding: 5rem 0 4rem;
  background: var(--white);
}

.svc-intro-text {
  color: var(--text-mid);
  font-size: .95rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.svc-col {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .55s ease, transform .55s ease;
}
.svc-col:nth-child(2) { transition-delay: .1s; }
.svc-col:nth-child(3) { transition-delay: .2s; }
.svc-col:nth-child(4) { transition-delay: .3s; }
.svc-col:nth-child(5) { transition-delay: .4s; }
.svc-col:nth-child(6) { transition-delay: .5s; }
.svc-col--visible { opacity: 1; transform: translateY(0); }

.svc-card {
  background: var(--card-bg);
  border-radius: 18px;
  padding: 2.2rem 1.8rem 1.8rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: .8rem;
  transition: transform .3s ease, box-shadow .3s ease;
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
}
.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,.3);
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--blue-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.svc-card:hover::before { transform: scaleX(1); }

.svc-card-bg-icon {
  position: absolute;
  bottom: -20px; right: -15px;
  font-size: 8rem;
  color: rgba(255,255,255,.04);
  pointer-events: none;
  transition: transform .4s ease, color .4s ease;
}
.svc-card:hover .svc-card-bg-icon {
  transform: scale(1.1) rotate(-8deg);
  color: rgba(245,168,0,.07);
}

.svc-card-icon-wrap {
  position: relative;
  width: 70px;
  height: 70px;
  margin-bottom: .3rem;
}

.svc-card-icon {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 2px solid rgba(255,255,255,.12);
  display: grid;
  place-items: center;
  font-size: 1.75rem;
  color: var(--white);
  position: relative;
  z-index: 1;
  transition: background .3s, border-color .3s, color .3s, transform .3s;
}
.svc-card:hover .svc-card-icon {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: rotate(10deg) scale(1.1);
}

.svc-card-icon-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px dashed rgba(245,168,0,0);
  transition: border-color .4s ease, transform .5s ease;
}
.svc-card:hover .svc-card-icon-ring {
  border-color: rgba(245,168,0,.5);
  transform: rotate(180deg);
}

.svc-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .3px;
  margin: 0;
}

.svc-card-desc {
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  line-height: 1.65;
  margin: 0;
}

.svc-feature-list {
  list-style: none;
  padding: 0;
  margin: .3rem 0 0;
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.svc-feature-list li {
  font-size: .82rem;
  color: rgba(255,255,255,.7);
  display: flex;
  align-items: center;
  gap: .6rem;
}
.svc-feature-list li i { color: var(--gold); font-size: .7rem; flex-shrink: 0; }

.svc-card-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: auto;
  padding: .5rem 1.3rem;
  background: transparent;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 30px;
  color: var(--white);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .5px;
  text-decoration: none;
  transition: background .25s, border-color .25s, color .25s, gap .25s;
  width: fit-content;
}
.svc-card-btn i { font-size: .7rem; transition: transform .25s; }
.svc-card-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  gap: .8rem;
}
.svc-card-btn:hover i { transform: translateX(3px); }

/* ════════════════════════════════════════
   SERVICES PAGE – HOW IT WORKS
   ════════════════════════════════════════ */
.how-section {
  padding: 5rem 0;
  background: var(--gray-soft);
}

.how-col {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .5s ease, transform .5s ease;
}
.how-col:nth-child(2) { transition-delay: .12s; }
.how-col:nth-child(3) { transition-delay: .24s; }
.how-col:nth-child(4) { transition-delay: .36s; }
.how-col--visible { opacity: 1; transform: translateY(0); }

.how-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem 1.6rem;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
  transition: transform .3s, box-shadow .3s;
  overflow: visible;
}
.how-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(0,0,0,.12);
}

.how-step {
  position: absolute;
  top: -18px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  width: 38px; height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px rgba(245,168,0,.4);
}

.how-icon {
  width: 65px; height: 65px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: grid;
  place-items: center;
  margin: .8rem auto 1.2rem;
  font-size: 1.5rem;
  color: var(--gold);
  transition: transform .3s;
}
.how-card:hover .how-icon { transform: rotate(-10deg) scale(1.1); }

.how-card h5 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .6rem;
}
.how-card p {
  font-size: .85rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin: 0;
}

.how-connector { display: none; }

/* ════════════════════════════════════════
   SERVICES PAGE – CTA BANNER
   ════════════════════════════════════════ */
.svc-cta-banner {
  padding: 5rem 0;
  background: linear-gradient(rgba(11,24,60,.82), rgba(11,24,60,.90)),
              url('images/investment-bg.jpg') center/cover no-repeat;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.svc-cta-banner--visible { opacity: 1; transform: translateY(0); }

.svc-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(245,168,0,.08) 0%, transparent 60%);
  animation: ctaSweep 4s ease infinite alternate;
}

.svc-cta-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: .6rem;
}

.svc-cta-sub { color: rgba(255,255,255,.7); font-size: .95rem; line-height: 1.7; margin: 0; }

.svc-cta-btn {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: .9rem;
  padding: .7rem 1.8rem;
  border-radius: 6px;
  letter-spacing: .5px;
  transition: background .2s, transform .2s;
}
.svc-cta-btn:hover { background: var(--gold-light); transform: translateY(-2px); color: var(--navy); }

.svc-cta-outline-btn {
  background: transparent;
  color: var(--white);
  font-weight: 700;
  font-size: .9rem;
  padding: .7rem 1.8rem;
  border-radius: 6px;
  border: 2px solid rgba(255,255,255,.5);
  letter-spacing: .5px;
  transition: background .2s, border-color .2s, transform .2s;
}
.svc-cta-outline-btn:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

/* ════════════════════════════════════════
   SERVICES PAGE – TESTIMONIALS
   ════════════════════════════════════════ */
.testimonials-section { padding: 5rem 0; background: var(--white); }

.testi-col {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .55s ease, transform .55s ease;
}
.testi-col:nth-child(2) { transition-delay: .12s; }
.testi-col:nth-child(3) { transition-delay: .24s; }
.testi-col--visible { opacity: 1; transform: translateY(0); }

.testi-card {
  background: var(--gray-soft);
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 2px solid transparent;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.testi-card:hover {
  border-color: rgba(26,111,232,.2);
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0,0,0,.08);
}

.testi-card--featured {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 16px 45px rgba(13,27,62,.25);
}
.testi-card--featured:hover { transform: translateY(-12px); border-color: var(--gold); }

.testi-stars { color: var(--gold); font-size: .9rem; letter-spacing: 2px; }

.testi-text {
  font-size: .9rem;
  line-height: 1.75;
  color: var(--text-mid);
  font-style: italic;
  flex: 1;
  margin: 0;
}
.testi-card--featured .testi-text { color: rgba(255,255,255,.75); }

.testi-author { display: flex; align-items: center; gap: .9rem; }

.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-accent), var(--navy-mid));
  color: var(--white);
  font-weight: 700;
  font-size: .85rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.testi-card--featured .testi-avatar { background: linear-gradient(135deg, var(--gold), #e08f00); color: var(--navy); }

.testi-author strong { display: block; font-size: .88rem; color: var(--text-dark); }
.testi-card--featured .testi-author strong { color: var(--white); }

.testi-author span { font-size: .78rem; color: var(--text-mid); }
.testi-card--featured .testi-author span { color: rgba(255,255,255,.55); }

/* ════════════════════════════════════════
   SERVICES PAGE – FAQ
   ════════════════════════════════════════ */
.faq-section { padding: 5rem 0; background: var(--gray-soft); }

.faq-sub { color: var(--text-mid); font-size: .9rem; line-height: 1.7; margin-top: .5rem; }

.faq-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .7s ease, transform .7s ease;
}
.faq-left--visible { opacity: 1; transform: translateX(0); }

.faq-accordion { display: flex; flex-direction: column; gap: .75rem; }

.faq-item {
  border: none;
  border-radius: 12px !important;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

.faq-btn {
  background: var(--white);
  color: var(--navy);
  font-weight: 600;
  font-size: .92rem;
  padding: 1.1rem 1.4rem;
  border: none;
  outline: none;
  box-shadow: none !important;
}
.faq-btn:not(.collapsed) { background: var(--navy); color: var(--gold); }
.faq-btn::after { filter: none; }
.faq-btn:not(.collapsed)::after { filter: invert(1) sepia(1) saturate(3) hue-rotate(5deg); }

.faq-body {
  background: var(--white);
  font-size: .88rem;
  color: var(--text-mid);
  line-height: 1.75;
  padding: 1rem 1.4rem 1.3rem;
}

/* ════════════════════════════════════════
   ABOUT PAGE – STORY SECTION
   ════════════════════════════════════════ */
.about-story-section {
  padding: 5.5rem 0 4.5rem;
  background: var(--white);
}

.story-img-col { opacity: 0; animation: none; }
.story-img-col--vis { animation: slideInLeft .8s cubic-bezier(.25,.8,.25,1) forwards; }

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-60px); }
  to   { opacity: 1; transform: translateX(0); }
}

.story-img-frame { position: relative; padding: 1rem 1rem 1rem 0; }

.story-img-main {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.14);
  position: relative;
  z-index: 1;
}
.story-img-main img {
  width: 100%; height: 440px;
  object-fit: cover; display: block;
  transition: transform .5s ease;
}
.story-img-main:hover img { transform: scale(1.04); }

.story-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 75%; height: 75%;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--gold) 0%, #e08f00 100%);
  opacity: .12;
  z-index: 0;
}

.story-badge {
  position: absolute;
  bottom: 28px; right: -10px;
  z-index: 2;
  background: var(--navy);
  border: 3px solid var(--gold);
  border-radius: 14px;
  padding: .9rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .1rem;
  box-shadow: 0 8px 28px rgba(13,27,62,.35);
  animation: badgePulse 3s ease infinite;
}
.story-badge i { color: var(--gold); font-size: 1.2rem; margin-bottom: .3rem; }
.story-badge-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem; font-weight: 600;
  color: var(--white); line-height: 1;
}
.story-badge-label {
  font-size: .7rem; font-weight: 600;
  color: rgba(255,255,255,.6);
  letter-spacing: .5px; text-transform: uppercase; white-space: nowrap;
}

.story-content-col { opacity: 0; animation: none; }
.story-content-col--vis { animation: slideInRight .8s cubic-bezier(.25,.8,.25,1) .12s forwards; }

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(60px); }
  to   { opacity: 1; transform: translateX(0); }
}

.about-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.about-para { color: var(--text-mid); font-size: .95rem; line-height: 1.8; margin-bottom: 1.2rem; }

.highlight-pill {
  background: var(--gray-soft);
  border: 1px solid rgba(26,111,232,.15);
  border-radius: 30px;
  padding: .45rem 1rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
  transition: background .2s, border-color .2s, transform .2s;
}
.highlight-pill i { color: var(--blue-accent); font-size: .8rem; }
.highlight-pill:hover { background: var(--navy); border-color: var(--navy); color: var(--white); transform: translateY(-2px); }
.highlight-pill:hover i { color: var(--gold); }

.about-check-list { list-style: none; padding: 0; margin: 0 0 2rem; }
.about-check-list li {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.about-check-list li:last-child { border-bottom: none; }
.about-check-list li > i { color: var(--blue-accent); font-size: 1.1rem; margin-top: .1rem; flex-shrink: 0; }
.about-check-list li div strong { display: block; font-size: .9rem; font-weight: 700; color: var(--text-dark); margin-bottom: .2rem; }
.about-check-list li div span { font-size: .83rem; color: var(--text-mid); line-height: 1.6; }

/* ════════════════════════════════════════
   ABOUT PAGE – STATS STRIP
   ════════════════════════════════════════ */
.about-stats-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, var(--card-bg) 100%);
  padding: 0;
  overflow: hidden;
}

.abt-stat-col {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .55s ease, transform .55s ease;
}
.abt-stat-col:nth-child(2) { transition-delay: .1s; }
.abt-stat-col:nth-child(3) { transition-delay: .2s; }
.abt-stat-col:nth-child(4) { transition-delay: .3s; }
.abt-stat-col--vis { opacity: 1; transform: translateY(0); }

.abt-stat {
  padding: 2.5rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
  position: relative;
  overflow: hidden;
  transition: background .3s;
}
.abt-stat-col:last-child .abt-stat { border-right: none; }
.abt-stat:hover { background: rgba(255,255,255,.04); }
.abt-stat::before {
  content: '';
  position: absolute;
  top: -50%; left: -60%;
  width: 40%; height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.05), transparent);
  transform: skewX(-15deg);
  transition: left .5s ease;
}
.abt-stat:hover::before { left: 130%; }

.abt-stat-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(245,168,0,.12);
  border: 1px solid rgba(245,168,0,.25);
  display: grid;
  place-items: center;
  margin: 0 auto .8rem;
  font-size: 1.2rem;
  color: var(--gold);
}

.abt-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.8rem; font-weight: 600;
  color: var(--white); line-height: 1;
}
.abt-stat-suffix {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.8rem; font-weight: 700;
  color: var(--gold); vertical-align: top; margin-left: 1px;
}
.abt-stat-label {
  display: block;
  font-size: .78rem; font-weight: 600;
  letter-spacing: .5px; text-transform: uppercase;
  color: rgba(255,255,255,.5); margin-top: .4rem;
}

/* ════════════════════════════════════════
   ABOUT PAGE – CORE VALUES
   ════════════════════════════════════════ */
.values-section { padding: 5.5rem 0 4.5rem; background: var(--gray-soft); }

.values-intro { color: var(--text-mid); font-size: .95rem; max-width: 520px; margin: 0 auto; line-height: 1.7; }

.val-col {
  opacity: 0; transform: translateY(40px);
  transition: opacity .55s ease, transform .55s ease;
}
.val-col:nth-child(2) { transition-delay: .1s; }
.val-col:nth-child(3) { transition-delay: .2s; }
.val-col:nth-child(4) { transition-delay: .3s; }
.val-col--vis { opacity: 1; transform: translateY(0); }

.val-card {
  background: var(--white);
  border-radius: 18px;
  padding: 2.2rem 1.8rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
  border: 2px solid transparent;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.val-card:hover { border-color: rgba(26,111,232,.18); transform: translateY(-7px); box-shadow: 0 18px 48px rgba(0,0,0,.1); }

.val-card--gold {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(13,27,62,.22);
}
.val-card--gold:hover { transform: translateY(-12px); box-shadow: 0 24px 60px rgba(13,27,62,.28); }

.val-icon-wrap {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-accent), var(--navy));
  display: grid; place-items: center;
  margin: 0 auto 1.2rem;
  font-size: 1.6rem; color: var(--white);
  transition: transform .35s ease;
}
.val-card:hover .val-icon-wrap { transform: rotateY(180deg); }
.val-card--gold .val-icon-wrap { background: linear-gradient(135deg, var(--gold), #e08f00); color: var(--navy); }

.val-title { font-family: 'Barlow Condensed', sans-serif; font-size: 1.25rem; font-weight: 700; color: var(--text-dark); margin-bottom: .7rem; }
.val-card--gold .val-title { color: var(--white); }

.val-desc { font-size: .85rem; color: var(--text-mid); line-height: 1.7; margin: 0; }
.val-card--gold .val-desc { color: rgba(255,255,255,.65); }

.val-number {
  position: absolute;
  bottom: -18px; right: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 5.5rem; font-weight: 600;
  color: rgba(0,0,0,.04); line-height: 1;
  pointer-events: none;
}
.val-card--gold .val-number { color: rgba(255,255,255,.05); }

/* ════════════════════════════════════════
   ABOUT PAGE – WHY CHOOSE US
   ════════════════════════════════════════ */
.why-section { padding: 5.5rem 0; background: var(--white); }

.why-content-col {
  opacity: 0; transform: translateX(-50px);
  transition: opacity .75s ease, transform .75s ease;
}
.why-content-col--vis { opacity: 1; transform: translateX(0); }

.why-list { display: flex; flex-direction: column; gap: 1.4rem; margin-top: 1.8rem; }

.why-item {
  display: flex; align-items: flex-start; gap: 1.1rem;
  opacity: 0; transform: translateX(-30px);
  transition: opacity .5s ease, transform .5s ease;
}
.why-item:nth-child(2) { transition-delay: .1s; }
.why-item:nth-child(3) { transition-delay: .2s; }
.why-item:nth-child(4) { transition-delay: .3s; }
.why-item--vis { opacity: 1; transform: translateX(0); }

.why-item-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: grid; place-items: center;
  font-size: 1.1rem; color: var(--gold);
  flex-shrink: 0;
  transition: transform .3s, background .3s;
}
.why-item:hover .why-item-icon { transform: rotate(-8deg) scale(1.1); background: linear-gradient(135deg, var(--gold), #e08f00); color: var(--navy); }

.why-item-text h6 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--text-dark); margin-bottom: .3rem; }
.why-item-text p { font-size: .85rem; color: var(--text-mid); line-height: 1.65; margin: 0; }

.why-img-col {
  opacity: 0; transform: translateX(50px);
  transition: opacity .75s ease .15s, transform .75s ease .15s;
}
.why-img-col--vis { opacity: 1; transform: translateX(0); }

.why-img-wrap { position: relative; border-radius: 20px; overflow: visible; }
.why-img-wrap img {
  width: 100%; height: 460px;
  object-fit: cover; border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0,0,0,.15);
  display: block; position: relative; z-index: 1;
  transition: transform .4s ease;
}
.why-img-wrap:hover img { transform: scale(1.02); }

.why-img-badge {
  position: absolute;
  bottom: -22px; left: -18px; z-index: 2;
  background: var(--gold); color: var(--navy);
  border-radius: 12px; padding: .9rem 1.3rem;
  display: flex; align-items: center; gap: .6rem;
  font-weight: 700; font-size: .9rem;
  box-shadow: 0 8px 28px rgba(245,168,0,.4);
  white-space: nowrap;
  animation: badgePulse 3s ease infinite;
}
.why-img-badge i { font-size: 1.1rem; }

.why-img-dot { position: absolute; border-radius: 50%; z-index: 0; }
.why-img-dot--1 { width: 80px; height: 80px; border: 3px solid rgba(245,168,0,.3); top: -24px; right: -24px; animation: rotateDot 8s linear infinite; }
.why-img-dot--2 { width: 130px; height: 130px; border: 2px dashed rgba(26,111,232,.2); bottom: 30px; right: -40px; animation: rotateDot 12s linear infinite reverse; }

/* ════════════════════════════════════════
   ABOUT PAGE – TEAM
   ════════════════════════════════════════ */
.team-section { padding: 5.5rem 0 4.5rem; background: var(--gray-soft); }

.team-col {
  opacity: 0; transform: translateY(40px);
  transition: opacity .55s ease, transform .55s ease;
}
.team-col:nth-child(2) { transition-delay: .1s; }
.team-col:nth-child(3) { transition-delay: .2s; }
.team-col:nth-child(4) { transition-delay: .3s; }
.team-col--vis { opacity: 1; transform: translateY(0); }

.team-card {
  background: var(--white);
  border-radius: 18px; overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
  border: 2px solid transparent;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  height: 100%;
}
.team-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,.12); border-color: rgba(26,111,232,.15); }

.team-card--featured { border-color: var(--gold); transform: translateY(-8px); box-shadow: 0 16px 48px rgba(13,27,62,.18); }
.team-card--featured:hover { transform: translateY(-14px); box-shadow: 0 28px 60px rgba(13,27,62,.22); }

.team-img-wrap { position: relative; overflow: hidden; height: 240px; }
.team-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; transition: transform .45s ease; }
.team-card:hover .team-img-wrap img { transform: scale(1.07); }

.team-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,27,62,.85) 0%, transparent 55%);
  display: flex; align-items: flex-end; justify-content: center;
  gap: .8rem; padding-bottom: 1rem;
  opacity: 0; transition: opacity .35s ease;
}
.team-card:hover .team-overlay { opacity: 1; }

.team-overlay a {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gold); color: var(--navy);
  display: grid; place-items: center;
  font-size: .85rem; text-decoration: none;
  transition: background .2s, transform .2s;
}
.team-overlay a:hover { background: var(--white); transform: translateY(-3px); }

.team-info { padding: 1.4rem 1.5rem 1.6rem; }

.team-name { font-family: 'Barlow Condensed', sans-serif; font-size: 1.2rem; font-weight: 700; color: var(--text-dark); margin-bottom: .15rem; }

.team-role { font-size: .78rem; font-weight: 600; letter-spacing: .8px; text-transform: uppercase; color: var(--blue-accent); }
.team-card--featured .team-role { color: var(--gold); }

.team-divider { width: 36px; height: 2px; background: var(--gold); border-radius: 2px; margin: .7rem 0; }

.team-bio { font-size: .83rem; color: var(--text-mid); line-height: 1.65; margin: 0; }

/* ════════════════════════════════════════
   ABOUT PAGE – CONSULTANCY BANNER
   ════════════════════════════════════════ */
.about-consultancy { position: relative; overflow: hidden; }

.consultancy-sweep {
  position: absolute; inset: 0;
  background: linear-gradient(45deg, rgba(245,168,0,.07) 0%, transparent 55%);
  animation: ctaSweep 5s ease infinite alternate;
}

.consultancy-sub { color: rgba(255,255,255,.65); font-size: .95rem; margin: .5rem 0 0; }

.consultancy-btn {
  background: var(--gold); color: var(--navy);
  font-weight: 700; font-size: .9rem;
  padding: .7rem 2rem; border-radius: 6px; border: none; letter-spacing: .5px;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(245,168,0,.35);
}
.consultancy-btn:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(245,168,0,.5); color: var(--navy); }

/* ════════════════════════════════════════
   CONTACT PAGE – INFO CARDS
   ════════════════════════════════════════ */
.contact-cards-section { padding: 4rem 0 3rem; background: var(--gray-soft); }

.ccard-col {
  opacity: 0; transform: translateY(35px);
  transition: opacity .55s ease, transform .55s ease;
}
.ccard-col:nth-child(2) { transition-delay: .1s; }
.ccard-col:nth-child(3) { transition-delay: .2s; }
.ccard-col:nth-child(4) { transition-delay: .3s; }
.ccard-col--vis { opacity: 1; transform: translateY(0); }

.ccard {
  background: var(--white);
  border-radius: 16px; padding: 2rem 1.5rem;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  height: 100%;
  border: 2px solid transparent;
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.ccard:hover { transform: translateY(-7px); box-shadow: 0 16px 44px rgba(0,0,0,.11); border-color: rgba(26,111,232,.15); }

.ccard--featured {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-color: var(--gold); transform: translateY(-6px);
  box-shadow: 0 14px 44px rgba(13,27,62,.22);
}
.ccard--featured:hover { transform: translateY(-12px); }

.ccard-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: grid; place-items: center;
  font-size: 1.4rem; color: var(--gold);
  margin-bottom: .5rem;
  transition: transform .3s;
}
.ccard:hover .ccard-icon { transform: rotate(-10deg) scale(1.1); }
.ccard--featured .ccard-icon { background: rgba(255,255,255,.12); }

.ccard-title { font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--text-dark); margin: 0; }
.ccard--featured .ccard-title { color: var(--white); }

.ccard-value { font-weight: 700; font-size: .95rem; color: var(--blue-accent); text-decoration: none; transition: color .2s; }
.ccard-value:hover { color: var(--gold); }
.ccard--featured .ccard-value { color: var(--gold); }

.ccard-note { font-size: .78rem; color: var(--text-mid); }
.ccard--featured .ccard-note { color: rgba(255,255,255,.55); }

/* ════════════════════════════════════════
   CONTACT PAGE – MAIN FORM SECTION
   ════════════════════════════════════════ */
.contact-main-section { padding: 5rem 0; position: relative; background: var(--white); overflow: hidden; }

.contact-main-bg {
  position: absolute; inset: 0;
  background: linear-gradient(rgba(11,24,60,.82), rgba(11,24,60,.90)),
              url('images/CONTACT-BG.jpg') center/cover no-repeat;
  z-index: 0;
}

.contact-info-col {
  opacity: 0; transform: translateX(-50px);
  transition: opacity .75s ease, transform .75s ease;
}
.contact-info-col--vis { opacity: 1; transform: translateX(0); }

.contact-info-panel {
  background: linear-gradient(145deg, var(--navy) 0%, var(--card-bg) 100%);
  border-radius: 20px 0 0 20px;
  padding: 3rem 2.5rem; height: 100%;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; gap: 1.2rem;
}

.contact-info-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700; color: var(--white); line-height: 1.15; margin: 0;
}

.contact-info-sub { font-size: .9rem; color: rgba(255,255,255,.62); line-height: 1.75; margin: 0; }

.contact-detail-list { display: flex; flex-direction: column; gap: 1rem; margin: .5rem 0; }

.contact-detail-item {
  display: flex; align-items: center; gap: 1rem;
  text-decoration: none; padding: .85rem 1rem;
  border-radius: 12px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  transition: background .25s, border-color .25s, transform .25s;
}
.contact-detail-item:hover { background: rgba(245,168,0,.12); border-color: rgba(245,168,0,.3); transform: translateX(5px); }
.contact-detail-item--plain:hover { transform: none; cursor: default; }

.contact-detail-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(245,168,0,.15); border: 1px solid rgba(245,168,0,.25);
  display: grid; place-items: center;
  font-size: 1rem; color: var(--gold); flex-shrink: 0;
  transition: background .25s;
}
.contact-detail-item:hover .contact-detail-icon { background: var(--gold); color: var(--navy); }

.contact-detail-text { display: flex; flex-direction: column; gap: .05rem; }
.contact-detail-label { font-size: .72rem; font-weight: 600; letter-spacing: .8px; text-transform: uppercase; color: rgba(255,255,255,.45); }
.contact-detail-value { font-size: .9rem; font-weight: 700; color: var(--white); }

.contact-social { margin-top: auto; }
.contact-social-label { display: block; font-size: .72rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: .7rem; }
.contact-social-links { display: flex; gap: .6rem; }
.csocial-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  display: grid; place-items: center;
  color: var(--white); font-size: .85rem; text-decoration: none;
  transition: background .25s, border-color .25s, transform .25s, color .25s;
}
.csocial-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); transform: translateY(-3px); }

.info-dot { position: absolute; border-radius: 50%; pointer-events: none; }
.info-dot--1 { width: 160px; height: 160px; border: 2px solid rgba(255,255,255,.04); bottom: -50px; right: -50px; }
.info-dot--2 { width: 80px; height: 80px; background: rgba(245,168,0,.06); top: 50px; right: 20px; animation: dotPulse 4s ease infinite; }

.contact-form-col {
  opacity: 0; transform: translateX(50px);
  transition: opacity .75s ease .12s, transform .75s ease .12s;
}
.contact-info-col--vis + .contact-form-col {
  opacity: 1; transform: translateX(0);
  transition: opacity .75s ease .2s, transform .75s ease .2s;
}

.contact-form-panel {
  background: var(--white);
  border-radius: 0 20px 20px 0;
  padding: 3rem 2.5rem; height: 100%;
}

.form-panel-title { font-family: 'Barlow Condensed', sans-serif; font-size: 1.8rem; font-weight: 700; color: var(--navy); margin-bottom: .3rem; }
.form-panel-sub { font-size: .88rem; color: var(--text-mid); margin-bottom: 1.8rem; line-height: 1.65; }

.form-group-anim {
  opacity: 0; transform: translateY(20px);
  transition: opacity .45s ease, transform .45s ease;
}
.form-group-anim:nth-child(2)  { transition-delay: .05s; }
.form-group-anim:nth-child(3)  { transition-delay: .10s; }
.form-group-anim:nth-child(4)  { transition-delay: .15s; }
.form-group-anim:nth-child(5)  { transition-delay: .20s; }
.form-group-anim:nth-child(6)  { transition-delay: .25s; }
.form-group-anim:nth-child(7)  { transition-delay: .30s; }
.form-group-anim--vis { opacity: 1; transform: translateY(0); }

.cform-label { display: block; font-size: .82rem; font-weight: 700; color: var(--navy); margin-bottom: .45rem; letter-spacing: .3px; }

.cform-input-wrap { position: relative; }

.cform-icon {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  font-size: .85rem; color: var(--text-mid);
  pointer-events: none; transition: color .25s; z-index: 1;
}
.cform-icon--top { top: 16px; transform: none; }

.cform-input {
  width: 100%;
  background: var(--gray-soft);
  border: 1.5px solid rgba(0,0,0,.08); border-radius: 10px;
  padding: .72rem 1rem .72rem 2.6rem;
  font-family: 'Barlow', sans-serif; font-size: .9rem; color: var(--text-dark);
  outline: none;
  transition: border-color .25s, box-shadow .25s, background .25s;
  appearance: none; -webkit-appearance: none;
}
.cform-input:focus { background: var(--white); border-color: var(--blue-accent); box-shadow: 0 0 0 3px rgba(26,111,232,.12); }
.cform-input-wrap:focus-within .cform-icon { color: var(--blue-accent); }
.cform-input--error { border-color: #e53e3e !important; box-shadow: 0 0 0 3px rgba(229,62,62,.1) !important; }
.cform-input--ok { border-color: #38a169 !important; }

.cform-select-wrap .cform-select-arrow { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); font-size: .75rem; color: var(--text-mid); pointer-events: none; }

.cform-textarea { padding-top: .85rem; resize: vertical; min-height: 130px; }

.cform-error { display: none; font-size: .75rem; color: #e53e3e; margin-top: .3rem; font-weight: 600; }

.cform-submit-btn {
  width: 100%;
  background: linear-gradient(90deg, var(--blue-accent) 0%, var(--blue-bright) 100%);
  color: var(--white); font-weight: 700; font-size: 1rem;
  padding: .85rem 2rem; border-radius: 10px; border: none; letter-spacing: .5px;
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  transition: filter .25s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(26,111,232,.35);
}
.cform-submit-btn:hover:not(:disabled) { filter: brightness(1.1); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(26,111,232,.45); color: var(--white); }
.cform-submit-btn:disabled { opacity: .7; cursor: not-allowed; }

.form-success {
  flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 3rem 2rem;
  animation: fadeUp .6s ease forwards;
}
.form-success-icon { font-size: 3.5rem; color: #38a169; margin-bottom: 1rem; animation: successPop .5s cubic-bezier(.18,.89,.32,1.28) forwards; }
.form-success h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.8rem; font-weight: 700; color: var(--navy); margin-bottom: .5rem; }
.form-success p { font-size: .9rem; color: var(--text-mid); line-height: 1.7; }

/* ════════════════════════════════════════
   CONTACT PAGE – MAP & QUICK STRIP
   ════════════════════════════════════════ */
.map-section { position: relative; line-height: 0; overflow: hidden; }
.map-section iframe { display: block; filter: grayscale(.3) contrast(1.05); }

.map-overlay-label {
  position: absolute; top: 16px; left: 50%; transform: translateX(-50%); z-index: 2;
  background: var(--navy); color: var(--white);
  border: 2px solid var(--gold); border-radius: 30px;
  padding: .5rem 1.4rem;
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .82rem; font-weight: 700; white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
}
.map-overlay-label i { color: var(--gold); font-size: 1rem; }

.quick-contact-strip {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, var(--card-bg) 100%);
  padding: 3.5rem 0;
  opacity: 0; transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.quick-contact-strip--vis { opacity: 1; transform: translateY(0); }

.qstrip-title { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; color: var(--white); margin-bottom: .4rem; }
.qstrip-sub { font-size: .88rem; color: rgba(255,255,255,.6); line-height: 1.65; margin: 0; }

.qstrip-btn-gold {
  background: var(--gold); color: var(--navy);
  font-weight: 700; font-size: .9rem;
  padding: .7rem 1.8rem; border-radius: 6px; border: none; letter-spacing: .5px;
  transition: background .2s, transform .2s;
}
.qstrip-btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); color: var(--navy); }

.qstrip-btn-outline {
  background: transparent; color: var(--white);
  font-weight: 700; font-size: .9rem;
  padding: .7rem 1.8rem; border-radius: 6px;
  border: 2px solid rgba(255,255,255,.4); letter-spacing: .5px;
  transition: background .2s, border-color .2s, transform .2s;
}
.qstrip-btn-outline:hover { background: rgba(255,255,255,.1); border-color: var(--white); color: var(--white); transform: translateY(-2px); }

/* Privacy Policy Section */

.privacy-policy-section {
    padding: 100px 0;
    background: #ffffff;
}

.section-heading {
    max-width: 800px;
    margin: 0 auto 70px;
}

.section-heading .subtitle {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #2f6df6;
    margin-bottom: 15px;
}

.section-heading h2 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    color: #111827;
    margin-bottom: 20px;
}

.section-heading p {
    font-size: 18px;
    line-height: 1.8;
    color: #6b7280;
}

/* Policy Content */

.policy-content {
    max-width: 1000px;
    margin: 0 auto;
}

.policy-block {
    background: #fff;
    padding: 35px 40px;
    border-radius: 16px;
    margin-bottom: 25px;
    border: 1px solid #edf0f7;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.policy-block:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.policy-block h3 {
    font-size: 28px;
    font-weight: 700;
    color: #0b1f5b;
    margin-bottom: 18px;
    position: relative;
    padding-left: 18px;
}

.policy-block h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 5px;
    height: 28px;
    border-radius: 10px;
    background: #ffd400;
}

.policy-block p {
    color: #6b7280;
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 15px;
}

.policy-block ul {
    padding-left: 0;
    margin: 20px 0 0;
    list-style: none;
}

.policy-block ul li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 12px;
    color: #4b5563;
    line-height: 1.8;
}

.policy-block ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    line-height: 22px;
    text-align: center;
    border-radius: 50%;
    background: #ffd400;
    color: #0b1f5b;
    font-size: 12px;
    font-weight: 700;
}

/* Utilities */

.mb-50 {
    margin-bottom: 40px;
}

.mb-60 {
    margin-bottom: 50px;
}

.text-center {
    text-align: center;
}

/* Responsive */

@media (max-width: 991px) {

    .privacy-policy-section {
        padding: 60px 0;
    }

    .section-heading h2 {
        font-size: 42px;
    }

    .policy-block {
        padding: 30px;
    }

    .policy-block h3 {
        font-size: 24px;
    }
}

@media (max-width: 767px) {

    .section-heading h2 {
        font-size: 34px;
    }

    .section-heading p,
    .policy-block p,
    .policy-block ul li {
        font-size: 16px;
    }

    .policy-block {
        padding: 25px;
    }

    .policy-block h3 {
        font-size: 22px;
    }
}

/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */

/* ── Tablet (≤ 991px) ── */
@media (max-width: 991.98px) {
  /* Home */
  .hero { min-height: auto; padding: 3rem 0 5rem; }
  .hero-img-wrap { text-align: center; margin-top: 2rem; }
  .hero-img-wrap img { max-height: 280px; display: none; }
  .hero::after { height: 50px; }

  /* Shared page hero */
  .page-hero { padding: 4rem 0 5rem; }

  /* Services */
  .how-connector { display: none !important; }

  /* About */
  .why-img-wrap img { height: 360px; }
  .story-img-main img { height: 360px; }
  .story-badge { right: 8px; }
  .why-img-badge { left: 10px; bottom: -16px; font-size: .82rem; }
  .why-img-dot--2 { display: none; }

  /* Contact */
  .contact-info-panel  { border-radius: 20px 20px 0 0; }
  .contact-form-panel  { border-radius: 0 0 20px 20px; }
  .contact-info-col  { opacity: 1; transform: none; }
  .contact-form-col  { opacity: 1; transform: none; }
}

/* ── Mobile (≤ 767px) ── */
@media (max-width: 767.98px) {

    .navbar-collapse {
        position: fixed;
        top: 66px;
        background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 55%);
        width: 100%;
        padding: 5px 10px 25px;
        left: 0;
    }
    .navbar {
        position: relative;
    }
  /* Home */
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 0.9rem; }
  .services-section { padding: 3rem 0; }
  .about-section { padding: 3rem 0; }
  .consultancy-banner { padding: 3rem 0; }
  footer { padding: 2.5rem 0 0; }
  .footer-phone { margin-top: 1rem; }

  /* Shared page hero */
  .page-hero { padding: 3.5rem 0 4.5rem; }
  .page-hero-title { font-size: 2.8rem; }

  /* Services */
  .svc-grid-section, .how-section, .testimonials-section, .faq-section { padding: 3.5rem 0; }
  .svc-cta-banner { padding: 3.5rem 0; }
  .intro-strip { padding: 1.5rem 0; }
  .testi-card--featured { transform: translateY(0); }
  /* .faq-left { transform: translateX(0); opacity: 0; } */
  .svc-card { padding: 1.8rem 1.4rem 1.5rem; }

  /* About */
  .about-story-section, .values-section, .why-section, .team-section { padding: 3.5rem 0; }
  .story-img-main img { height: 280px; }
  .why-img-wrap img { height: 280px; }
  .abt-stat { padding: 2rem 1rem; border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .abt-stat-col:last-child .abt-stat { border-bottom: none; }
  .team-card--featured { transform: translateY(0); }
  .val-card--gold { transform: translateY(0); }
  .story-badge { right: 6px; bottom: 10px; }
  .why-img-badge { position: static; margin-top: 1rem; display: inline-flex; }
  .why-img-dot { display: none; }
  .why-content-col { transform: translateY(20px); }
  .why-img-col     { transform: translateY(20px); }

  /* Contact */
  .contact-cards-section { padding: 3rem 0 2rem; }
  .contact-main-section  { padding: 3.5rem 0; }
  .contact-info-panel { padding: 2.2rem 1.5rem; }
  .contact-form-panel { padding: 2.2rem 1.5rem; }
  .ccard--featured { transform: translateY(0); }
  .quick-contact-strip { padding: 2.5rem 0; }
  .qstrip-btn-gold, .qstrip-btn-outline { width: 100%; text-align: center; }
  .map-section iframe { height: 280px; }
  .map-overlay-label { font-size: .75rem; padding: .4rem 1rem; }
}

/* ── Small mobile (≤ 575px) ── */
@media (max-width: 575.98px) {
  .page-hero-title { font-size: 2.2rem; }
  .stat-num { font-size: 2.2rem; }
  .svc-cta-btn, .svc-cta-outline-btn { width: 100%; text-align: center; }
  .abt-stat-num { font-size: 2.2rem; }
  .val-icon-wrap { width: 58px; height: 58px; font-size: 1.3rem; }
  .about-highlights .col-6 { flex: 0 0 100%; max-width: 100%; }
  .contact-form-panel { padding: 1.8rem 1.2rem; }
  .contact-info-panel { padding: 1.8rem 1.2rem; }
  .cform-submit-btn { font-size: .9rem; }
}

/* ── Connector arrows (desktop only) ── */
@media (min-width: 768px) {
  .how-connector {
    display: block;
    position: absolute;
    top: 35px; right: -28px;
    width: 28px; height: 2px;
    background: var(--gold); z-index: 1;
  }
  .how-connector::after {
    content: '';
    position: absolute;
    right: -1px; top: 50%; transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--gold);
  }
}


/* ════════════════════════════════════════
   CONTACT DRAWER (slide-in from right)
   ════════════════════════════════════════ */

/* Overlay backdrop */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 50, 0.55);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
}
.drawer-backdrop.drawer-open {
  opacity: 1;
  visibility: visible;
}

/* Drawer panel */
.contact-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 340px;
  height: 100%;
  z-index: 1101;
  display: flex;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.4, 0, .2, 1);
  box-shadow: -8px 0 48px rgba(0,0,0,.25);
}
.contact-drawer.drawer-open {
  transform: translateX(0);
}

.drawer-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13,27,62,.7) 0%, rgba(13,27,62,.1) 100%);
}

/* Right form panel */
.drawer-form-panel {
  flex: 1;
  background: var(--white);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  padding: 2.5rem 2.2rem 2.5rem;
  position: relative;
}

/* Close button */
.drawer-close {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--text-mid);
  border-radius: 50%;
  transition: background .2s, color .2s;
  padding: 0;
  line-height: 1;
}
.drawer-close:hover {
  background: var(--gray-soft);
  color: var(--text-dark);
}

/* Drawer title */
.drawer-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.1;
  margin: 2.2rem 0 1.8rem;
}

/* Drawer form fields */
.drawer-form .drawer-field {
  margin-bottom: 1.2rem;
}

.drawer-form label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: .45rem;
  letter-spacing: .2px;
}

.drawer-form input,
.drawer-form select,
.drawer-form textarea {
  width: 100%;
  border: 1.5px solid #d1d9e8;
  border-radius: 10px;
  padding: .75rem 1rem;
  font-family: 'Barlow', sans-serif;
  font-size: .92rem;
  color: var(--text-dark);
  background: var(--white);
  outline: none;
  transition: border-color .25s, box-shadow .25s;
  appearance: none;
  -webkit-appearance: none;
}

.drawer-form input::placeholder,
.drawer-form textarea::placeholder {
  color: #b0bac8;
}

.drawer-form input:focus,
.drawer-form select:focus,
.drawer-form textarea:focus {
  border-color: var(--blue-accent);
  box-shadow: 0 0 0 3px rgba(26,111,232,.12);
}

.drawer-form input.field-error,
.drawer-form textarea.field-error {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229,62,62,.1);
}

.drawer-form .field-error-msg {
  display: none;
  font-size: .75rem;
  color: #e53e3e;
  margin-top: .3rem;
  font-weight: 600;
}

.drawer-form textarea {
  resize: vertical;
  min-height: 140px;
}

/* Submit button */
.drawer-submit-btn {
  width: 100%;
  background: var(--blue-accent);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: .9rem 2rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  letter-spacing: .5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  transition: filter .25s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(26,111,232,.35);
  margin-top: .4rem;
}
.drawer-submit-btn:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,111,232,.45);
}
.drawer-submit-btn:disabled {
  opacity: .7;
  cursor: not-allowed;
  transform: none;
}

/* Drawer success state */
.drawer-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1;
  padding: 2rem 1rem;
  animation: fadeUp .5s ease forwards;
}
.drawer-success-icon {
  font-size: 3.5rem;
  color: #38a169;
  margin-bottom: 1rem;
  animation: successPop .5s cubic-bezier(.18,.89,.32,1.28) forwards;
}
.drawer-success h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .5rem;
}
.drawer-success p {
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 300px;
}

/* ── Responsive ── */
@media (min-width: 640px) {
  .drawer-img-panel { display: block; }
}

@media (max-width: 639px) {
  .contact-drawer { max-width: 100%; }
  .drawer-form-panel { padding: 2rem 1.5rem; }
  .drawer-title { margin-top: 2.8rem; font-size: 2rem; }
}

/* prevent body scroll when drawer is open */
body.drawer-active { overflow: hidden; }
