/* ===== CSS RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --navy: #1a2332;
    --navy-light: #2d3748;
    --gold: #c9a961;
    --gold-light: #d4b574;
    --charcoal: #2d3748;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --text-dark: #2d3748;
    --text-light: #6b7280;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.6s ease;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(26, 35, 50, 0.08);
    --shadow-md: 0 4px 16px rgba(26, 35, 50, 0.12);
    --shadow-lg: 0 8px 32px rgba(26, 35, 50, 0.16);
    --shadow-xl: 0 12px 48px rgba(26, 35, 50, 0.24);
}

body {
    font-family: 'Heebo', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--white);
    position: relative;
    padding-top: 0;
}

/* ===== DECORATIVE PATTERNS ===== */
.decorative-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
}

.decorative-line {
    position: absolute;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}

/* ===== NAVIGATION MENU ===== */
.header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all var(--transition-normal);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem var(--spacing-md);
    max-width: 1400px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: transform var(--transition-fast);
}

.nav-logo:hover {
    transform: scale(1.02);
}

.logo-icon {
    font-size: 2rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text strong {
    font-size: 1.25rem;
    color: var(--navy);
}

.logo-subtitle {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 400;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    transition: all var(--transition-fast);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition-normal);
}

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

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

.nav-link-cta {
    background: var(--gold);
    color: var(--navy);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
}

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

.nav-link-cta:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--navy);
    font-weight: 600;
    transition: all var(--transition-fast);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    background: var(--off-white);
}

.nav-phone:hover {
    background: var(--gold);
    color: var(--navy);
    transform: scale(1.05);
}

.phone-icon {
    font-size: 1.25rem;
}

.phone-number {
    font-size: 1rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 0.35rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    transition: all var(--transition-fast);
}

.hamburger-line {
    width: 28px;
    height: 3px;
    background: var(--navy);
    border-radius: 3px;
    transition: all var(--transition-normal);
}

.nav-toggle:hover .hamburger-line {
    background: var(--gold);
}

.nav-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translateY(11px);
}

.nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translateY(-11px);
}

/* Mobile Menu Styles */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 300px;
        height: calc(100vh - 80px);
        background: var(--white);
        box-shadow: var(--shadow-xl);
        transition: right var(--transition-normal);
        overflow-y: auto;
        padding: 2rem 0;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
    }

    .nav-item {
        border-bottom: 1px solid var(--off-white);
    }

    .nav-link {
        display: block;
        padding: 1.25rem 2rem;
        font-size: 1.125rem;
    }

    .nav-link::after {
        right: 2rem;
        width: 0;
    }

    .nav-link:hover::after,
    .nav-link.active::after {
        width: calc(100% - 4rem);
    }

    .nav-link-cta {
        margin: 1rem 2rem;
        text-align: center;
        display: block;
    }

    .nav-toggle {
        display: flex;
    }

    .phone-number {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 0.75rem var(--spacing-sm);
    }

    .logo-text strong {
        font-size: 1.125rem;
    }

    .logo-subtitle {
        font-size: 0.7rem;
    }

    .nav-phone {
        padding: 0.5rem;
    }
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--text-light);
    line-height: 1.8;
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section {
    padding: var(--spacing-xl) 0;
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    color: var(--navy);
}

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

/* ===== ANIMATIONS ===== */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(201, 169, 97, 0.7);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(201, 169, 97, 0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fillStar {
    from {
        width: 0%;
    }
    to {
        width: 100%;
    }
}

.fade-up {
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
}

.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all var(--transition-normal);
    cursor: pointer;
    border: none;
    font-family: 'Heebo', sans-serif;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy);
    box-shadow: var(--shadow-md);
}

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

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--navy);
    transform: translateY(-3px);
}

.btn-pulse {
    animation: pulse 2s infinite;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.95) 0%, rgba(15, 20, 25, 0.92) 50%, rgba(45, 55, 72, 0.95) 100%),
                url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=1920&q=80') center/cover;
    background-size: 200% 200%, cover;
    background-attachment: fixed;
    animation: gradientShift 15s ease infinite;
    overflow: hidden;
    color: var(--white);
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23c9a961' fill-opacity='0.03'%3E%3Cpath d='M50 15 L35 35 L15 35 L30 50 L20 70 L50 55 L80 70 L70 50 L85 35 L65 35 Z'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: var(--spacing-md);
    padding-top: 7rem;
    padding-bottom: 5rem;

    margin-top: 0;
}

.hero h1 {
    color: var(--white);
    margin-bottom: var(--spacing-sm);
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    color: var(--off-white);
    margin-bottom: var(--spacing-md);
    font-weight: 300;
    line-height: 1.6;
}

.hero-ctas {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-md);
}

.hero-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    transition: all var(--transition-normal);
}

.hero-phone:hover {
    color: var(--gold-light);
    transform: scale(1.05);
}

