/* ====== IMPORT FONTS ====== */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&family=Poppins:wght@400;500;600&display=swap');

/* ====== GLOBAL ====== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    background: linear-gradient(to bottom, #f9e4c9 0%, #fdf7ef 40%, #fefcf9 100%);
    color: #3a2a1a;
    line-height: 1.9;
    font-size: 18px;
    /*overflow-x: hidden;*/
}

html {
    scroll-behavior: smooth;

}

/* ====== CONTAINER ====== */
.container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ====== HEADER ====== */
header {
    background: #fff6e0;
    border-bottom: 3px solid #d4af37;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(58, 42, 26, 0.1);
    background-image: url('https://www.transparenttextures.com/patterns/arabesque.png');
    background-size: 120px;
}

header .container {
    display: flex;
    justify-content: space-between;
    /* Pushes logo and hamburger/nav apart */
    align-items: center;
    min-height: 80px;
    /* Ensure there is height for the icon */
}

/* ====== LOGO ====== */
.logo h2 {
    color: #8b2e0f;
    font-weight: 600;
    font-family: 'Merriweather', serif;
    font-size: 0.95rem;
    white-space: nowrap;
    transition: all 0.4s ease;
}

.logo h2:hover {
    color: #d4af37;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
    transform: scale(1.05);
}

.logo p {
    color: #8b2e0f;

    font-size: 0.90rem;
    border-bottom: 1px dotted #b8860b;
}

/* ====== NAV ====== */
nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

nav ul li a {
    text-decoration: none;
    color: #3a2a1a;
    font-weight: 500;
    white-space: nowrap;
    padding: 8px 4px;
    border-radius: 8px;
    position: relative;
    transition: all 0.4s ease;

}

nav ul li a:hover {
    background: linear-gradient(90deg, #f9d976, #f39c12);
    color: #fff;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
    text-decoration: dotted;
}

/* ====== HAMBURGER ====== */
.hamburger {
    display: none;
    /* Default: hidden on desktop */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    width: 34px;
    height: 34px;
    position: relative;
    z-index: 1100;
    /* REMOVED: opacity: 0, transform: translateY(10px), and animation properties that hid the icon */
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #3a2a1a;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.hamburger::after {
    content: "✕";
    position: absolute;
    inset: 0;
    font-size: 26px;
    color: #a0522d;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    /* Hidden by default */
    transform: scale(0.8);
    z-index: 3;
    transition: all 0.3s ease;
}

.hamburger.open span {
    opacity: 0;
}

.hamburger.open::after {
    opacity: 10;
    /* Shows the 'X' */
    transform: scale(1);
}

/* ====== DROPDOWN ====== */
.has-dropdown>ul {
    display: none;
    position: absolute;
    background: #fffdf7;
    border: 1px solid #f0e3d1;
    box-shadow: 0 8px 18px rgba(58, 42, 26, 0.15);
    min-width: 240px;
    border-radius: 10px;

}

.has-dropdown:hover>ul {
    display: block;
    animation: fadeIn 0.3s ease-in-out;


}

.has-dropdown ul li a:hover {
    background: #fbe3c3;
    color: #8b2e0f;
}

.has-dropdown>a::after {
    content: "▼";
    font-size: 0.7rem;
    margin-left: 1px;
    color: #a0522d;
    transition: transform 0.3s ease;
}

.has-dropdown.open>a::after,
.has-dropdown:hover>a::after {
    transform: rotate(180deg);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



.breadcrumb-container {
    font-size: 0.95rem;
    margin: 10px 0;
    color: #555;
    display: flex;
}

.breadcrumb-list {
    list-style: none;
    display: flex;
    gap: 5px;
    padding: 0;
}

.breadcrumb-list li::after {
    content: "›";
    color: #999;
    margin-left: 5px;
}

.breadcrumb-list li:last-child::after {
    content: "";
}

.breadcrumb-list a {
    text-decoration: none;
    color: #071025;
}

.breadcrumb-list a:hover {
    text-decoration: underline;
}



/* ====== HERO SECTION ====== */
.sec-first {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(58, 42, 26, 0.3), rgba(0, 0, 0, 0.4));
        /*url('image/rajasthan-desert-sunset.jpg') center/cover no-repeat;*/
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

/* 🐪 Animated camel pattern / shimmer overlay */
.sec-first::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("image/city-palace-udaipur-rajasthan.webp") center/cover no-repeat;
    opacity: 0.4;
    animation: desertDrift 25s linear infinite;
    transform: translateX(0);
}

@keyframes desertDrift {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-20px);
    }

    100% {
        transform: translateX(0);
    }
}

