/* ============================================
   CODIVORA — Professional Clean Theme
   Fonts : Poppins (body) + Montserrat (headings)
   Palette: White / Light-gray / Charcoal / Black
            #FF8C4B used sparingly as single accent
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ---- VARIABLES ---- */
:root {
  --accent   : #FF8C4B;
  --black    : #0A0A0A;
  --charcoal : #1A1A1A;
  --dark     : #111827;
  --mid      : #374151;
  --gray     : #6B7280;
  --border   : #E5E7EB;
  --surface  : #F9FAFB;
  --white    : #FFFFFF;
  --font-body   : 'Poppins', sans-serif;
  --font-heading: 'Montserrat', sans-serif;
  --radius   : 12px;
  --shadow   : 0 1px 3px rgba(0,0,0,0.07), 0 4px 16px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 8px rgba(0,0,0,0.06), 0 12px 32px rgba(0,0,0,0.07);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; background: #111; }
body.has-page-hero { background: #1a1a1a; }
body {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--charcoal);
  background: #111;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; color: var(--charcoal); }
p  { font-size: 14px; color: var(--gray); }
a  { text-decoration: none; }
img { display: block; max-width: 100%; }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--surface); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

/* ============================================
   NAVBAR
   ============================================ */
#navbar {
  position: fixed;
  top: 0 !important; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: padding 0.3s ease, background 0.3s ease, border 0.3s ease;
  background: transparent;
}
#navbar.scrolled {
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* Logo images */
.nav-logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  display: block;
  opacity: 0.9;
}

.nav-link {
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
  position: relative;
  padding-bottom: 3px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--white);
  transition: width 0.25s ease;
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--white);
  color: var(--charcoal) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.2s;
  font-family: var(--font-body);
}
.nav-cta:hover { background: var(--accent); color: var(--white) !important; }
.nav-cta::after { display: none !important; }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu-custom {
  position: absolute;
  top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--white);
  border-radius: var(--radius);
  min-width: 270px;
  white-space: nowrap;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
  opacity: 0; visibility: hidden;
  transition: all 0.25s ease;
  padding: 0.4rem 0;
  border: 1px solid var(--border);
}
.dropdown:hover .dropdown-menu-custom {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-item-custom {
  display: flex; align-items: center; gap: 10px;
  padding: 0.6rem 1.1rem;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--mid);
  transition: all 0.15s;
}
.dropdown-item-custom i { font-size: 12px; color: var(--gray); width: 14px; text-align: center; }
.dropdown-item-custom:hover { color: var(--charcoal); background: var(--surface); }
.dropdown-item-custom:hover i { color: var(--accent); }

#mobile-menu { background: rgba(10,10,10,0.98); backdrop-filter: blur(16px); }

/* ============================================
   HERO
   ============================================ */
#hero { min-height: 100vh; position: relative; overflow: hidden; background: var(--black); }
.hero-swiper { width: 100%; height: 100vh; }
.hero-slide { display: flex; align-items: center; position: relative; overflow: hidden; }
.hero-bg-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.04);
  transition: transform 7s ease;
}
.swiper-slide-active .hero-bg-img { transform: scale(1); }
.hero-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.82) 40%, rgba(0,0,0,0.35) 100%);
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.25rem;
}
.hero-eyebrow-line {
  display: inline-block; width: 28px; height: 1px;
  background: var(--accent);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.5px;
}
.hero-title .hl { color: var(--accent); }

.hero-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  max-width: 480px;
  margin-bottom: 2rem;
  line-height: 1.85;
}

.btn-dark {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white);
  color: var(--charcoal);
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-weight: 600; font-size: 13.5px;
  transition: all 0.2s;
  border: none; cursor: pointer;
}
.btn-dark:hover { background: var(--accent); color: var(--white); transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: rgba(255,255,255,0.75);
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-weight: 500; font-size: 13.5px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.6); color: var(--white); }

