/* Top Decorative Strip */
.top-strip{
    height:3px;
    background:linear-gradient(90deg,#c1792b,#e0a95c,#c1792b);
}

/* Navbar */
.custom-navbar{
    background:#f3e3cf;
    padding:15px 0;
    border-bottom:3px dashed #c1792b;
}

.brand-text{
    font-family:'Playfair Display',serif;
    font-weight:700;
    color:#5a3b1c;
}

/* Nav Links */
.nav-link{
    color:#5a3b1c !important;
    font-weight:500;
    margin:0 10px;
    transition:0.3s;
}

.nav-link:hover{
    color:#c1792b !important;
}

/* Call Button */
.call-btn{
    background:#c1792b;
    color:#fff;
    padding:8px 20px;
    border-radius:30px;
    text-decoration:none;
    font-weight:500;
    transition:0.3s;
}

.call-btn:hover{
    background:#a65f1c;
    color:#fff;
}

/* Toggler */
.navbar-toggler{
    border:none;
}

.navbar-toggler:focus{
    box-shadow:none;
}


/* Section */
.services-section{
    background:#f3e3cf;
    padding:30px 0;
}

/* Title */
.section-title{
    font-family:'Playfair Display',serif;
    font-size:38px;
    font-weight:700;
    color:#5a3b1c;
}

/* Card */
.service-card{
    background:#f9eddc;
    border-radius:20px;
    padding:30px 25px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    border:2px dashed #c1792b;
    transition:0.3s ease;
    height:100%;
}

.service-card:hover{
    transform:translateY(-6px);
}

/* Icon Image */
.service-icon{
    height:70px;
    margin-bottom:15px;
}

/* Heading */
.service-card h4{
    font-family:'Playfair Display',serif;
    color:#5a3b1c;
    font-weight:600;
    margin-bottom:10px;
}

/* Paragraph */
.service-card p{
    font-size:14px;
    color:#6c4a2d;
}

/* List */
.service-list{
    list-style:none;
    padding:0;
    margin:18px 0;
}

.service-list li{
    font-size:14px;
    margin-bottom:10px;
    color:#5a3b1c;
    display:flex;
    align-items:center;
    gap:8px;
}

/* Golden Check Icon */
.service-list i{
    color:#c1792b;
    font-size:15px;
}

/* Button */
.service-btn{
    display:inline-block;
    background:#2e7d32;
    color:#fff;
    padding:10px 22px;
    border-radius:30px;
    font-size:14px;
    text-decoration:none;
    transition:0.3s;
    border: 2px solid #c1792b;
}

.service-btn:hover{
    background:#1b5e20;
    color:#fff;
}

/* Responsive */
@media(max-width:992px){
    .section-title{
        font-size:30px;
    }
}

@media(max-width:576px){
    .section-title{
        font-size:24px;
    }

    .service-list{
        text-align:center;
        display: none;
    }

    .service-list li{
        justify-content:center;
    }
}
/* Service List Wrapper */
.service-list{
    list-style:none;
    padding:0;
    margin:20px auto;
    max-width:220px;   /* Control width so it stays centered */
}

/* Each Item */
.service-list li{
    display:flex;
    align-items:center;
    gap:8px;
    font-size:14px;
    color:#5a3b1c;
    margin-bottom:10px;
}

/* Icon */
.service-list i{
    color:#c1792b;
    font-size:16px;
    min-width:18px;   /* Keeps icons perfectly aligned */
}


/* ===== Cab Section ===== */

.cab-section{
    background:#f3e3cf;
    border-top:4px solid #c1792b;
    border-bottom:8px solid #c1792b;
    padding:30px 0;
}
.cab-features{
    display:flex;
    justify-content:center;
    gap:15px;
    margin:10px 0;
    flex-wrap:wrap;
}

.cab-features span{
    font-size:13px;
    color:#5a3b1c;
    display:flex;
    align-items:center;
    gap:6px;
    background:#f3e3cf;
    padding:5px 10px;
    border-radius:20px;
    border:1px solid #e2c7a3;
}

.cab-features i{
    color:#c1792b;
    font-size:14px;
}
/* Title */
.cab-title{
    font-family:'Playfair Display', serif;
    font-size:38px;
    font-weight:700;
    color:#5a3b1c;
}

.cab-subtitle{
    font-size:14px;
    color:#7a5a3b;
    max-width:600px;
    margin:auto;
}

/* Card */
.cab-card{
    background:#f9eddc;
    border-radius:20px;
    padding:25px;
    border:1px solid #c1792b;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    transition:0.3s ease;
    text-align:center;
    height:100%;
}

.cab-card:hover{
    transform:translateY(-8px);
}

/* Image */
.cab-img{
    width:100%;
    height:180px;
    object-fit:contain;
    margin-bottom:15px;
}

/* Name */
.cab-name{
    font-family:'Playfair Display', serif;
    color:#5a3b1c;
    font-weight:600;
    margin-bottom:5px;
}

/* Description */
.cab-desc{
    font-size:14px;
    color:#7a5a3b;
}

/* Price */
.cab-price{
    font-size:22px;
    font-weight:700;
    color:#c1792b;
    margin:10px 0;
}

.cab-price span{
    font-size:14px;
    font-weight:400;
    color:#7a5a3b;
}

/* Button */
.cab-btn{
    display:inline-block;
    background:#2e7d32;
    color:#fff;
    padding:10px 22px;
    border-radius:30px;
    font-size:14px;
    text-decoration:none;
    transition:0.3s;
}

.cab-btn:hover{
    background:#1b5e20;
    color:#fff;
}

/* ===== Responsive ===== */

@media(max-width:992px){
    .cab-title{
        font-size:30px;
    }
}

@media(max-width:576px){
    .cab-title{
        font-size:24px;
    }
    .cab-img{
        height:150px;
    }
}


/* ===== Contact Section ===== */

.contact-section{
    background:#f3e3cf;
    padding:30px 0;
}

.contact-section a{
    text-decoration: none;
}
/* Contact Box */
.contact-box{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:15px;
}

.contact-icon{
    font-size:22px;
    color:#c1792b;
}

.contact-label{
    font-size:13px;
    color:#7a5a3b;
    margin:0;
}

.contact-number{
    font-size:18px;
    font-weight:600;
    color:#5a3b1c;
    margin:0;
}

/* WhatsApp Circle */
.whatsapp-circle{
    width:80px;
    height:80px;
    background:#2e7d32;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    box-shadow:0 8px 20px rgba(0,0,0,0.15);
}

.whatsapp-circle i{
    font-size:35px;
    color:#fff;
}

/* Small Info Row */
.small-info i{
    color:#c1792b;
    font-size:18px;
    margin-bottom:6px;
}

.small-info p{
    font-size:13px;
    color:#5a3b1c;
    margin:0;
}

/* Responsive */
@media(max-width:992px){
    .contact-box{
        flex-direction:column;
    }
}

@media(max-width:576px){
    .whatsapp-circle{
        width:70px;
        height:70px;
    }
    .whatsapp-circle i{
        font-size:28px;
    }
}



/* ===== Service Grid Section ===== */

.service-grid-section{
    background:#f3e3cf;
    border-top:4px solid #c1792b;
    border-bottom:4px solid #c1792b;
    padding:30px 0;
}

/* Title */
.service-grid-title{
    font-family:'Playfair Display', serif;
    font-size:36px;
    font-weight:700;
    color:#5a3b1c;
}

.service-grid-subtitle{
    font-size:14px;
    color:#7a5a3b;
    max-width:600px;
    margin:auto;
}

/* Card */
.service-box{
    background:#f9eddc;
    border-radius:18px;
    padding:30px 20px;
    border:1px solid #e2c7a3;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    transition:0.3s ease;
    height:100%;
}

.service-box:hover{
    transform:translateY(-8px);
}

/* Icon */
.service-icon{
    font-size:40px;
    color:#b46b2c;
    margin-bottom:15px;
}

/* Heading */
.service-box h5{
    font-family:'Playfair Display', serif;
    color:#5a3b1c;
    font-weight:600;
    margin-bottom:8px;
}

/* Paragraph */
.service-box p{
    font-size:13px;
    color:#7a5a3b;
    margin-bottom:15px;
}

/* Button */
.service-btn{
    display:inline-block;
    background:#2e7d32;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
    text-decoration:none;
    transition:0.3s;
}

.service-btn:hover{
    background:#1b5e20;
    color:#fff;
}

/* Responsive */
@media(max-width:992px){
    .service-grid-title{
        font-size:28px;
    }
}

@media(max-width:576px){
    .service-grid-title{
        font-size:24px;
    }
}




/* ===== Tour Section ===== */

.tour-section{
    background:#f3e3cf;
    border-top:4px solid #c1792b;
    border-bottom:4px solid #c1792b;
    padding:30px 0;
}
.tour-locations{
    font-size:12px;
    color:#7a5a3b;
    margin-bottom:10px;
}

.tour-inclusion{
    font-size:12px;
    color:#5a3b1c;
    margin:10px 0;
}

.tour-inclusion ul{
    list-style:none;
    padding:0;
    margin-top:5px;
}

.tour-inclusion li{
    display:flex;
    align-items:center;
    gap:6px;
    margin-bottom:5px;
}

.tour-inclusion i{
    color:#c1792b;
    font-size:12px;
}
/* Title */
.tour-title{
    font-family:'Playfair Display', serif;
    font-size:36px;
    font-weight:700;
    color:#5a3b1c;
}

/* Card */
.tour-card{
    background:#f9eddc;
    border-radius:18px;
    overflow:hidden;
    border:1px solid #e2c7a3;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    transition:0.3s ease;
    height:100%;
}

.tour-card:hover{
    transform:translateY(-8px);
}

/* Image */
.tour-img{
    width:100%;
    height:220px;
    object-fit:cover;
}

/* Content */
.tour-content{
    padding:20px;
}

/* Heading */
.tour-content h5{
    font-family:'Playfair Display', serif;
    color:#5a3b1c;
    font-weight:600;
    margin-bottom:8px;
}

/* Description */
.tour-desc{
    font-size:13px;
    color:#7a5a3b;
    margin-bottom:10px;
}

/* Price */
.tour-price{
    font-size:14px;
    color:#7a5a3b;
    margin-bottom:15px;
}

.tour-price span{
    font-size:22px;
    font-weight:700;
    color:#c1792b;
}

.tour-price small{
    font-size:12px;
    color:#7a5a3b;
}

/* Button */
.tour-btn{
    display:inline-block;
    background:#2e7d32;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
    text-decoration:none;
    transition:0.3s;
}

.tour-btn:hover{
    background:#1b5e20;
    color:#fff;
}

/* ===== Responsive ===== */

@media(max-width:992px){
    .tour-title{
        font-size:28px;
    }
}

@media(max-width:576px){
    .tour-title{
        font-size:24px;
    }
    .tour-img{
        height:180px;
    }
}


/* ===== Why Section ===== */

.why-section{
    background:#f3e3cf;
    border-top:4px solid #c1792b;
    border-bottom:4px solid #c1792b;
    padding:30px 0;
}

.why-title{
    font-family:'Playfair Display', serif;
    font-size:34px;
    font-weight:700;
    color:#5a3b1c;
}

.rating-line{
    color:#c1792b;
    font-size:14px;
}

.rating-line span{
    color:#5a3b1c;
    margin-left:5px;
}

/* Box */
.why-box{
    background:#f9eddc;
    border-radius:18px;
    padding:30px;
    border:1px solid #e2c7a3;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    height:100%;
}

/* List */
.why-list{
    list-style:none;
    padding:0;
}

.why-list li{
    margin-bottom:12px;
    font-size:14px;
    color:#5a3b1c;
}

.why-list i{
    color:#c1792b;
    margin-right:8px;
}

/* Buttons */
.why-btn-call,
.why-btn-whatsapp{
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    text-decoration:none;
    color:#fff;
    display:inline-block;
}

.why-btn-call{
    background:#2e7d32;
}

.why-btn-whatsapp{
    background:#25d366;
}

.why-btn-call:hover{
    background:#1b5e20;
}

.why-btn-whatsapp:hover{
    background:#1ebe5d;
}

/* Review */
.review-img{
    width:120px;
    height:120px;
    object-fit:cover;
    border-radius:15px;
}

.review-stars{
    color:#c1792b;
    font-size:14px;
}

.review-text{
    font-size:13px;
    color:#7a5a3b;
    margin-top:10px;
}

/* Responsive */
@media(max-width:992px){
    .why-title{
        font-size:26px;
    }
}


/* ===== Trusted Section ===== */

.trusted-section{
    background:#f3e3cf;
    border-top:4px solid #c1792b;
    border-bottom:4px solid #c1792b;
    padding:30px 0;
}

/* Title */
.trusted-title{
    font-family:'Playfair Display', serif;
    font-size:32px;
    font-weight:700;
    color:#5a3b1c;
}

.trusted-title span{
    color:#c1792b;
}

/* Card */
.trusted-card{
    background:#f9eddc;
    border-radius:18px;
    padding:20px;
    border:1px solid #e2c7a3;
    box-shadow:0 8px 20px rgba(0,0,0,0.06);
    text-align:center;
    transition:0.3s ease;
    height:100%;
}

.trusted-card:hover{
    transform:translateY(-6px);
}

/* Logo */
.trusted-card img{
    max-width:80px;
    margin-bottom:10px;
}

/* Text */
.trusted-card p{
    font-size:12px;
    color:#5a3b1c;
    margin:0;
}

/* Responsive */
@media(max-width:992px){
    .trusted-title{
        font-size:26px;
    }
}

@media(max-width:576px){
    .trusted-title{
        font-size:22px;
    }
}


/* ===== Footer ===== */

.main-footer{
    background:#f3e3cf;
    color:#5a3b1c;
}

/* Top Decorative Border */


/* Title */
.footer-title{
    font-family:'Playfair Display', serif;
    font-weight:700;
    margin-bottom:15px;
}

.footer-heading{
    font-weight:600;
    margin-bottom:15px;
}

/* Text */
.footer-text{
    font-size:14px;
    color:#7a5a3b;
}

/* Links */
.footer-links{
    list-style:none;
    padding:0;
}

.footer-links li{
    margin-bottom:8px;
}

.footer-links a{
    text-decoration:none;
    color:#5a3b1c;
    font-size:14px;
    transition:0.3s;
}

.footer-links a:hover{
    color:#c1792b;
    padding-left:5px;
}

/* Contact */
.footer-contact{
    font-size:14px;
    margin-bottom:8px;
}

.footer-contact i{
    color:#c1792b;
    margin-right:6px;
}

/* Social */
.footer-social a{
    display:inline-block;
    width:35px;
    height:35px;
    background:#c1792b;
    color:#fff;
    border-radius:50%;
    text-align:center;
    line-height:35px;
    margin-right:8px;
    transition:0.3s;
}

.footer-social a:hover{
    background:#a65f1c;
}

/* Call Button */
.footer-call-btn{
    display:inline-block;
    background:#2e7d32;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    text-decoration:none;
    font-size:14px;
    margin-top:10px;
    transition:0.3s;
}

.footer-call-btn:hover{
    background:#1b5e20;
}

/* Bottom */
.footer-bottom{
    background:#e6d2b7;
    padding:15px 0;
    font-size:13px;
    margin-top:20px;
}

/* Responsive */
@media(max-width:992px){
    .footer-title{
        font-size:20px;
    }
}

@media(max-width:576px){
    .footer-text{
        font-size:13px;
    }
}

/* ===== FORCE Gradient Text ===== */

.hero-title{
    font-family:'Playfair Display', serif;
    font-size:48px;
    font-weight:800;
    text-align:center;

    background: linear-gradient(90deg,#c1792b,#e0a95c,#2e7d32,#c1792b);
    background-size:300% 300%;

    background-clip:text;
    -webkit-background-clip:text;

    color:transparent;
    -webkit-text-fill-color:transparent;

    animation: gradientMove 4s linear infinite;
}

/* Moving Gradient */
@keyframes gradientMove{
    0%{background-position:0% 50%;}
    100%{background-position:100% 50%;}
}