/* 🌞 Sun shimmer glow moving behind text */
.sec-first::after {
    content: "";
    position: absolute;
    width: 180%;
    height: 180%;
    top: -40%;
    left: -40%;
    background: radial-gradient(circle at center, rgba(245, 215, 110, 0.3) 0%, transparent 70%);
    animation: sunGlow 12s ease-in-out infinite alternate;
    z-index: 1;
}

@keyframes sunGlow {
    0% {
        transform: scale(1) translate(0, 0);
        opacity: 0.4;
    }

    50% {
        transform: scale(1.15) translate(10px, 10px);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.05) translate(-10px, -5px);
        opacity: 0.5;
    }
}

/* keep hero text above animations */
.overlay-text {
    position: relative;
    z-index: 2;
}

/* ====== Fade-up animation base (already referenced in JS) ====== */
.fade-up {
    opacity: 1;
    transform: translateY(0px);
    /* transition: opacity 1.2s ease, transform 1.2s ease; */
    transition: none;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}


.overlay-text h1 {
    font-family: "Merriweather", serif;
    font-size: clamp(1.4rem, 6vw, 3.5rem);
    font-weight: 900;
    text-shadow: 0 0 14px rgba(0, 0, 0, 0.4);
    color: #8b2e0f;
    border-bottom: 1px solid black;
    letter-spacing: 1px;
    /* background: linear-gradient(to right, #f6e27a, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
    animation: glowPulse 6s ease-in-out infinite;
}

.overlay-text p {
    /* font-size: 1.2rem; */
    font-size: clamp(0.95rem, 6vw, 3.5rem);
    font-weight: 700;
    margin-top: 10px;
    color: #3A2A1A;
}

@keyframes glowPulse {

    0%,
    100% {
        text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
    }

    50% {
        text-shadow: 0 0 18px rgba(212, 175, 55, 0.8);
    }
}

/* ====== SECTION STYLES ====== */
section {
    background: #fffaf0;
    border: 2px solid #f0d9a7;
    border-image: linear-gradient(45deg, #d4af37, #b8860b) 1;
    padding: 50px 40px;
    margin: 20px auto;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(58, 42, 26, 0.08);
    position: relative;
    background-image: url('https://www.transparenttextures.com/patterns/cream-paper.png');
}

section h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 14px;
    margin-bottom: 35px;
}

section h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 180px;
    height: 6px;
    background: url('https://www.transparenttextures.com/patterns/zig-zag.png');
    background-size: contain;
    background-repeat: repeat-x;
    background-position: center;
    transform: translateX(-50%);
    filter: brightness(1.1) sepia(0.4) hue-rotate(20deg) saturate(1.5);
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(212, 175, 55, 0.3);
    animation: borderGlow 4s ease-in-out infinite alternate;
}

@keyframes borderGlow {
    0% {
        filter: drop-shadow(0 0 3px rgba(212, 175, 55, 0.5)) brightness(1.1);
    }

    100% {
        filter: drop-shadow(0 0 8px rgba(245, 215, 110, 0.7)) brightness(1.3);
    }
}

section hr {
    border: none;
    border-top: 2px dashed #d4af37;
    margin: 25px auto;
    width: 60%;
    opacity: 0.7;
}

/* ====== ARTICLE CARDS ====== */
article {
    background: #fff8ec;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 6px 15px rgba(58, 42, 26, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

article:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(184, 134, 11, 0.18);
}