/* Hero stat bar */
.hero-stats {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-stat-item { padding: 1.25rem 2rem; border-right: 1px solid rgba(255,255,255,0.08); }
.hero-stat-item:last-child { border-right: none; }
.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 1.75rem; font-weight: 800;
  color: var(--white); line-height: 1;
}
.hero-stat-num .acc { color: var(--accent); }
.hero-stat-label { font-size: 11px; color: rgba(255,255,255,0.4); font-weight: 500; letter-spacing: 0.5px; margin-top: 3px; }

/* Swiper controls */
.hero-swiper .swiper-pagination { bottom: 100px; }
.hero-swiper .swiper-pagination-bullet {
  background: rgba(255,255,255,0.35); width: 6px; height: 6px; opacity: 1;
}
.hero-swiper .swiper-pagination-bullet-active {
  background: var(--white); width: 22px; border-radius: 3px;
}
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px; color: var(--white);
  transition: all 0.2s;
}
.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover { background: var(--white); color: var(--charcoal); }
.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after { font-size: 12px; font-weight: 700; }

/* ============================================
   SHARED SECTION STYLES
   ============================================ */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.75rem;
}
.section-label::before {
  content: '';
  display: inline-block; width: 20px; height: 1.5px;
  background: var(--accent); flex-shrink: 0;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: 22px; font-weight: 800;
  color: var(--charcoal); margin-bottom: 0.85rem;
  letter-spacing: -0.3px;
}

.section-body {
  font-size: 14px; color: var(--gray);
  line-height: 1.85; max-width: 540px;
}

.divider { width: 36px; height: 2px; background: var(--accent); margin: 1rem 0; border-radius: 1px; }

/* Primary button (used in body content) */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--charcoal);
  color: var(--white);
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-weight: 600; font-size: 13.5px;
  transition: all 0.2s;
  border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--accent); transform: translateY(-1px); color: var(--white); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--charcoal);
  padding: 0.73rem 1.73rem;
  border-radius: 8px;
  font-weight: 600; font-size: 13.5px;
  border: 1.5px solid var(--border);
  transition: all 0.2s;
}
.btn-outline:hover { border-color: var(--charcoal); color: var(--charcoal); }

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px; height: 480px;
}
.about-img-card {
  border-radius: var(--radius); overflow: hidden; position: relative;
}
.about-img-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.about-img-card:hover img { transform: scale(1.04); }
.about-img-card.span-row { grid-row: span 2; }

.experience-badge {
  position: absolute; bottom: 18px; right: 18px;
  width: 96px; height: 96px;
  background: var(--white);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  z-index: 2;
}
.exp-num {
  font-family: var(--font-heading);
  font-size: 24px; font-weight: 800;
  color: var(--charcoal); line-height: 1;
}
.exp-num sup { font-size: 14px; color: var(--accent); }
.exp-label { font-size: 9.5px; font-weight: 600; color: var(--gray); text-align: center; line-height: 1.35; margin-top: 2px; }

.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.1rem 1.25rem;
  transition: all 0.25s;
}
.stat-card:hover { border-color: var(--charcoal); box-shadow: var(--shadow); }
.stat-num {
  font-family: var(--font-heading);
  font-size: 1.75rem; font-weight: 800;
  color: var(--charcoal); line-height: 1;
}
.stat-label { font-size: 12px; color: var(--gray); font-weight: 500; margin-top: 4px; }

/* ============================================
   SERVICE CARDS
   ============================================ */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.75rem;
  transition: all 0.25s ease;
  cursor: pointer;
}
.service-card:hover {
  border-color: var(--charcoal);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.svc-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--mid);
  margin-bottom: 1.25rem;
  transition: all 0.2s;
}
.service-card:hover .svc-icon { background: var(--charcoal); color: var(--white); border-color: var(--charcoal); }

.svc-title {
  font-family: var(--font-heading);
  font-size: 15px; font-weight: 700;
  color: var(--charcoal); margin-bottom: 0.6rem;
}
.svc-desc { font-size: 13.5px; color: var(--gray); line-height: 1.75; }
.svc-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12.5px; font-weight: 600;
  color: var(--gray); margin-top: 1.1rem;
  transition: all 0.2s;
}
.svc-link:hover { color: var(--accent); gap: 9px; }
.svc-link i { font-size: 10px; }

