/* ============================================================
   GLOBAL RESET & VARIABLES
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy:        #1b2a47;
  --navy-dark:   #101d33;
  --navy-deeper: #0a1220;
  --gold:        #c4972a;
  --gold-light:  #dab84a;
  --gold-dim:    rgba(196, 151, 42, 0.15);
  --white:       #ffffff;
  --off-white:   #f7f8fa;
  --text:        #1a1f2e;
  --text-muted:  #6b7280;
  --border:      rgba(0, 0, 0, 0.08);
  --shadow-sm:   0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-md:   0 6px 30px rgba(0, 0, 0, 0.10);
  --shadow-lg:   0 16px 60px rgba(0, 0, 0, 0.14);
  --radius:      14px;
  --radius-sm:   8px;
  --ease:        0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Heebo', -apple-system, BlinkMacSystemFont, sans-serif;
  direction: rtl;
  text-align: right;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform-origin: right;
  transform: scaleX(0);
  z-index: 9999;
  transition: transform 0.1s linear;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

section { padding: 96px 0; }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid rgba(196, 151, 42, 0.25);
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-header p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
}

.section-header.light .section-label {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--gold-light);
}

.section-header.light h2 { color: var(--white); }
.section-header.light p  { color: rgba(255, 255, 255, 0.65); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  font-family: 'Heebo', sans-serif;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(196, 151, 42, 0.35);
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(196, 151, 42, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(196, 151, 42, 0.3);
  font-size: 16px;
  padding: 16px 30px;
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(196, 151, 42, 0.45);
}

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

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 22px 0;
  transition: all var(--ease);
}

.navbar.scrolled {
  background: rgba(16, 29, 51, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.3);
}

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

.logo {
  text-decoration: none;
  cursor: pointer;
}

/* Logo image in navbar */
.logo-img {
  height: 54px;
  width: auto;
  background: white;
  border-radius: 8px;
  padding: 4px 10px;
  display: block;
  transition: all var(--ease);
}

.logo:hover .logo-img {
  transform: scale(1.03);
  box-shadow: 0 4px 16px rgba(196, 151, 42, 0.3);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all var(--ease);
}

.nav-links a:hover {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.07);
}

.nav-links a.active {
  color: var(--gold);
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  padding: 9px 20px !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
}

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

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

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: calc(100vh - 120px);
  background: #0a1220;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* ── Slideshow ── */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.8s ease;
  will-change: transform, opacity;
}

.hero-slide.active {
  opacity: 1;
  animation: kenBurns 9s ease-out forwards;
}

.hero-slide.prev {
  opacity: 0;
  animation: none;
}

@keyframes kenBurns {
  from { transform: scale(1)    translateX(0); }
  to   { transform: scale(1.09) translateX(-1%); }
}

/* Alternate direction for variety */
.hero-slide:nth-child(2).active {
  animation: kenBurns2 9s ease-out forwards;
}
.hero-slide:nth-child(3).active {
  animation: kenBurns3 9s ease-out forwards;
}

@keyframes kenBurns2 {
  from { transform: scale(1)    translateX(0); }
  to   { transform: scale(1.09) translateX(1%); }
}
@keyframes kenBurns3 {
  from { transform: scale(1.04) translateY(0); }
  to   { transform: scale(1.12) translateY(-2%); }
}

/* ── Dark gradient overlay ── */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(6, 12, 24, 0.45) 0%,
      rgba(6, 12, 24, 0.30) 35%,
      rgba(6, 12, 24, 0.70) 75%,
      rgba(6, 12, 24, 0.88) 100%
    );
  z-index: 1;
}

/* ── Gold accent line ── */
.hero-gold-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 40%, var(--gold-light) 60%, transparent 100%);
  z-index: 3;
  opacity: 0.7;
}

/* ── Slide Dots ── */
.hero-dots {
  position: absolute;
  bottom: 72px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 4;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.4s ease;
}

.hero-dot.active {
  width: 28px;
  border-radius: 4px;
  background: var(--gold);
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding-top: 120px;
  padding-bottom: 80px;
  width: 100%;
}

.hero-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0.9;
}

