/* ═══════════════════════════════════════════════════════════════
   Advocate Rashedul Hasan Kayes — আইনী সেবা Website
   Design System + Components
   ═══════════════════════════════════════════════════════════════ */

/* ── Sabbir Sorolota — বাংলা সংখ্যা font ── */
@font-face {
  font-family: 'Sabbir Sorolota';
  src: url('assets/fonts/SabbirSorolota-num.woff2') format('woff2');
  unicode-range: U+09E6-09EF, U+09F2-09F3, U+09F9;
  font-weight: 400 900;
  font-display: swap;
}

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@400;500;600;700&family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ── Design Tokens ── */
:root {
  /* Colors — Premium Legal Palette */
  --c-primary: #0D6B5E;
  --c-primary-dark: #094E44;
  --c-primary-light: #1A8F6E;
  --c-gold: #C8A951;
  --c-gold-light: #E0C96E;
  --c-gold-dark: #A68B3C;
  --c-emerald: #1A8F6E;
  --c-bg: #FAFAF5;
  --c-bg-alt: #F5F0E8;
  --c-bg-dark: #0D2B26;
  --c-text: #05261F;
  --c-text-light: #2A4A43;
  --c-text-muted: #4F6B65;
  --c-white: #FFFFFF;
  --c-border: #E0DDD4;
  --c-warning-bg: #FFF8E6;
  --c-warning-border: #E8C94A;
  --c-warning-text: #6B5300;

  /* Gradients */
  --g-primary: linear-gradient(135deg, #0D6B5E 0%, #1A8F6E 100%);
  --g-gold: linear-gradient(135deg, #C8A951 0%, #E0C96E 100%);
  --g-hero: linear-gradient(160deg, #0D2B26 0%, #0D6B5E 50%, #094E44 100%);
  --g-dark: linear-gradient(180deg, #0D2B26 0%, #122A25 100%);

  /* Typography */
  --f-bn: 'Sabbir Sorolota', 'Hind Siliguri', sans-serif;
  --f-en: 'Inter', sans-serif;
  --f-heading: 'Sabbir Sorolota', 'Hind Siliguri', sans-serif;

  /* Sizes — clamp() for fluid responsive */
  --fs-hero: clamp(2.2rem, 5vw + 1rem, 4.5rem);
  --fs-h1: clamp(1.8rem, 3.5vw + 0.5rem, 3.2rem);
  --fs-h2: clamp(1.5rem, 3vw + 0.3rem, 2.5rem);
  --fs-h3: clamp(1.2rem, 2vw + 0.3rem, 1.8rem);
  --fs-h4: clamp(1.05rem, 1.5vw + 0.2rem, 1.3rem);
  --fs-body: clamp(0.95rem, 1vw + 0.2rem, 1.1rem);
  --fs-small: clamp(0.82rem, 0.8vw + 0.2rem, 0.95rem);

  /* Spacing */
  --sp-section: clamp(3rem, 6vw, 6rem);
  --sp-gap: clamp(1rem, 2vw, 2rem);
  --sp-card: clamp(1.2rem, 2vw, 2rem);

  /* Layout */
  --max-w: 1200px;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;

  /* Shadows — soft, not harsh */
  --shadow-sm: 0 2px 8px rgba(13, 107, 94, 0.06);
  --shadow-md: 0 4px 20px rgba(13, 107, 94, 0.08);
  --shadow-lg: 0 8px 40px rgba(13, 107, 94, 0.12);
  --shadow-card: 0 2px 16px rgba(13, 43, 38, 0.06);
  --shadow-gold: 0 4px 20px rgba(200, 169, 81, 0.15);

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --dur: 0.35s;
}

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

/* SVG safety net — prevents unsized icons breaking layout */
:where(svg) {
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
}

html {
  /* NO scroll-behavior: smooth — Lenis handles this */
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--f-bn);
  font-size: var(--fs-body);
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Body scroll lock for modals */
body.no-scroll {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--c-primary);
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}

a:hover {
  color: var(--c-gold);
}

ul, ol {
  list-style: none;
}

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1rem, 3vw, 2rem);
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--f-heading);
  line-height: 1.25;
  font-weight: 700;
  color: var(--c-text);
}

