/* Global Resets & Fonts */
html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
}

/* 🟥 Header / Navigation */
header {
    position: absolute;
    /* Transparent overlap */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
}

.nav-brand {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-brand span {
    color: #e63946;
}

nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: color 0.3s;
}

nav a:hover {
    color: #e63946;
}

/* Mobile Nav Toggle (Simple) */
.menu-toggle {
    display: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

@media(max-width: 768px) {
    header {
        padding: 15px 20px;
    }

    nav ul {
        display: none;
    }

    /* Simplified for now, can add toggle script if requested */
    .menu-toggle {
        display: block;
    }
}

/* 🌇 HERO WRAPPER */
#laHeroSlider {
    width: 100%;
    height: 90vh;
    max-height: 900px;
    position: relative;
    overflow: hidden;
}

@media(max-width: 1200px) {
    #laHeroSlider {
        height: 85vh;
    }
}

@media(max-width: 768px) {
    #laHeroSlider {
        height: 75vh;
    }
}

@media(max-width: 480px) {
    #laHeroSlider {
        height: 70vh;
    }
}

/* 🖼️ BACKGROUND */
.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 35%, rgba(0, 0, 0, 0.25) 100%);
    z-index: 1;
}

.slide-content {
    max-width: 720px;
    padding: 40px 60px;
    color: #fff;
    position: relative;
    z-index: 2;
    text-align: left;
    animation: fadeInUp 1.4s ease both;
    margin-top: 60px;
    /* Header Offset */
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* 💬 TEXT */
.slide-content h4 {
    font-size: 22px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.slide-content h1 {
    font-size: clamp(40px, 6vw, 64px);
    line-height: 1.1;
    margin-bottom: 25px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.75);
}

.highlight-red {
    color: #e63946;
}

.slide-content p {
    font-size: 18.5px;
    line-height: 1.8;
    margin-bottom: 35px;
    color: #f1f1f1;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

/* 🔘 BUTTONS */
.cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.slide-content a {
    background: #e63946;
    padding: 16px 38px;
    color: #fff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 8px;
    letter-spacing: 1px;
    transition: all .3s ease;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
}

.slide-content a:hover {
    background: #ff4c5c;
    transform: translateY(-3px);
}

.slide-content a.secondary {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.slide-content a.secondary:hover {
    background: #fff;
    color: #e63946;
}

/* 📱 RESPONSIVE Slide */
@media(max-width: 768px) {
    .slide-content {
        padding: 30px 25px;
        margin-top: 80px;
    }

    .slide-content h4 {
        font-size: 17px;
    }

    .slide-content h1 {
        font-size: clamp(30px, 7vw, 42px);
    }

    .slide-content p {
        font-size: 15.5px;
        margin-bottom: 24px;
    }

    .slide-content a {
        font-size: 14px;
        padding: 12px 24px;
    }
}

@media(max-width: 480px) {
    .slide-content {
        padding: 25px 18px;
    }

    .slide-content h1 {
        font-size: 26px;
    }

    .slide-content p {
        font-size: 13.5px;
    }
}

/* 🎛 Dots (static aesthetic) */
.slider-controls {
    position: absolute;
    bottom: 18px;
    right: 28px;
    display: flex;
    gap: 10px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
}

.dot.active {
    background: #fff;
}


/* 🏡 WHY CHOOSE LA RELOCATION */
.relocation-flex {
    max-width: 1150px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: nowrap;
}

.relocation-text {
    flex: 1 1 480px;
    min-width: 320px;
    text-align: left;
    position: relative;
    z-index: 2;
}

.relocation-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: .5px;
    line-height: 1.1;
    font-size: clamp(30px, 5vw, 48px);
    margin-top: -20px !important;
    margin-bottom: 10px;
}

.relocation-title .t-trusted {
    color: #e63946;
}

.relocation-divider {
    width: 90px;
    height: 4px;
    background: #e63946;
    border-radius: 2px;
    margin: 10px 0 20px;
}

.relocation-text p {
    font-size: 19px;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 24px;
    max-width: 540px;
}

/* 📸 Image Column */
.photo-frame {
    flex: 1 1 380px;
    max-width: 480px;
    line-height: 0;
    margin: 0 auto -20px !important;
    padding-bottom: 0 !important;
}

.carol-photo {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 14px;
    filter: brightness(1.05);
    transition: all .3s ease;
    object-fit: cover;
    margin-bottom: -10px !important;
}

/* 📱 Responsive Adjustments */
@media (max-width: 768px) {
    #why-relocation {
        padding: 50px 10px 30px;
        text-align: center;
    }

    .relocation-flex {
        flex-direction: column-reverse;
        gap: 0;
    }

    .photo-frame {
        max-width: 440px;
        margin: 0 auto -20px !important;
    }

    .carol-photo {
        border-radius: 14px;
        margin-bottom: -15px !important;
    }

    .relocation-title {
        text-align: center;
        margin-top: -30px !important;
        margin-bottom: 5px;
        font-size: clamp(26px, 6vw, 36px);
    }

    .relocation-divider {
        margin: 6px auto 12px;
    }

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

    .relocation-text p {
        font-size: 17px;
        line-height: 1.8;
        margin-bottom: 14px;
        color: #ddd;
    }
}

/* 📱 Small Phones */
@media (max-width: 480px) {
    #why-relocation {
        padding: 30px 8px 15px;
    }

    .photo-frame {
        max-width: 360px;
        margin: 0 auto -25px !important;
    }

    .carol-photo {
        border-radius: 12px;
        margin-bottom: -25px !important;
    }

    .relocation-title {
        margin-top: -30px !important;
        font-size: clamp(24px, 7vw, 30px);
    }

    .relocation-text p {
        font-size: 16.5px;
        line-height: 1.8;
    }
}