.hero h1 {
  font-size: clamp(42px, 7vw, 82px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 22px;
  letter-spacing: -1px;
}

.hero-tagline {
  font-size: clamp(17px, 2.2vw, 22px);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 44px;
  line-height: 1.65;
  font-weight: 300;
}

.hero-tagline span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9em;
}

.hero-quote {
  margin: -16px 0 40px;
  padding: 20px 0;
  border-top: 1px solid rgba(196, 151, 42, 0.3);
  border-bottom: 1px solid rgba(196, 151, 42, 0.3);
}

.hero-quote p {
  font-size: clamp(14px, 1.8vw, 18px);
  color: rgba(255, 255, 255, 0.65);
  font-weight: 300;
  line-height: 1.8;
  font-style: italic;
}

.hero-quote p + p {
  margin-top: 2px;
}

.hero-quote em {
  font-style: normal;
  color: var(--gold);
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.badge {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}

.badge-divider {
  color: rgba(255, 255, 255, 0.2);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255, 255, 255, 0.3);
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  transform: rotate(45deg);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.4; }
  50% { transform: rotate(45deg) translateY(5px); opacity: 0.8; }
}

/* ============================================================
   QUOTE BANNER
   ============================================================ */
.quote-banner {
  background: var(--navy-deeper);
  padding: 40px 0;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
}

.quote-banner .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.quote-mark {
  font-size: 72px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.4;
  font-family: Georgia, serif;
  user-select: none;
  flex-shrink: 0;
  margin-top: -12px;
}

.quote-text {
  border: none;
  padding: 0;
  margin: 0;
}

.quote-text p {
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  font-style: italic;
  letter-spacing: 0.02em;
}

.quote-text p + p { margin-top: 2px; }

.quote-text em {
  font-style: normal;
  color: var(--gold);
  font-weight: 600;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: start;
}

/* ── Attorney Photo ── */
.about-photo-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.attorney-photo-frame {
  position: relative;
  width: 100%;
  max-width: 300px;
  background: var(--navy);
  border-radius: 18px;
  overflow: visible;
}

/* Gold corner accents */
.attorney-photo-frame::before,
.attorney-photo-frame::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  z-index: 2;
}

.attorney-photo-frame::before {
  top: -8px;
  right: -8px;
  border-top: 3px solid var(--gold);
  border-right: 3px solid var(--gold);
  border-radius: 0 6px 0 0;
}

.attorney-photo-frame::after {
  bottom: 28px;
  left: -8px;
  border-bottom: 3px solid var(--gold);
  border-left: 3px solid var(--gold);
  border-radius: 0 0 0 6px;
}

.attorney-photo {
  width: 100%;
  border-radius: 16px;
  display: block;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18), 0 4px 16px rgba(0, 0, 0, 0.10);
  object-fit: cover;
  filter: grayscale(100%) contrast(1.08) brightness(0.97);
  transition: filter 0.6s ease;
}

.attorney-photo-frame:hover .attorney-photo {
  filter: grayscale(0%) contrast(1) brightness(1);
}

/* Floating badge */
.attorney-photo-badge {
  position: absolute;
  bottom: -18px;
  right: 20px;
  background: var(--navy);
  border: 1px solid rgba(196, 151, 42, 0.35);
  border-radius: 12px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}

.badge-icon { font-size: 22px; line-height: 1; }

.badge-top {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  margin-bottom: 1px;
}

.badge-bottom {
  font-size: 14px;
  color: var(--gold);
  font-weight: 700;
}

/* Name caption */
.attorney-caption {
  text-align: center;
  margin-top: 10px;
}

.attorney-caption h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.attorney-caption p {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── Content column ── */
.about-content-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about-text p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 18px;
}

.about-text p:last-of-type { margin-bottom: 0; }

.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: all var(--ease);
}

.about-card:hover {
  border-color: rgba(196, 151, 42, 0.3);
  background: #fff;
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.about-card-icon {
  font-size: 26px;
  flex-shrink: 0;
  line-height: 1;
}

.about-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
}

.about-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================================
   PRACTICE AREAS
   ============================================================ */
