:root {
    /* Ritz Carlton inspired elegant color palette */
    --primary-navy: #1a2332;
    --primary-gold: #b8944d;
    --accent-gold: #d4af37;
    --soft-cream: #f8f6f3;
    --warm-white: #ffffff;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --gradient-overlay: linear-gradient(135deg, rgba(26, 35, 50, 0.9) 0%, rgba(44, 62, 80, 0.85) 100%);
    --elegant-gradient: linear-gradient(to right, #1a2332 0%, #2c3e50 50%, #34495e 100%);
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
    letter-spacing: 1px;
}

p, label, input, select, textarea {
    font-family: 'Lato', 'Arial', sans-serif;
}

/* Header Styles */
header {
    background: var(--warm-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0.5rem 2rem;
    gap: 3rem;
}

.logo {
    height: 100px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

nav {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: space-evenly;
    gap: 2rem;
}

nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

nav a:hover {
    color: var(--primary-gold);
}

nav a:hover::after {
    width: 100%;
}

.bbb-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--soft-cream);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.bbb-rating:hover {
    background: var(--primary-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(184, 148, 77, 0.3);
}

.bbb-rating img {
    height: 30px;
}

.bbb-rating span {
    color: var(--text-dark);
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
}

.phone-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary-gold);
    color: var(--warm-white);
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(184, 148, 77, 0.3);
    margin-right: 0.25rem;
}

.phone-cta:hover {
    background: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(184, 148, 77, 0.5);
}

.phone-cta svg {
    width: 18px;
    height: 18px;
}

.login-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: var(--primary-navy);
    text-decoration: none;
    border: 2px solid var(--primary-navy);
    border-radius: 50px;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.login-link:hover {
    background: var(--primary-navy);
    color: var(--warm-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(26, 35, 50, 0.3);
}

.login-link svg {
    width: 16px;
    height: 16px;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

/* Hide mobile BBB link on desktop */
.mobile-bbb-link {
    display: none;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 85vh;
    background: var(--elegant-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero.has-background {
    background: url('../images/hero-background.jpg') center center no-repeat;
    background-size: cover;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-video-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.85) 0%, rgba(44, 62, 80, 0.75) 100%);
}

.hero-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--warm-white);
    max-width: 900px;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

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

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--warm-white);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--soft-cream);
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-gold);
    color: var(--warm-white);
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-gold);
}

.cta-button:hover {
    background: transparent;
    border-color: var(--warm-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(184, 148, 77, 0.4);
}

/* Section Styles */
section {
    padding: 3rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-navy);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-gold);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    background: var(--warm-white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-top: 3px solid transparent;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(184, 148, 77, 0.25);
    border-top-color: var(--primary-gold);
}