.section-title {
  font-size: var(--fs-h1);
  font-weight: 800;
  text-align: center;
  margin-bottom: 0.4em;
  color: var(--c-text);
}

.section-title span {
  color: var(--c-primary);
}

.section-subtitle {
  text-align: center;
  color: var(--c-text-light);
  font-size: var(--fs-body);
  max-width: 650px;
  margin-inline: auto;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

/* বাংলা সংখ্যা utility */
.bn-num {
  font-family: var(--f-bn);
}

/* ── Section Spacing ── */
.section {
  padding-block: var(--sp-section);
}

.section--alt {
  background: var(--c-bg-alt);
}

.section--dark {
  background: var(--g-dark);
  color: var(--c-white);
}

.section--dark .section-title,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--c-white);
}

.section--dark .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

/* ═══════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.4s var(--ease);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.6rem 0;
  box-shadow: var(--shadow-sm);
}

.navbar.scrolled .navbar__logo,
.navbar.scrolled .nav-link {
  color: var(--c-text);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  font-family: var(--f-heading);
  font-size: clamp(1rem, 1.5vw + 0.4rem, 1.3rem);
  font-weight: 700;
  color: var(--c-white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color var(--dur) var(--ease);
}

.navbar__logo svg {
  width: 28px;
  height: 28px;
  color: var(--c-gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  transition: color var(--dur) var(--ease);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--c-gold);
  transition: width var(--dur) var(--ease);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--c-gold);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.3rem;
  background: var(--c-gold);
  color: var(--c-bg-dark) !important;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.88rem;
  transition: all var(--dur) var(--ease);
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  background: var(--c-gold-light);
  color: var(--c-bg-dark) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

.nav-cta svg {
  width: 16px;
  height: 16px;
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--c-white);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

.navbar.scrolled .hamburger span {
  background: var(--c-text);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.hamburger.active span {
  background: var(--c-text) !important;
}

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}

.mobile-menu.active {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.mobile-menu .nav-link {
  color: var(--c-text);
  font-size: 1.2rem;
  font-weight: 600;
}

.mobile-menu .nav-cta {
  font-size: 1rem;
  padding: 0.7rem 1.8rem;
}

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--g-hero);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 43, 38, 0.7) 0%, rgba(13, 107, 94, 0.5) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 850px;
  padding: clamp(1.5rem, 3vw, 3rem);
}

.hero__title {
  font-size: var(--fs-hero);
  font-weight: 900;
  color: var(--c-white);
  line-height: 1.15;
  margin-bottom: 0.5em;
  letter-spacing: -0.02em;
}

.hero__title .highlight {
  color: var(--c-gold);
  display: inline;
}

.hero__subtitle {
  font-size: clamp(1rem, 1.5vw + 0.3rem, 1.3rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5em;
  font-weight: 400;
  line-height: 1.6;
}

.hero__credential {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.2rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(200, 169, 81, 0.3);
  border-radius: 50px;
  color: var(--c-gold-light);
  font-size: var(--fs-small);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero__credential svg {
  width: 16px;
  height: 16px;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--f-bn);
  font-size: var(--fs-body);
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--dur) var(--ease);
  text-decoration: none;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.btn--primary {
  background: var(--c-gold);
  color: var(--c-bg-dark);
}

.btn--primary:hover {
  background: var(--c-gold-light);
  color: var(--c-bg-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn--outline {
  background: transparent;
  color: var(--c-white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn--outline:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
  transform: translateY(-2px);
}

.btn--dark {
  background: var(--c-primary);
  color: var(--c-white);
}

.btn--dark:hover {
  background: var(--c-primary-dark);
  color: var(--c-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ═══════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════ */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.about__image-wrap {
  position: relative;
}

.about__image {
  width: calc(100% - 24px);
  max-width: 320px;
  margin: 12px auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  /* Using border and padding instead of box-shadow to prevent clipping */
  border: 2px solid var(--c-gold);
  padding: 10px;
  background: var(--c-bg);
  position: relative;
}

