/* TABLE OF CONTENTS
1.  Variables & Root Styles
2.  Base & Typography
3.  Layout & Helpers
4.  Header & Navigation
5.  Footer
6.  Buttons & Forms
7.  Hero Section
8.  Services Section
9.  Results Section (3D Carousel)
10. About Section
11. Testimonials Section
12. CTA Section
13. Page Header (for subpages)
14. Legal Content Pages
15. Interactive Elements (Popup, Live Chat)
16. Animations & Keyframes
17. Media Queries (Responsiveness)
*/

/* 1. Variables & Root Styles */
:root {
    --navy: #0E0E52;
    --red: #FF4E50;
    --gold: #FFD700;
    --light-cream: #FFF8E1;
    --white: #FFFFFF;
    --dark-text: #333;
    --light-text: #f0f0f0;

    --font-heading: 'Bangers', cursive;
    --font-body: 'Montserrat', sans-serif;

    --header-height: 80px;
    --transition-speed: 0.3s;
    --border-radius: 8px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--dark-text);
    background-color: var(--light-cream);
    line-height: 1.6;
    overflow-x: hidden;
}

/* 2. Base & Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--navy);
    letter-spacing: 2px;
    line-height: 1.2;
    font-weight: 400;
    /* Bangers font only has regular */
}

h1 {
    font-size: 5rem;
}

h2 {
    font-size: 3.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    max-width: 65ch;
}

a {
    color: var(--red);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

a:hover {
    color: var(--gold);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 3. Layout & Helpers */
.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 6rem 0;
}

.text-center {
    text-align: center;
}

.subtitle {
    display: block;
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.section-header {
    margin-bottom: 4rem;
}

.section-header p {
    margin-left: auto;
    margin-right: auto;
}

/* 4. Header & Navigation */
.header {
    background-color: var(--navy);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: all var(--transition-speed) ease;
    height: var(--header-height);
    display: flex;
    align-items: center;
}

.header.scrolled {
    height: 70px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    gap: 80px;
}

.nav-logo img {
    height: 50px;
    filter: invert(1);
    transition: height var(--transition-speed) ease;
}


.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--gold);
    transition: width var(--transition-speed) ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--white);
    transition: all var(--transition-speed) ease-in-out;
}

/* 5. Footer */
.footer {
    background-color: var(--navy);
    color: var(--light-text);
    padding: 5rem 0 2rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-about .footer-logo img {
    height: 50px;
    filter: invert(1);
    margin-bottom: 1rem;
}

.footer-about p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    color: var(--white);
    font-size: 1.2rem;
    transition: transform var(--transition-speed) ease, color var(--transition-speed) ease;
}

.footer-social a:hover {
    color: var(--gold);
    transform: translateY(-3px);
}

.footer-links h3,
.footer-contact h3 {
    font-family: var(--font-body);
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links ul a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links ul a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-legal .separator {
    margin: 0 0.5rem;
    color: rgba(255, 255, 255, 0.5);
}

/* 6. Buttons & Forms */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    text-align: center;
}

.btn-primary {
    background-color: var(--red);
    color: var(--white);
    border-color: var(--red);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--red);
}

/* Specific to header button */
.header .btn-primary:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

.btn-secondary {
    background-color: transparent;
    color: var(--navy);
    border-color: var(--navy);
}

.btn-secondary:hover {
    background-color: var(--navy);
    color: var(--white);
}

.btn-gold {
    background-color: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

.btn-gold:hover {
    background-color: transparent;
    color: var(--gold);
}

.full-width {
    width: 100%;
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--navy);
}

.contact-form .form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: var(--navy);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #ddd;
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color var(--transition-speed);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
}