/* ============================================
   FEATURE / WHY US
   ============================================ */
#why-us { background: var(--charcoal); }

.feature-row {
  display: flex; gap: 1.25rem; align-items: flex-start;
  padding: 1.25rem;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  transition: all 0.25s;
}
.feature-row:hover {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.14);
}
.feature-icon-wrap {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: rgba(255,255,255,0.7);
}
.feature-title {
  font-family: var(--font-heading);
  font-size: 14.5px; font-weight: 700;
  color: var(--white); margin-bottom: 4px;
}
.feature-desc { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.7; }

/* ============================================
   PROCESS
   ============================================ */
.process-num {
  font-family: var(--font-heading);
  font-size: 3.5rem; font-weight: 900;
  color: var(--border); line-height: 1;
}
.process-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; color: var(--mid);
  margin: 0 auto 0.85rem;
  transition: all 0.25s;
}
.process-step:hover .process-icon {
  background: var(--charcoal); border-color: var(--charcoal);
  color: var(--white);
}
.process-title {
  font-family: var(--font-heading);
  font-size: 15px; font-weight: 700;
  color: var(--charcoal); margin-bottom: 0.4rem;
}
.process-desc { font-size: 13.5px; color: var(--gray); line-height: 1.7; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testi-swiper { padding-bottom: 3rem !important; }

.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.75rem;
  height: auto; position: relative;
  transition: all 0.25s;
}
.testi-swiper .swiper-slide { height: auto !important; align-self: flex-start; }
.testi-swiper .swiper-wrapper { height: fit-content; }
#testimonials .section-heading { color: var(--charcoal); }
#testimonials .section-body    { color: var(--gray); }
.testi-card:hover { border-color: var(--charcoal); box-shadow: var(--shadow-md); }

.testi-quote {
  position: absolute; top: 1.25rem; right: 1.5rem;
  font-size: 2.5rem; font-family: Georgia, serif;
  color: var(--border); line-height: 1;
}
.testi-body {
  font-size: 13.5px; color: var(--gray);
  line-height: 1.85; font-style: italic; margin-bottom: 1.25rem;
}
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 15px; flex-shrink: 0;
}
.testi-name { font-family: var(--font-heading); font-size: 14px; font-weight: 700; color: var(--charcoal); }
.testi-role { font-size: 12px; color: var(--gray); }
.star { color: var(--accent); font-size: 12px; }

.testi-swiper .swiper-pagination-bullet { background: var(--border); opacity: 1; }
.testi-swiper .swiper-pagination-bullet-active { background: var(--charcoal); width: 20px; border-radius: 3px; }

/* ============================================
   CTA  — floating white card overlapping footer
   ============================================ */
#cta {
  background: transparent;
  padding: 0 1.5rem;
  position: relative;
  z-index: 10;
  background-color: white !important;
  padding-bottom: 10rem;
 
}

.cta-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 12px 60px rgba(0,0,0,0.1);
  padding: 1.5rem 2rem;
  width: 90%;
  max-width: 95%;
  margin: 0 auto;
  margin-bottom: -72px;
  position: relative;
  z-index: 10;
  text-align: center;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 800;
  color: var(--charcoal);
  letter-spacing: -0.3px;
}
.btn-accent {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent);
  color: var(--white);
  padding: 0.8rem 1.85rem;
  border-radius: 8px;
  font-weight: 600; font-size: 13.5px;
  transition: all 0.2s;
  border: none; cursor: pointer;
}
.btn-accent:hover { background: #e57d3f; transform: translateY(-1px); color: var(--white); }

.btn-ghost-light {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--mid);
  padding: 0.78rem 1.73rem;
  border-radius: 8px;
  font-weight: 500; font-size: 13.5px;
  border: 1.5px solid var(--border);
  transition: all 0.2s;
}
.btn-ghost-light:hover { border-color: var(--charcoal); color: var(--charcoal); }