.floating-element {
    position: absolute;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.floating-element.scale-1 {
    top: 10%;
    right: 10%;
    font-size: 4rem;
    animation-delay: 0s;
}

.floating-element.scale-2 {
    bottom: 15%;
    left: 15%;
    font-size: 3rem;
    animation-delay: 2s;
}

.floating-element.gavel {
    top: 60%;
    right: 20%;
    font-size: 2.5rem;
    animation-delay: 4s;
}

.lawyer-photo {
    margin-top: var(--spacing-md);
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 5px solid var(--gold);
    box-shadow: 0 0 40px rgba(201, 169, 97, 0.3), var(--shadow-xl);
    object-fit: cover;
    margin-right: auto;
    margin-left: auto;
    display: block;
    background: var(--navy-light);
}

/* ===== TRUST INDICATORS ===== */
.trust-section {
    background: var(--off-white);
    padding: var(--spacing-lg) 0;
    position: relative;
    overflow: hidden;
}

.trust-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: var(--gold);
    opacity: 0.03;
    border-radius: 50%;
}

.trust-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: var(--navy);
    opacity: 0.02;
    border-radius: 50%;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    text-align: center;
}

.trust-item {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.trust-item::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.trust-item:hover::before {
    opacity: 0.03;
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.trust-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: var(--spacing-sm);
    display: block;
}

.trust-label {
    font-size: 1.25rem;
    color: var(--navy);
    font-weight: 600;
}

.trust-stars {
    display: inline-flex;
    gap: 0.25rem;
    margin-top: var(--spacing-sm);
}

.star {
    font-size: 1.5rem;
    color: #ddd;
    position: relative;
}

.star-filled {
    position: absolute;
    top: 0;
    right: 0;
    overflow: hidden;
    color: var(--gold);
    width: 0%;
}

.star-filled.animate {
    animation: fillStar 0.5s ease forwards;
}

.badges {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    margin-top: var(--spacing-lg);
}

.badge {
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--white);
    border: 2px solid var(--gold);
    border-radius: 50px;
    font-weight: 600;
    color: var(--navy);
    transition: all var(--transition-normal);
}

.badge:hover {
    background: var(--gold);
    transform: scale(1.05);
}

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

.practice-areas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 35px, var(--gold) 35px, var(--gold) 36px),
        repeating-linear-gradient(-45deg, transparent, transparent 35px, var(--navy) 35px, var(--navy) 36px);
    opacity: 0.015;
    pointer-events: none;
}

.practice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.practice-card {
    background: var(--white);
    border: 2px solid var(--off-white);
    border-radius: 20px;
    padding: var(--spacing-lg);
    text-align: center;
    transition: all var(--transition-normal);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.practice-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: translateX(-100%);
    transition: transform var(--transition-normal);
}

.practice-card:hover::before {
    transform: translateX(0);
}

.practice-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.practice-icon {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
    display: inline-block;
    transition: all var(--transition-normal);
}

.practice-card:hover .practice-icon {
    transform: scale(1.1) rotate(5deg);
    color: var(--gold);
}

.practice-card h3 {
    color: var(--navy);
    margin-bottom: var(--spacing-sm);
}

.practice-card p {
    margin-bottom: var(--spacing-md);
}

.practice-link {
    color: var(--gold);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-fast);
}

.practice-link:hover {
    gap: 1rem;
}

/* ===== WHY CHOOSE US ===== */
.why-choose {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5 L25 15 L15 15 L22.5 21 L18 30 L30 24 L42 30 L37.5 21 L45 15 L35 15 Z' fill='%23c9a961' opacity='0.03'/%3E%3C/svg%3E");
    background-size: 60px 60px;
    pointer-events: none;
}

.why-choose::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 5%;
    width: 200px;
    height: 200px;
    background: var(--gold);
    opacity: 0.05;
    border-radius: 50%;
    filter: blur(40px);
}

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

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.why-item {
    text-align: center;
    padding: var(--spacing-md);
}

.why-icon {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: var(--spacing-md);
    display: block;
    transition: all var(--transition-normal);
}

.why-item:hover .why-icon {
    transform: scale(1.15);
}

.why-item h3 {
    color: var(--gold);
    margin-bottom: var(--spacing-sm);
}

.why-item p {
    color: var(--off-white);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '"';
    position: absolute;
    top: 10%;
    right: 5%;
    font-size: 15rem;
    color: var(--gold);
    opacity: 0.02;
    font-family: Georgia, serif;
    font-weight: bold;
    line-height: 1;
}

.testimonials::after {
    content: '"';
    position: absolute;
    bottom: 5%;
    left: 5%;
    font-size: 15rem;
    color: var(--navy);
    opacity: 0.02;
    font-family: Georgia, serif;
    font-weight: bold;
    line-height: 1;
}

.testimonial-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s ease;
}

.testimonial {
    min-width: 100%;
    padding: var(--spacing-lg);
    text-align: center;
}

.testimonial-content {
    background: var(--white);
    padding: var(--spacing-lg);
    padding-top: 4rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    position: relative;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid var(--gold);
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    object-fit: cover;
    box-shadow: var(--shadow-md);
    background: var(--white);
}

