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

body {
    font-family: 'Poppins', sans-serif;
}

/* ================= HERO SECTION ================= */

.hero {
    position: relative; 
    min-height: 100vh;
    padding: 80px 20px;
    padding-top: 140px;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero {
    background:
        linear-gradient(
            to bottom,
            rgba(10, 10, 30, 0.625) 0%,
            rgba(10, 10, 30, 0.9) 70%,
            #07061a 100%
        ),
        url('../images/hero-bg.png');
}
/* Container */
.hero .container {
    max-width: 900px;
    width: 100%;
    margin: auto;
    padding: 0 15px;
}

/* Heading */
.hero h1 {
    font-size: clamp(32px, 6vw, 77px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: "Playfair Display", serif;
    text-shadow: 0 10px 40px rgba(0,0,0,0.6);
    animation: fadeUp 1s ease forwards;
}

/* Paragraph */
.hero p {
    font-size: clamp(14px, 2.5vw, 20px);
    color: #b9b9bd;
    margin-bottom: 30px;
    animation: fadeUp 1.3s ease forwards;
}

/* Tag */
.hero-tag {
    display: inline-block;
    margin-bottom: 20px;
    font-size: 20px;
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(255, 200, 0, 0.1);
    border: 1px solid rgba(255, 200, 0, 0.4);
    color: #ffd700;
}

/* Buttons */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    animation: fadeUp 1.6s ease forwards;
}

.hero h1,
.hero p,
.hero-buttons {
    opacity: 0;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.hero-buttons a {
    padding: 15px 30px;
    font-size: 20px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Primary Button */
.btn-primary {
    background: linear-gradient(135deg, #f5c542, #ffb800);
    color: #000;
}

.btn-primary:hover {
    transform: translateY(-2px);
}


/* === SCROLL INDICATOR === */
.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-size: 11px;
    letter-spacing: 2px;

    color: rgba(255,255,255,0.6);
    cursor: pointer;

    transition: all 0.3s ease;
}

/* Hover effect */
.scroll-indicator:hover {
    color: white;
}

/* Text */
.scroll-indicator span {
    display: block;
    margin-bottom: 6px;
}

/* Arrow */
.scroll-indicator .arrow {
    width: 10px;
    height: 10px;
    border-right: 2px solid rgba(255,255,255,0.6);
    border-bottom: 2px solid rgba(255,255,255,0.6);
    transform: rotate(45deg);
    margin: auto;

    animation: bounce 1.5s infinite;
    transition: all 0.3s ease;
}

/* Arrow hover */
.scroll-indicator:hover .arrow {
    border-color: white;
}

/* Animation */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0) rotate(45deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(8px) rotate(45deg);
        opacity: 1;
    }
}

.hero h1 span {
    background: linear-gradient(90deg, #f5c542, #ffd700, #f5c542);
    background-size: 200% auto;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    animation: goldShine 4s linear infinite;
}

@keyframes goldShine {
    to {
        background-position: 200% center;
    }
}

/* ====== RESPONSIVE ======== */

/* Tablet */
@media (max-width: 992px) {
    .hero {
        padding: 60px 20px;
    }

    .hero h1 {
        line-height: 1.3;
    }
}

/* Mobile */
@media (max-width: 768px) {

    .hero {
        padding: 60px 15px;
        background-position: center top;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons a {
        width: 100%;
        max-width: 280px;
    }

    .scroll-indicator {
        bottom: 15px;
        font-size: 10px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {

    .hero {
        padding: 50px 15px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero-tag {
        font-size: 12px;
        padding: 5px 10px;
    }
}

/* ================= SERVICES ================= */
.services {
    padding: 100px 20px;
    background: #07061a;
    color: white;
    text-align: center;
}

.services .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Title */
.section-title {
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 60px;
}

/* Grid */
.services-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Card */
.service-card {
    background: linear-gradient(180deg, #0f0c29, #09081c);
    border-radius: 20px;
    overflow: hidden;
    width: 340px;
    min-height: 450px;

    transition: all 0.4s ease;
    text-align: left;

    border: 1px solid rgba(255,255,255,0.05);

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Hover */
.service-card:hover {
    transform: translateY(-12px);

    background: linear-gradient(180deg, #2a1a00, #0f0c29);
    border: 1px solid rgba(255, 200, 0, 0.6);

    box-shadow: 0 25px 70px rgba(255, 180, 0, 0.2);
}

/* Title hover */
.service-card:hover h3 {
    color: #f5c542;
}

/* Image */
.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}
.card-image {
    height: 220px;
    overflow: hidden;
}


/* Image zoom */
.service-card:hover .card-image img {
    transform: scale(1.05);
}

/* Content */
.card-content {
    padding: 25px;
}

/* Title */
.card-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    transition: 0.3s;
}

/* Text */
.card-content p {
    font-size: 15px;
    color: #bbb;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Button */
.book-btn {
    display: inline-flex;   /* IMPORTANT */
    align-items: center;
    gap: 8px;

    font-size: 14px;
    color: #f5c542;
    text-decoration: none;
    font-weight: 500;

    transition: all 0.3s ease;
}

.book-btn i {
    width: 18px;
    height: 18px;
    stroke-width: 1;
}

.book-btn i {
    transition: transform 0.3s ease;
}

.book-btn:hover i {
    transform: translateX(5px);
}

/* Button hover inside card */
.service-card:hover .book-btn {
    color: white;
}


/* ====== RESPONSIVE ======= */

/* Tablet */
@media (max-width: 992px) {
    .services {
        padding: 80px 20px;
    }

    .services-grid {
        gap: 20px;
    }

    .service-card {
        width: 300px;
    }
}

/* Mobile */
@media (max-width: 768px) {

    .services {
        padding: 60px 15px;
    }

    .services-grid {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        width: 100%;
        max-width: 350px;
    }

    .card-image img {
        height: 200px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {

    .section-title {
        font-size: 26px;
    }

    .card-content {
        padding: 20px;
    }

    .card-content h3 {
        font-size: 20px;
    }

    .card-content p {
        font-size: 14px;
    }
}

/* ================= WHY CHOOSE US SECTION ================= */
.why-choose {
    padding: 80px 0;
    background: #07061a;
    color: white;
    text-align: center;
    position: relative;
}

.why-choose .container {
    max-width: 1200px;   
}

/* ✨ GOLDEN LINE */
.why-choose::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        #d4af37,
        #ffd700,
        #d4af37,
        transparent
    );

    box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}
.why-choose::before {
    animation: glowLine 3s infinite alternate;
}

@keyframes glowLine {
    from {
        opacity: 0.6;
    }
    to {
        opacity: 1;
    }
}
.section-title {
    font-size: clamp(28px, 4vw, 50px);
    margin-bottom: 20px;
}

.section-subtext {
    max-width: 600px;
    margin: 0 auto 40px;
    color: #ccc;
    font-size: 25px;
}

.why-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.why-card {
    background: #1c1a3a;
    padding: 25px;
    border-radius: 10px;
    width: 260px;
    transition: 0.3s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    background: #2a2755;
}

.icon {
    width: 200px;   /* increased size */
    height: 200px;
    margin: 0 auto 20px;
}

.icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;

    filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.7));
    transition: 0.4s ease;
}

.why-card:hover .icon img {
    transform: scale(1.15);
    filter: drop-shadow(0 0 18px rgba(255, 215, 0, 1));
}

/* ================= TESTIMONIALS SECTION ================= */

.testimonials {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #07061a, #1a1535);
    color: white;
    text-align: center;
    overflow: hidden;
}

/* Title */
.section-title {
    font-size: 42px;
    font-family: "Playfair Display", serif;
    margin-bottom: 50px;
    line-height: 1.2;
}

/* VIEWPORT */
.testimonial-viewport {
    width: 100%;
    max-width: 1100px;
    margin: auto;
    overflow: hidden;
}

/* TRACK */
.testimonial-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
}

/* CARD */
.testimonial-card {
    flex: 0 0 calc((100% - 40px) / 3);
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255, 200, 0, 0.2);
    border-radius: 16px;
    padding: 25px;
    text-align: left;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    box-sizing: border-box;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: #ffd700;
    box-shadow: 0 0 25px rgba(255, 200, 0, 0.1);
}

/* Stars */
.stars {
    color: #ffd700;
    margin-bottom: 12px;
    font-size: 16px;
}

/* Text */
.testimonial-card p {
    color: #b9b9bd;
    font-size: 15px;
    line-height: 1.7;
}

/* Name */
.testimonial-card span {
    display: block;
    margin-top: 18px;
    color: #ffd700;
    font-weight: 600;
}

/* ================= TABLET ================= */

@media (max-width: 768px) {

    .section-title {
        font-size: 32px;
    }

    .testimonial-card {
        flex: 0 0 calc((100% - 20px) / 2);
    }
}

/* ================= MOBILE ================= */

@media (max-width: 480px) {

    .testimonials {
        padding: 60px 15px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 35px;
    }

    .testimonial-track {
        gap: 15px;
    }

    .testimonial-card {
        flex: 0 0 100%;
        padding: 20px;
    }

    .testimonial-card p {
        font-size: 14px;
        line-height: 1.6;
    }
}

/* ================= FAQ SECTION ================= */
.faq {
    padding: 100px 20px;
    background: #07061a;
    color: white;
}

/* Container */
.faq .container {
    max-width: 900px;
    margin: 0 auto;
}

/* Title */
.faq .section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 36px;
}

/* FAQ Item */
.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    margin-bottom: 18px;
    overflow: hidden;

    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);

    transition: all 0.3s ease;
}