.stat-number {
    font-size: 3rem;
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Affiliates Carousel */
.carousel-container {
    position: relative;
    overflow: hidden;
    padding: 3rem 0;
    background: linear-gradient(to bottom, var(--warm-white) 0%, var(--soft-cream) 100%);
    margin-top: 4rem;
    border-radius: 15px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(184, 148, 77, 0.1);
}

.carousel-track {
    display: flex;
    gap: 3rem;
    animation: scroll 30s linear infinite;
    align-items: center;
    padding: 1rem 0;
    width: fit-content;
    will-change: transform;
}

.affiliate-logo {
    height: 50px;
    width: auto;
    opacity: 0.6;
    transition: opacity 0.3s ease, filter 0.3s ease, transform 0.3s ease;
    filter: grayscale(80%) brightness(1.1);
    object-fit: contain;
    max-width: 150px;
    max-height: 50px;
    flex-shrink: 0;
}

.affiliate-logo:hover {
    opacity: 1;
    filter: grayscale(0%) brightness(1);
    transform: scale(1.05);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.carousel-track {
    animation-duration: 25s;
}

.carousel-track:hover {
    animation-play-state: paused;
}

/* Form Styles */
.form-container {
    max-width: 700px;
    margin: 3rem auto;
    background: var(--warm-white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

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

label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

input, select, textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--soft-cream);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: var(--warm-white);
}

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

button[type="submit"] {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--primary-gold);
    color: var(--warm-white);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

button[type="submit"]:hover {
    background: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 148, 77, 0.3);
}

/* Process Animation Styles */
.process-animation {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 3rem auto;
    max-width: 1200px;
}

.process-step {
    background: var(--warm-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    animation: drawIn 1.2s ease forwards;
    opacity: 0;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    overflow: visible;
}

.process-step::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 3px solid var(--primary-gold);
    border-radius: 15px;
    animation: sketch 1.2s ease forwards;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
}

.process-step:hover {
    transform: translateY(-5px) rotate(-1deg);
    box-shadow: 0 8px 30px rgba(184, 148, 77, 0.2);
}

.process-step:nth-child(1) {
    animation-delay: 0.2s;
}
.process-step:nth-child(1)::before {
    animation-delay: 0.2s;
}

.process-step:nth-child(2) {
    animation-delay: 0.8s;
}
.process-step:nth-child(2)::before {
    animation-delay: 0.8s;
}

.process-step:nth-child(3) {
    animation-delay: 1.4s;
}
.process-step:nth-child(3)::before {
    animation-delay: 1.4s;
}

.process-step:nth-child(4) {
    animation-delay: 2.0s;
}
.process-step:nth-child(4)::before {
    animation-delay: 2.0s;
}

@keyframes drawIn {
    0% {
        opacity: 0;
        transform: scale(0.8) rotate(-5deg);
    }
    60% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes sketch {
    0% {
        stroke-dashoffset: 1000;
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    100% {
        stroke-dashoffset: 0;
        opacity: 1;
    }
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: popIn 0.4s ease forwards;
    animation-delay: inherit;
    opacity: 0;
    transform: scale(0);
}

.process-step:nth-child(1) .step-icon { animation-delay: 0.8s; }
.process-step:nth-child(2) .step-icon { animation-delay: 1.4s; }
.process-step:nth-child(3) .step-icon { animation-delay: 2.0s; }
.process-step:nth-child(4) .step-icon { animation-delay: 2.6s; }

.step-number {
    font-size: 2rem;
    color: var(--primary-gold);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
    animation: scribbleIn 0.6s ease forwards;
    opacity: 0;
    position: relative;
}

.process-step:nth-child(1) .step-number { animation-delay: 0.6s; }
.process-step:nth-child(2) .step-number { animation-delay: 1.2s; }
.process-step:nth-child(3) .step-number { animation-delay: 1.8s; }
.process-step:nth-child(4) .step-number { animation-delay: 2.4s; }

.process-step h3 {
    color: var(--primary-navy);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    animation: fadeInSlide 0.4s ease forwards;
    opacity: 0;
}

.process-step:nth-child(1) h3 { animation-delay: 1.0s; }
.process-step:nth-child(2) h3 { animation-delay: 1.6s; }
.process-step:nth-child(3) h3 { animation-delay: 2.2s; }
.process-step:nth-child(4) h3 { animation-delay: 2.8s; }

.process-step p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    animation: fadeInSlide 0.4s ease forwards;
    opacity: 0;
}

.process-step:nth-child(1) p { animation-delay: 1.2s; }
.process-step:nth-child(2) p { animation-delay: 1.8s; }
.process-step:nth-child(3) p { animation-delay: 2.4s; }
.process-step:nth-child(4) p { animation-delay: 3.0s; }

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0) rotate(-180deg);
    }
    60% {
        transform: scale(1.2) rotate(10deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes scribbleIn {
    0% {
        opacity: 0;
        transform: rotate(-10deg) scale(0.5);
        filter: blur(4px);
    }
    50% {
        transform: rotate(5deg) scale(1.1);
    }
    100% {
        opacity: 1;
        transform: rotate(0deg) scale(1);
        filter: blur(0px);
    }
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.doodle-arrow {
    position: absolute;
    right: -2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: var(--primary-gold);
    animation: drawArrow 0.6s ease forwards, wiggle 2s ease-in-out infinite;
    opacity: 0;
    animation-delay: 1.2s, 2s;
}

.process-step:nth-child(2) .doodle-arrow { animation-delay: 1.8s, 2.6s; }
.process-step:nth-child(3) .doodle-arrow { animation-delay: 2.4s, 3.2s; }

.process-step:last-child .doodle-arrow {
    display: none;
}

@keyframes drawArrow {
    0% {
        opacity: 0;
        transform: translateY(-50%) translateX(-20px) scale(0.5);
    }
    100% {
        opacity: 1;
        transform: translateY(-50%) translateX(0) scale(1);
    }
}

@keyframes wiggle {
    0%, 100% {
        transform: translateY(-50%) translateX(0) rotate(0deg);
    }
    25% {
        transform: translateY(-55%) translateX(3px) rotate(5deg);
    }
    75% {
        transform: translateY(-45%) translateX(3px) rotate(-5deg);
    }
}

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

    .doodle-arrow {
        right: -1.5rem;
        font-size: 1.5rem;
    }

    .process-step:nth-child(2) .doodle-arrow,
    .process-step:nth-child(4) .doodle-arrow {
        display: none;
    }
}

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

    .doodle-arrow {
        transform: translateY(-50%) rotate(90deg);
        right: 50%;
        top: auto;
        bottom: -2.5rem;
    }

    .process-step:last-child .doodle-arrow {
        display: none;
    }
}

/* Calculator Styles */
.calculator {
    background: var(--warm-white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    margin: 3rem auto;
}

.calculator-inputs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.calc-button {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--primary-gold);
    color: var(--warm-white);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Lato', sans-serif;
}

.calc-button:hover {
    background: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 148, 77, 0.4);
}