/* ============================================
   FOOTER
   ============================================ */
footer { background: var(--black); padding-top: 100px; }
.footer-heading {
  font-family: var(--font-heading);
  font-size: 13px; font-weight: 700;
  color: var(--white); margin-bottom: 1rem;
  letter-spacing: 0.3px;
}
.footer-link {
  display: block;
  font-size: 13px; color: rgba(255,255,255,0.45);
  padding: 0.28rem 0; transition: color 0.2s;
}
.footer-link:hover { color: rgba(255,255,255,0.85); }
.footer-desc { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.8; }
.social-btn {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); font-size: 13px;
  transition: all 0.2s;
}
.social-btn:hover { background: var(--accent); border-color: var(--accent); color: var(--white); }
.footer-divider { border-color: rgba(255,255,255,0.07); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-policy { font-size: 12px; color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-policy:hover { color: rgba(255,255,255,0.6); }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  background: #1a1a1a;
  padding: 7.5rem 0 3.5rem;
  position: relative; overflow: hidden;
  margin-top: -2rem;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: var(--border);
}
.page-hero-title {
  font-family: var(--font-heading);
  font-size: 32px; font-weight: 800;
  color: var(--white); position: relative; z-index: 1;
  letter-spacing: -0.3px;
}
.page-hero-sub { font-size: 14px; color: rgba(255,255,255,0.5); margin-top: 0.5rem; position: relative; z-index: 1; }
.breadcrumb-nav { font-size: 12.5px; color: rgba(255,255,255,0.4); position: relative; z-index: 1; }
.breadcrumb-nav a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.breadcrumb-nav a:hover { color: var(--white); }
.breadcrumb-sep { margin: 0 6px; color: rgba(255,255,255,0.2); }

/* ============================================
   CONTACT
   ============================================ */
.contact-field-label {
  display: block; font-size: 12.5px; font-weight: 600;
  color: var(--mid); margin-bottom: 6px;
}
.contact-input {
  width: 100%;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 8px; padding: 0.75rem 1rem;
  font-family: var(--font-body); font-size: 13.5px;
  color: var(--charcoal); transition: all 0.2s; outline: none;
}
.contact-input:focus {
  border-color: var(--charcoal);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(26,26,26,0.06);
}
.contact-input::placeholder { color: #BBBFC5; }

.info-row {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.1rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white); transition: all 0.2s;
}
.info-row:hover { border-color: var(--charcoal); }
.info-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  border-radius: 8px; background: var(--surface);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: var(--mid);
}
.info-label { font-size: 11px; font-weight: 600; color: var(--gray); text-transform: uppercase; letter-spacing: 0.5px; }
.info-value { font-size: 13.5px; font-weight: 500; color: var(--charcoal); margin-top: 1px; }

