/* ── HvS Attorneys — Main Stylesheet ── */

:root {
  --gold: #C9A84C;
  --gold-light: #D4B96A;
  --gold-dark: #A8892F;
  --gold-pale: #F5EDD6;
  --black: #0A0A0A;
  --dark: #111111;
  --charcoal: #222222;
  --mid: #555555;
  --light: #888888;
  --off-white: #F8F6F1;
  --white: #FFFFFF;
  --border: rgba(201,168,76,0.2);
  --border-light: rgba(0,0,0,0.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Jost', sans-serif; font-weight: 300; color: var(--charcoal); background: var(--white); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; font-weight: 400; line-height: 1.15; letter-spacing: -0.01em; }
.headline { font-size: clamp(2rem, 4vw, 3.2rem); }
.label { font-family: 'Jost', sans-serif; font-size: 0.65rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }
p { font-size: 0.95rem; line-height: 1.85; font-weight: 300; color: var(--mid); }
a { text-decoration: none; color: inherit; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }
section { position: relative; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.85rem 2rem; font-family: 'Jost', sans-serif; font-size: 0.72rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; cursor: pointer; transition: all 0.3s ease; border: none; outline: none; text-decoration: none; }
.btn-gold { background: var(--gold); color: var(--black); }
.btn-gold:hover { background: var(--gold-dark); color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.4); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline-dark { background: transparent; color: var(--black); border: 1px solid rgba(0,0,0,0.3); }
.btn-outline-dark:hover { border-color: var(--gold); color: var(--gold-dark); }
.btn svg { width: 14px; height: 14px; flex-shrink: 0; }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: all 0.4s ease; padding: 1.5rem 0; }
nav.scrolled { background: rgba(10,10,10,0.97); backdrop-filter: blur(10px); padding: 1rem 0; box-shadow: 0 1px 0 var(--border); }
nav .nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo img { height: 44px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
.nav-links a { font-size: 0.7rem; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.75); transition: color 0.2s; }
.nav-links a:hover { color: var(--gold); }
.nav-cta { display: flex; align-items: center; gap: 1rem; }
.nav-wa { display: flex; align-items: center; gap: 0.5rem; font-size: 0.7rem; letter-spacing: 0.1em; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.nav-wa:hover { color: var(--gold); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 1px; background: var(--white); transition: all 0.3s; }

/* MOBILE NAV */
.mobile-nav { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--black); z-index: 1999; flex-direction: column; align-items: center; justify-content: center; gap: 2rem; }
.mobile-nav.open { display: flex; }
.mobile-nav a { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; color: rgba(255,255,255,0.7); font-weight: 300; transition: color 0.2s; }
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav-close { position: absolute; top: 1.5rem; right: 2rem; background: none; border: none; color: rgba(255,255,255,0.5); font-size: 1.5rem; cursor: pointer; }

/* HERO */
#hero { min-height: 100vh; background: var(--dark); display: flex; align-items: center; overflow: hidden; position: relative; }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(201,168,76,0.07) 0%, transparent 70%), radial-gradient(ellipse 40% 60% at 20% 80%, rgba(201,168,76,0.04) 0%, transparent 60%); }
.hero-lines { position: absolute; inset: 0; background-image: linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px); background-size: 80px 80px; }
.hero-content { position: relative; z-index: 2; padding: 10rem 0 6rem; }
.hero-tag { display: flex; align-items: center; gap: 1rem; margin-bottom: 2.5rem; animation: fadeUp 0.8s ease 0.2s both; }
.hero-tag::before { content: ''; width: 30px; height: 1px; background: var(--gold); }
.hero-tag span { font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); font-weight: 500; }
#hero h1 { color: var(--white); font-size: clamp(2.8rem, 6vw, 5.5rem); font-weight: 300; max-width: 820px; line-height: 1.1; animation: fadeUp 0.8s ease 0.4s both; }
#hero h1 em { font-style: italic; color: var(--gold); }
.hero-sub { max-width: 540px; margin-top: 1.8rem; font-size: 1rem; line-height: 1.8; color: rgba(255,255,255,0.55); font-weight: 300; animation: fadeUp 0.8s ease 0.6s both; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.5rem; animation: fadeUp 0.8s ease 0.8s both; }
.hero-note { margin-top: 1.5rem; font-size: 0.78rem; color: rgba(255,255,255,0.35); letter-spacing: 0.05em; animation: fadeUp 0.8s ease 1s both; }
.hero-scroll { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 0.6rem; animation: fadeUp 0.8s ease 1.2s both; }
.hero-scroll span { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.3); }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollPulse 2s ease infinite; }