/* 🏙️ FEATURE GRID – LOS ANGELES HOMES EDITION */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 25px;
    justify-items: center;
}

.grid-item {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background-size: cover;
    background-position: center;
    transition: transform .4s ease, box-shadow .4s ease, filter .4s ease;
}

.grid-item:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    filter: brightness(1.05);
}

/* 🎭 OVERLAYS */
.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    transition: background .4s ease;
}

.overlay.red {
    background: rgba(230, 57, 70, 0.75);
}

.grid-item:hover .overlay {
    background: rgba(230, 57, 70, 0.6);
}

/* ✨ TEXT & BORDER EFFECT */
.grid-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(18px, 2.8vw, 24px);
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}

.grid-text span {
    position: relative;
    display: inline-block;
    padding: 18px 40px;
}

.grid-text span::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid rgba(255, 255, 255, 0.9);
    transform: scale(0.85);
    transition: transform .4s ease, opacity .4s ease;
    opacity: 0.9;
    border-radius: 2px;
}

.grid-item:hover .grid-text span::before {
    transform: scale(1);
    opacity: 1;
}

/* 📱 MOBILE RESPONSIVE Grid */
@media(max-width: 1024px) {
    #feature-grid {
        padding: 80px 20px;
    }

    #feature-grid h2 {
        font-size: clamp(32px, 6vw, 50px);
    }
}

@media(max-width: 768px) {
    #feature-grid {
        padding: 70px 15px;
    }

    #feature-grid h2 {
        font-size: clamp(28px, 7vw, 42px);
    }

    .grid-container {
        gap: 18px;
    }

    .grid-text span {
        padding: 14px 28px;
    }
}

@media(max-width: 480px) {
    #feature-grid {
        padding: 60px 12px;
    }

    #feature-grid h2 {
        font-size: clamp(26px, 8vw, 38px);
    }

    .grid-container {
        gap: 14px;
    }

    .grid-text {
        font-size: 15px;
    }
}


/* 💎 LUXURY SLIDER */
/* ✨ Slider Base */
.slider-wrapper {
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.slider-track {
    display: flex;
    align-items: stretch;
    gap: 25px;
    width: max-content;
    animation: slideTrack 20s linear infinite;
}

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

/* 🧊 Card Style */
.lux-card {
    flex: 0 0 28%;
    max-width: 350px;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 30px 20px;
    backdrop-filter: blur(8px);
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.lux-card:hover {
    border-color: #e63946;
    transform: translateY(-6px);
    box-shadow: 0 0 30px rgba(230, 57, 70, 0.25);
}

.lux-card h4 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.lux-card p {
    color: #bbb;
    font-size: 16px;
    line-height: 1.6;
    max-width: 260px;
    margin: 0 auto;
}

/* 🎞️ Animation */
@keyframes slideTrack {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


/* 🌇 WHY WORK WITH CAROL Statistics */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
    justify-content: center;
}

.stat-box {
    padding: 20px 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-4px);
    border-color: rgba(230, 57, 70, 0.5);
}

.stat-box h3 {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(36px, 5vw, 60px);
    line-height: 1.1;
    color: #fff;
    margin: 0 0 8px;
}

.stat-box p {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.stat-box:hover h3 {
    color: #e63946;
}

@media(max-width: 768px) {
    #why-carol {
        padding: 70px 15px;
    }

    .stats-grid {
        gap: 24px;
    }

    .stat-box {
        border: none;
    }

    .stat-box h3 {
        font-size: 44px;
    }
}

@media(max-width: 480px) {
    #why-carol {
        padding: 60px 15px;
    }

    .stat-box h3 {
        font-size: 40px;
    }

    .stat-box p {
        font-size: 13.5px;
        letter-spacing: 1.2px;
    }
}