.calculator-result {
    background: var(--elegant-gradient);
    color: var(--warm-white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 2rem;
}

.result-amount {
    font-size: 3.5rem;
    color: var(--primary-gold);
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.cost-breakdown {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    text-align: left;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--soft-cream);
    font-size: 0.95rem;
}

.breakdown-item strong {
    color: var(--primary-gold);
    font-weight: 600;
}

.projections-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: center;
}

.projection-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 0.75rem 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.25);
    border: 2px solid var(--primary-gold);
    border-radius: 16px;
    color: var(--soft-cream);
    font-size: 0.95rem;
    aspect-ratio: 1;
    gap: 0.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.projection-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
    border-color: var(--warm-white);
    background: rgba(255, 255, 255, 0.3);
}

.projection-year {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-gold);
    line-height: 1;
    margin-top: 0;
}

.projection-label {
    font-size: 0.8rem;
    line-height: 1.2;
    color: var(--soft-cream);
    opacity: 0.9;
}

.projection-item strong {
    color: var(--primary-gold);
    font-weight: 700;
    font-size: 1.4rem;
    margin-top: 0.5rem;
}

.projection-card {
    background: rgba(255, 255, 255, 0.15);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid rgba(184, 148, 77, 0.3);
    transition: all 0.3s ease;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 0;
    width: 100%;
}

.projection-card:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--primary-gold);
    transform: translateY(-5px);
}

