﻿/* ================================
   GLOBAL & RESET
================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #f8f8f8;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ================================
   VIDEO SECTION
================================ */
.video-section {
    position: relative;
    height: 90vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .video-section video#bg-video {
        position: absolute;
        top: 50%;
        left: 50%;
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        z-index: -1;
        transform: translate(-50%, -50%);
        object-fit: cover;
    }

.video-overlay {
    position: relative;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

    .video-overlay h1 {
        font-size: 3rem;
        margin-bottom: 20px;
        text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
    }

    .video-overlay p {
        font-size: 1.5rem;
        margin-bottom: 25px;
        text-shadow: 1px 1px 5px rgba(0,0,0,0.7);
    }

    .video-overlay .btn {
        padding: 12px 30px;
        font-size: 1.2rem;
        cursor: pointer;
    }

/* ================================
   THREE IMAGES SECTION
================================ */
.three-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 60px 0;
    gap: 20px;
    text-align: center;
}

    .three-images .img-box {
        flex: 1 1 30%;
        background: #fff;
        padding: 15px;
        border-radius: 12px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
    }

        .three-images .img-box:hover {
            transform: translateY(-10px);
        }

    .three-images img {
        max-width: 100%;
        border-radius: 12px;
        margin-bottom: 15px;
    }

    .three-images .line1 {
        font-weight: bold;
        font-size: 1.2rem;
        margin-bottom: 8px;
    }

    .three-images .line2 {
        color: #777;
        font-size: 1rem;
    }

/* ================================
   FEATURES SECTION
================================ */
.features-section {
    background: #fff;
    padding: 60px 20px;
}

    .features-section h2 {
        font-size: 2.5rem;
        margin-bottom: 40px;
        text-align: center;
    }

    .features-section .row {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .features-section .col-md-4 {
        flex: 1 1 300px;
        text-align: center;
        padding: 20px;
    }

    .features-section h4 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .features-section p {
        color: #555;
        font-size: 1rem;
    }

/* ================================
   TESTIMONIALS SECTION
================================ */
.testimonials-section {
    background: #f0f0f0;
    padding: 60px 20px;
}

    .testimonials-section h2 {
        font-size: 2.5rem;
        margin-bottom: 40px;
        text-align: center;
    }

    .testimonials-section .row {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .testimonials-section .col-md-4 {
        flex: 1 1 300px;
        background: #fff;
        padding: 25px;
        border-radius: 12px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .testimonials-section p {
        font-style: italic;
        color: #555;
        margin-bottom: 15px;
    }

    .testimonials-section strong {
        color: #333;
    }

/* ================================
   CTA SECTION
================================ */
.cta-section {
    background: #d4af37;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    border-radius: 12px;
    margin: 60px 0;
}

    .cta-section h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .cta-section p {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }

    .cta-section .btn {
        padding: 15px 40px;
        font-size: 1.3rem;
        background: #fff;
        color: #d4af37;
        border: none;
        border-radius: 50px;
        transition: all 0.3s ease;
        cursor: pointer;
    }

        .cta-section .btn:hover {
            background: #f0e6c8;
            color: #b38f24;
        }

/* ================================
   SCROLL ANIMATIONS
================================ */
.animate {
    opacity: 0;
    transition: all 0.8s ease-out;
}

.fade-down {
    transform: translateY(-30px);
}

    .fade-down.visible {
        opacity: 1;
        transform: translateY(0);
    }

.fade-left {
    transform: translateX(-30px);
}

    .fade-left.visible {
        opacity: 1;
        transform: translateX(0);
    }

.fade-right {
    transform: translateX(30px);
}

    .fade-right.visible {
        opacity: 1;
        transform: translateX(0);
    }

.slide-up {
    transform: translateY(30px);
}

    .slide-up.visible {
        opacity: 1;
        transform: translateY(0);
    }

.slide-left {
    transform: translateX(-50px);
}

    .slide-left.visible {
        opacity: 1;
        transform: translateX(0);
    }

.slide-right {
    transform: translateX(50px);
}

    .slide-right.visible {
        opacity: 1;
        transform: translateX(0);
    }

.zoom-in {
    transform: scale(0.8);
}

    .zoom-in.visible {
        opacity: 1;
        transform: scale(1);
    }

/* ================================
   RESPONSIVE DESIGN
================================ */
@media (max-width: 992px) {

    .three-images {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin: 40px 0;
    }

        .three-images .img-box {
            flex: 1 1 90%;
            padding: 15px;
        }

    .features-section, .testimonials-section, .cta-section {
        padding: 40px 15px;
    }

        .features-section .row, .testimonials-section .row {
            gap: 15px;
        }

        .features-section .col-md-4, .testimonials-section .col-md-4 {
            padding: 15px;
        }

    .cta-section {
        margin: 40px 0;
    }
}

@media (max-width: 576px) {

    .video-overlay h1 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .video-overlay p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .video-overlay .btn {
        padding: 10px 25px;
        font-size: 1rem;
    }

    .three-images .line1 {
        font-size: 1rem;
        margin-bottom: 5px;
    }

    .three-images .line2 {
        font-size: 0.85rem;
    }

    .features-section h2, .testimonials-section h2, .cta-section h2 {
        font-size: 2rem;
        margin-bottom: 25px;
    }

    .features-section h4 {
        font-size: 1.2rem;
    }

    .features-section p, .testimonials-section p, .cta-section p {
        font-size: 0.9rem;
    }

    .cta-section .btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
}