/* STATS */
.stats-bar { background: var(--black); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 2rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { padding: 1rem 2rem; border-right: 1px solid var(--border); text-align: center; }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 300; color: var(--gold); line-height: 1; }
.stat-label { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-top: 0.4rem; font-weight: 400; }

/* ABOUT */
#about-intro { padding: 8rem 0; background: var(--off-white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.about-left .label { margin-bottom: 1.2rem; display: block; }
.about-left h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); color: var(--black); margin-bottom: 2rem; font-weight: 300; }
.about-left p { margin-bottom: 1.2rem; }
.about-visual { background: var(--dark); padding: 3rem; position: relative; }
.about-visual::before { content: ''; position: absolute; top: -12px; left: -12px; right: 12px; bottom: -12px; border: 1px solid var(--gold); opacity: 0.3; z-index: 0; pointer-events: none; }
.firm-detail { display: flex; align-items: flex-start; gap: 1.2rem; padding: 1.2rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.firm-detail:last-child { border-bottom: none; }
.firm-detail-icon { width: 36px; height: 36px; flex-shrink: 0; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; }
.firm-detail-icon svg { width: 16px; height: 16px; color: var(--gold); }
.firm-detail-text .label { color: rgba(255,255,255,0.4); margin-bottom: 0.3rem; font-size: 0.6rem; }
.firm-detail-text p { color: rgba(255,255,255,0.75); font-size: 0.85rem; font-weight: 300; line-height: 1.5; }

/* PRACTICE */
#practice { padding: 8rem 0; background: var(--white); }
.section-header { margin-bottom: 4rem; }
.section-header .label { display: block; margin-bottom: 1rem; }
.section-header h2 { color: var(--black); margin-bottom: 1rem; }
.section-header p { max-width: 560px; }
.practice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5px; background: var(--border-light); }
.practice-card { background: var(--white); padding: 3rem; position: relative; overflow: hidden; transition: background 0.3s ease; }
.practice-card::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--gold); transition: width 0.4s ease; }
.practice-card:hover::after { width: 100%; }
.practice-card:hover { background: var(--off-white); }
.practice-num { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; font-weight: 300; color: var(--gold-pale); line-height: 1; margin-bottom: -0.5rem; transition: color 0.3s; }
.practice-card:hover .practice-num { color: rgba(201,168,76,0.2); }
.practice-card h3 { font-size: 1.4rem; color: var(--black); margin-bottom: 1rem; font-weight: 400; }
.practice-card p { font-size: 0.88rem; line-height: 1.75; }
.practice-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }
.tag { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.3rem 0.8rem; border: 1px solid var(--border-light); color: var(--light); font-weight: 400; }
.practice-card:hover .tag { border-color: rgba(201,168,76,0.15); }