/* ====== BUTTONS ====== */
/* .book-now-btn {
    display: inline-block;
    background: linear-gradient(90deg, #b8860b, #d4af37);
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 1.1rem;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(184, 134, 11, 0.3);
    transition: all 0.3s ease;
}

.book-now-btn:hover {
    transform: scale(1.07);
    background: linear-gradient(90deg, #d4af37, #b8860b);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.5);
} */


/* ====== FLEET SECTION ====== */
#fleet {
    background: #fffaf4;
    padding: 80px 6%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Section title */
#fleet h2 {
    font-size: 2.6rem;
    color: #222;
    margin-bottom: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    display: inline-block;
}

#fleet h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #f7e4a3);
    transform: translateX(-50%);
    border-radius: 2px;
}

#fleet p {
    color: #444;
    max-width: 900px;
    margin: 0 auto 60px;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* ====== GRID ====== */
.fleet-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 35px;
    justify-content: center;
    align-items: stretch;
}

/* ====== CARD STYLE ====== */
.fleet-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid #f3e5c0;
    transform: translateY(0);
    opacity: 0;
    animation: fadeUp 1s ease forwards;
}

.fleet-card:nth-child(even) {
    animation-delay: 0.15s;
}

.fleet-card:nth-child(odd) {
    animation-delay: 0.3s;
}

/* Image */
.fleet-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Hover effects */
.fleet-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.15);
    border-color: #d4af37;
}

.fleet-card:hover img {
    transform: scale(1.08);
}

/* Card Text */
.fleet-card h3 {
    font-size: 1.4rem;
    color: #111;
    margin: 15px 0 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fleet-card p {
    color: #555;
    font-size: 0.97rem;
    padding: 0 18px;
    margin-bottom: 12px;
    line-height: 1.5;
}

.fleet-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.fleet-card ul li {
    color: #666;
    font-size: 0.9rem;
    padding: 4px 0;
}

/* Book Now Button */
.book-now-btn {
    display: inline-block;
    margin-bottom: 25px;
    padding: 10px 22px;
    background: linear-gradient(90deg, #d4af37, #b99729);
    color: #fff;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.4);
}

.book-now-btn:hover {
    background: linear-gradient(90deg, #b99729, #d4af37);
    transform: translateY(-3px);
    box-shadow: 0 4px 14px rgba(212, 175, 55, 0.6);
}

/* Fade-in Up Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
    #fleet h2 {
        font-size: 2rem;
    }

    #fleet p {
        font-size: 0.95rem;
    }

    .fleet-card img {
        height: 180px;
    }
}

/* ====== CONTACT SECTION (Royal Rajasthan Style) ====== */

#contact {
    background: #fffaf0 url('https://www.transparenttextures.com/patterns/cream-paper.png');
    border: 2px solid #e9d2a6;
    border-image: linear-gradient(45deg, #d4af37, #b8860b) 1;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(58, 42, 26, 0.08);
    text-align: center;
    position: relative;
    overflow: hidden;
}

#contact h2 {
    color: #8b2e0f;
    font-family: 'Merriweather', serif;
    font-size: 2.2rem;
    margin-bottom: 30px;
    position: relative;
}

#contact h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -12px;
    width: 150px;
    height: 5px;
    background: linear-gradient(to right, #d4af37, #b8860b, #d4af37);
    transform: translateX(-50%);
    border-radius: 10px;
}

#contact p {
    font-size: 1.1rem;
    color: #3a2a1a;
    margin-bottom: 40px;
}

.contact-info {
    background: rgba(255, 250, 230, 0.9);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(58, 42, 26, 0.08);
    margin: 25px auto;
    padding: 25px;
    text-align: left;
    max-width: 700px;
    transition: all 0.4s ease;

}

.contact-info:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.15);
    background: rgba(255, 247, 220, 0.96);
}

.contact-info h2,
.contact-info h3 {
    color: #8b2e0f;
    font-family: 'Merriweather', serif;
    font-size: 1.3rem;
    margin-bottom: 10px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.4);
    display: inline-block;
    padding-bottom: 6px;
}