/* Service detail page */
.svc-detail-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: all 0.25s;
}
.svc-detail-card:hover { border-color: var(--charcoal); box-shadow: var(--shadow-md); }
.svc-detail-head { padding: 1.75rem; border-bottom: 1px solid var(--border); background: var(--surface); }
.svc-detail-body { padding: 1.75rem; }
.check-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px; color: var(--mid); padding: 0.35rem 0;
}
.check-item::before {
  content: '';
  width: 16px; height: 16px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--surface); border: 1px solid var(--border);
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='6' viewBox='0 0 8 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 3L3 5L7 1' stroke='%23374151' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* Team card */
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: all 0.25s;
}
.team-card:hover { border-color: var(--charcoal); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.team-avatar {
  height: 220px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; color: var(--border);
  font-family: var(--font-heading); font-weight: 800;
}
.team-name { font-family: var(--font-heading); font-size: 15px; font-weight: 700; color: var(--charcoal); }
.team-role { font-size: 12px; color: var(--gray); margin-top: 2px; }

/* ============================================
   ANIMATIONS
   ============================================ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   RESPONSIVE — Comprehensive
   ============================================ */

/* ---- 1280px — large desktop ---- */
@media (max-width: 1280px) {
  .results-img   { height: 420px; }
  .about-img-grid { height: 420px; }
}

/* ---- 1024px — tablet landscape ---- */
@media (max-width: 1024px) {
  .hero-stats    { display: none; }
  .results-img   { height: 360px; }
  .about-img-grid { height: 340px; }
  .book-card     { position: static; }
}

/* ---- 768px — tablet portrait ---- */
@media (max-width: 768px) {
  /* Navbar */
  .nav-logo-img  { height: 34px; }

  /* Hero — 45vh on mobile */
  .hero-swiper .swiper-button-next,
  .hero-swiper .swiper-button-prev { display: none !important; }
  .hero-swiper .swiper-pagination  { bottom: 16px; }
  .hero-swiper   { height: 45vh !important; min-height: 340px; }
  .hero-slide    { height: 45vh !important; min-height: 340px; }
  #hero          { min-height: 0; }
  .hero-content  { padding-top: 5rem !important; padding-bottom: 1.5rem !important; }
  .hero-title    { font-size: 1.65rem; line-height: 1.15; }
  .hero-desc     { font-size: 13px; margin-bottom: 1.25rem; max-width: 100%; }

  /* Page hero */
  .page-hero     { padding: 5.5rem 0 2.5rem; }
  .page-hero-title { font-size: 26px; }
  .page-hero-sub { font-size: 13px; }

  /* About */
  .about-img-grid { height: 260px; }
  .experience-badge { width: 74px; height: 74px; }
  .exp-num       { font-size: 18px; }
  .exp-label     { font-size: 8px; }

  /* Stats */
  .stat-num      { font-size: 1.5rem; }

  /* Results */
  .results-img   { height: 300px; }
  .results-badge { bottom: -10px; right: -8px; padding: 0.75rem 1rem; }
  .results-badge-num { font-size: 1.4rem; }

  /* Counters */
  .counter-cell  { padding: 1.75rem 1rem; }
  .counter-num   { font-size: 1.9rem; }

  /* Book card */
  .book-card     { padding: 1.75rem; position: static; }

  /* Process */
  .process-num   { font-size: 2.75rem; }

  /* CTA card */
  .cta-card      { width: 96%; padding: 1.5rem 1.5rem; margin-bottom: -56px; border-radius: 16px; }

  /* Footer */
  footer         { padding-top: 80px; }

  /* Project images */
  .project-card img { height: 220px; }

  /* Section heading */
  .section-heading { font-size: 20px; }
}

/* ---- 640px — large mobile ---- */
@media (max-width: 640px) {
  /* Hero */
  .hero-title    { font-size: 1.75rem; line-height: 1.15; }
  .hero-desc     { font-size: 13px; max-width: 100%; }
  .hero-content  { padding-top: 5.5rem !important; padding-bottom: 3.5rem !important; padding-left: 1.25rem !important; padding-right: 1.25rem !important; }
  .hero-content .max-w-xl { max-width: 100%; }
  .hero-swiper .swiper-pagination  { bottom: 14px; }

  /* Page hero */
  .page-hero     { padding: 5rem 0 2rem; }
  .page-hero-title { font-size: 22px; }

  /* About grid — show only the tall left image */
  .about-img-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    height: 240px;
  }
  .about-img-card.span-row { grid-row: span 1; }
  .about-img-card:not(.span-row) { display: none; }

  /* Results badge — pull out of absolute flow */
  .results-img-wrap { padding-bottom: 0; }
  .results-badge {
    position: static;
    margin-top: 1rem;
    display: inline-flex; gap: 0.75rem; align-items: center;
    border-radius: 12px;
  }

  /* Section heading / body */
  .section-heading { font-size: 19px; }
  .section-body    { font-size: 13.5px; }

  /* Service cards */
  .service-card  { padding: 1.25rem; }
  .svc-icon      { width: 42px; height: 42px; font-size: 1rem; margin-bottom: 1rem; }

  /* Counter */
  .counter-cell  { padding: 1.25rem 0.75rem; }
  .counter-num   { font-size: 1.65rem; }
  .counter-label { font-size: 11px; }

  /* HIW */
  .hiw-icon      { width: 44px; height: 44px; font-size: 0.95rem; }

  /* Book card */
  .book-card     { padding: 1.25rem; border-radius: 12px; }
  .book-title    { font-size: 18px; }

  /* Talk cards */
  .talk-card     { padding: 1.5rem 1rem; }
  .talk-icon     { width: 50px; height: 50px; font-size: 1.05rem; }

  /* Results */
  .results-img   { height: 240px; border-radius: 12px; }
  .result-icon   { width: 40px; height: 40px; font-size: 0.9rem; }
  .result-title  { font-size: 14px; }

  /* Process */
  .process-num   { font-size: 2.25rem; }
  .process-icon  { width: 44px; height: 44px; font-size: 1rem; }
  .process-title { font-size: 14px; }

  /* Testimonials */
  .testi-card    { padding: 1.25rem; }

  /* CTA card */
  .cta-card      { width: 100%; border-radius: 12px; padding: 1.25rem 1rem; margin-bottom: -44px; }
  .cta-title     { font-size: 1.15rem; }

  /* Footer */
  footer         { padding-top: 68px; }
  .footer-logo-img { height: 30px; }

  /* Project images */
  .project-card img { height: 200px; }

  /* Info rows (contact page) */
  .info-row      { flex-direction: column; gap: 0.75rem; }

  /* Buttons — full-width stacked on mobile */
  .btn-dark, .btn-ghost, .btn-primary, .btn-accent, .btn-outline {
    padding: 0.72rem 1.35rem; font-size: 13px;
  }
}