/* 7. Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    background: url('https://www.transparenttextures.com/patterns/stardust.png'), linear-gradient(to right, #6d6dec, #4a00e0);
    background: var(--navy);
    overflow: hidden;
}

.curtain {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background-image: linear-gradient(to bottom, #d13032, #a32527);
    background-color: var(--red);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 2;
    transition: transform 1.5s cubic-bezier(0.86, 0, 0.07, 1);
}

.curtain-left {
    left: 0;
    transform-origin: left;
}

.curtain-right {
    right: 0;
    transform-origin: right;
}

body.loaded .curtain-left {
    transform: translateX(-100%);
}

body.loaded .curtain-right {
    transform: translateX(100%);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 7rem;
    color: var(--gold);
    text-shadow: 5px 5px 0px var(--navy), 8px 8px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin: 1rem auto 2.5rem;
    max-width: 600px;
    color: var(--white);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.hero-buttons .btn-primary {
    background-color: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

.hero-buttons .btn-primary:hover {
    background-color: var(--red);
    border-color: var(--red);
    color: var(--white);
}

.hero-buttons .btn-secondary {
    color: var(--white);
    border-color: var(--white);
}

.hero-buttons .btn-secondary:hover {
    background-color: var(--white);
    color: var(--navy);
}

.hero-marquee {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--gold);
    color: var(--navy);
    padding: 1rem 0;
    overflow: hidden;
    white-space: nowrap;
    z-index: 1;
}

.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
    font-family: var(--font-heading);
    letter-spacing: 2px;
    font-size: 1.2rem;
}

.marquee-content span {
    margin: 0 2rem;
}

.marquee-content .fa-star {
    margin-right: 0.5rem;
    color: var(--red);
}

/* 8. Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--white);
    padding: 2.5rem;
    text-align: center;
    border-radius: var(--border-radius);
    border: 3px solid var(--navy);
    box-shadow: 10px 10px 0 var(--red);
    transition: all var(--transition-speed) ease;
}

.service-card:hover {
    transform: translate(-5px, -5px);
    box-shadow: 15px 15px 0 var(--gold);
}

.service-icon {
    font-size: 3rem;
    color: var(--red);
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform var(--transition-speed) ease;
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--navy);
}

/* 9. Results Section (3D Carousel) */
.results-section {
    background-color: var(--navy);
    color: var(--white);
    padding: 6rem 0;
}

.results-section .section-header .subtitle {
    color: var(--gold);
}

.results-section .section-header h2 {
    color: var(--white);
}

.results-section .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.results-carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 300px;
    margin: 0 auto;
    perspective: 1000px;
}

.results-carousel {
    width: 100%;
    height: 100%;
    position: absolute;
    transform-style: preserve-3d;
    transition: transform 1s;
}

.result-card {
    position: absolute;
    width: 360px;
    height: 260px;
    left: 20px;
    top: 20px;
    background-color: var(--light-cream);
    color: var(--navy);
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 5px solid var(--gold);
    backface-visibility: hidden;
}

.result-value {
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--red);
    line-height: 1;
}

.result-label {
    font-weight: 700;
    font-size: 1.2rem;
    text-align: center;
    padding: 0 1rem;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gold);
    color: var(--navy);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
}

.carousel-btn.prev {
    left: -80px;
}

.carousel-btn.next {
    right: -80px;
}


/* 10. About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    max-width: 500px;
}

.about-image-stack {
    position: relative;
    height: 450px;
}

.image-card {
    position: absolute;
    width: 300px;
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border: 5px solid var(--white);
    transition: transform 0.5s ease;
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-card.card1 {
    top: 0;
    left: 0;
    transform: rotate(-10deg);
    z-index: 1;
}

.image-card.card2 {
    top: 50px;
    left: 100px;
    transform: rotate(5deg);
    z-index: 2;
}

.image-card.card3 {
    top: 25px;
    left: 200px;
    transform: rotate(15deg);
    z-index: 3;
}

.about-image-stack:hover .card1 {
    transform: rotate(-5deg) translate(-20px, -20px);
}

.about-image-stack:hover .card2 {
    transform: rotate(0deg) translateY(-40px);
}

.about-image-stack:hover .card3 {
    transform: rotate(5deg) translate(20px, -20px);
}


/* 11. Testimonials Section */
.testimonials-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1518706346123-25547c1b8a87?q=80&w=2070&auto=format&fit=crop') no-repeat center center/cover;
    background-attachment: fixed;
}

.testimonials-section .section-header .subtitle {
    color: var(--gold);
}

.testimonials-section .section-header h2 {
    color: var(--white);
}

.testimonial-slider-wrapper {
    overflow: hidden;
}

.testimonial-slider {
    display: flex;
    gap: 2rem;
    animation: scroll-testimonials 40s linear infinite;
}

.testimonial-ticket {
    flex-shrink: 0;
    width: 400px;
    display: flex;
    background: var(--light-cream);
    filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.3));
}

.ticket-content {
    padding: 2rem;
    flex-grow: 1;
}

.ticket-content p {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.ticket-author {
    border-top: 1px dashed var(--dark-text);
    padding-top: 1rem;
}

.ticket-author h4 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    letter-spacing: 0;
    color: var(--navy);
}

.ticket-author span {
    font-size: 0.9rem;
    color: var(--red);
}

.ticket-stub {
    background-color: var(--red);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    color: var(--gold);
    border-left: 2px dashed var(--light-cream);
}


/* 12. CTA Section */
.cta-section {
    background-color: var(--red);
    padding: 5rem 0;
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    color: var(--white);
    text-shadow: 3px 3px 0 var(--navy);
}

