/* --- Design System --- */
:root {
    /* Colors */
    --primary: #0B1F3A; /* Deep Navy */
    --secondary: #C8A96B; /* Gold Accent */
    --secondary-hover: #b3945a;
    --text-dark: #2B2B2B;
    --text-light: #F5F7FA;
    --white: #FFFFFF;
    --bg-light: #F9FBFC;
    --border: rgba(200, 169, 107, 0.2);
    
    /* Typography - Fluid Scaling */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --h1-size: clamp(2.5rem, 8vw, 4.5rem);
    --h2-size: clamp(2rem, 6vw, 3.5rem);
    --h3-size: clamp(1.5rem, 4vw, 2.2rem);
    --body-size: clamp(0.95rem, 2vw, 1.15rem);
    
    /* Spacing */
    --container-max: 1280px;
    --section-padding: clamp(60px, 10vw, 120px);
}

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

html {
    scroll-behavior: smooth;
}

section[id], .service-detail-item[id] {
    scroll-margin-top: 100px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 40px);
}

.italic {
    font-style: italic;
}

.bold {
    font-weight: 600;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 48px; /* Touch target safety */
}

.btn-large {
    padding: 18px 40px;
    font-size: 1rem;
    min-height: 56px;
}

.btn-gold {
    background-color: var(--secondary);
    color: var(--white);
    border: 1px solid var(--secondary);
}

.btn-gold:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(200, 169, 107, 0.2);
}

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

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

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
}

