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

        :root {
            --red: #E63946;
            --light-bg: #f5f5f5;
            --border: #e0e0e0;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            color: #666666;
            background: #ffffff;
            line-height: 1.6;
        }

        /* Header */
        .header {
            position: sticky;
            top: 0;
            background: #ffffff;
            border-bottom: 3px solid var(--red);
            z-index: 1000;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .header-inner {
            max-width: 1280px;
            margin: 0 auto;
            padding: 16px 32px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo img, .vpi {
            height: 120px;
            width: auto;
        }

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

        .nav a {
            color: #1a1a1a;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: color 250ms ease;
        }

        .nav a:hover {
            color: var(--red);
        }

        .header-cta {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .phone-link {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--red);
            font-weight: 700;
            font-size: 14px;
            text-decoration: none;
            transition: color 250ms ease;
        }

        .phone-link:hover {
            color: #c91c2a;
        }

        .btn-orange {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--red);
            color: #ffffff;
            padding: 12px 24px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            border: none;
            cursor: pointer;
            transition: all 250ms ease;
        }

        .btn-orange:hover {
            background: #d32f2f;
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(230, 57, 70, 0.3);
        }

        .btn-large {
            padding: 16px 32px;
            font-size: 16px;
        }

        .btn-full {
            width: 100%;
        }

        /* Hero */
        .hero {
            position: relative;
            min-height: 600px;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-size: cover;
            background-position: center;
            z-index: 0;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.6);
            z-index: 1;
        }

        .hero-wrapper {
            width: min(1280px, calc(100% - 32px));
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 2;
            padding: 60px 0;
        }

        .hero-tag {
            display: inline-block;
            background: var(--red);
            color: white;
            padding: 8px 16px;
            border-radius: 4px;
            font-weight: 800;
            font-size: 12px;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        .hero-content h1 {
            color: #ffffff;
            margin-bottom: 12px;
            line-height: 1.1;
            text-transform: uppercase;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
            font-size: 56px;
            font-weight: 700;
        }

        .hero-subtitle {
            font-size: 18px;
            color: #ffffff;
            margin-bottom: 16px;
            text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
        }

        .hero-desc {
            font-size: 16px;
            color: #ffffff;
            margin-bottom: 32px;
            line-height: 1.7;
            text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
        }

        .hero-form {
            background: rgba(255, 255, 255, 0.75);
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
        }

        .hero-form h3 {
            color: var(--red);
            font-size: 24px;
            margin-bottom: 8px;
        }

        .hero-form > p {
            color: #666666;
            margin-bottom: 24px;
            font-size: 14px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #1a1a1a;
            font-weight: 600;
            font-size: 14px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid var(--red);
            border-radius: 4px;
            font-size: 14px;
            font-family: inherit;
            transition: all 250ms ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #c91c2a;
            box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
        }

        /* Services */
        .services {
            padding: 80px 0;
            background: #ffffff;
        }

        .services-inner {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 32px;
        }

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

        .section-header h2 {
            font-size: 40px;
            color: #1a1a1a;
            margin-bottom: 12px;
            position: relative;
            display: inline-block;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: var(--red);
            border-radius: 2px;
        }

        .section-header p {
            color: #666666;
            font-size: 16px;
            margin-top: 24px;
        }

        .services-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .service-card {
            background: var(--light-bg);
            border: 2px solid var(--border);
            border-radius: 6px;
            overflow: hidden;
            transition: all 250ms ease;
        }

        .service-card:hover {
            border-color: var(--red);
            box-shadow: 0 4px 12px rgba(230, 57, 70, 0.1);
        }

        .service-header {
            width: 100%;
            padding: 20px;
            background: transparent;
            border: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: all 250ms ease;
        }

        .service-header:hover {
            background: rgba(230, 57, 70, 0.03);
        }

        .service-header-content {
            display: flex;
            align-items: center;
            gap: 16px;
            text-align: left;
        }

        .service-icon {
            color: var(--red);
            flex-shrink: 0;
            width: 28px;
            height: 28px;
        }

        .service-header h3 {
            margin: 0;
            font-size: 18px;
            color: #1a1a1a;
            font-weight: 600;
        }

        .chevron-icon {
            width: 24px;
            height: 24px;
            transition: transform 250ms ease;
        }

        .service-content {
            padding: 20px;
            border-top: 2px solid var(--border);
            animation: slideDown 250ms ease;
        }

        .service-content p {
            color: #666666;
            font-size: 15px;
            line-height: 1.7;
            margin: 0;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Why Choose */
        .why-choose {
            padding: 80px 0;
            background: #ffffff;
        }

        .why-inner {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 32px;
        }

        .why-inner h2 {
            font-size: 40px;
            color: #1a1a1a;
            margin-bottom: 60px;
            text-align: center;
            position: relative;
            display: inline-block;
            width: 100%;
        }

        .why-inner h2::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: var(--red);
            border-radius: 2px;
        }

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

        .why-card {
            text-align: center;
            padding: 32px;
            background: var(--light-bg);
            border-radius: 8px;
            transition: all 250ms ease;
        }

        .why-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        }

        .why-icon {
            width: 48px;
            height: 48px;
            background: var(--red);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            color: white;
        }

        .why-card h4 {
            color: #1a1a1a;
            font-size: 18px;
            margin-bottom: 12px;
        }

        .why-card p {
            color: #666666;
            font-size: 14px;
            line-height: 1.6;
        }

        /* About */
        .about {
            padding: 80px 0;
            background: #ffffff;
        }

        .about-inner {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 32px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-content h2 {
            font-size: 36px;
            color: #1a1a1a;
            margin-bottom: 24px;
        }

        .about-content p {
            color: #666666;
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 24px;
        }

        .about-image img {
            width: 100%;
            border-radius: 8px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        }

        /* FAQ */
        .faq {
            padding: 80px 0;
            background: #ffffff;
        }

        .faq-inner {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 32px;
        }

        .faq-inner h2 {
            font-size: 40px;
            color: #1a1a1a;
            margin-bottom: 60px;
            text-align: center;
            position: relative;
            display: inline-block;
            width: 100%;
        }

        .faq-inner h2::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: var(--red);
            border-radius: 2px;
        }

        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .faq-item {
            background: var(--light-bg);
            border: 2px solid var(--border);
            border-radius: 6px;
            overflow: hidden;
        }

        .faq-question {
            width: 100%;
            padding: 20px;
            background: transparent;
            border: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: all 250ms ease;
            text-align: left;
            font-size: 16px;
            font-weight: 600;
            color: #1a1a1a;
        }

        .faq-question:hover {
            background: rgba(230, 57, 70, 0.03);
        }

        .chevron {
            width: 20px;
            height: 20px;
            transition: transform 250ms ease;
        }

        .faq-answer {
            padding: 20px 20px 20px 20px;
            border-top: 2px solid var(--border);
            color: #666666;
            font-size: 15px;
            line-height: 1.7;
            animation: slideDown 250ms ease;
        }

        /* Contact */
        .contact {
            padding: 80px 0;
            background: #ffffff;
        }

        .contact-inner {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 32px;
        }

        .contact-inner h2 {
            font-size: 40px;
            color: #1a1a1a;
            margin-bottom: 60px;
            text-align: center;
            position: relative;
            display: inline-block;
            width: 100%;
        }

        .contact-inner h2::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: var(--red);
            border-radius: 2px;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 32px;
        }

        .contact-item {
            text-align: center;
            padding: 32px;
            background: var(--light-bg);
            border-radius: 8px;
        }

        .contact-item svg {
            width: 32px;
            height: 32px;
            color: var(--red);
            margin-bottom: 16px;
        }

        .contact-item h4 {
            color: #1a1a1a;
            font-size: 18px;
            margin-bottom: 12px;
        }

        .contact-item a,
        .contact-item p {
            color: #666666;
            font-size: 14px;
            text-decoration: none;
            line-height: 1.8;
        }

        .contact-item a:hover {
            color: var(--red);
        }

        /* Footer */
        .footer {
            background: #1a1a1a;
            color: #ffffff;
            padding: 60px 0 20px;
            border-top: 4px solid var(--red);
        }

        .footer-inner {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 32px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-col h4 {
            color: #ffffff;
            font-size: 16px;
            margin-bottom: 16px;
        }

        .footer-col p {
            color: #cccccc;
            font-size: 14px;
            line-height: 1.8;
            margin-bottom: 8px;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 8px;
        }

        .footer-col a {
            color: #cccccc;
            text-decoration: none;
            font-size: 14px;
            transition: color 250ms ease;
        }

        .footer-col a:hover {
            color: var(--red);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #999999;
            font-size: 13px;
        }

.video-section, .gallery-section {
    padding-top:40px;
}

.video-gallery {
    display: flex;
    gap: 20px;
    max-width: 1000px;
    margin: 40px auto;
    justify-content: center;
    padding: 0 20px;
}

.video-thumb-wrapper {
    position: relative;
    width: 33%;
    cursor: pointer;
}

.video-thumb-wrapper img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    transition: 0.2s ease;
}