.projection-years {
    font-size: 1.5rem;
    color: var(--primary-gold);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.projection-total {
    font-size: 2rem;
    color: var(--warm-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.projection-label {
    font-size: 0.85rem;
    color: var(--soft-cream);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* FAQ Styles */
.faq-container {
    max-width: 900px;
    margin: 3rem auto;
}

.faq-item {
    background: var(--warm-white);
    margin-bottom: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 1.5rem 2rem;
    background: var(--soft-cream);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--primary-gold);
    color: var(--warm-white);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-gold);
    transition: transform 0.3s ease;
}

.faq-question:hover::after {
    color: var(--warm-white);
}

.faq-question.active::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-content {
    padding: 1.5rem 2rem;
    color: var(--text-light);
    line-height: 1.8;
}

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

/* Resources Grid */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.why-roi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.resource-card {
    background: var(--warm-white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-gold);
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(184, 148, 77, 0.2);
}

.resource-icon {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.resource-card h3 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.resource-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.resource-link {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--primary-gold);
    color: var(--warm-white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.resource-link:hover {
    background: var(--accent-gold);
    transform: translateY(-2px);
}

/* Reviews Section */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.review-card {
    background: var(--warm-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.review-stars {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-text {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-style: italic;
    line-height: 1.7;
}

.review-author {
    color: var(--text-light);
    font-weight: 600;
}

/* Footer */
footer {
    background: var(--primary-navy);
    color: var(--soft-cream);
    padding: 3rem 2rem 2rem;
    margin-top: 5rem;
}

/* Footer columns - custom widths for better fit */
.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2.5fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: var(--soft-cream);
    line-height: 1.8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--soft-cream);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.payment-logos {
    display: flex;
    gap: 2rem;
    flex-wrap: nowrap;
    align-items: center;
    margin-top: 1rem;
    justify-content: flex-start;
}

.payment-logos img {
    height: 24px;
    width: auto;
    opacity: 0.9;
    transition: all 0.3s ease;
    object-fit: contain;
}

.payment-logos img:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(248, 246, 243, 0.2);
    padding-top: 2rem;
    text-align: center;
    color: var(--soft-cream);
    font-size: 0.9rem;
}

/* Cities Carousel Styles */
.cities-carousel-wrapper {
    max-width: 1200px;
    margin: 4rem auto 0;
    position: relative;
}

.cities-carousel {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.city-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.6s ease, transform 0.6s ease;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--warm-white);
}

.city-slide.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.city-slide.prev {
    transform: translateX(-100%);
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.city-slide-image {
    position: relative;
    overflow: hidden;
}

.city-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 8s ease-out;
    will-change: transform;
}

.city-slide.active .city-slide-image img {
    transform: scale(1.1);
    transition: transform 8s ease-out;
}

.city-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.5) 0%, rgba(26, 35, 50, 0.2) 100%);
}

.city-slide-content {
    padding: 4rem 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--warm-white);
    position: relative;
}

.city-slide-tag {
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.3s;
}

.city-slide.active .city-slide-tag {
    opacity: 1;
    transform: translateY(0);
}

.city-slide-title {
    font-size: 2.5rem;
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.4s;
}

.city-slide.active .city-slide-title {
    opacity: 1;
    transform: translateY(0);
}

.city-slide-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.city-slide-title a:hover {
    color: var(--primary-gold);
    text-decoration: underline;
}

.city-slide-description {
    font-family: 'Lato', sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.5s;
}

.city-slide.active .city-slide-description {
    opacity: 1;
    transform: translateY(0);
}

.city-slide-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.city-stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.6s;
}

.city-slide.active .city-stat {
    opacity: 1;
    transform: translateY(0);
}

.city-stat:nth-child(2) {
    transition-delay: 0.7s;
}

.city-stat:nth-child(3) {
    transition-delay: 0.8s;
}

.city-stat-number {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-gold);
    font-family: 'Playfair Display', serif;
}