.header.scrolled {
    background: rgba(11, 31, 58, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.logo-subtext {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
    font-weight: 500;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 400;
    padding: 10px 0;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-phone {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-phone i {
    width: 18px;
    color: var(--secondary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 5px;
    z-index: 1100;
}

.mobile-menu-btn i {
    width: 28px;
    height: 28px;
}

/* Mobile Menu Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    padding: 40px;
}

.mobile-overlay.active {
    transform: translateX(0);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
}

.mobile-nav-links a {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--white);
}

.mobile-nav-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 300px;
}

@media (max-width: 1000px) {
    .nav-links, .nav-actions {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    background-color: var(--primary);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0b1f3a 0%, #1a2a6c 100%);
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at 70% 50%, rgba(200, 169, 107, 0.05) 0%, transparent 70%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.badge-gold {
    display: inline-block;
    color: var(--secondary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero-title {
    font-size: var(--h1-size);
    color: var(--white);
    margin-bottom: 30px;
    max-width: 900px;
}

.hero-subtitle {
    font-size: var(--body-size);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 48px;
    max-width: 700px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 30px;
}

.trust-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stars {
    color: var(--secondary);
    font-size: 1.1rem;
}

.trust-item span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.trust-divider {
    width: 1px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
}

/* Hero Image & Cards */
.hero-image-wrapper {
    position: relative;
}

.hero-image-container {
    position: relative;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.3);
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    filter: brightness(1.05);
}

.glass-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--white);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.glass-card h3 {
    font-size: 1.25rem;
    margin-bottom: 2px;
}

.glass-card p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.gold-icon {
    color: var(--secondary);
    width: 28px;
    height: 28px;
}

.card-top {
    top: 10%;
    left: -15%;
}

.card-bottom {
    bottom: 10%;
    right: -10%;
}

@media (max-width: 1000px) {
    .hero {
        padding-top: 120px;
        min-height: auto;
        padding-bottom: 60px;
    }
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    .hero-title, .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-actions {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-actions .btn {
        width: 100%;
    }
    .hero-trust {
        justify-content: center;
        flex-wrap: wrap;
    }
    .hero-image-wrapper {
        order: 5;
        max-width: 500px;
        margin: 20px auto 0;
    }
    .card-top {
        left: 0;
        top: -20px;
    }
    .card-bottom {
        right: 0;
        bottom: -20px;
    }
}

/* --- Animations --- */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-fade-in {
    opacity: 0;
    animation: fadeIn 1.2s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* --- Services (Practice Areas) --- */
.services {
    padding: var(--section-padding) 0;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: var(--h2-size);
    color: var(--primary);
    margin-bottom: 24px;
}

.section-subtitle {
    font-size: var(--body-size);
    color: #666;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    padding: 50px 40px;
    background-color: var(--white);
    border: 1px solid #f0f0f0;
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary);
    box-shadow: 0 20px 40px rgba(11, 31, 58, 0.05);
}

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: rgba(200, 169, 107, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-wrapper {
    background-color: var(--secondary);
}

.service-icon {
    width: 28px;
    height: 28px;
    color: var(--secondary);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    color: var(--white);
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.service-desc {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 30px;
    flex-grow: 1;
    line-height: 1.7;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-link i {
    width: 16px;
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

@media (max-width: 1000px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .section-title {
        font-size: 2.2rem;
    }
}

/* --- Service Details --- */
.service-details {
    overflow: hidden;
}

.service-detail-item {
    padding: var(--section-padding) 0;
    border-bottom: 1px solid #f0f0f0;
}

.service-detail-item.alternate {
    background-color: var(--bg-light);
}

.detail-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 100px;
    align-items: center;
}

.service-detail-item.alternate .detail-container {
    grid-template-columns: 0.8fr 1.2fr;
}

.detail-title {
    font-size: 2.8rem;
    margin-bottom: 30px;
    color: var(--primary);
    line-height: 1.1;
}

.detail-text {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.8;
}

.detail-list {
    margin-bottom: 48px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.detail-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
    color: var(--primary);
    font-weight: 500;
}

.detail-list .gold-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.visual-box {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background-color: var(--white);
    position: relative;
    box-shadow: 0 40px 100px rgba(0,0,0,0.06);
    transition: transform 0.4s ease;
}

.visual-box:hover {
    transform: translateY(-10px);
}

.visual-box.gold-border {
    border: 1px solid rgba(200, 169, 107, 0.3);
    border-top: 4px solid var(--secondary);
}

.visual-box.navy-border {
    border: 1px solid rgba(11, 31, 58, 0.1);
    border-top: 4px solid var(--primary);
}

.large-icon {
    width: 140px;
    height: 140px;
    color: var(--secondary);
    opacity: 0.9;
}

@media (max-width: 1000px) {
    .detail-container, 
    .service-detail-item.alternate .detail-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    .service-detail-item.alternate .detail-visual {
        order: -1;
    }
    .detail-title {
        font-size: var(--h2-size);
    }
    .detail-list {
        align-items: center;
        text-align: left;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    .visual-box {
        max-width: 320px;
        margin: 0 auto;
    }
    .service-detail-item .btn {
        width: 100%;
        max-width: 400px;
    }
}
.why-us {
    padding: var(--section-padding) 0;
    background-color: var(--bg-light);
}

.why-us-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-us-content .section-title,
.why-us-content .section-subtitle {
    text-align: left;
    margin-left: 0;
}

.value-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 48px;
}

.value-item {
    display: flex;
    gap: 24px;
}

.value-item h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--primary);
}

.value-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.why-us-image-wrapper {
    position: relative;
}

.why-us-image {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background-color: var(--primary);
    color: var(--white);
    padding: 30px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 20px 40px rgba(11, 31, 58, 0.2);
}

.exp-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1;
}

.exp-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
}

@media (max-width: 1000px) {
    .why-us-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .why-us-image-wrapper {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .experience-badge {
        position: relative;
        left: 0;
        bottom: 0;
        margin-top: 20px;
    }
}

/* --- Attorney Profile --- */
.profile {
    padding: var(--section-padding) 0;
    background-color: var(--primary);
    color: var(--white);
    overflow: hidden;
}

.profile-container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.profile-image-wrapper {
    position: relative;
}

.profile-image {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.profile-name {
    font-size: var(--h2-size);
    color: var(--secondary);
    margin-bottom: 10px;
}

.profile-title {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
    font-weight: 500;
}

.profile-bio {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.profile-quote {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--white);
    padding-left: 30px;
    border-left: 3px solid var(--secondary);
    margin-bottom: 48px;
    line-height: 1.4;
}

.credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 60px;
}

.cred-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.cred-item i {
    width: 20px;
    color: var(--secondary);
}

.signature {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--secondary);
    opacity: 0.8;
    font-style: italic;
}

@media (max-width: 1000px) {
    .profile-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .profile-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .profile-name {
        font-size: 2.5rem;
    }
    .profile-quote {
        font-size: 1.25rem;
    }
}

/* --- Testimonials --- */
.testimonials {
    padding: var(--section-padding) 0;
    background-color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    padding: 50px 40px;
    background-color: var(--white);
    border-top: 4px solid var(--secondary);
    border-radius: 4px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 40px;
    right: 40px;
    font-family: var(--font-heading);
    font-size: 5rem;
    color: rgba(200, 169, 107, 0.1);
    line-height: 1;
}

.test-headline {
    font-size: 1.4rem;
    color: var(--primary);
    margin: 20px 0 15px;
}

.test-quote {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.1rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
}

.test-author {
    border-top: 1px solid #f0f0f0;
    padding-top: 25px;
    margin-bottom: 15px;
}

.author-name {
    display: block;
    font-weight: 600;
    color: var(--primary);
    font-size: 1rem;
}

.author-meta {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.verified-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: #27ae60;
    font-weight: 600;
}

.verified-badge i {
    width: 14px;
}

@media (max-width: 1000px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .testimonial-card {
        padding: 40px 30px;
    }
}
    }
}

@media (max-width: 700px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Process --- */
.process {
    padding: var(--section-padding) 0;
    background-color: var(--bg-light);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    background: var(--white);
    padding: 40px;
    border-radius: 4px;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.3s ease;
}

.process-step:hover {
    border-color: var(--secondary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary);
    opacity: 0.2;
    line-height: 1;
}

.step-title {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.step-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .process-timeline {
        grid-template-columns: 1fr;
    }
}

/* --- FAQ --- */
.faq {
    padding: var(--section-padding) 0;
    background-color: var(--white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #f0f0f0;
}

.faq-question {
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question h3 {
    font-size: 1.15rem;
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--primary);
}

.faq-icon {
    width: 20px;
    color: var(--secondary);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    padding-bottom: 30px;
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

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

/* --- Final CTA --- */
.cta-final {
    position: relative;
    padding: 150px 0;
    color: var(--white);
    overflow: hidden;
}

.cta-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cta-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay-navy {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(11, 31, 58, 0.95) 0%, rgba(11, 31, 58, 0.7) 100%);
}

.cta-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.cta-title {
    font-size: 3.5rem;
    margin-bottom: 24px;
    line-height: 1.1;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 48px;
    line-height: 1.6;
}

.cta-direct p {
    font-size: 0.9rem;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.cta-phone {
    font-size: 2rem;
    font-family: var(--font-heading);
    font-weight: 700;
}

.form-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 50px;
    border-radius: 8px;
}

.form-title {
    font-size: 1.8rem;
    margin-bottom: 32px;
    text-align: center;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
}

.form-group input, 
.form-group select, 
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px;
    border-radius: 4px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: var(--white);
    font-size: 16px; /* Prevents iOS auto-zoom */
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    background: rgba(255, 255, 255, 0.1);
}

.btn-full {
    width: 100%;
    margin-top: 10px;
}

.form-disclaimer {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    margin-top: 24px;
}

@media (max-width: 1000px) {
    .cta-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .cta-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 600px) {
    .form-card {
        padding: 30px 20px;
    }
}

/* --- Footer --- */
.footer {
    background-color: #050e1a;
    padding: 100px 0 40px;
    color: var(--white);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-mission {
    margin-top: 30px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    max-width: 320px;
}

.social-links {
    margin-top: 30px;
    display: flex;
    gap: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.social-links i {
    width: 18px;
    color: var(--white);
}

.footer-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
    margin-bottom: 30px;
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links ul li a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    gap: 15px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.contact-item i {
    width: 18px;
    color: var(--secondary);
    flex-shrink: 0;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-legal a:hover {
    color: var(--secondary);
}

.advertising-disclaimer {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 1100px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-bottom-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .footer-legal {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* --- Trust Bar --- */
.trust-bar {
    background-color: var(--white);
    padding: 60px 0;
    border-bottom: 1px solid rgba(11, 31, 58, 0.05);
    position: relative;
    z-index: 10;
}

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

.trust-stat {
    text-align: center;
    flex: 1;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-dark);
    font-weight: 500;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .trust-bar-container {
        flex-direction: column;
        gap: 40px;
    }
    .stat-divider {
        display: none;
    }
}

/* --- Final Mobile Adjustments --- */
@media (max-width: 480px) {
    .badge-gold {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }
    .container {
        padding: 0 20px;
    }
    .hero-actions {
        width: 100%;
    }
}