.video-thumb-wrapper:hover img {
    transform: scale(1.03);
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    color: white;
    background: rgba(0,0,0,0.5);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* MODAL */
.video-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    animation: fadeIn 0.25s ease;
}

.video-modal.active {
    display: flex;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
}

#modalVideo {
    width: 100%;
    border-radius: 10px;
}

.close-video {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

.gallery-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.image-gallery {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 20px;
    cursor: grab;
}

/* hide scrollbar */
.image-gallery::-webkit-scrollbar {
    display: none;
}

.image-gallery {
    scrollbar-width: none;
}

/* Desktop: 3 visible */
.gallery-img {
    flex: 0 0 33.333%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    scroll-snap-align: center;
    transition: 0.2s ease;
}

.gallery-img:hover {
    transform: scale(1.02);
}

/* Mobile: 1 visible */
@media (max-width: 768px) {
    .gallery-img {
        flex: 0 0 100%;
        height: 220px;
    }
}

/* arrows */
.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    color: white;
    border: none;
    font-size: 30px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}

.gallery-arrow.left { left: 5px; }
.gallery-arrow.right { right: 5px; }

@media (max-width: 768px) {
    .gallery-arrow {
        display: none;
    }
}

.img-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.img-lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}


        /* Responsive */
        @media (max-width: 768px) {
     .header {
        position: static; /* or relative */
        top: auto;
    }
            
    .video-gallery {
        flex-direction: column;
    }

    .video-thumb-wrapper {
        width: 100%;
    }
            
            .gallery-arrow {
                display:none;
            }

            .header-inner {
                flex-direction: column;
                gap: 16px;
                padding: 16px;
            }

            .nav {
                flex-direction: column;
                gap: 12px;
                width: 100%;
            }

            .hero-wrapper {
                grid-template-columns: 1fr;
                gap: 30px;
                padding: 30px 0;
            }

            .hero-content h1 {
                font-size: 36px;
            }

            .about-inner {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .services-inner,
            .why-inner,
            .faq-inner,
            .contact-inner,
            .footer-inner {
                padding: 0 16px;
            }

            .section-header h2 {
                font-size: 28px;
            }
        }
