@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --navy: #0d1b2a;
    --navy-mid: #1a2d42;
    --navy-light: #243856;
    --gold: #c9a84c;
    --gold-light: #e2c06f;
    --gold-dark: #a8862e;
    --cream: #f8f5f0;
    --cream-dark: #ede9e1;
    --text-dark: #0d1b2a;
    --text-muted: #5a6a7a;
    --white: #ffffff;
    --glass-navy: rgba(13, 27, 42, 0.85);
    --shadow-gold: 0 8px 32px rgba(201, 168, 76, 0.15);
    --shadow-navy: 0 20px 60px rgba(13, 27, 42, 0.2);
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    line-height: 1.15;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

/* =====================
   SCROLL PROGRESS
===================== */
.scroll-bar-container {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 3px;
    z-index: 2000;
    background: transparent;
}
.scroll-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    width: 0%;
    transition: width 0.1s ease-out;
}

/* =====================
   NAVIGATION
===================== */
.navbar {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: var(--glass-navy);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    padding: 0.8rem 0;
    box-shadow: var(--shadow-navy);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.nav-logo-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.02em;
    line-height: 1.1;
}

.nav-logo-sub {
    font-size: 0.65rem;
    color: var(--gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
}

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

.nav-links a {
    color: rgba(255,255,255,0.85);
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}

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

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

.nav-cta {
    background: var(--gold) !important;
    color: var(--navy) !important;
    padding: 0.6rem 1.4rem;
    border-radius: 4px;
    font-weight: 600 !important;
    letter-spacing: 0.05em;
}

.nav-cta:hover {
    background: var(--gold-light) !important;
    color: var(--navy) !important;
}

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

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

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

/* =====================
   HERO
===================== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, var(--navy-light) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?auto=format&fit=crop&w=1920&q=70') center/cover no-repeat;
    opacity: 0.08;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(13,27,42,0.97) 40%, rgba(13,27,42,0.6) 100%);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.eyebrow-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.eyebrow-text {
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
}

.hero-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-title em {
    font-style: italic;
    color: var(--gold-light);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    max-width: 540px;
    line-height: 1.8;
    margin-bottom: 3rem;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy);
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

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

.btn-outline {
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: var(--transition);
}

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

/* Hero Stats Box */
.hero-stats {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201,168,76,0.25);
    border-radius: 12px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.stat-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.stat-icon {
    width: 44px;
    height: 44px;
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.stat-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--white);
    line-height: 1.4;
}

/* =====================
   CONTAINER
===================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* =====================
   SECTION COMMONS
===================== */
.section {
    padding: 7rem 0;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-dark);
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-label::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 1px;
    background: var(--gold-dark);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.section-title em {
    font-style: italic;
    color: var(--gold-dark);
}

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

.areas::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.areas .section-label {
    color: var(--gold);
}

.areas .section-label::before {
    background: var(--gold);
}

.areas .section-title {
    color: var(--white);
}

.areas-subtitle {
    color: rgba(255,255,255,0.6);
    font-size: 1.05rem;
    max-width: 600px;
    line-height: 1.8;
    margin-bottom: 4rem;
    font-weight: 300;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    border: 1.5px solid rgba(201,168,76,0.2);
    border-radius: 12px;
    overflow: hidden;
}

.area-card {
    background: rgba(255,255,255,0.03);
    padding: 2.5rem 2rem;
    transition: var(--transition);
    position: relative;
    border: none;
}

.area-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.area-card:hover {
    background: rgba(201,168,76,0.07);
}

.area-card:hover::before {
    width: 100%;
}

.area-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(201,168,76,0.15);
    line-height: 1;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.area-card:hover .area-number {
    color: rgba(201,168,76,0.35);
}

.area-icon {
    color: var(--gold);
    margin-bottom: 1rem;
}

.area-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.area-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
}

/* =====================
   TEAM SECTION
===================== */
.team {
    background: var(--cream);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.team-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(13,27,42,0.08);
    transition: var(--transition);
    border: 1px solid rgba(13,27,42,0.05);
}

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

.team-card-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    padding: 2.5rem 2.5rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.team-card-header::after {
    content: '';
    position: absolute;
    bottom: 0; right: 0;
    width: 150px;
    height: 150px;
    border: 40px solid rgba(201,168,76,0.08);
    border-radius: 50%;
    transform: translate(40%, 40%);
}

.team-badge {
    display: inline-block;
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.4);
    color: var(--gold-light);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.3rem 0.75rem;
    border-radius: 3px;
    margin-bottom: 1rem;
    font-weight: 500;
}

.team-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 0.3rem;
}

.team-title {
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 500;
    letter-spacing: 0.05em;
}

.team-card-body {
    padding: 2rem 2.5rem;
}

.team-bio {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.team-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.tag {
    background: var(--cream-dark);
    color: var(--navy-mid);
    font-size: 0.78rem;
    font-weight: 500;
    padding: 0.35rem 0.85rem;
    border-radius: 100px;
    border: 1px solid rgba(13,27,42,0.1);
}

.team-contact {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--cream-dark);
}

.team-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.team-contact-item svg {
    color: var(--gold-dark);
    flex-shrink: 0;
}

.team-contact-item a {
    color: var(--navy);
    font-weight: 500;
}

.team-contact-item a:hover {
    color: var(--gold-dark);
}

/* =====================
   PROCESS SECTION
===================== */
.process {
    background: var(--navy-mid);
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201,168,76,0.03) 0%, transparent 60%);
}