/* PROCESS */
#process { padding: 8rem 0; background: var(--dark); overflow: hidden; }
#process .section-header h2 { color: var(--white); }
#process .section-header p { color: rgba(255,255,255,0.45); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 4rem; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 28px; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--border), transparent); }
.step { padding: 0 2rem; }
.step-dot { width: 56px; height: 56px; border: 1px solid var(--border); background: var(--dark); display: flex; align-items: center; justify-content: center; margin-bottom: 2rem; position: relative; z-index: 1; transition: all 0.3s; }
.step:hover .step-dot { border-color: var(--gold); background: rgba(201,168,76,0.08); }
.step-dot span { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--gold); font-weight: 300; }
.step h3 { font-size: 1.15rem; color: var(--white); margin-bottom: 0.8rem; font-weight: 400; }
.step p { font-size: 0.85rem; color: rgba(255,255,255,0.4); line-height: 1.7; }

/* ATTORNEY */
#attorney { padding: 8rem 0; background: var(--off-white); }
.attorney-grid { display: grid; grid-template-columns: 400px 1fr; gap: 6rem; align-items: start; }
.attorney-card { background: var(--dark); padding: 3rem; position: sticky; top: 100px; }
.attorney-avatar { width: 100%; aspect-ratio: 3/4; background: var(--charcoal); margin-bottom: 2rem; overflow: hidden; }
.attorney-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.attorney-name { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: var(--white); font-weight: 400; line-height: 1.2; }
.attorney-title { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-top: 0.4rem; margin-bottom: 1.5rem; }
.attorney-quals { list-style: none; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem; }
.attorney-quals li { font-size: 0.82rem; color: rgba(255,255,255,0.5); padding: 0.4rem 0; display: flex; align-items: baseline; gap: 0.8rem; font-weight: 300; }
.attorney-quals li::before { content: '—'; color: var(--gold); flex-shrink: 0; font-size: 0.7rem; }
.attorney-info .label { display: block; margin-bottom: 1.2rem; }
.attorney-info h2 { font-size: clamp(1.8rem, 2.5vw, 2.5rem); color: var(--black); font-weight: 300; margin-bottom: 2rem; }
.attorney-info p { margin-bottom: 1.2rem; }
.approach-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.5rem; }
.pillar { padding: 1.5rem; background: var(--white); border-top: 2px solid var(--gold); }
.pillar-label { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-dark); font-weight: 500; margin-bottom: 0.5rem; }
.pillar p { font-size: 0.82rem; color: var(--mid); line-height: 1.6; }

/* WHY */
#why { padding: 8rem 0; background: var(--black); }
#why .section-header h2 { color: var(--white); }
#why .section-header p { color: rgba(255,255,255,0.4); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 4rem; background: rgba(255,255,255,0.04); }
.why-card { padding: 3rem 2.5rem; background: var(--black); transition: background 0.3s; }
.why-card:hover { background: var(--dark); }
.why-icon { width: 48px; height: 48px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; margin-bottom: 1.8rem; }
.why-icon svg { width: 20px; height: 20px; color: var(--gold); }
.why-card h3 { font-size: 1.15rem; color: var(--white); margin-bottom: 0.8rem; font-weight: 400; }
.why-card p { font-size: 0.85rem; color: rgba(255,255,255,0.4); line-height: 1.75; }