.about__image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  /* Centering vertically slightly above center to keep head inside the circle */
  object-position: center 15%;
}

.about__image-accent {
  display: none;
}

.about__text h2 {
  font-size: var(--fs-h2);
  font-weight: 800;
  margin-bottom: 0.5em;
}

.about__text h2 span {
  color: var(--c-primary);
}

.about__name {
  font-size: var(--fs-h3);
  color: var(--c-gold-dark);
  font-weight: 700;
  margin-bottom: 0.3em;
}

.about__designation {
  font-size: var(--fs-body);
  color: var(--c-text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.about__bio {
  color: var(--c-text-light);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about__credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.credential-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  background: rgba(13, 107, 94, 0.08);
  color: var(--c-primary);
  border-radius: 50px;
  font-size: var(--fs-small);
  font-weight: 600;
}

.credential-tag svg {
  width: 14px;
  height: 14px;
}

/* ═══════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-gap);
}

.service-card {
  background: var(--c-white);
  border-radius: var(--radius);
  padding: var(--sp-card);
  border: 1px solid var(--c-border);
  transition: all var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--g-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.service-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(13, 107, 94, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--c-primary);
  transition: all var(--dur) var(--ease);
}

.service-card:hover .service-card__icon {
  background: var(--c-primary);
  color: var(--c-white);
}

.service-card__icon svg {
  width: 24px;
  height: 24px;
}

.service-card__title {
  font-size: var(--fs-h4);
  font-weight: 700;
  margin-bottom: 0.4em;
  color: var(--c-text);
}

.service-card__desc {
  font-size: var(--fs-small);
  color: var(--c-text-light);
  line-height: 1.6;
}

/* ═══════════════════════════════════════
   WHY CHOOSE US
   ═══════════════════════════════════════ */
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-gap);
}

.why-card {
  text-align: center;
  padding: var(--sp-card);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  transition: all var(--dur) var(--ease);
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.why-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  background: rgba(200, 169, 81, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gold);
}

.why-card__icon svg {
  width: 26px;
  height: 26px;
}

.why-card__title {
  font-size: var(--fs-h4);
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 0.4em;
}

.why-card__desc {
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

/* ═══════════════════════════════════════
   PROCESS / STEPS
   ═══════════════════════════════════════ */
.process__timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.process__timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--c-border);
}

.process-step {
  display: flex;
  gap: clamp(1.2rem, 2vw, 2rem);
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  position: relative;
}

.process-step__number {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: var(--g-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-bn);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--c-white);
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 6px var(--c-bg);
}

.section--alt .process-step__number {
  box-shadow: 0 0 0 6px var(--c-bg-alt);
}

.process-step__content {
  flex: 1;
  padding-top: 0.5rem;
}

.process-step__content h4 {
  font-size: var(--fs-h4);
  font-weight: 700;
  margin-bottom: 0.3em;
  color: var(--c-text);
}

.process-step__content p {
  font-size: var(--fs-small);
  color: var(--c-text-light);
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   DETAILS / TABS
   ═══════════════════════════════════════ */
.details__tabs {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  flex-wrap: wrap;
}

.tab-btn {
  padding: 0.6rem 1.4rem;
  border: 2px solid var(--c-border);
  background: var(--c-white);
  border-radius: 50px;
  font-family: var(--f-bn);
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--c-text-light);
  cursor: pointer;
  transition: all var(--dur) var(--ease);
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--c-primary);
  color: var(--c-white);
  border-color: var(--c-primary);
}

.tab-content {
  display: none;
  background: var(--c-white);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid var(--c-border);
  line-height: 1.9;
  color: var(--c-text-light);
}

.tab-content.active {
  display: block;
}

.tab-content h4 {
  color: var(--c-primary);
  font-size: var(--fs-h3);
  margin-bottom: 0.8em;
}

.tab-content p {
  margin-bottom: 1em;
}

.tab-content strong {
  color: var(--c-text);
}

/* ═══════════════════════════════════════
   STATS / COUNTERS
   ═══════════════════════════════════════ */