.cta-content p {
    margin: 1rem auto 2rem;
    max-width: 500px;
    font-size: 1.1rem;
}

/* 13. Page Header (for subpages) */
.page-header-section {
    padding: 8rem 0 4rem;
    background: var(--navy);
    color: var(--white);
    text-align: center;
    margin-top: var(--header-height);
}

.page-header-section h1 {
    color: var(--gold);
}

.page-header-section p {
    color: rgba(255, 255, 255, 0.8);
    margin: 1rem auto 0;
    font-size: 1.2rem;
}

/* 14. Legal Content Pages */
.legal-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.legal-content-wrapper h2 {
    margin: 2.5rem 0 1rem;
    border-bottom: 3px solid var(--gold);
    padding-bottom: 0.5rem;
}

.legal-content-wrapper ul {
    list-style: disc;
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.legal-content-wrapper ul li {
    margin-bottom: 0.5rem;
}

.contact-page-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

/* 15. Interactive Elements (Popup, Live Chat) */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(14, 14, 82, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-speed) ease;
}

.popup.show {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    text-align: center;
    position: relative;
    transform: scale(0.7);
    transition: transform var(--transition-speed) ease;
    width: 90%;
    max-width: 500px;
}

.popup.show .popup-content {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    color: #aaa;
}

.popup-icon {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.live-chat-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.chat-icon {
    width: 60px;
    height: 60px;
    background: var(--red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
}

.chat-icon:hover {
    transform: scale(1.1);
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-speed) ease;
}

.live-chat-widget.open .chat-window {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.chat-header {
    background: var(--navy);
    color: var(--white);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h3 {
    color: var(--white);
    font-size: 1.2rem;
}

.close-chat {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

.chat-body {
    padding: 1rem;
    height: 200px;
}

.chat-footer {
    display: flex;
    border-top: 1px solid #eee;
}

.chat-footer input {
    flex-grow: 1;
    border: none;
    padding: 1rem;
    outline: none;
}

.chat-footer button {
    background: var(--red);
    color: var(--white);
    border: none;
    padding: 0 1.5rem;
    cursor: pointer;
}

/* 16. Animations & Keyframes */
@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes scroll-testimonials {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-400px * 3 - 2rem * 3));
    }
}

.animate-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-section .animate-in {
    transition-delay: 1.5s;
}

.service-card.animate-in:nth-child(2) {
    transition-delay: 0.1s;
}

.service-card.animate-in:nth-child(3) {
    transition-delay: 0.2s;
}

.service-card.animate-in:nth-child(4) {
    transition-delay: 0.3s;
}

/* 17. Media Queries (Responsiveness) */
@media (max-width: 1024px) {
    h1 {
        font-size: 4rem;
    }

    h2 {
        font-size: 3rem;
    }

    .hero-title {
        font-size: 5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-text {
        margin: 0 auto;
    }

    .about-image-stack {
        margin: 3rem auto 0;
        width: 90%;
        max-width: 500px;
        height: 400px;
    }

    .image-card {
        width: 250px;
        height: 350px;
    }

    .image-card.card1 {
        left: 0;
    }

    .image-card.card2 {
        left: 50%;
        transform: translateX(-50%) rotate(5deg);
    }

    .image-card.card3 {
        right: 0;
        left: auto;
    }

    .about-image-stack:hover .card1 {
        transform: rotate(-5deg) translateX(-40px);
    }

    .about-image-stack:hover .card3 {
        transform: rotate(5deg) translateX(40px);
    }

    .contact-page-wrapper {
        grid-template-columns: 1fr;
    }

    .carousel-btn.prev {
        left: -20px;
    }

    .carousel-btn.next {
        right: -20px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .section-padding {
        padding: 4rem 0;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: var(--header-height);
        flex-direction: column;
        background-color: var(--navy);
        width: 100%;
        height: calc(100vh - var(--header-height));
        text-align: center;
        transition: 0.3s;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        padding: 1.5rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-link {
        font-size: 1.2rem;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .footer-about {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }

    .testimonial-slider {
        animation: none;
        flex-direction: column;
    }

    .testimonial-ticket {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .results-carousel-wrapper {
        width: 90%;
        max-width: 320px;
        height: 250px;
    }

    .result-card {
        width: 300px;
        height: 220px;
    }

    .result-value {
        font-size: 4rem;
    }

    .result-label {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-links,
    .footer-contact {
        text-align: center;
    }

    .footer-contact ul li {
        justify-content: center;
    }

    .live-chat-widget {
        right: 1rem;
        bottom: 1rem;
    }

    .chat-window {
        width: calc(100vw - 2rem);
    }
}