/* BOOKING CTA */
#booking-cta { padding: 8rem 0; background: var(--off-white); }
.booking-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.booking-left .label { display: block; margin-bottom: 1rem; }
.booking-left h2 { font-size: clamp(2rem, 3.5vw, 3rem); color: var(--black); font-weight: 300; margin-bottom: 1.5rem; line-height: 1.2; }
.booking-left h2 em { font-style: italic; color: var(--gold-dark); }
.booking-left p { margin-bottom: 2rem; }
.booking-options { display: flex; flex-direction: column; gap: 1px; background: var(--border-light); }
.booking-option { background: var(--white); padding: 1.5rem 2rem; display: flex; align-items: center; gap: 1.5rem; cursor: pointer; transition: background 0.25s; border: none; width: 100%; text-align: left; }
.booking-option:hover { background: var(--off-white); }
.booking-option-icon { width: 44px; height: 44px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.booking-option-icon svg { width: 18px; height: 18px; color: var(--gold); }
.booking-option-text h4 { font-family: 'Jost', sans-serif; font-size: 0.8rem; font-weight: 500; letter-spacing: 0.08em; color: var(--black); margin-bottom: 0.2rem; }
.booking-option-text p { font-size: 0.78rem; color: var(--light); line-height: 1.4; }

/* FAQ */
#faq { padding: 7rem 0; background: var(--white); }
.faq-grid { display: grid; grid-template-columns: 280px 1fr; gap: 6rem; align-items: start; }
.faq-left .label { display: block; margin-bottom: 1rem; }
.faq-left h2 { font-size: clamp(1.8rem, 2.5vw, 2.4rem); color: var(--black); font-weight: 300; line-height: 1.25; }
.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-question { width: 100%; background: none; border: none; outline: none; padding: 1.5rem 0; display: flex; align-items: center; justify-content: space-between; gap: 1rem; cursor: pointer; text-align: left; }
.faq-question span { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--black); font-weight: 400; }
.faq-icon { width: 24px; height: 24px; flex-shrink: 0; border: 1px solid var(--border-light); display: flex; align-items: center; justify-content: center; transition: all 0.3s; color: var(--gold); }
.faq-item.open .faq-icon { background: var(--gold); color: var(--black); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer p { font-size: 0.88rem; line-height: 1.8; padding-bottom: 1.5rem; }

/* CONTACT */
#contact { padding: 8rem 0; background: var(--dark); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; }
.contact-info .label { display: block; margin-bottom: 1rem; }
.contact-info h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); color: var(--white); font-weight: 300; margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.2rem; margin-bottom: 2.5rem; }
.contact-detail { display: flex; align-items: center; gap: 1rem; }
.contact-detail-icon { width: 38px; height: 38px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-detail-icon svg { width: 15px; height: 15px; color: var(--gold); }
.contact-detail a, .contact-detail span { font-size: 0.88rem; color: rgba(255,255,255,0.6); font-weight: 300; transition: color 0.2s; }
.contact-detail a:hover { color: var(--gold); }
.hours { background: rgba(255,255,255,0.03); border: 1px solid var(--border); padding: 2rem; margin-top: 2rem; }
.hours h4 { font-family: 'Jost', sans-serif; font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; font-weight: 500; }
.hour-row { display: flex; justify-content: space-between; padding: 0.4rem 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.hour-row:last-child { border-bottom: none; }
.hour-row span { font-size: 0.78rem; color: rgba(255,255,255,0.4); font-weight: 300; }
.hour-row .time { color: rgba(255,255,255,0.65); }
.map-wrap { margin-top: 2rem; overflow: hidden; border: 1px solid var(--border); }
.map-wrap iframe { display: block; width: 100%; height: 220px; filter: grayscale(60%); }
.contact-form-wrap .label { display: block; margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 0.5rem; font-weight: 500; }
.form-group input, .form-group select, .form-group textarea { width: 100%; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); padding: 0.85rem 1rem; font-family: 'Jost', sans-serif; font-size: 0.88rem; font-weight: 300; color: var(--white); outline: none; transition: border-color 0.2s; appearance: none; -webkit-appearance: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group select option { background: var(--dark); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-success { display: none; background: rgba(201,168,76,0.1); border: 1px solid var(--border); padding: 1.5rem; margin-top: 1rem; }
.form-success p { color: rgba(255,255,255,0.7); font-size: 0.88rem; }

/* POLICY MODALS */
.policy-modal { display: none; position: fixed; inset: 0; z-index: 3000; background: rgba(0,0,0,0.9); align-items: flex-start; justify-content: center; padding: 2rem 1rem; overflow-y: auto; }
.policy-modal.open { display: flex; }
.policy-inner { background: var(--dark); border: 1px solid var(--border); width: 100%; max-width: 760px; position: relative; padding: 3rem; margin: auto; }
.policy-inner h2 { font-size: 1.8rem; color: var(--white); margin-bottom: 0.5rem; }
.policy-date { font-size: 0.72rem; color: rgba(255,255,255,0.3); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 2rem; display: block; }
.policy-inner h3 { font-size: 0.8rem; color: var(--gold); margin: 2rem 0 0.6rem; font-family: 'Jost', sans-serif; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; }
.policy-inner p { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.8; margin-bottom: 0.8rem; }
.policy-inner ul { padding-left: 1.5rem; margin-bottom: 0.8rem; }
.policy-inner ul li { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.8; }
.policy-close { position: absolute; top: 1.5rem; right: 1.5rem; background: var(--gold); border: none; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 1rem; color: var(--black); font-family: 'Jost', sans-serif; }

/* FOOTER */
footer { background: var(--black); padding: 3rem 0 2rem; border-top: 1px solid var(--border); }
.footer-inner { display: grid; grid-template-columns: 200px 1fr auto; gap: 4rem; align-items: center; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.05); margin-bottom: 2rem; }
.footer-logo img { height: 36px; width: auto; display: block; }
.footer-links { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer-links a { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 1rem; }
.social-btn { width: 36px; height: 36px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.4); transition: all 0.2s; }
.social-btn:hover { border-color: var(--gold); color: var(--gold); }
.social-btn svg { width: 15px; height: 15px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom p { font-size: 0.72rem; color: rgba(255,255,255,0.25); }

/* WHATSAPP FLOAT */
.wa-float { position: fixed; bottom: 2rem; right: 2rem; z-index: 999; display: flex; align-items: center; gap: 0.8rem; background: #25D366; color: white; padding: 0.9rem 1.4rem; font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; box-shadow: 0 4px 20px rgba(37,211,102,0.3); transition: all 0.3s; }
.wa-float:hover { background: #1ebe5b; transform: translateY(-2px); box-shadow: 0 6px 24px rgba(37,211,102,0.4); }
.wa-float svg { width: 18px; height: 18px; }

/* BOOKING MODAL */
.booking-modal { display: none; position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,0.85); align-items: center; justify-content: center; padding: 1rem; }
.booking-modal.open { display: flex; }
.booking-modal-inner { background: var(--white); width: 100%; max-width: 960px; height: 90vh; max-height: 90vh; overflow: hidden; position: relative; display: flex; flex-direction: column; }
.booking-modal-close { position: absolute; top: 1rem; right: 1rem; z-index: 10; background: var(--black); border: none; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; cursor: pointer; color: white; font-size: 1rem; }
#sbw_43j17j { flex: 1; width: 100%; height: 100%; overflow-y: auto; -webkit-overflow-scrolling: touch; }
#sbw_43j17j iframe { width: 100% !important; min-height: 700px !important; border: none !important; display: block; }

/* SCROLL REVEAL */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scrollPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .about-grid, .attorney-grid, .booking-inner, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .practice-grid, .why-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .process-steps::before { display: none; }
  .attorney-card { position: static; }
  .faq-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .footer-links { justify-content: center; }
  .footer-social { justify-content: center; }
  .footer-bottom { justify-content: center; text-align: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .approach-pillars { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .wa-float { padding: 0.9rem; }
  .wa-float span { display: none; }
}
@media (max-width: 600px) {
  .container { padding: 0 1.2rem; }
  .practice-card { padding: 2rem; }
  .process-steps { grid-template-columns: 1fr; }
  .policy-inner { padding: 1.5rem; }
  #hero h1 { font-size: 2.4rem; }
}

/* ── BOOKING MODAL SCROLLING & IFRAME FIX ── */
.booking-modal .booking-modal-inner {
    display: flex;
    flex-direction: column;
    height: 90vh;
    max-height: 90vh;
    overflow: hidden;
}

#sbw_43j17j {
    flex: 1;
    overflow-y: auto;
    background: #0A0A0A;
    padding: 0;
}

#sbw_43j17j iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
    min-height: 500px;
}