@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');




* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Raleway", sans-serif;
}

html,
body {
    height: 100%;
    width: 100%;
}


.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* NAVBAR */
.navbar {
    height: 12vh;
    background: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 4.1vw;
    overflow: hidden;
}

.logo img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.nav-links a:hover {
    color: #007bff;
}

.whatsapp {
    text-decoration: none;
    color: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5vw;
    font-family: "poppins";
    font-weight: 600;
}

.whatsapp i {
    font-size: 2vw;
}

.hero {
    position: relative;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Video */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -1;
}

/* Dark overlay */
.hero::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    top: 0;
    left: 0;
}



/* SECTIONS */
.section {
    padding: 4vw 8%;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: 700;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1.3vw;
    align-items: center;
    justify-content: center;
}

.card {
    height: 55vh;
    width: 23vw;
    background: #fff;
    border-radius: .7vw;
    overflow: hidden;
    text-decoration: none;
    color: #333;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: 0.3s ease;
    display: block;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card img {
    width: 100%;
    height: 34vh;
    object-fit: cover;
}

.card-content {
    padding-top: .6vw;
    padding-left: 1vw;
}

.card-content h3 {
    font-size: 1.2vw;
    margin-bottom: 8px;
}

.duration {
    font-size: 14px;
    color: #777;
    margin-bottom: 6px;
}

.price {
    font-weight: 600;
    color: #e63946;
    margin-bottom: 15px;
}

.btn-card {
    display: inline-block;
    padding: 5px 16px;
    background: #111;
    color: #fff;
    font-size: 14px;
    border-radius: 25px;
    transition: 0.3s;
}

.card:hover .btn-card {
    background: #397ee6;
}


.light {
    background: #f8f9fa;
}

.about-section {
    padding: 2vw 2.2vw;
    background: #f8fbff;
}

.about-container {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.about-header span {
    color: #0077ff;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
}

.about-header h2 {
    font-size: 34px;
    margin: 15px 0;
    color: #111;
}

.about-header p {
    max-width: 600px;
    margin: auto;
    color: #666;
    line-height: 1.6;
    margin-bottom: 60px;
}

/* Features Grid */

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.about-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 15px;
    transition: 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.about-card i {
    font-size: 40px;
    color: #0077ff;
    margin-bottom: 15px;
    display: inline-block;
}

.about-card h3 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #222;
}

.about-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}


.why-section {
    padding: 3vw 2vw;
    background: #f9fbff;
}

.why-container {
    max-width: 1200px;
    margin: auto;
}

.why-header {
    text-align: center;
    margin-bottom: 70px;
}

.why-header span {
    color: #0077ff;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
}

.why-header h2 {
    font-size: 34px;
    margin: 15px 0;
    color: #111;
}

.why-header p {
    max-width: 650px;
    margin: auto;
    color: #666;
    line-height: 1.6;
}

/* Grid */

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Card */

.why-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 18px;
    transition: 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.why-card i {
    font-size: 40px;
    color: #0077ff;
    margin-bottom: 20px;
    display: inline-block;
}

.why-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #222;
}

.why-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}



.cta {
    background: linear-gradient(135deg, #007bff, #00c6ff);
    padding: 80px 20px;
    text-align: center;
    color: #fff;
}

.cta-content {
    max-width: 800px;
    margin: auto;
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Button */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    background: #fff;
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-btn i {
    font-size: 20px;
}

.cta-btn:hover {
    transform: translateY(-3px);
    background: #f1f1f1;
}




.reviews-section {
    padding: 7vw 3vw;
    background: #f9fbff;
}

.reviews-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    align-items: center;

}

/* Left Summary */

.reviews-summary h2 {
    margin-bottom: 30px;
}

.rating-box h3 {
    margin-bottom: 10px;
}

.stars {
    color: #fbbf24;
    font-size: 22px;
    margin: 10px 0;
}

.google-text {
    color: #4285F4;
    font-weight: bold;
}

/* Slider */

.reviews-slider {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    cursor: grab;
}

.reviews-slider::-webkit-scrollbar {
    display: none;
}

/* Card */

.review-card {
    min-width: 280px;
    background: #ffffff;
    padding: 25px;
    border-radius: .4vw;
    box-shadow: 0 2px 1px rgba(0, 0, 0, 0.3);
}

.review-card h4 {
    margin-bottom: 10px;
}

.review-card p {
    font-size: 14px;
    color: #555;
}

.small {
    font-size: 16px;
}



.faq-section {
    padding: 3vw 2vw;
    background: #f9fbff;
}

.faq-container {
    max-width: 900px;
    margin: auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-header h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.faq-header p {
    color: #666;
}

/* FAQ Item */

.faq-item {
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: 0.3s ease;
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h4 {
    font-size: 16px;
}

.faq-question i {
    font-size: 20px;
    transition: 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 25px;
}

.faq-answer p {
    padding-bottom: 20px;
    font-size: 14px;
    color: blue;
}

/* Active */

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}




.footer {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 20px;
}

/* RESPONSIVE */

@media (max-width: 480px) {

    /* Container */
    .container {
        width: 100%;
    }

    /* NAVBAR */
    .navbar {
        height: auto;
        padding: 10px 15px;
    }

    .nav-container {
        flex-wrap: wrap;
        gap: 10px;
    }

    .logo {
        width: 8.5vw;
        /* fixed size better for mobile */
    }

    .nav-links {
        gap: 15px;
        font-size: 14px;
    }

    /* Hide Home & About on Mobile */
    .hide-mobile {
        display: none;
    }

    .whatsapp {
        font-size: 13px;
        gap: 5px;
    }

    .whatsapp i {
        font-size: 18px;
    }


    /* HERO */
    .hero {
        height: 45vh;
    }

    /* SECTIONS */
    .section {
        padding: 4vw 3vw;
    }

    .section-title {
        font-size: 22px;
    }

    /* CARDS */
    .cards {
        flex-direction: column;
        gap: 20px;
    }

    .card {
        width: 100%;
    }

    .card h3 {
        font-size: 18px;
    }

    .card p {
        font-size: 14px;
    }

    /* ABOUT */
    .about-section {
        padding: 40px 15px;
    }

    .about-header h2 {
        font-size: 24px;
    }

    .about-header p {
        font-size: 14px;
        margin-bottom: 40px;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-card {
        padding: 25px 20px;
    }

    /* WHY SECTION */
    .why-section {
        padding: 40px 15px;
    }

    .why-header h2 {
        font-size: 24px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-card {
        padding: 25px 20px;
    }

    /* REVIEWS */
    .reviews-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .reviews-section {
        padding: 50px 15px;
    }

    .review-card {
        min-width: 85%;
    }

    /* FAQ */
    .faq-section {
        padding: 40px 15px;
    }

    .faq-header h2 {
        font-size: 24px;
    }

    .faq-question {
        padding: 15px 15px;
    }

    .faq-question h4 {
        font-size: 14px;
    }

    .faq-answer p {
        font-size: 13px;
    }

    /* CTA */
    .cta {
        padding: 40px 15px;
        font-size: 16px;
    }

    /* FOOTER */
    .footer {
        font-size: 14px;
        padding: 15px;
    }
}