/* Hover Effect */
.faq-item:hover {
    border-color: #f5c542;
    box-shadow: 0 0 18px rgba(245, 197, 66, 0.2);
}

/* Question */
.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    text-align: left;
    padding: 20px 25px;
    cursor: pointer;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Arrow Icon */
.faq-question::after {
    content: "➜";
    color: #f5c542;
    font-size: 16px;
    transition: transform 0.3s ease;
}

/* Rotate Arrow */
.faq-item.active .faq-question::after {
    transform: rotate(90deg);
}

/* Answer (Smooth Animation Fix) */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    color: #ccc;

    transition: max-height 0.4s ease, padding 0.3s ease;
}

/* Active State */
.faq-item.active .faq-answer {
    max-height: 1000px; /* enough for longer content */
    padding: 0 25px 20px;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 768px) {
    .faq {
        padding: 80px 15px;
    }

    .faq .section-title {
        font-size: 28px;
    }

    .faq-question {
        font-size: 16px;
        padding: 18px 20px;
    }

    .faq-answer {
        font-size: 14px;
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 18px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .faq {
        padding: 60px 12px;
    }

    .faq .section-title {
        font-size: 24px;
    }

    .faq-question {
        font-size: 15px;
        padding: 16px 18px;
    }

    .faq-answer {
        font-size: 13px;
    }
}
/* ================= FAQ SECTION ================= */
.faq {
    padding: 100px 0;
    background: radial-gradient(circle at top, #0b0b2d, #05051a);
    color: white;
}

/* Title spacing */
.faq .section-title {
    text-align: center;
    margin-bottom: 50px;
}

/* FAQ Item Card */
.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;

    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);

    transition: all 0.3s ease;
    padding-bottom: 10px;
}