.contact-info div,
.contact-info a {
    font-size: 1.05rem;
    color: #3a2a1a;
    text-decoration: none;
    line-height: 1.8;
    display: block;
}

.contact-info a:hover {
    color: #b8860b;
    text-decoration: underline;
}

/* ====== SOCIAL MEDIA ICONS ====== */
#contact h3 {
    text-align: center;
    font-family: 'Merriweather', serif;
    color: #8b2e0f;
    margin-top: 40px;
}

#contact a img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(145deg, #f9d976, #f39c12);
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.4);
    margin: 12px;
    padding: 8px;
    transition: all 0.4s ease;
    filter: brightness(0.95);
}

#contact a img:hover {
    transform: scale(1.15) rotate(5deg);
    filter: brightness(1.1);
    box-shadow: 0 0 14px rgba(245, 215, 110, 0.6);
    background: linear-gradient(145deg, #d4af37, #b8860b);
}

/* ====== Contact Section Subtle Background Motion ====== */
#contact::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(245, 215, 110, 0.15), transparent 70%);
    opacity: 0.7;
    animation: desertLight 12s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes desertLight {
    0% {
        background-position: 0 0;
        opacity: 0.4;
    }

    50% {
        background-position: 50% 20%;
        opacity: 0.6;
    }

    100% {
        background-position: 100% 0;
        opacity: 0.4;
    }
}

/* ====== Mobile Adjustments ====== */
@media (max-width: 768px) {
    #contact {
        padding: 40px 20px;
    }

    .contact-info {
        padding: 20px;
    }

    #contact a img {
        width: 38px;
        height: 38px;
    }
}

/* ====== SOCIAL ICONS SEQUENTIAL ANIMATION ====== */
.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 25px;
}

.social-icons a {
    display: inline-block;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* This will be activated dynamically via JS */
.social-icons.visible a {
    opacity: 1;
    transform: scale(1);
}

.social-icons.visible a:nth-child(1) {
    transition-delay: 0.1s;
}

.social-icons.visible a:nth-child(2) {
    transition-delay: 0.25s;
}

.social-icons.visible a:nth-child(3) {
    transition-delay: 0.4s;
}

.social-icons.visible a:nth-child(4) {
    transition-delay: 0.55s;
}

/* ====== FOOTER ====== */
footer {
    text-align: center;
    padding: 30px;
    background: #fff2dd;
    color: #3a2a1a;
    border-top: 3px solid #d4af37;
    background-image: url('https://www.transparenttextures.com/patterns/arabesque.png');
    background-size: 120px;
    font-family: 'Merriweather', serif;
    letter-spacing: 0.5px;
    position: relative;
}

footer {
    position: relative;
    border-top: 5px double #d4af37;
    padding-top: 50px;
    background: #fff2dd url('https://www.transparenttextures.com/patterns/arabesque.png');
    background-size: 120px;
}

footer::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 22px;
    background: repeating-linear-gradient(45deg,
            rgba(212, 175, 55, 0.9) 0,
            rgba(212, 175, 55, 0.9) 3px,
            rgba(255, 250, 230, 0.4) 3px,
            rgba(255, 250, 230, 0.4) 6px);
    opacity: 0.8;
    border-top: 1px solid rgba(245, 215, 110, 0.4);
    animation: shimmerTrim 6s linear infinite;
}

@keyframes shimmerTrim {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 200px 0;
    }
}

/* 🌸 Optional: gold scroll bar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #d4af37, #b8860b);
    border-radius: 10px;
}

::-webkit-scrollbar-track {
    background: #f9e4c9;
}

footer::before {
    content: "";
    position: absolute;
    top: -15px;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(to right, #d4af37, #b8860b, #d4af37);
    animation: shimmer 5s linear infinite;
}

@keyframes shimmer {
    from {
        background-position: -200px;
    }

    to {
        background-position: 200px;
    }
}

/* ====== SCROLL ANIMATIONS ====== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}


/* Scroll to Top Button */
#scrollToTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    background-color: #8b2e0f;
    /* Pink */
    color: white;
    border: none;
    outline: none;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: none;
    transition: opacity 0.4s ease, background-color 0.3s;
}