/* ---- Mobile nav link touch targets ---- */
@media (max-width: 1023px) {
  #mobile-menu .nav-link  { padding-top: 0.85rem; padding-bottom: 0.85rem; font-size: 14px; display: block; }
  #mobile-menu a          { min-height: 44px; display: flex; align-items: center; }
  #mobile-services-menu a { min-height: 40px; display: flex; align-items: center; }
  .talk-card              { text-align: center; }
  .about-img-grid         { width: 100%; }
  .results-img-wrap       { width: 100%; }
}

/* ---- 480px — small mobile ---- */
@media (max-width: 480px) {
  .hero-title    { font-size: 1.45rem; }
  .hero-content  { padding-top: 5rem !important; padding-bottom: 3rem !important; }
  .page-hero-title { font-size: 19px; }
  .section-heading { font-size: 17px; }
  .stat-num      { font-size: 1.3rem; }
  .counter-num   { font-size: 1.45rem; }
  .results-img   { height: 200px; }
  .about-img-grid { height: 200px; }
  .cta-card      { margin-bottom: -36px; }
  .cta-title     { font-size: 1.05rem; }
  .nav-logo-img  { height: 30px; }
  .project-card img { height: 180px; }
  .book-card     { padding: 1rem; }
  .book-title    { font-size: 16px; }
  .hiw-title     { font-size: 14px; }
  .talk-title    { font-size: 14px; }
  .result-title  { font-size: 13.5px; }
}

/* ============================================
   COUNTERS SECTION
   ============================================ */
.counter-cell {
  background: rgba(255,255,255,0.04);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: background 0.25s;
}
.counter-cell:hover { background: rgba(255,255,255,0.07); }
.counter-icon {
  font-size: 1.25rem;
  color: var(--accent);
  margin-bottom: 0.6rem;
}
.counter-num {
  font-family: var(--font-heading);
  font-size: 2.25rem; font-weight: 800;
  color: var(--white); line-height: 1;
  margin-bottom: 0.4rem;
}
.counter-label {
  font-size: 12px; font-weight: 500;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.3px;
}

/* ============================================
   HOW IT WORKS STEPS
   ============================================ */