.testimonial-quote {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.testimonial-quote::before {
    content: '"';
    font-size: 3rem;
    color: var(--gold);
    position: absolute;
    top: 10px;
    right: 20px;
    opacity: 0.3;
}

.testimonial-author {
    font-weight: 600;
    color: var(--navy);
    margin-bottom: var(--spacing-xs);
}

.testimonial-case {
    color: var(--text-light);
    font-size: 0.9rem;
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-top: var(--spacing-sm);
    color: var(--gold);
    font-size: 1.25rem;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-light);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.dot.active {
    background: var(--gold);
    transform: scale(1.3);
}

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

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, var(--gold) 1px, transparent 1px),
        radial-gradient(circle at 60% 70%, var(--navy) 1px, transparent 1px);
    background-size: 50px 50px, 80px 80px;
    opacity: 0.03;
    pointer-events: none;
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    right: 50%;
    transform: translateX(50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--gold), var(--gold-light));
}

.process-step {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    align-items: center;
}

.process-step:nth-child(even) .step-content {
    text-align: left;
}

.process-step:nth-child(odd) .step-content {
    text-align: right;
}

.step-content {
    background: var(--off-white);
    padding: var(--spacing-md);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.step-content:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gold);
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: var(--shadow-md);
    z-index: 2;
    position: relative;
}

.step-content h3 {
    color: var(--navy);
    margin-bottom: var(--spacing-xs);
}

.step-content p {
    font-size: 1rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: var(--gold);
    opacity: 0.04;
    border-radius: 50%;
    filter: blur(60px);
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: var(--gold);
    opacity: 0.03;
    border-radius: 50%;
    filter: blur(80px);
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: var(--spacing-md);
}

.cta-section p {
    color: var(--off-white);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-lg);
}

.contact-form {
    max-width: 600px;
    margin: var(--spacing-lg) auto 0;
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
}

.form-group {
    margin-bottom: var(--spacing-md);
    text-align: right;
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    color: var(--navy);
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--off-white);
    border-radius: 10px;
    font-family: 'Heebo', sans-serif;
    font-size: 1rem;
    transition: all var(--transition-normal);
    text-align: right;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
    transform: translateY(-2px);
}

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

/* ===== FOOTER ===== */
.footer {
    background: var(--navy);
    color: var(--white);
    padding: var(--spacing-lg) 0 var(--spacing-md);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(30deg, transparent 48%, var(--gold) 49%, var(--gold) 51%, transparent 52%);
    background-size: 100px 100px;
    opacity: 0.01;
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.footer-section h3 {
    color: var(--gold);
    margin-bottom: var(--spacing-md);
}

.footer-section p,
.footer-section a {
    color: var(--off-white);
    text-decoration: none;
    display: block;
    margin-bottom: var(--spacing-xs);
    transition: color var(--transition-fast);
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

/* ===== MOBILE STICKY CTA ===== */
.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--gold);
    padding: var(--spacing-sm);
    display: none;
    z-index: 1000;
    box-shadow: var(--shadow-xl);
}

.mobile-sticky-cta .btn {
    width: 100%;
    margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero {
        min-height: 90vh;
    }

    .hero-ctas {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .process-timeline::before {
        right: 30px;
        transform: none;
    }

    .process-step {
        grid-template-columns: 1fr auto;
        gap: var(--spacing-sm);
    }

    .process-step .step-content:first-child {
        display: none;
    }

    .process-step:nth-child(even) .step-content,
    .process-step:nth-child(odd) .step-content {
        text-align: right;
    }

    .mobile-sticky-cta {
        display: block;
    }

    .section {
        padding: var(--spacing-lg) 0;
    }

    .floating-element {
        display: none;
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-lg: 2rem;
        --spacing-xl: 3rem;
    }

    .trust-grid,
    .practice-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

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

/* ===== EXAMPLE SITE RIBBON ===== */
.example-ribbon {
    position: fixed;
    top: 80px;
    left: -80px;
    width: 280px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--navy);
    text-align: center;
    padding: 12px 20px;
    transform: rotate(-45deg);
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    transition: all var(--transition-normal);
    font-weight: 700;
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.3;
}

.example-ribbon:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
    transform: rotate(-45deg) scale(1.05);
}

.ribbon-text {
    font-size: 1rem;
    font-weight: 800;
}

.ribbon-subtext {
    font-size: 0.75rem;
    font-weight: 600;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .example-ribbon {
        top: 70px;
        left: -85px;
        width: 260px;
        padding: 10px 15px;
    }

    .ribbon-text {
        font-size: 0.9rem;
    }

    .ribbon-subtext {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .example-ribbon {
        top: 65px;
        left: -90px;
        width: 240px;
        padding: 8px 12px;
    }

    .ribbon-text {
        font-size: 0.85rem;
    }

    .ribbon-subtext {
        font-size: 0.65rem;
    }
}