#scrollToTopBtn:hover {
    background-color: #c2185b;
}


/* --- Global Section Styling --- */
/* Ensure all new sections have consistent spacing */
.sec-trust,
.sec-testimonials,
.sec-faq {
    padding: 60px 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.sec-trust h2,
.sec-testimonials h2,
.sec-faq h2 {
    font-size: 2.2em;
    color: #000;
    /* Assuming black or dark text for main headings */
    margin-bottom: 10px;
}

.lead-in {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 40px;
}


/* ===============================
   Responsive Price Sheet Section
   =============================== */
.price-section {
    margin: 60px auto;
    padding: 20px;
    text-align: center;
}

.price-section h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #222;
}

.price-table-container {
    overflow-x: auto;
    width: 100%;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.price-table th,
.price-table td {
    padding: 14px 16px;
    border-bottom: 1px solid #ddd;
    text-align: center;
    font-size: 1rem;
}

.price-table th {
    background-color: #0077cc;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
}

.price-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.price-table tr:hover {
    background-color: #eef6ff;
}

.price-section .note {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #555;
}

/* ---------- Mobile Responsive Design ---------- */
@media (max-width: 768px) {
    .price-table thead {
        display: none;
    }

    .price-table,
    .price-table tbody,
    .price-table tr,
    .price-table td {
        display: block;
        width: 100%;
    }

    .price-table tr {
        margin-bottom: 20px;
        border: 1px solid #ddd;
        border-radius: 10px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        padding: 10px;
        background-color: #fff;
    }

    .price-table td {
        text-align: right;
        padding: 10px 15px;
        position: relative;
        font-size: 0.95rem;
    }

    .price-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 15px;
        width: 60%;
        text-align: left;
        font-weight: 600;
        color: #333;
    }
}


/* --- 1. Why Choose Us Section Styling (.sec-trust) --- */

/* ===============================
   WHY CHOOSE US SECTION
   =============================== */
.why-choose-section {
    padding: 60px 20px;
    background-color: #f8faff;
    text-align: center;
}

.why-choose-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #222;
}

.why-choose-section .intro-text {
    font-size: 1.05rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    justify-items: center;
}

.why-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    padding: 25px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.why-card img {
    width: 70px;
    height: 70px;
    margin-bottom: 15px;
    object-fit: contain;
}

.why-card h3 {
    color: #0077cc;
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.why-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
    .why-choose-section {
        padding: 40px 15px;
    }

    .why-card {
        padding: 20px;
    }

    .why-card img {
        width: 60px;
        height: 60px;
    }

    .why-choose-section h2 {
        font-size: 1.6rem;
    }
}


/* --- 2. Testimonials Section Styling (.sec-testimonials) --- */

.testimonial-section {
    background: #f9f9fb;
    padding: 60px 20px;
    text-align: center;
}

.testimonial-section h2 {
    font-size: 2em;
    color: #071025;
    margin-bottom: 10px;
}

.testimonial-section .subtitle {
    color: #555;
    margin-bottom: 40px;
    font-size: 1rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    justify-content: center;
}

.testimonial-item {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    padding: 25px;
    transition: transform 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-5px);
}

.testimonial-item .stars {
    color: #f4b400;
    font-size: 1.2em;
    margin-bottom: 10px;
}

.testimonial-item p {
    color: #333;
    font-size: 0.95rem;
    line-height: 1.6;
}

.review-author {
    margin-top: 15px;
    font-weight: bold;
    color: #071025;
}

.rating-summary {
    margin-top: 40px;
    font-size: 1rem;
    color: #222;
}


.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.testimonial-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 30px;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.testimonial-card p {
    font-style: italic;
    color: #333;
    line-height: 1.6;
}

.testimonial-card footer {
    margin-top: 15px;
    font-weight: bold;
    color: #ffaa00;
    /* Accent color for the name */
    display: block;
}

.stars {
    color: gold;
    font-size: 1.2em;
}