.practice {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.practice::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 36px 36px;
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.practice-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  padding: 36px 28px 28px;
  transition: all var(--ease);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.practice-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(196,151,42,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--ease);
  pointer-events: none;
}

.practice-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(196, 151, 42, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.practice-card:hover::after { opacity: 1; }

.practice-icon-wrap {
  width: 56px;
  height: 56px;
  background: rgba(196, 151, 42, 0.12);
  border: 1px solid rgba(196, 151, 42, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--gold);
  transition: all var(--ease);
}

.practice-card:hover .practice-icon-wrap {
  background: rgba(196, 151, 42, 0.2);
  transform: scale(1.05);
}

.practice-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.practice-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: 20px;
}

.card-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  transition: all var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.card-link:hover {
  color: var(--gold-light);
  gap: 8px;
}

/* ============================================================
   WHY US
   ============================================================ */
.why-us { background: var(--off-white); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--ease);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--ease);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

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

.why-number {
  font-size: 42px;
  font-weight: 900;
  color: rgba(196, 151, 42, 0.15);
  line-height: 1;
  margin-bottom: 16px;
  font-variant-numeric: tabular-nums;
}

.why-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--navy-dark); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all var(--ease);
  border: 1px solid transparent;
}

a.contact-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
}

.contact-icon-wrap {
  width: 46px;
  height: 46px;
  background: rgba(196, 151, 42, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  transition: all var(--ease);
}

.contact-icon-wrap.whatsapp {
  background: rgba(37, 211, 102, 0.15);
  color: #25d366;
}

a.contact-item:hover .contact-icon-wrap {
  transform: scale(1.08);
}

.contact-item-text h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3px;
}

.contact-item-text span,
.contact-item-text p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  margin-right: 82px;
  margin-top: 4px;
  transition: color var(--ease);
}

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

/* FORM */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: 'Heebo', sans-serif;
  font-size: 15px;
  transition: all var(--ease);
  outline: none;
  direction: rtl;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-group select {
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='rgba(255,255,255,0.4)'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 14px center;
}

.form-group select option {
  background: var(--navy-dark);
  color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 0 0 3px rgba(196, 151, 42, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-deeper);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 32px;
}

.footer-logo {
  height: 72px;
  width: auto;
  background: white;
  border-radius: 10px;
  padding: 6px 14px;
  margin-bottom: 16px;
  display: block;
}

.footer-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
}

.footer-col ul { list-style: none; }

.footer-col li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 10px;
  transition: color var(--ease);
}

.footer-col li a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--ease);
}

.footer-col li a:hover,
.footer-col li:hover { color: rgba(255, 255, 255, 0.8); }

.footer-bottom {
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 6px;
}

.footer-bottom .disclaimer {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.15);
}

/* ============================================================
   ACCESSIBILITY WIDGET
   ============================================================ */
.a11y-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9000;
  font-family: 'Heebo', sans-serif;
}

.a11y-toggle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
  transition: all var(--ease);
}

.a11y-toggle:hover {
  background: var(--gold);
  transform: scale(1.08);
}

.a11y-toggle:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

/* Panel */
.a11y-panel {
  position: absolute;
  bottom: 66px;
  right: 0;
  width: 280px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.22);
  border: 1px solid var(--border);
  overflow: hidden;
  direction: rtl;
  text-align: right;
}

.a11y-panel[hidden] { display: none; }

.a11y-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px 12px;
  background: var(--navy);
  color: var(--white);
}

.a11y-header h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}

.a11y-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
  padding: 0 4px;
  transition: color var(--ease);
  font-family: sans-serif;
}

.a11y-close:hover { color: var(--white); }

/* Section */
.a11y-section {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
}

.a11y-section-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

/* Font size row */
.a11y-font-row {
  display: flex;
  gap: 8px;
}

.a11y-font-btn {
  flex: 1;
  padding: 10px 6px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transition: all var(--ease);
  font-family: 'Heebo', sans-serif;
  color: var(--text);
  font-weight: 600;
}

.a11y-font-btn:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.a11y-btn-label {
  font-size: 10px;
  font-weight: 400;
}