.stats {
  background: var(--g-primary);
  padding-block: clamp(2.5rem, 5vw, 4rem);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-gap);
  text-align: center;
}

.stat-item {
  color: var(--c-white);
}

.stat-item__number {
  font-family: var(--f-bn);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.3em;
  color: var(--c-gold-light);
}

.stat-item__label {
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* ═══════════════════════════════════════
   WARNING / CAUTION SECTION
   ═══════════════════════════════════════ */
.warning-section {
  background: var(--c-warning-bg);
  border-top: 3px solid var(--c-warning-border);
  border-bottom: 3px solid var(--c-warning-border);
}

.warning__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
  max-width: 850px;
  margin: 0 auto;
}

.warning__icon {
  width: 64px;
  height: 64px;
  background: rgba(232, 201, 74, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-warning-text);
}

.warning__icon svg {
  width: 32px;
  height: 32px;
}

.warning__text h3 {
  font-size: var(--fs-h3);
  color: var(--c-warning-text);
  margin-bottom: 0.5em;
}

.warning__text p {
  color: var(--c-warning-text);
  opacity: 0.85;
  line-height: 1.8;
}

/* ═══════════════════════════════════════
   FAQ
   ═══════════════════════════════════════ */
.faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--c-border);
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.2rem 0;
  background: none;
  border: none;
  font-family: var(--f-bn);
  font-size: var(--fs-h4);
  font-weight: 600;
  color: var(--c-text);
  cursor: pointer;
  text-align: left;
  transition: color var(--dur) var(--ease);
}

.faq-item__question:hover {
  color: var(--c-primary);
}

.faq-item__question svg {
  width: 20px;
  height: 20px;
  min-width: 20px;
  color: var(--c-text-muted);
  transition: transform 0.3s var(--ease);
}

.faq-item.active .faq-item__question svg {
  transform: rotate(180deg);
  color: var(--c-primary);
}

.faq-item__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease);
}

.faq-item__answer-inner {
  padding-bottom: 1.2rem;
  color: var(--c-text-light);
  line-height: 1.8;
}

.faq-item.active .faq-item__answer {
  max-height: 500px;
}

/* ═══════════════════════════════════════
   LOCATION
   ═══════════════════════════════════════ */
.location__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-gap);
}

.location-card {
  background: var(--c-white);
  border-radius: var(--radius);
  padding: var(--sp-card);
  border: 1px solid var(--c-border);
}