.city-stat-label {
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cities-carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

.carousel-arrow {
    background: var(--warm-white);
    border: 2px solid var(--primary-navy);
    color: var(--primary-navy);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.carousel-arrow:hover {
    background: var(--primary-navy);
    color: var(--warm-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(26, 35, 50, 0.3);
}

.carousel-arrow svg {
    width: 24px;
    height: 24px;
}

.carousel-dots {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--soft-cream);
    border: 2px solid var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot.active {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    width: 40px;
    border-radius: 6px;
}

.carousel-dot:hover:not(.active) {
    background: var(--text-light);
}

.carousel-counter {
    text-align: center;
    margin-top: 1.5rem;
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.counter-current {
    color: var(--primary-gold);
    font-size: 1.5rem;
}

.counter-divider {
    margin: 0 0.5rem;
    color: var(--text-light);
}

.counter-total {
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
        justify-content: center;
        position: relative;
    }

    .logo {
        order: 1;
        margin: 0 auto;
    }

    .menu-toggle {
        display: flex;
        order: 2;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    nav {
        display: none;
        width: 100%;
        order: 3;
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0;
        align-items: flex-start;
        border-top: 1px solid rgba(184, 148, 77, 0.2);
        margin-top: 1rem;
    }

    nav.active {
        display: flex;
    }

    /* Hide desktop BBB, show in menu */
    .header-container > .bbb-rating {
        display: none;
    }

    /* BBB in mobile menu */
    nav .mobile-bbb-link {
        display: flex !important;
        width: 100%;
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(184, 148, 77, 0.2);
        margin-bottom: 0.5rem;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.9rem;
    }

    nav .mobile-bbb-link img {
        height: 30px;
    }

    .phone-cta {
        display: none;
    }

    .login-link {
        display: none;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

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

    .section-title {
        font-size: 1.8rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .form-container {
        padding: 2rem 1.5rem;
    }

    .calculator {
        padding: 2rem 1.5rem;
    }

    .result-amount {
        font-size: 2rem;
    }

    section {
        padding: 3rem 1.5rem;
    }

    .cities-carousel {
        height: auto;
        min-height: 500px;
    }

    .city-slide {
        grid-template-columns: 1fr;
        grid-template-rows: 250px 1fr;
    }

    .city-slide-content {
        padding: 2.5rem 2rem;
    }

    .city-slide-title {
        font-size: 1.8rem;
    }

    .city-slide-description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .city-slide-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .city-stat-number {
        font-size: 1.5rem;
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
    }

    .carousel-arrow svg {
        width: 20px;
        height: 20px;
    }

    .carousel-dots {
        gap: 0.75rem;
    }

    .carousel-dot {
        width: 10px;
        height: 10px;
    }

    .carousel-dot.active {
        width: 30px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .resources-grid {
        grid-template-columns: 1fr;
    }

    .why-roi-grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .calculator-inputs {
        grid-template-columns: 1fr;
    }

    .cost-breakdown {
        grid-template-columns: 1fr;
    }

    .projections-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .projection-item {
        padding: 1rem;
    }

    .projection-year {
        font-size: 2.3rem;
    }

    .projection-label {
        font-size: 0.7rem;
    }

    .projection-item strong {
        font-size: 1.1rem;
    }

    .projection-total {
        font-size: 1.5rem;
    }

    .result-amount {
        font-size: 2.5rem;
    }

    body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }

    footer {
        padding: 2rem 1rem 1rem !important;
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
        box-sizing: border-box !important;
    }

    .footer-content {
        display: block !important;
        grid-template-columns: none !important;
        gap: 2.5rem !important;
        padding: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .footer-section {
        text-align: left !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow: visible !important;
        margin-bottom: 2.5rem !important;
        box-sizing: border-box !important;
    }

    .footer-section h3 {
        font-size: 1.1rem;
    }

    .footer-section p {
        font-size: 0.9rem;
        word-wrap: break-word;
    }

    .footer-section > div[style*="flex-direction: column"] {
        gap: 1.5rem !important;
    }

    .footer-section > div[style*="flex-direction: column"] > div[style*="display: flex"] {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.5rem !important;
    }

    .footer-section a[style*="background: white"] {
        max-width: fit-content;
    }

    .footer-section img {
        max-width: 200px !important;
        height: auto !important;
        max-height: 50px !important;
    }

    .footer-links {
        padding-left: 0;
    }

    .footer-links li {
        margin-bottom: 0.6rem;
    }

    .footer-bottom {
        padding: 1rem 0;
    }

    .accreditation-logos {
        flex-direction: column !important;
        align-items: flex-start !important;
    }
}