/* Options grid */
.a11y-options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.a11y-opt {
  padding: 10px 8px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-family: 'Heebo', sans-serif;
  color: var(--text);
  font-weight: 500;
  transition: all var(--ease);
  text-align: center;
}

.a11y-opt:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.a11y-opt[aria-pressed="true"] {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.a11y-opt-icon {
  font-size: 18px;
  line-height: 1;
}

/* Reset */
.a11y-reset-btn {
  display: block;
  width: calc(100% - 36px);
  margin: 14px 18px 0;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  font-family: 'Heebo', sans-serif;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--ease);
  font-weight: 500;
}

.a11y-reset-btn:hover {
  background: #fff0f0;
  color: #c0392b;
  border-color: #c0392b;
}

/* Statement link */
.a11y-statement-link {
  text-align: center;
  padding: 12px 18px 16px;
  font-size: 12px;
}

.a11y-statement-link a {
  color: var(--text-muted);
  text-decoration: underline;
}

/* ── Body accessibility classes ── */
body.a11y-contrast {
  filter: contrast(160%) brightness(1.05);
}

body.a11y-grayscale {
  filter: grayscale(100%);
}

body.a11y-contrast.a11y-grayscale {
  filter: grayscale(100%) contrast(160%);
}

body.a11y-links a {
  text-decoration: underline !important;
  text-underline-offset: 3px;
}

body.a11y-readable,
body.a11y-readable * {
  font-family: Arial, Helvetica, sans-serif !important;
}

body.a11y-no-anim *,
body.a11y-no-anim *::before,
body.a11y-no-anim *::after {
  animation-duration: 0.001ms !important;
  transition-duration: 0.001ms !important;
}

body.a11y-cursor * { cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' stroke='%23fff' stroke-width='1' d='M5 3l14 9-7 1-4 7z'/%3E%3C/svg%3E") 5 3, auto !important; }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  background: #25d366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  z-index: 998;
  text-decoration: none;
  transition: all var(--ease);
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 10px 36px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  white-space: nowrap;
  background: var(--navy-dark);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease);
  font-family: 'Heebo', sans-serif;
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  left: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right-color: var(--navy-dark);
  border-left: none;
}

.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .practice-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid      { grid-template-columns: repeat(2, 1fr); }
  .about-grid    { grid-template-columns: 1fr; gap: 48px; }
  .about-photo-col { max-width: 280px; margin: 0 auto; }
  .contact-grid  { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .footer-brand  { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .section-header { margin-bottom: 44px; }

  /* Hamburger */
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(300px, 85vw);
    height: 100vh;
    height: 100dvh;
    background: var(--navy-deeper);
    flex-direction: column;
    padding: 90px 32px 40px;
    gap: 0;
    transition: right var(--ease);
    box-shadow: -12px 0 48px rgba(0, 0, 0, 0.5);
    align-items: flex-start;
  }

  .nav-links.open { right: 0; }

  .nav-links li { width: 100%; }

  .nav-links a {
    display: block;
    padding: 16px 0;
    font-size: 17px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 0;
    color: rgba(255, 255, 255, 0.8);
  }

  .nav-links a:hover {
    background: transparent;
    color: var(--gold);
  }

  .nav-cta {
    margin-top: 20px;
    display: block !important;
    text-align: center;
    background: var(--gold) !important;
    padding: 14px 20px !important;
    border-radius: var(--radius-sm) !important;
    border-bottom: none !important;
  }

  /* Hero */
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 300px; justify-content: center; }

  /* Grids */
  .practice-grid    { grid-template-columns: 1fr; }
  .why-grid         { grid-template-columns: 1fr; }
  .about-cards      { grid-template-columns: 1fr; }
  .form-row         { grid-template-columns: 1fr; }
  .footer-grid      { grid-template-columns: 1fr; }

  /* WhatsApp float */
  .whatsapp-float { bottom: 20px; left: 20px; width: 52px; height: 52px; }
  .whatsapp-tooltip { display: none; }

  .map-link { margin-right: 62px; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero h1 { letter-spacing: -0.5px; }
  .hero-badges { flex-direction: column; gap: 6px; }
  .badge-divider { display: none; }
}