.review-btn {
    display: inline-block;
    background-color: #ffaa00;
    /* Primary brand color */
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 15px;
    transition: background-color 0.3s ease;
}

.review-btn:hover {
    background-color: #e09300;
    /* Darker shade on hover */
}


/* --- 3. FAQ Section Styling (.sec-faq) --- */

.faq-list {
    max-width: 850px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.faq-item summary {
    display: block;
    /* Ensures full width clickability */
    padding: 18px 25px;
    font-weight: bold;
    font-size: 1.1em;
    cursor: pointer;
    background-color: #fcfcfc;
    color: #333;
    position: relative;
    /* Custom arrow styling */
    list-style: none;
}

/* Style the arrow on closed details */
.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s;
}

/* Rotate the arrow when details is open */
.faq-item[open] summary::after {
    content: '−';
    transform: rotate(0deg);
}

.faq-answer {
    padding: 15px 25px 20px;
    background-color: #ffffff;
    border-top: 1px solid #eee;
}

.faq-answer p,
.faq-answer ol {
    margin: 10px 0;
    color: #555;
}

/* --- Responsive Adjustments (Mobile Optimization) --- */
@media (max-width: 768px) {

    .sec-trust,
    .sec-testimonials,
    .sec-faq {
        padding: 40px 15px;
    }

    .why-choose-grid {
        /* Stack to a single column on smaller screens */
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-choose-grid article {
        padding: 20px;
    }

    .testimonial-grid {
        /* Auto-fit will naturally stack the cards here */
        gap: 20px;
    }
}

/* ====== MOBILE ====== */
@media (max-width: 768px) {
    nav {
        background: #fffaf0;
        position: fixed;
        right: -100%;
        top: 0;
        width: 70%;
        height: 90vh;
        border-radius: 15px;
        padding: 80px 25px;

        transition: right 0.4s ease;
        box-shadow: -5px 0 20px rgba(58, 42, 26, 0.1);


        /* === ADDITIONS FOR SCROLLBAR === */
        /* max-height: 250px; */
        /* Set a maximum height for the dropdown */
        overflow-y: auto;
        /* Enable vertical scrollbar when content exceeds max-height */
        /* Optional: Visual separation and padding */
        border-left: 3px solid #f0d9a7;
        padding-top: 10px;
        padding-bottom: 10px;
        /* =============================== */
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        align-items: start;
        gap: 12px;
    }

    /* *** FIX: Adjust Dropdown Menu for Mobile Navigation *** */
    .has-dropdown>ul {
        position: static;
        /* Allows it to flow naturally in the list */
        background: transparent;
        /* Makes the background seamless with the nav */
        border: none;
        box-shadow: none;
        min-width: auto;
        padding: 0 0 0 20px;
        /* Add padding/indentation for nested links */
        border-radius: 0;
        /* Show the list immediately when the parent li has the 'open' class */
        display: none;
        animation: none;
        /* Disable desktop animation */
    }

    /* Show the submenu when the parent li is clicked (using JS toggle) */
    .has-dropdown.open>ul {
        display: flex;
        flex-direction: column;
        gap: 0;



    }

    .has-dropdown>ul li a {
        padding: 8px 15px;
        /* Adjust link padding */
        font-size: 0.80rem;
        /* Slightly smaller font for sub-links */
        font-weight: 400;
        background: transparent;
    }

    .has-dropdown>ul li a:hover {
        background: #fbe3c3;
        /* Keep the hover effect */
        color: #8b2e0f;

    }


    .has-dropdown:hover>ul {
        display: none;
    }

    .has-dropdown.open>ul {
        display: flex;
        /* ... other mobile styles for dropdown appearance ... */
    }




    .hamburger {
        display: flex;
        /* Show the icon */
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
    }

    /* Hamburger animation to 'X' */
    .hamburger.open span:nth-child(1) {
        transform: translateY(11px) rotate(45deg);
    }

    .hamburger.open span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.open span:nth-child(3) {
        transform: translateY(-11px) rotate(-45deg);
    }
}