.location-card__type {
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--c-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.location-card__address {
  font-size: var(--fs-body);
  color: var(--c-text);
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 0.8rem;
}

.location-card__info {
  font-size: var(--fs-small);
  color: var(--c-text-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.location-card__info svg {
  width: 16px;
  height: 16px;
  color: var(--c-primary);
}

.location__map {
  margin-top: var(--sp-gap);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.location__map iframe {
  width: 100%;
  height: 350px;
  border: none;
}

/* ═══════════════════════════════════════
   CTA / CONTACT
   ═══════════════════════════════════════ */
.cta-section {
  text-align: center;
}

.cta-section h2 {
  font-size: var(--fs-h1);
  font-weight: 900;
  color: var(--c-white);
  margin-bottom: 0.4em;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--fs-body);
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

.cta-section__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.contact-info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-gap);
  max-width: 800px;
  margin: 0 auto;
}

.contact-info-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 1.2rem;
  text-align: center;
}

.contact-info-card svg {
  width: 24px;
  height: 24px;
  color: var(--c-gold);
  margin-bottom: 0.6rem;
}

.contact-info-card__label {
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.2rem;
}

.contact-info-card__value {
  font-size: var(--fs-body);
  color: var(--c-white);
  font-weight: 600;
}

.contact-info-card__value a {
  color: var(--c-gold-light);
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer {
  background: var(--c-primary-dark);
  color: rgba(255, 255, 255, 0.7);
  padding-block: clamp(2rem, 4vw, 3rem) clamp(1rem, 2vw, 1.5rem);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--sp-gap);
  padding-bottom: clamp(1.5rem, 3vw, 2rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.footer__brand h4 {
  color: var(--c-white);
  font-size: var(--fs-h4);
  margin-bottom: 0.5em;
}

.footer__brand p {
  font-size: var(--fs-small);
  line-height: 1.7;
}

.footer__col h5 {
  color: var(--c-white);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.8em;
}

.footer__col a {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--fs-small);
  padding: 0.25rem 0;
  transition: color var(--dur) var(--ease);
}

.footer__col a:hover {
  color: var(--c-gold);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: var(--fs-small);
}

.footer__credit a {
  color: var(--c-gold);
  font-weight: 500;
}

.footer__credit a:hover {
  color: var(--c-gold-light);
}

/* ═══════════════════════════════════════
   GSAP Animation Init States
   ═══════════════════════════════════════ */
.gs-reveal {
  opacity: 0;
  transform: translateY(40px);
}

.gs-reveal-left {
  opacity: 0;
  transform: translateX(-50px);
}

.gs-reveal-right {
  opacity: 0;
  transform: translateX(50px);
}

.gs-stagger {
  opacity: 0;
  transform: translateY(30px);
}

/* ═══════════════════════════════════════
   MODAL
   ═══════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 38, 31, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-content {
  background: var(--c-bg);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 650px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(30px) scale(0.95);
  opacity: 0;
  transition: all 0.5s var(--ease);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--c-border);
}

.modal-overlay.active .modal-content {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--c-bg-alt);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-text);
  transition: all var(--dur) var(--ease);
  z-index: 10;
}

.modal-close:hover {
  background: var(--c-warning-bg);
  color: var(--c-warning-text);
  transform: rotate(90deg);
}

.modal-body {
  padding: clamp(2rem, 4vw, 3rem);
}

.modal-icon {
  width: 64px;
  height: 64px;
  background: rgba(13, 107, 94, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary);
  margin-bottom: 1.5rem;
}

.modal-icon svg {
  width: 32px;
  height: 32px;
}

.modal-title {
  font-size: var(--fs-h2);
  font-weight: 800;
  color: var(--c-primary);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.modal-desc {
  font-size: var(--fs-body);
  color: var(--c-text-light);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.modal-details {
  background: var(--c-white);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
}

.modal-details h5 {
  font-size: var(--fs-h4);
  color: var(--c-text);
  margin-bottom: 0.8rem;
}

.modal-details ul {
  list-style: none;
}

.modal-details li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.8rem;
  font-size: var(--fs-small);
  color: var(--c-text-light);
  line-height: 1.6;
}

.modal-details li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C8A951' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.modal-cta {
  margin-top: 2rem;
  display: flex;
  justify-content: flex-start;
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  /* Navbar mobile */
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Hero */
  .hero__content {
    padding: clamp(1rem, 2vw, 2rem);
  }

  /* About */
  .about__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about__image img {
    max-width: 280px;
    margin: 0 auto;
    aspect-ratio: 3/4;
  }

  .about__credentials {
    justify-content: center;
  }

  .about__image-accent {
    display: none;
  }

  /* Services — 2-column grid, NOT single column */
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }

  .service-card {
    padding: clamp(0.8rem, 2vw, 1.2rem);
  }

  .service-card__icon {
    width: 40px;
    height: 40px;
    margin-bottom: 0.7rem;
  }

  .service-card__icon svg {
    width: 20px;
    height: 20px;
  }

  .service-card__title {
    font-size: 0.95rem;
  }

  .service-card__desc {
    font-size: 0.8rem;
  }

  /* Why choose */
  .why__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }

  /* Stats */
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Location */
  .location__grid {
    grid-template-columns: 1fr;
  }

  /* Contact info */
  .contact-info-cards {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  /* Warning */
  .warning__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .warning__icon {
    margin: 0 auto;
  }

  /* Footer */
  .footer__top {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Process timeline */
  .process__timeline::before {
    left: 20px;
  }

  .process-step__number {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 1rem;
  }

  /* Tabs */
  .details__tabs {
    gap: 0.3rem;
  }

  .tab-btn {
    padding: 0.4rem 0.9rem;
    font-size: 0.82rem;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .cta-section__actions {
    flex-direction: column;
    align-items: center;
  }
}