.hiw-step {
  display: flex; gap: 1.1rem; align-items: flex-start;
}
.hiw-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--mid);
  margin-top: 2px;
  transition: all 0.25s;
}
.hiw-step:hover .hiw-icon {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--white);
}
.hiw-num {
  font-size: 10px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 3px;
}
.hiw-title {
  font-family: var(--font-heading);
  font-size: 16px; font-weight: 700;
  color: var(--charcoal); margin-bottom: 5px;
}
.hiw-desc { font-size: 13.5px; color: var(--gray); line-height: 1.75; }

/* ============================================
   BOOK ONLINE CARD
   ============================================ */
.book-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 100px;
}
.book-title {
  font-family: var(--font-heading);
  font-size: 22px; font-weight: 800;
  color: var(--charcoal); margin-bottom: 0.4rem;
}
.book-sub {
  font-size: 13.5px; color: var(--gray);
  line-height: 1.7; margin-bottom: 1.75rem;
}

/* ============================================
   LET'S TALK CARDS
   ============================================ */
.talk-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all 0.25s;
}
.talk-card:hover { transform: translateY(-4px); border-color: var(--charcoal); }
.talk-icon {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--mid);
  margin: 0 auto 1rem;
  transition: all 0.25s;
}
.talk-card:hover .talk-icon { background: var(--charcoal); color: var(--white); border-color: var(--charcoal); }
.talk-title {
  font-family: var(--font-heading);
  font-size: 16px; font-weight: 700;
  color: var(--charcoal); margin-bottom: 0.5rem;
}
.talk-desc {
  font-size: 13px; color: var(--gray);
  line-height: 1.75; margin-bottom: 1.25rem;
}
.talk-btn {
  display: inline-block;
  font-size: 13px; font-weight: 600;
  color: var(--charcoal);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 0.45rem 1.5rem;
  transition: all 0.2s;
}
.talk-btn:hover { background: var(--charcoal); color: var(--white); border-color: var(--charcoal); }

/* ============================================
   GETTING REAL RESULTS
   ============================================ */
.results-img-wrap {
  position: relative;
  border-radius: 16px; overflow: visible;
}
.results-img {
  width: 100%; height: 480px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--border);
}
.results-badge {
  position: absolute;
  bottom: -16px; right: -16px;
  background: var(--charcoal);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.results-badge-num {
  font-family: var(--font-heading);
  font-size: 1.75rem; font-weight: 800;
  color: var(--white); line-height: 1;
}
.results-badge-label {
  font-size: 11px; color: rgba(255,255,255,0.5);
  font-weight: 500; margin-top: 3px; letter-spacing: 0.3px;
}

.result-item {
  display: flex; gap: 1rem; align-items: flex-start;
}
.result-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--mid);
  margin-top: 2px;
  transition: all 0.25s;
}
.result-item:hover .result-icon { background: var(--charcoal); color: var(--white); border-color: var(--charcoal); }
.result-title {
  font-family: var(--font-heading);
  font-size: 16px; font-weight: 700;
  color: var(--charcoal); margin-bottom: 4px;
}
.result-desc { font-size: 13.5px; color: var(--gray); line-height: 1.75; }

/* ============================================
   PROJECTS SECTION
   ============================================ */
.project-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--charcoal);
  cursor: pointer;
}
.project-card img {
  width: 100%; height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, opacity 0.4s ease;
}
.project-card:hover img { transform: scale(1.06); opacity: 0.5; }

.project-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, transparent 55%);
  transition: background 0.35s;
}
.project-card:hover .project-overlay {
  background: rgba(10,10,10,0.55);
}
.project-tag {
  display: inline-block;
  font-size: 10px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.project-name {
  font-family: var(--font-heading);
  font-size: 16px; font-weight: 700;
  color: var(--white); line-height: 1.3;
}
.project-view {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-top: 8px;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.3s ease;
}
.project-card:hover .project-view { opacity: 1; transform: translateY(0); }

/* ============================================
   UTILITIES
   ============================================ */
.text-accent { color: var(--accent); }
.bg-surface  { background: var(--surface); }
.border-std  { border: 1px solid var(--border); }