/* 🏆 RE/MAX Awards */
.section-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    font-size: clamp(34px, 6vw, 60px);
    color: #fff;
    letter-spacing: 2px;
    line-height: 1.15;
    margin-bottom: 30px;
}

.highlight-red {
    color: #e63946;
    transition: text-shadow .3s ease;
}

.highlight-red:hover {
    text-shadow: 0 0 8px rgba(230, 57, 70, 0.7);
}

.section-subtext {
    font-size: 18px;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 70px;
    max-width: 850px;
    margin-inline: auto;
}

/* Slider */
.awards-slider {
    overflow: hidden;
    width: 100%;
    position: relative;
    z-index: 2;
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 0;
}

.awards-track {
    display: inline-flex;
    gap: 80px;
    padding: 0 40px;
    animation: awards-marquee 40s linear infinite;
    will-change: transform;
}

.award-card {
    flex: 0 0 auto;
    width: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.award-card img {
    width: 100%;
    max-width: 210px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.6)) brightness(1.1);
    transition: transform .4s ease, filter .4s ease, opacity .4s ease;
    opacity: 0.95;
}

.award-card:hover img {
    transform: scale(1.08);
    filter: drop-shadow(0 0 25px rgba(230, 57, 70, 0.45)) brightness(1.2);
    opacity: 1;
}

@keyframes awards-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 1024px) {
    .award-card {
        width: 200px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 48px;
    }

    .section-subtext {
        font-size: 17px;
        margin-bottom: 50px;
    }

    .award-card {
        width: 180px;
    }

    .award-card img {
        max-width: 170px;
    }
}

@media (max-width: 480px) {
    section {
        padding: 70px 15px;
    }

    .section-title {
        font-size: 42px;
        line-height: 1.25;
    }

    .section-subtext {
        font-size: 16px;
        margin-bottom: 45px;
    }

    .awards-slider {
        padding: 40px 0;
    }

    .award-card {
        width: 170px;
    }

    .award-card img {
        max-width: 165px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .awards-track {
        animation: none;
    }
}


/* ❤️ FINAL CALL TO ACTION */
#final-cta a:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(230, 57, 70, 0.45);
    background: #ff4c5c;
    border-color: #ff4c5c;
}

/* 📱 Responsive Layout */
@media (max-width: 900px) {
    #final-cta {
        text-align: center;
        padding: 80px 20px;
        background: linear-gradient(to bottom, #111 10%, #000 90%);
    }

    #final-cta img {
        max-width: 300px !important;
        margin: 0 auto;
    }

    #final-cta h2 {
        font-size: clamp(28px, 7vw, 42px);
    }

    #final-cta p {
        font-size: 17px;
        margin-bottom: 30px;
    }

    #final-cta a {
        padding: 14px 38px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    #final-cta {
        padding: 60px 15px;
    }

    #final-cta a {
        padding: 13px 32px;
        font-size: 13px;
    }
}


/* 💬 CLIENT TESTIMONIALS */
.testimonial-slider {
    position: relative;
    background: linear-gradient(180deg, #111 0%, #000 100%);
    border-radius: 16px;
    overflow: hidden;
    padding: 60px 30px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
}

.testimonial-slide p {
    font-size: 18px;
    line-height: 1.8;
    color: #fff;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-slide .client {
    color: #fff;
    font-weight: 700;
    margin-top: 10px;
    font-size: 17px;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    gap: 20px;
}

.testimonial-controls button {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    font-size: 22px;
    padding: 8px 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: background .3s ease, transform .3s ease;
}

.testimonial-controls button:hover {
    background: #e63946;
    transform: scale(1.1);
}

.dots {
    display: flex;
    gap: 10px;
}

.dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all .3s ease;
}

.dots button.active {
    background: #e63946;
    transform: scale(1.3);
}

@media(max-width: 768px) {
    .testimonial-slide p {
        font-size: 16px;
    }

    .testimonial-controls button {
        font-size: 20px;
    }
}


/* 🏢 VISIT OUR NEWHALL OFFICE */
#contact-location {
    background: #0d0d0d;
    padding: 100px 5%;
    text-align: center;
    color: #f5f5f5;
}

.contact-card {
    background: linear-gradient(180deg, #161616 0%, #111 100%);
    border-radius: 14px;
    padding: 50px 30px;
    max-width: 90%;
    margin: 70px auto 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
    transition: transform .4s ease, box-shadow .4s ease;
    font-size: 17px;
    color: #ddd;
    animation: fadeUp .9s ease forwards;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 45px rgba(230, 57, 70, 0.25);
}

.contact-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 8px;
    color: #fff;
}

