        :root {
            --font-main: 'Unbounded', sans-serif;
            --color-red: #E50914;
            --color-white: #FFFFFF;
            --color-dark: #0a0a0a;
            --color-nav-bg: rgba(255, 255, 255, 0.15);
            --color-grey-light: rgba(255, 255, 255, 0.7);
            --color-grey-dark: rgba(255, 255, 255, 0.3);
            --color-border: rgba(255, 255, 255, 0.2);
            --color-footer-bg: #1F1F1F;
        }

        html {
            scroll-behavior: smooth; 
        }

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

        body {
            font-family: var(--font-main);
            background-color: var(--color-dark);
            color: var(--color-white);
            overflow-x: hidden;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            padding: 20px 150px 0px 150px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            position: relative;
            max-height: 5vh;
            width: auto;
            object-fit: contain;
        }

        .logo_img {
            max-height: 10vh;
        }

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

        .nav-links {
            display: flex;
            list-style: none;
            background-color: var(--color-nav-bg);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            padding: 15px 40px;
            border-radius: 50px;
            gap: 30px;
        }

        .nav-links li a {
            text-decoration: none;
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-links li a:hover,
        .nav-links li a.active {
            color: var(--color-white);
        }

        .nav-links li a.active {
            font-weight: 700;
        }

        .btn-signup {
            background-color: var(--color-red);
            color: var(--color-white);
            border: none;
            padding: 15px 40px;
            border-radius: 50px;
            font-family: var(--font-main);
            font-weight: 700;
            font-size: 14px;
            cursor: pointer;
            transition: transform 0.2s ease;
        }

        .btn-signup:hover {
            background: var(--color-white);
            color: var(--color-dark);
            transform: scale(1.05);
        }

        .hamburger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            gap: 5px;
            z-index: 1001;
        }

        .hamburger span {
            display: block;
            width: 25px;
            height: 3px;
            background-color: var(--color-white);
            transition: all 0.3s ease;
        }
        
        /* Hamburger Anim */
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 6px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -6px);
        }

        /* --- Section #Home --- */
        #home {
            position: relative;
            width: 100%;
            height: 100vh; /* full screen */
            min-height: 700px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 50px 0 150px;
            overflow: hidden;
        }

        #home::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
            radial-gradient(circle at 79% 50%, rgb(255 255 255 / 20%) 27%, rgba(255, 255, 255, 0) 35%),
            linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), 
            url('src/back1.jpg');
            background-size: cover;
            background-position: center;
            z-index: -1;
        }

        #home::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 15%;
                background: linear-gradient(
                    to bottom,
                    transparent 0%,
                    rgba(10, 10, 10, 1) 33%,
                    #0a0a0a 100%
                );
            z-index: 1; 
            pointer-events: none;
        }

        .home-content {
            flex: 0 0 50%;
            z-index: 2;
            max-width: 650px;
        }

        .main-headline {
            font-size: 64px;
            font-weight: 900;
            line-height: 1.2;
            text-transform: uppercase;
            margin-bottom: 30px;
        }

        .text-red {
            color: var(--color-red);
        }

        .sub-text {
            font-size: 16px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 50px;
            max-width: 520px;
        }

        .cta-buttons {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .btn-start {
            background-color: var(--color-red);
            color: var(--color-white);
            text-decoration: none;
            padding: 18px 50px;
            border-radius: 50px;
            font-weight: 700;
            text-transform: capitalize;
            display: inline-block;
        }

        .btn-start:hover {
            background: var(--color-white);
            color: var(--color-dark);
            transform: scale(1.05);
        }

        .btn-watch {
            display: flex;
            align-items: center;
            gap: 15px;
            color: var(--color-white);
            text-decoration: none;
            font-weight: 700;
            cursor: pointer;
        }

        .play-icon {
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        
        .play-icon::after {
            content: '';
            width: 0; 
            height: 0; 
            border-top: 8px solid transparent;
            border-bottom: 8px solid transparent;
            border-left: 12px solid var(--color-red);
            margin-left: 4px;
        }

        .play-icon:hover {
            background: var(--color-white);
            color: var(--color-dark);
            transform: scale(1.05);
        }

        .home-image {
            flex: 0 0 45%;
            height: 100%;
            position: relative;
            display: flex;
            align-items: flex-start;
            justify-content: flex-end;
            z-index: 1;
        }

        .home-image img {
            max-height: 90vh;
            width: auto;
            object-fit: contain;
        }

        .scroll-top-btn {
            position: fixed;
            bottom: 40px;
            right: 40px;
            width: 56px;
            height: 56px;
            background-color: #1F1F1F;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0,0,0,0.5);
        }

        .scroll-top-btn.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .scroll-top-btn:hover {
            background-color: #333;
        }
        
        .scroll-top-btn svg {
            width: 28px;
            height: 28px;
            stroke: #E50914;
            stroke-width: 3;
            fill: none;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        @media (max-width: 1200px) {
            #home {
                padding: 0 30px;
                justify-content: center;
            }
            .main-headline { font-size: 48px; }
            .home-image {
                position: absolute;
                right: -100px;
                opacity: 0.5;
                z-index: -1;
            }
            .home-content { flex: 0 0 80%; }
        }

        @media (max-width: 992px) {
            header { padding: 20px; }
            .nav-links {
                display: flex;
                position: absolute;
                top: 80px;
                left: 0;
                width: 100%;
                flex-direction: column;
                background-color: var(--color-dark);
                border-radius: 0;
                padding: 20px;
                align-items: center;
                gap: 20px;
                border-bottom: 1px solid rgba(255,255,255,0.1);

                opacity: 0;
                visibility: hidden;
                transform: translateY(-20px);
                pointer-events: none;
                transition: all 0.3s ease-in-out;
            }

            .nav-links.active { 
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
                pointer-events: auto;
            }

            .hamburger { display: flex; }
            .btn-signup { display: none;}
        }

        @media (max-width: 900px) {
             #home {
                align-items: center;
                text-align: center;
                padding: 100px 20px 0 20px;
            }
            .home-content {
                flex: 0 0 80%;
                align-items: center;
                display: flex;
                flex-direction: column;
            }

            .main-headline {
                font-size: 35px;
            }

            .sub-text {
                font-size: 14px;
                max-width: 90%;
                margin: 0 auto 40px auto;
            }
            .home-image { opacity: 0.2; }
            
            .cta-buttons {
                flex-direction: column;
                width: 100%;
                max-width: 300px;
                gap: 20px;
            }

            .home-image { display: none; }

            .scroll-top-btn {
                bottom: 40px;
                right: 20px;
                width: 48px;
                height: 48px;
            }
        }

        @media (max-width: 768px) {
             #home {
                align-items: center;
                text-align: center;
                padding: 100px 30px;
            }
            .home-content {
                flex: 0 0 100%;
                align-items: center;
                display: flex;
                flex-direction: column;
            }
            .sub-text { margin: 0 auto 40px auto; }
            .home-image { display: none; }

            .scroll-top-btn {
                bottom: 40px;
                right: 20px;
                width: 48px;
                height: 48px;
            }
        }

        #about-us {
            width: 100%;
            min-height: 100vh;
            background-color: var(--color-dark);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 170px 0;
            box-sizing: border-box;
            overflow: hidden;
        }

        .about-content {
            width: 100%;
            max-width: 1200px;
            padding: 0 50px;
            /* margin-bottom: 60px; */
        }

        .about-content h3 {
            font-size: 32px;
            font-weight: 700;
            color: var(--color-white);
            margin-bottom: 40px;
            margin-top: 40px;
        }

        .about-content p {
            font-size: 16px;
            color: var(--color-grey-light);
            line-height: 1.7;
            max-width: 700px;
            margin-bottom: 50px;
        }

        .stats-bar-container {
            width: 100%;
            display: flex;
            justify-content: center;
            border-top: 1px solid var(--color-border);
            border-bottom: 1px solid var(--color-border);
        }

        /* Stats Bar */
        .about-stats {
            display: flex;
            width: 100%;
            background-color: var(--color-footer-bg);
            justify-content: center;
            gap: 120px;
            padding: 30px 0;
            border-top: 1px solid var(--color-border);
            border-bottom: 1px solid var(--color-border);
        }

        .stat-item {
            display: flex;
            flex-direction: column;
            align-items: flex-start; /* text left */
        }

        .stat-number {
            font-size: 42px;
            font-weight: 900;
            color: var(--color-red);
        }

        .stat-label {
            font-size: 16px;
            font-weight: 500;
            color: var(--color-grey-light);
            text-transform: uppercase;
        }

        .gallery-container {
            justify-content: center;
            width: 100%;
            display: flex;
            /* horizontal scroll on small screen */
            overflow-x: auto; 
            overflow-y: hidden; /* hide vertical scroll */
            padding: 40px 50px;
            gap: 25px;
            /* hide scrollbar */
            -ms-overflow-style: none;
            scrollbar-width: none;
        }
        
        .gallery-container::-webkit-scrollbar {
            display: none;
        }

        .gallery-item {
            flex: 0 0 280px;
            aspect-ratio: 3 / 4; /* portrait orient */
            background-color: var(--color-red);
            border-radius: 20px;
            overflow: hidden; /* clip the image */
            position: relative;
            
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(30%);
            transition: filter 0.4s ease, transform 0.4s ease;
        }

        .gallery-item:hover {
            transform: translateY(-15px) scale(1.03);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
        }

        .gallery-item:hover img {
            filter: grayscale(0%);
            transform: scale(1.05);
        }

        @media (max-width: 992px) {
            .about-content {
                padding: 0 30px;
            }
            .heading-wrapper h2 { font-size: 32px; }
            .about-content h3 { font-size: 26px; }
            .about-stats {
                gap: 30px;
                flex-wrap: wrap; /* allow wrap */
                justify-content: space-between;
            }
            .stat-item { flex: 1 1 100px; } /* make stats responsive */
            .stat-number { font-size: 36px; }
            
            .gallery-container { padding: 30px; }
            .gallery-item { flex: 0 0 220px; }
        }

        @media (max-width: 768px) {
            #about-us {
                padding: 80px 0;
                justify-content: flex-start;
            }
            .about-content {
                padding: 0 20px;
                margin-bottom: 40px;
            }
            .about-content h3 { font-size: 22px; }
            .about-content p { font-size: 14px; margin-bottom: 30px; }
            
            .about-stats {
                padding: 20px 30px;
            }
            .stat-item {
                flex: 1 1 40%; /* 2 stats per row */
            }
            .stat-number { font-size: 28px; }
            .stat-label { font-size: 14px; }
            
            .gallery-container {
                padding: 20px;
                gap: 15px;
                justify-items: center;
            }
            .gallery-item { flex: 0 0 180px; }
        }

        #why-us {
            width: 100%;
            min-height: 100vh;
            background-color: var(--color-dark);
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 100px 50px;
            overflow: hidden;
            box-sizing: border-box;
        }

        .why-us-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 60px;
            width: 100%;
            max-width: 1400px;
        }

        .heading-wrapper {
            position: relative;
            display: inline-block; /* = content */
            margin-bottom: 10px;
        }

        .heading-wrapper h2 {
            font-size: 42px;
            font-weight: 900;
            text-transform: uppercase;
            color: var(--color-red);
            margin: 0;
        }

        .heading-wrapper::before,
        .heading-wrapper::after {
            content: '';
            position: absolute;
            height: 4px;
            background-color: rgba(255, 255, 255, 0.3);
        }

        .heading-wrapper::before {
            width: 60%;
            left: 0;
            bottom: -15px;
        }
        
        .heading-wrapper::after {
            width: 65%;
            left: 20%;
            bottom: -25px;
        }

        .why-us-content {
            flex: 1 1 55%;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .why-us-heading {
            font-size: 42px;
            font-weight: 900;
            text-transform: uppercase;
            color: var(--color-red);
            margin-bottom: 0;
        }

        .why-us-subheading {
            font-size: 18px;
            font-weight: 400;
            color: var(--color-white);
            max-width: 500px;
            margin-bottom: 30px;
            margin-top: 30px;
            line-height: 1.5;
        }

        .features-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .features-list li {
            display: flex;
            align-items: flex-start; /* bullet/text 1 line */
            gap: 15px;
        }

        /* bullet */
        .features-list li::before {
            content: '';
            display: block;
            min-width: 12px;
            height: 12px;
            background-color: var(--color-red);
            border-radius: 50%;
            margin-top: 8px;
        }

        .feature-item-content h3 {
            font-size: 16px;
            font-weight: 700;
            color: var(--color-white);
            margin: 0 0 8px 0;
        }

        .feature-item-content p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            margin: 0;
        }

        .why-us-image-container {
            flex: 1 1 45%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .image-box {
            position: relative;
            width: 100%;
            max-width: 500px;
            aspect-ratio: 4 / 5; /* respons box with ratio */
        }

        .red-bg-shape {
            position: absolute;
            bottom: 0;
            right: 0;
            width: 85%;
            height: 85%;
            background-color: var(--color-red);
            border-radius: 30px;
        }

        .image-box img {
            position: absolute;
            top: 0;
            left: 0;
            width: 90%;
            height: 90%;
            object-fit: cover;
            border-radius: 20px;
            transform: skewX(5deg);
            object-position: 20% 50%;
        }

        @media (max-width: 992px) {
            .why-us-wrapper {
                flex-direction: column;
                gap: 50px;
            }

            .why-us-content {
                flex-basis: auto;
                text-align: center;
                align-items: center;
            }

            .features-list li {
                text-align: left;
            }

            .why-us-image-container {
                flex-basis: auto;
                width: 80%;
            }
        }

        @media (max-width: 768px) {
            #why-us {
                padding: 80px 20px;
            }

            .why-us-heading {
                font-size: 32px;
            }

            .why-us-subheading {
                font-size: 16px;
            }

            .why-us-image-container {
                width: 100%;
            }

             .image-box {
                max-width: 400px; 
            }
        }

        #map-section {
            width: 100%;
            min-height: 100vh;
            background-color: var(--color-dark);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 120px 50px;
            box-sizing: border-box;
            overflow: hidden;
        }

        .map-header {
            width: 100%;
            max-width: 1400px;
            margin-bottom: 30px;
        }
        
        .map-header h3 {
            font-size: 32px;
            font-weight: 700;
            color: var(--color-white);
            margin-top: 30px;
        }
        
        .map-container {
            position: relative;
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            border-radius: 20px;
            overflow: hidden;
        }
        
        .map-image {
            width: 100%;
            height: 600px;
            display: block;
            filter: brightness(0.6);
        }
        
        /* --- Map Pin Styles --- */
        .map-pin {
            position: absolute;
            display: flex;
            align-items: flex-start; /* Aligns pin icon to the top */
            gap: 15px;
            width: 250px; /* Give the info box a width */
            cursor: pointer;
        }

        .pin-icon {
            width: 32px; /*pin width*/
            height: auto;
            /* Simple pulse animation */
            animation: pulse 2s infinite;
        }

        .pin-info {
            background-color: rgba(10, 10, 10, 0.7);
            backdrop-filter: blur(5px);
            border-radius: 8px;
            padding: 15px;
            color: var(--color-white);
            display: flex;
            flex-direction: column;
            gap: 8px;
            /* Hide by default, show on hover */
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
        }
        
        .map-pin:hover .pin-info {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .pin-info h4 {
            font-size: 16px;
            font-weight: 700;
            text-transform: uppercase;
            margin: 0;
        }
        
        .pin-info p {
            font-size: 14px;
            color: var(--color-grey-light);
            margin: 0;
            line-height: 1.5;
        }
        
        .pin-info .hours {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            font-weight: 700;
            color: var(--color-red);
        }
        
        .map-pin.pin-1 {
            top: 25%;
            left: 20%;
        }
        
        .map-pin.pin-2 {
            top: 15%;
            left: 65%;
        }

        .map-pin.pin-3 {
            top: 55%;
            left: 55%;
        }
        
        /* Pulse Animation */
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }

        @media (max-width: 992px) {
            .map-header h2 {
                font-size: 32px;
            }
            .map-header h3 {
                font-size: 24px;
            }
            
            .map-pin {
                width: 200px;
            }
            .pin-info {
                padding: 12px;
            }
            .pin-info h4 { font-size: 14px; }
            .pin-info p, .pin-info .hours { font-size: 12px; }
        }

        @media (max-width: 768px) {
            #map-section {
                padding: 80px 20px;
            }
            
            /* On mobile, show info by default? or stack? */
            /* For this, we'll make info smaller and pins overlap */
            .map-pin {
                gap: 5px;
            }
            .pin-icon {
                width: 24px;
            }
            .pin-info {
                opacity: 1;
                visibility: visible;
                transform: none;
                padding: 10px;
                background-color: rgba(10, 10, 10, 0.85);
            }
            
             .map-pin.pin-1 {
                top: 10%;
                left: 10%;
            }
            .map-pin.pin-2 {
                top: 35%;
                left: 40%;
            }
            .map-pin.pin-3 {
                top: 60%;
                left: 20%;
            }
        }

        #pricing {
            width: 100%;
            min-height: 100vh;
            background-color: var(--color-dark);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 120px 50px;
            overflow: hidden;
            box-sizing: border-box;
        }

        .pricing-header {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            margin-bottom: 60px;
        }
        
        .pricing-header h3 {
            font-size: 32px;
            font-weight: 700;
            color: var(--color-white);
            margin-top: 30px;
            margin-bottom: 20px;
        }

        .pricing-cards-container {
            display: flex;
            justify-content: center;
            align-items: stretch; /* equal height */
            gap: 30px;
            width: 100%;
            max-width: 1300px;
        }

        .pricing-card {
            flex: 1 1 360px;
            background-color: var(--color-card-bg);
            border-radius: 20px;
            border-color: var(--color-white);
            padding: 40px;
            display: flex;
            flex-direction: column;
            transition: transform 0.3s ease;
            max-width: 400px;
            border-style: solid;
            border-width: 5px;
            transition: all 0.3s ease;
        }

        .pricing-card.popular {
            background-color: var(--color-red);
            transform: scale(1.05);
        }

        .pricing-card:hover {
            /* background: var(--color-white);
            color: var(--color-dark); */
            transform: scale(1.05);
        }

        .pricing-card.popular:hover {
            transform: scale(1.10);
        }

        .pricing-card h4 {
            font-size: 24px;
            font-weight: 700;
            margin: 0 0 10px 0;
        }

        .pricing-card .price {
            font-size: 48px;
            font-weight: 900;
            margin: 10px 0;
        }

        .pricing-card .price span {
            font-size: 16px;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.7);
        }
        
        .popular .price span {
             color: rgba(255, 255, 255, 0.9);
        }

        .pricing-card .description {
            font-size: 14px;
            line-height: 1.5;
            margin-bottom: 30px;
            font-weight: 400;
        }

        .pricing-card .features {
            list-style: none;
            padding: 0;
            margin: 0 0 30px 0;
            flex-grow: 1; /* knopku do nyzu */
        }

        .pricing-card .features li {
            font-size: 14px;
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
            gap: 10px;
            line-height: 1.4;
        }

        .pricing-card .features li::before {
            content: '•';
            color: var(--color-red);
            font-size: 24px;
            line-height: 0.7;
            min-width: 10px;
        }

        .popular .features li::before {
            color: var(--color-white); /* white bullet on card */
        }

        .pricing-card .btn {
            padding: 15px 30px;
            border-radius: 50px;
            font-family: var(--font-main);
            font-weight: 700;
            font-size: 14px;
            cursor: pointer;
            text-align: center;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .pricing-card .btn-outline {
            background: transparent;
            border-color: var(--color-red);
            color: var(--color-white);
        }

        .pricing-card .btn-outline:hover {
            background: var(--color-red);
            border-color: var(--color-red);
        }

        .popular .btn-filled {
            background: var(--color-white);
            border-color: var(--color-white);
            color: var(--color-dark);
        }

        .popular .btn-filled:hover {
            background: var(--color-dark);
            color: var(--color-white);
        }

        @media (max-width: 992px) {
            .pricing-cards-container {
                flex-direction: column;
                align-items: center;
                gap: 50px;
            }

            .pricing-card {
                flex-basis: auto;
                width: 100%;
                max-width: 500px;
            }

            .pricing-card.popular {
                transform: scale(1);
                order: -1; /* popular plan 1 on mobile */
            }
        }

        @media (max-width: 768px) {
            #pricing {
                padding: 80px 20px;
            }

            .heading-wrapper h2 {
                font-size: 32px;
            }

            .pricing-header h3 {
                font-size: 24px;
            }

            .pricing-card {
                 padding: 30px;
            }
        }

        #reviews {
            width: 100%;
            min-height: 100vh;
            background-color: var(--color-dark);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 120px 0;
            overflow: hidden;
            box-sizing: border-box;
        }

        .reviews-header {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            margin-bottom: 60px;
        }

        .carousel-container {
            position: relative;
            width: 100%;
            max-width: 1400px;
            padding: 0 100px; /* space for arrows */
        }

        .carousel-track-container {
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            /* JS set 1 slide */
            transition: transform 0.5s ease;
        }

        .review-card {
            flex-shrink: 0;
            width: 100%; /* default (mobile) */
            /* komp: 3 slide */
            flex-basis: calc(100% / 3);
            padding: 0 15px; /* between cards */
        }

        .review-card-inner {
            background-color: var(--color-card-bg-darker);
            border-radius: 20px;
            padding: 40px;
            display: flex;
            flex-direction: column;
            gap: 20px;
            height: 100%;
            border-width: 5px;
            border-color: var(--color-white);
            border-radius: 50px;
            border-style: solid;
        }

        .review-header {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .review-avatar {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            object-fit: cover;
        }

        .review-quote-icon {
            font-size: 72px;
            color: var(--color-red);
            line-height: 0.5;
            font-weight: 900;
            margin-right: auto; /* avatar/text from quote */
            opacity: 0.8;
        }

        .review-text {
            font-size: 14px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.7);
            flex-grow: 1; /* author to bottom */
        }

        .review-author h4 {
            font-size: 18px;
            font-weight: 700;
            margin: 0 0 5px 0;
        }

        .review-author span {
            font-size: 14px;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.7);
        }
        
        .review-rating {
            display: flex;
            gap: 5px;
            color: var(--color-red);
            font-size: 20px;
        }

        .carousel-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            width: 50px;
            height: 50px;
            cursor: pointer;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: background 0.3s ease;
        }
        
        .carousel-arrow:hover {
            background: var(--color-red);
            border-color: var(--color-red);
        }
        
        .carousel-arrow.hidden {
            display: none;
        }

        #carousel-left {
            left: -10px;
        }
        
        #carousel-right {
            right: -10px;
        }

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

        .carousel-indicators {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 40px;
        }

        .indicator-dot {
            width: 35px;
            height: 4px;
            background-color: rgba(255, 255, 255, 0.3);
            border: none;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .indicator-dot.active {
            background-color: var(--color-red);
        }

        @media (max-width: 1200px) {
            .carousel-container {
                padding: 0 40px;
            }
            .review-card {
                /* 2 slide*/
                flex-basis: calc(100% / 2);
            }
            #carousel-left { left: -20px; }
            #carousel-right { right: -20px; }
        }
        
        @media (max-width: 992px) {
            #reviews {
                 padding: 80px 0;
            }
             .heading-wrapper h2 {
                font-size: 32px;
            }
        }

        @media (max-width: 768px) {
            .carousel-container {
                padding: 0 20px;
            }
            .review-card {
                /* 1 slide */
                flex-basis: 100%;
            }
            
            .carousel-arrow {
                width: 40px;
                height: 40px;
            }
            #carousel-left { left: -10px; }
            #carousel-right { right: -10px; }
        }

        #faq {
            width: 100%;
            min-height: 100vh;
            background-color: var(--color-dark);
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 120px 50px;
            box-sizing: border-box;
        }

        .faq-container {
            width: 100%;
            max-width: 900px;
            display: flex;
            flex-direction: column;
        }

        .faq-header {
            margin-bottom: 40px;
        }

        .faq-header h2 {
            font-size: 42px;
            font-weight: 900;
            text-transform: uppercase;
            color: var(--color-red);
            margin: 0 0 20px 0;
        }

        .faq-list {
            display: flex;
            flex-direction: column;
            width: 100%;
        }

        .faq-item {
            border-bottom: 2px solid var(--color-border);
        }
        
        .faq-item:last-child {
             border-bottom: 2px solid var(--color-border);
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 30px 0;
            cursor: pointer;
            width: 100%;
            background: none;
            border: none;
            text-align: left;
        }
        
        .faq-question-content {
            display: flex;
            align-items: center;
            gap: 20px;
            font-family: var(--font-main);
            font-size: 20px;
            font-weight: 700;
            color: var(--color-white);
        }

        .faq-number {
            color: var(--color-grey-light);
            font-weight: 500;
        }

        .faq-icon {
            font-size: 32px;
            font-weight: 700;
            color: var(--color-red);
            transition: transform 0.3s ease;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out;
        }
        
        .faq-answer-content {
             /* not part of anim */
            padding: 0 0 30px 50px;
            font-size: 14px;
            line-height: 1.7;
            color: var(--color-grey-light);
        }
        
        .faq-answer-content p {
            margin: 0 0 15px 0;
        }

        .faq-answer-content p:last-child {
            margin-bottom: 0;
        }
        
        .faq-answer-content .asterisk-notes {
            font-size: 12px;
            color: var(--color-grey-dark);
            display: flex;
            flex-direction: column;
            gap: 5px;
            margin-top: 20px;
        }

        .faq-item.active .faq-answer {
            max-height: 500px; /* 4 large answ */
            transition: max-height 0.5s ease-in;
        }

        .faq-item.active .faq-icon {
            content: '–'; 
            /* by JS */
        }

        @media (max-width: 768px) {
            #faq {
                padding: 80px 20px;
            }

            .faq-header h2 {
                font-size: 32px;
            }

            .faq-question-content {
                font-size: 16px;
                gap: 15px;
            }
            
            .faq-icon {
                font-size: 28px;
            }

            .faq-answer-content {
                padding: 0 0 25px 40px;
            }
        }

        #form {
            width: 100%;
            min-height: 100vh;
            /* background-color: var(--color-dark); */
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 120px 50px;
            box-sizing: border-box;
            overflow: hidden;
        }

        #form-video-bg {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            z-index: -2;
            object-fit: cover;
        }

        #form::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 15%;
                background: 
                linear-gradient(to top,
                    transparent 0%,
                    rgba(10, 10, 10, 1) 33%,
                    #0a0a0a 100%
                );
            z-index: 1; 
            pointer-events: none;
        }

        #form::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 15%;
                background: 
                linear-gradient(to bottom,
                    transparent 0%,
                    rgba(10, 10, 10, 1) 33%,
                    #0a0a0a 100%
                );
            z-index: 1; 
            pointer-events: none;
        }

        .form-container {
            width: 100%;
            max-width: 900px;
            display: flex;
            flex-direction: column;
            align-items: center;
            z-index: 2;
            position: relative;
        }

        .form-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .form-header h3 {
            font-size: 32px;
            font-weight: 700;
            color: var(--color-white);
            margin-top: 30px;
            margin-bottom: 30px;
        }
        
        .contact-form {
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }

        .form-group {
            /* 48 + 48 + 4 gap = 100% */
            flex-basis: 48%; 
            position: relative;
            margin-bottom: 60px; /* between rows */
        }
        
        .form-group.full-width {
            flex-basis: 100%;
        }

        .form-group label {
            position: absolute;
            top: -20px; /* above the input */
            left: 0;
            font-size: 12px;
            font-weight: 700;
            color: var(--color-red);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .form-group input[type="text"],
        .form-group textarea,
        .form-group select {
            width: 100%;
            background: var(--color-footer-bg);
            border: none;
            border-radius: 10px;
            border-bottom: 2px solid var(--color-grey-dark);
            padding: 10px 0;
            font-family: var(--font-main);
            color: var(--color-white);
            font-size: 16px;
            transition: border-bottom-color 0.3s ease;
        }

        .form-group input[type="text"]:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-bottom-color: var(--color-red);
            padding-left: 15px;
            padding-right: 15px;
        }

        .select-option:hover {
            background-color: var(--color-red);
        }
        
        .form-group textarea {
            min-height: 40px; /* 1 line */
            resize: vertical;
            padding-left: 15px;
            padding-right: 15px;
        }
        
        /* select wrapper for custom icon */
        .select-wrapper {
            position: relative;
        }
        
        .form-group select {
            appearance: none;
            -webkit-appearance: none; /* hide default arrow */
            padding-right: 30px; /* for custom icon */
            cursor: pointer;
            padding-left: 15px;
            padding-right: 40px;
        }
        
        .select-icon {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 24px;
            font-weight: 700;
            color: var(--color-white);
            pointer-events: none; /* click goes to select */
        }

        .form-footer {
            flex-basis: 100%;
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }

        .btn-submit {
            background-color: var(--color-red);
            color: var(--color-white);
            border: 2px solid var(--color-red);
            padding: 15px 50px;
            border-radius: 50px;
            font-family: var(--font-main);
            font-weight: 700;
            font-size: 14px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-submit:hover {
            background-color: transparent;
            color: var(--color-red);
        }

        @media (max-width: 768px) {
            #form {
                padding: 80px 20px;
            }

            .form-header h2 {
                font-size: 32px;
            }
            .form-header h3 {
                font-size: 24px;
            }

            .form-group {
                flex-basis: 100%; /* fields vertically */
            }
        }

        footer {
            width: 100%;
            background-color: var(--color-footer-bg);
            padding: 60px 60px 80px 150px; 
            box-sizing: border-box;
            margin: 0 auto 0;
            border-top-left-radius: 40px;
            border-top-right-radius: 40px;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 40px;
            align-items: center;
            justify-content: space-between;
        }

        .footer-brand {
            flex: 0 0 auto;
            display: flex;
            flex-direction: column;
            gap: 30px;
            align-items: center;
        }

        .footer-logo {
            width: 140px;
            height: auto;
            object-fit: contain;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            background-color: var(--color-white);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: var(--color-red);
            font-size: 18px;
            text-decoration: none;
            transition: transform 0.3s ease, background-color 0.3s ease;
        }

        .social-icon:hover {
            transform: translateY(-3px);
            background-color: var(--color-red);
            color: var(--color-white);
        }

        .footer-newsletter {
            flex: 1; /* takes remaining space */
            max-width: 450px;
            display: flex;
            flex-direction: column;
            gap: 25px;
            margin: 0 20px; /* between columns */
        }

        .footer-newsletter h3 {
            font-size: 16px;
            font-weight: 700;
            color: var(--color-red);
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .newsletter-wrapper {
            display: flex;
            align-items: center;
            background-color: var(--color-white);
            border-radius: 8px;
            overflow: hidden;
            height: 50px; /* fixed for bar */
            transition: box-shadow 0.3s ease;
        }
        
        .newsletter-wrapper:focus-within {
            box-shadow: 0 0 0 2px var(--color-red);
        }

        .newsletter-input {
            flex-grow: 1;
            border: none;
            padding: 0 20px;
            height: 100%;
            font-family: var(--font-main);
            font-size: 14px;
            color: #000;
            outline: none;
            background: transparent;
        }

        .newsletter-input::placeholder {
            color: #ccc;
        }

        .newsletter-btn {
            width: 60px;
            height: 100%;
            background-color: var(--color-red);
            border: none;
            color: var(--color-white);
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 18px;
            transition: background-color 0.3s ease;
        }

        .newsletter-btn:hover {
            background-color: #c40812;
        }

        .footer-contacts {
            flex: 0 0 auto;
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .footer-contacts h3 {
            font-size: 16px;
            font-weight: 700;
            color: var(--color-red);
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .contact-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 15px;
            color: var(--color-white);
            font-size: 14px;
            line-height: 1.4;
        }

        .contact-icon-circle {
            width: 32px;
            height: 32px;
            min-width: 32px;
            background-color: #e0e0e0;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: var(--color-red);
            font-size: 16px;
        }

        @media (max-width: 992px) {
            footer {
                width: 90%;
                flex-direction: column;
                align-items: center;
                text-align: center;
                padding: 50px 30px;
                height: auto;
            }

            .footer-newsletter {
                width: 100%;
                margin: 0;
                align-items: center;
            }
            
            .newsletter-wrapper {
                width: 100%;
                max-width: 400px;
            }

            .footer-contacts {
                align-items: center;
            }
            
            .contact-item {
                justify-content: center;
                text-align: left;
            }
        }