/* Hover glow */
.faq-item:hover {
    border-color: #f5c542;
    box-shadow: 0 0 15px rgba(245, 197, 66, 0.2);
}

/* Question */
.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    text-align: left;
    padding: 18px 20px;
    cursor: pointer;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Add arrow */
.faq-question::after {
    content: "➜";
    color: #f5c542;
    transition: transform 0.3s ease;
}

/* Rotate arrow when open */
.faq-item.active .faq-question::after {
    transform: rotate(90deg);
}

/* Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    color: #ccc;

    transition: all 0.4s ease;
}

/* Active state */
.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 20px 20px;
}

/* ================= FINAL CTA SECTION ================= */

.final-cta {
    padding: 100px 20px;
    background: radial-gradient(circle at center, #0b0b2d, #05051a);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Glow effect */
.final-cta::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    background: rgba(245, 197, 66, 0.12);
    filter: blur(120px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Container */
.final-cta .container {
    max-width: 700px;
    margin: 0 auto;

    background: rgba(255, 255, 255, 0.03);
    padding: 50px 30px;
    border-radius: 16px;

    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);

    position: relative;
    z-index: 2;
}

/* Heading */
.final-cta h2 {
    font-size: 34px;
    margin-bottom: 15px;
    color: #ffffff;
}

/* Text */
.final-cta p {
    color: #cccccc;
    margin-bottom: 30px;
    font-size: 16px;
}

/* Button (override your btn-primary) */
.final-cta .btn-primary {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 30px;

    background: linear-gradient(45deg, #f5c542, #ffb300);
    color: #000;
    font-weight: 600;
    text-decoration: none;

    transition: all 0.3s ease;
}

/* Hover */
.final-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(245, 197, 66, 0.4);
}

@media (max-width: 768px) {
    .final-cta {
        padding: 80px 15px;
    }

    .final-cta h2 {
        font-size: 26px;
    }

    .final-cta p {
        font-size: 14px;
    }

    .final-cta .container {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .final-cta {
        padding: 60px 12px;
    }

    .final-cta h2 {
        font-size: 22px;
    }
}