.contact-card p {
    font-size: 16px;
    margin-bottom: 12px;
    color: #bbb;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    margin-bottom: 25px;
    font-size: 16px;
}

.contact-info a {
    color: #e63946;
    text-decoration: none;
    font-weight: 600;
    transition: color .3s ease;
}

.contact-info a:hover {
    color: #ff4c5c;
}

.contact-info span {
    color: #666;
}

.office-hours {
    background: #1a1a1a;
    padding: 18px;
    border-radius: 10px;
    margin: 20px auto 25px;
    width: 80%;
    box-shadow: inset 0 0 12px rgba(255, 255, 255, 0.03);
}

.office-hours h4 {
    color: #e63946;
    font-weight: 700;
    margin-bottom: 6px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.office-hours p {
    color: #ccc;
    margin: 0;
    font-size: 15.5px;
}

.directions-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 28px;
    border: 2px solid #e63946;
    color: #e63946;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .5px;
    transition: all .3s ease;
}

.directions-btn:hover {
    background: #e63946;
    color: #fff;
    box-shadow: 0 8px 20px rgba(230, 57, 70, 0.35);
}

.service-tagline {
    font-size: 15px;
    color: #aaa;
    margin-top: 25px;
    font-style: italic;
}

.final-cta {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
}

.cta-btn.full-width {
    width: 100%;
}

@media (max-width: 768px) {
    #contact-location {
        padding: 80px 5%;
    }

    .contact-card {
        padding: 35px 20px;
        max-width: 95%;
    }

    .contact-info {
        flex-direction: column;
        gap: 6px;
    }

    .contact-info span {
        display: none;
    }

    .office-hours {
        width: 95%;
    }

    .cta-btn {
        display: block;
        padding: 15px 28px;
        width: 100%;
        font-size: 15px;
    }
}


/* 🏠 FAQ SECTION */
#remax-faq {
    background: #121212;
    padding: 100px 20px;
    text-align: center;
    color: #eaeaea;
}

.faq-container {
    text-align: left;
    max-width: 850px;
    margin: auto;
}

.faq-item {
    border-radius: 10px;
    margin-bottom: 18px;
    overflow: hidden;
    background: linear-gradient(180deg, #1c1c1c 0%, #171717 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.faq-item.open {
    border-left: 4px solid #e63946;
    background: linear-gradient(180deg, #232323 0%, #1b1b1b 100%);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.6);
}

.faq-question {
    width: 100%;
    background: transparent;
    color: #e0e0e0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 17px;
    text-align: left;
    padding: 18px 25px;
    border: none;
    outline: none;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    color: #e63946;
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.open .faq-question::after {
    content: '–';
    color: #e0e0e0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #151515;
    color: #ccc;
    transition: max-height 0.45s ease, padding 0.3s ease;
    padding: 0 25px;
}

.faq-item.open .faq-answer {
    max-height: 500px;
    padding: 18px 25px 25px;
}

.faq-answer p {
    margin: 0;
    line-height: 1.7;
    font-size: 16px;
}

@media(max-width: 768px) {
    .faq-question {
        font-size: 16px;
        padding: 16px 20px;
    }

    .faq-answer {
        font-size: 15px;
    }
}

/* 🌍 GLOBAL FOOTER */
#remaxFooter {
    position: relative;
    background: linear-gradient(180deg, #0b0b0b 0%, #141414 100%);
    color: #d9d9d9;
    padding: 80px 20px 40px;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    overflow: hidden;
}

/* 🎈 Balloon Canvas */
#remaxBalloonCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.22;
    pointer-events: none;
}

/* Shine Effect */
.shine-wrap {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.shine-overlay {
    position: absolute;
    bottom: 50%;
    left: 0;
    width: 80%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0) 80%);
    transform: translateX(-150%) translateY(50%) rotate(25deg);
    animation: elegantShine 8s infinite ease-in-out;
    pointer-events: none;
}

@keyframes elegantShine {

    0%,
    85% {
        transform: translateX(-150%) translateY(50%) rotate(25deg);
        opacity: 0;
    }

    90% {
        transform: translateX(100%) translateY(-50%) rotate(25deg);
        opacity: 0.3;
    }

    100% {
        transform: translateX(-150%) translateY(50%) rotate(25deg);
        opacity: 0;
    }
}

@media(max-width: 768px) {
    .footer-brand-mobile {
        font-family: 'Roboto Condensed', sans-serif;
        text-transform: uppercase;
        font-weight: 800;
        font-size: 20px;
        color: #fff;
        letter-spacing: 1px;
        margin-bottom: 12px;
    }
}

@media(min-width: 769px) {
    .footer-brand-mobile {
        display: none;
    }
}