.process .section-label {
    color: var(--gold);
}
.process .section-label::before {
    background: var(--gold);
}
.process .section-title {
    color: var(--white);
}
.process-subtitle {
    color: rgba(255,255,255,0.55);
    font-size: 1rem;
    max-width: 500px;
    margin-bottom: 4rem;
    line-height: 1.8;
    font-weight: 300;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    z-index: 1;
}

.process-step {
    padding: 2.5rem 2rem;
    position: relative;
    border-left: 1px solid rgba(201,168,76,0.15);
    transition: var(--transition);
}

.process-step:hover {
    background: rgba(255,255,255,0.03);
}

.step-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(201,168,76,0.12);
    line-height: 1;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.process-step:hover .step-number {
    color: rgba(201,168,76,0.3);
}

.step-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.step-desc {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
}

/* =====================
   TRUST / WHY US
===================== */
.trust {
    background: var(--cream-dark);
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.trust-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.trust-feature {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--navy);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
    box-shadow: var(--shadow-navy);
}

.feature-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 0.35rem;
}

.feature-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.trust-visual {
    position: relative;
}

.trust-card-main {
    background: var(--navy);
    border-radius: 20px;
    padding: 3rem;
    color: var(--white);
    box-shadow: var(--shadow-navy);
    position: relative;
    overflow: hidden;
}

.trust-card-main::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 200px;
    height: 200px;
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 50%;
}

.trust-card-main::after {
    content: '"';
    position: absolute;
    top: 1.5rem; left: 2rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 8rem;
    line-height: 1;
    color: rgba(201,168,76,0.1);
    font-style: italic;
}

.trust-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    padding-top: 2rem;
}

.trust-quote-attr {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.attr-line {
    width: 30px;
    height: 1px;
    background: var(--gold);
}

.attr-text {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
}

.trust-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.trust-stat {
    background: var(--white);
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(13,27,42,0.06);
}

.trust-stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
    display: block;
}

.trust-stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
    margin-top: 0.3rem;
}

/* =====================
   CONTACT SECTION
===================== */
.contact {
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    bottom: -100px; left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact .section-label { color: var(--gold); }
.contact .section-label::before { background: var(--gold); }
.contact .section-title { color: var(--white); }

.contact-desc {
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    font-weight: 300;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.25);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
}

.contact-detail-label {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.contact-detail-value {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-detail-value a {
    color: rgba(255,255,255,0.85);
}

.contact-detail-value a:hover {
    color: var(--gold-light);
}

/* Contact Form */
.contact-form {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 16px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.contact-form h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    padding: 0.9rem 1.1rem;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(201,168,76,0.05);
}

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

.submit-btn {
    width: 100%;
    background: var(--gold);
    color: var(--navy);
    border: none;
    padding: 1.1rem 2rem;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 0.5rem;
}

.submit-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* =====================
   FOOTER
===================== */
.footer {
    background: var(--navy);
    border-top: 1px solid rgba(201,168,76,0.15);
    padding: 3rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-logo-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
}

.footer-logo-sub {
    font-size: 0.7rem;
    color: var(--gold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 0.2rem;
}

.footer-copy {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
    margin-top: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold-light);
}

.footer-note {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
    text-align: right;
}

/* =====================
   WHATSAPP FLOAT
===================== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 900;
}

.whatsapp-bubble {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
}

.whatsapp-options-panel {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    opacity: 0;
    transform: translateY(10px) scale(0.95);
    transition: var(--transition);
    pointer-events: none;
}

.whatsapp-float.active .whatsapp-options-panel {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.wa-option-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--white);
    border-radius: 50px;
    padding: 0.7rem 1.2rem 0.7rem 0.8rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--navy);
    transition: var(--transition);
    white-space: nowrap;
}

.wa-option-btn:hover {
    background: var(--cream);
    transform: translateX(-4px);
}

.wa-option-avatar {
    width: 32px;
    height: 32px;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 700;
    flex-shrink: 0;
    font-family: 'Cormorant Garamond', serif;
}

.wa-main-btn {
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    color: white;
}

.wa-main-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 25px rgba(37,211,102,0.5);
}

/* =====================
   ANIMATIONS
===================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; gap: 3rem; }
    .hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; padding: 1.5rem; }
    .stat-item { padding-bottom: 0; border-bottom: none; flex-direction: column; align-items: center; text-align: center; gap: 0.75rem; }
    .areas-grid { grid-template-columns: repeat(2, 1fr); }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .trust-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .team-grid { grid-template-columns: 1fr; }
    .trust-stats-row { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0; left: 0;
        width: 100%; height: 100vh;
        background: var(--navy);
        align-items: center;
        justify-content: center;
        gap: 2rem;
        z-index: 999;
    }
    .nav-links.open a { font-size: 1.2rem; }
    .mobile-toggle { display: flex; position: relative; z-index: 1001; }
    .hero-title { font-size: 2.5rem; }
    .hero-stats { grid-template-columns: 1fr; }
    .stat-item { flex-direction: row; align-items: center; padding-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .stat-item:last-child { padding-bottom: 0; border-bottom: none; }
    .areas-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
    .process-step { border-left: none; border-top: 1px solid rgba(201,168,76,0.15); }
    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 2rem 1.5rem; }
    .trust-stats-row { grid-template-columns: 1fr; }
    .footer-content { flex-direction: column; align-items: flex-start; }
    .footer-note { text-align: left; }
}
