@import url('https://fonts.googleapis.com/css2?family=Anek+Latin:wght@100..800&display=swap');

:root {
    --font-family: 'Anek Latin', sans-serif;

}


html {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    /* font-family: var(--font-family); */
}

html,
body div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
}

a:hover {
    color: inherit;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

body {
    line-height: 1;
    /* font-family: "wix_madefor_textregular"; */
    font-family: var(--font-family);
    background-color: #ffffff;
    color: #000000;
}

.cust-navbar {
    margin: 0px 50px;
}

.cust-navbar .navbarNav span {
    color: #000000;
    margin-left: 10px;
}

.cust-navbar .navbarNav .whatsapp-header-btn span {
    color: white;
    margin-left: 0;
}

.cust-navbar .navbarNav img {
    transition: transform 0.3s;
}

.cust-navbar .navbarNav img:hover {
    transform: scale(1.1);
}

.cust-navbar .navbarNav .btn-success {
    background: #1E9339;
    font-weight: 600;
    font-size: 16px;
    border: none;
    padding: 10px 22px;
    letter-spacing: 0.5px;
}

.cust-navbar .navbarNav .btn-success:hover {
    background: #20c15b;
}

.logo {
    height: 60px;
}


@media (max-width: 992px) {
    .logo {
        height: 36px;
    }

    .cust-navbar {
        margin: 0px 20px;
    }

    .cust-navbar .navbarNav span {
        display: none;
    }

    .cust-navbar .navbarNav .whatsapp-header-btn span {
        display: none;
    }

    .cust-navbar .navbarNav .btn-success {
        padding: 7px 12px;
    }

}




.hero-section {
    height: 75vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin: 20px 50px; */
    border-radius: 30px;
    position: relative;
}

.hero-row {
    display: flex;
    margin-top: 8%;
    /* justify-content: center;
    align-items: center; */
}

.hero-section .swiper-button-next,
.hero-section .swiper-button-prev {
    color: #fff;
    fill: #fff;
}

.custom-swiper-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Hero Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
    pointer-events: none;

    /* Explore the Iconic Dubai Frame */

}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 5;
    animation: fadeInUp 1.2s ease-out;
}

.hero-swiper {
    position: relative;
    z-index: 1;
}

.hero-section .swiper-pagination {
    position: absolute;
    left: -10px;
    /* adjust distance from right */
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: center;
    gap: 6px;
    z-index: 4;
    pointer-events: auto;
}

.hero-section .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ccc;
    opacity: 1;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.hero-section .swiper-pagination-bullet-active {
    background: #512C03;
    height: 24px;
    border-radius: 10px;

}

.hero-btn-white {
    background-color: #ffffff;
    color: #512C03;
    font-weight: 600;
}

.hero-btn-white:hover {
    background-color: #ffffff;
    color: #512C03;
}




@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Title */
.hero-title {
    font-size: 4.5rem;
    letter-spacing: -1px;
    /* line-height: 1.1; */
    /* margin-bottom: 2rem !important; */
    font-family: var(--font-family);
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 1px;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto 3rem auto !important;
    line-height: 1.6;
}

/* Hero Buttons */
.hero-buttons {
    animation: fadeInUp 1.2s ease-out 0.3s both;
}

.hero-buttons .btn {
    font-size: 1.1rem;
    border: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    font-family: var(--font-family);
    padding: 12px 20px;
}

/* WhatsApp Button */
.hero-buttons .btn-success {
    background: #1E9339;
    font-weight: 600;
}

.hero-buttons .btn-success:hover {
    background: #20c15b;
    transform: translateY(-3px);
}

/* More Details Button */
.hero-buttons .btn-danger {
    background: #EF1923;
}

.hero-buttons .btn-danger:hover {
    background: #d01019;
    transform: translateY(-3px);
}

/* Button Ripple Effect */
.hero-buttons .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-buttons .btn:active::before {
    width: 300px;
    height: 300px;
}

/* Scroll Indicator */
.scroll-indicator {
    z-index: 3;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    position: relative;
    margin: 0 auto;
}

.scroll-mouse::before {
    content: '';
    width: 4px;
    height: 10px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(15px);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 4rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .hero-buttons .btn {
        font-size: 1rem;
        padding: 0.875rem 2.5rem !important;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2rem !important;
        padding: 0 1rem;
    }

    .hero-buttons {
        padding: 0 1rem;
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .hero-background {
        background-attachment: scroll;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .scroll-indicator {
        display: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero-overlay {
        background: rgba(0, 0, 0, 0.8);
    }

    .hero-title,
    .hero-subtitle {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 1);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {

    .hero-background,
    .hero-content,
    .scroll-indicator,
    .hero-buttons {
        animation: none !important;
    }

    .hero-buttons .btn {
        transition: none !important;
    }
}

/* Print styles */
@media print {
    .hero-section {
        height: auto;
        min-height: auto;
        page-break-inside: avoid;
    }

    .hero-background {
        display: none;
    }

    .hero-overlay {
        background: none;
    }

    .hero-title,
    .hero-subtitle {
        color: black !important;
        text-shadow: none !important;
    }
}

.dream-sect h2 {
    color: #512C03;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 48px;
}

.dream-sect p {
    color: #656362;
    font-size: 20px;
    letter-spacing: 1px;
}

.scroll-down-btn {
    position: absolute;
    bottom: 30px;
    left: 50%;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.3s ease;
    z-index: 50;
    animation: bounce 1.5s infinite;
}


.scroll-down-btn i {
    font-size: 22px;
    color: #000;
}

/* Bounce Animation */
@keyframes bounce {

    0%,
    100% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, -10px);
    }
}

/* Responsive font sizes for better mobile experience */
@media (max-width: 767px) {
    .display-4 {
        /* font-size: 2.5rem !important; */
    }

    .dream-sect p {
        font-size: 16px;
    }

    .dream-sect h2 {
        font-size: 32px;
    }

    .hero-row {
        display: flex;
        margin-top: unset;
        justify-content: center;
        align-items: center;
    }
}

/* Desert Safari Package Card */
.desert-safari-section {
    /* background-color: #f8f9fa; */
}

.package-card {
    transition: all 0.3s ease;
    border-radius: 30px;
    overflow: hidden;
    background: #ffffff;
    margin: 0 auto;
    border: 1px solid #E8E9EA;
}



/* Card Image Container */
.card-img-container {
    height: 280px;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.card-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Static Card Overlay - Always Visible */


/* Card Title */
.card-title {
    font-size: 1.5rem;
    color: #512C03;
    margin-top: 20px;
    font-family: var(--font-family);
    font-weight: 600;
    height: 58px;
}

/* Price Badge */
.price-badge {
    font-size: 1rem;
    font-weight: 600;
    border-radius: 24px;
    margin: 20px 0;
    background: #512C03;
}

.price-badge .text-decoration-line-through {
    font-size: 1.8rem;
    color: #A7A5A5;
    font-weight: 400;
}

.price-badge strong {
    font-size: 1.8rem !important;
    color: #fff;
    font-weight: 700;
}

/* Feature List with Borders */
.feature-list {
    background: #ffffff;
}

.feature-item {
    margin: 12px 20px 12px 40px;
    /* padding-bottom: 6px; */
    font-size: 1rem;
    line-height: 20px;
    color: #231F1E;
    transition: background-color 0.2s ease;
    font-family: var(--font-family2);
    position: relative;
}

.feature-item::before {
    content: "";
    position: absolute;
    top: 3px;
    left: -24px;
    width: 18px;
    height: 18px;
    background: url("../assets/images/check.svg") no-repeat center center / contain;
}

/* Remove border from last item */
.feature-item:last-child,
.feature-item.border-0 {
    border-bottom: none !important;
}


.feature-item i {
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* Action Buttons */
.card-footer {
    border-top: 1px solid #E8E9EA;
    background-color: #ffffff;
}

.package-card .btn {
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 15px;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
}

.package-card .btn-success {
    background: #1E9339;
}

.package-card .btn-success:hover {
    background: #0f7828;
    transform: translateY(-2px);
}

.package-card .btn-danger {
    background: #512C03;
}

.package-card .btn-danger:hover {
    background: #412301;
    transform: translateY(-2px);
}

@media (max-width: 576px) {
    .hero-section {
        border-radius: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .card-img-container {
        height: 250px;
    }

    .card-title {
        font-size: 1.3rem;
    }

    .price-badge strong {
        font-size: 1.5rem !important;
    }

    .price-badge .text-decoration-line-through {
        font-size: 1.5rem !important;
    }

    .feature-item {
        font-size: 0.85rem;
    }

    .package-card .btn {
        font-size: 0.8rem;
        padding: 8px 12px;
    }

    .feature-item::before {
        width: 16px;
        height: 16px;

    }
}

@media (max-width: 576px) {


    .card-img-container {
        height: 220px;
    }

    .card-title {
        font-size: 1.4rem;
        height: unset;
    }

    .feature-item {
        font-size: 0.9rem;
        margin: 10px 20px 10px 40px;
    }
}

/* Animation for card loading */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.package-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {

    .package-card,
    .package-card .btn {
        animation: none !important;
        transition: none !important;
    }

    .package-card:hover {
        transform: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .feature-item {
        border-bottom: 2px solid #000;
    }

    .card-img-overlay {
        background: rgba(0, 0, 0, 0.8);
    }
}

/* Print styles */
@media print {
    .package-card {
        box-shadow: none !important;
        border: 1px solid #dee2e6 !important;
        break-inside: avoid;
    }

    .package-card .btn {
        display: none;
    }

    .card-img-overlay {
        background: rgba(0, 0, 0, 0.3);
    }
}

footer {
    background-color: #512C03;
    position: relative;
    overflow: hidden;
    color: #fff;
    margin-top: 60px;
}

.footer-top {
    width: 100%;
}

.footer-logo {
    height: 100px;
    width: auto;
}

.footer-icon {
    height: 24px;
    margin-right: 5px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #231F1E;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: transform 0.3s;
}

.footer-social a:hover {
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid #ddd;
    margin-top: 3rem;
    padding-top: 1.5rem;
}

@media (max-width: 575.98px) {
    .footer-bottom {
        padding-bottom: 40px;
    }
}

.whatsapp-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    padding: 16px;
    z-index: 1050;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, background-color 0.3s;
}

.whatsapp-btn:hover {
    background-color: #18aa52;
    transform: scale(1.1);
    color: #fff;
}

.blink-soft {
    background-color: #25D366;
    animation: ws-pulse 1.8s ease-in-out infinite;
}

@keyframes ws-pulse {
    0% {
        background-color: #25D366;
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    50% {
        background-color: #128C7E;
        box-shadow: 0 0 20px 8px rgba(37, 211, 102, 0.3);
    }

    100% {
        background-color: #25D366;
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
}


.testimonials {
    /* background-color: #ffffff; */
}

.testimonials-section {
    padding: 60px 20px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    color: #512C03;
    position: relative;
    font-family: var(--font-family);
}

.swiper {
    width: 100%;
    /* padding: 60px 0 0 0; */
}

/* CRITICAL: Equal height for all slides */
.swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
    align-items: stretch;
    /* This ensures equal height */
}

.testimonial-card {
    background: white;
    border-radius: 30px;
    border: 1px solid #E8E9EA;
    padding: 30px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
    transition: all 0.3s ease;
    position: relative;
    max-width: 432px;
    width: 100%;
    /* REMOVED fixed height - now uses flexbox for equal heights */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-self: stretch;
    /* Ensures card stretches to fill slide height */
}

.testimonial-card:hover {
    transform: translateY(-10px);
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15); */
}

/* .testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 60px;
    color: #667eea;
    opacity: 0.3;
    font-family: serif;
} */

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 14px;
    right: 20px;
    width: 64px;
    height: 64px;
    background-image: url('../assets/images/quote-icon.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}


.star-rating {
    display: flex;
    gap: 3px;
    margin-bottom: 20px;
    flex-shrink: 0;
    /* Prevents star rating from shrinking */
}

.star {
    color: #512C03;
    font-size: 18px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
    flex-grow: 1;
    /* This makes text area expand to fill available space */
    text-align: left;
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid #E8E9EA;
    padding-bottom: 10px;
    /* Aligns text to top of expanded area */
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
    /* Prevents customer info from shrinking */
    margin-top: auto;
    /* Pushes customer info to bottom */
}



.customer-details h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #512C03;
}

.customer-details p {
    margin: 5px 0 0 0;
    font-size: 14px;
    color: #888;
}

/* Swiper Pagination Styling */
.testimonials-section .swiper-pagination {
    position: relative;
    margin-top: 30px;
}

.testimonials-section .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ccc;
    opacity: 1;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.testimonials-section .swiper-pagination-bullet-active {
    background: #512C03;
    transform: scale(1.2);

}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .testimonial-card {
        padding: 20px;
        /* Remove min-height on mobile for better flexibility */
    }

    .testimonials-section {
        padding: 40px 0px;
    }

    .testimonials-section .swiper {
        padding: 30px 0 0 0;
    }


}


.package-card1 {
    border-radius: 1rem;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.package-card1 .card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.package-body1 {
    background: #FFF6ED;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.package-title {
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 0.5rem;
}

.package-price {
    font-size: 0.9rem;
    font-weight: bold;
}

.package-price span {
    color: #A98434;
}

.package-old-price {
    font-size: 0.85rem;
    color: #A7A5A5;
    text-decoration: line-through;
}

.package-info {
    font-size: 0.85rem;
    color: #444;
    margin-bottom: 1rem;
}

.package-btn {
    background: #1E9339;
    color: #fff;
    font-weight: bold;
    border-radius: 50px;
    padding: 0.6rem 1.5rem;
    transition: background 0.3s ease;
    width: 100%;
}

.package-btn span {
    font-size: 16px;
}

.package-btn:hover {
    background: #115321;
}

.about-section h2 {
    color: #512C03;
    font-family: var(--font-family);
    font-weight: 500;

}

.about-section p {
    line-height: 24px;
    color: #656362;
}

.cust-btn {
    background-color: #512C03;
    color: white;
    font-size: 16px;
    padding: 12px 24px;
    font-weight: 500;
}

.cust-btn:active,
.cust-btn:focus,
.cust-btn:hover {
    background-color: #512C03 !important;
    color: white !important;
    outline: none !important;
    box-shadow: none !important;
}


.cust-container {
    width: 100%;
    max-width: 1440px;
    /* matches your Figma design width */
    margin: 0 auto;
    /* center align */
    padding-left: 50px;
    /* 50px spacing on both sides */
    padding-right: 50px;
    box-sizing: border-box;
    /* ensures padding doesn’t affect total width */
}

/* Medium screens (like tablets) */
@media (max-width: 1024px) {
    .cust-container {
        padding-left: 40px;
        padding-right: 40px;
    }
}

/* Small screens (like large phones) */
@media (max-width: 768px) {
    .cust-container {
        padding-left: 30px;
        padding-right: 30px;
    }
}

/* Extra small screens (mobiles) */
@media (max-width: 480px) {
    .cust-container {
        padding-left: 20px;
        padding-right: 20px;
    }
}


.stats-section h2 {
    color: #512C03;
    font-size: 2.5rem;
    font-family: var(--font-family);
    letter-spacing: 0.03em;
    font-weight: 600;
}

.stats-section p {
    color: #656362;
    font-size: 1rem;
    font-family: var(--font-family);
    line-height: 29px;
    width: 560px;
}

.stat-card-hero {
    background: #fff;
    border-radius: 18px;
    min-width: 220px;
    max-width: 340px;
    margin-bottom: 1rem;
    border: none;
}

.stat-number-hero {
    font-size: 2.7rem;
    color: #512C03;
    font-weight: 600;
    font-family: var(--font-family);
}

.stat-label-hero {
    font-size: 1.15rem;
    color: #212529;
    font-weight: 500;
    margin-top: 0.8rem;
}

.bg-sand {
    background-color: #fff4ea;
    padding: 80px 20px;
}

@media (max-width: 767.98px) {
    .about-section p {
        font-size: 16px;
    }

    .stats-section .stats-title {
        font-size: 1.6rem;
    }

    .stats-section h2 {
        font-size: 2rem;
        font-weight: 600;
    }

    .stat-card-hero {
        min-width: unset;
        max-width: unset;
    }



}

@media (max-width: 991.98px) {
    .stats-section p {

        width: 100%;
    }
}

@media (min-width: 1024px) and (max-width: 1199.98px) {
    .stat-card-hero {
        min-width: 180px;
        max-width: 300px;
    }
}

/* External CSS for improved spacing and no white background */
.chooseus-section {
    background: transparent;
    padding: 80px 20px;
    /* removes any background */
}

.chooseus-title {
    color: #512C03;
    font-size: 2.5rem;
    letter-spacing: 0.5px;
    font-family: var(--font-family);
    font-weight: 600;
}

.chooseus-feature {
    padding: 30px 20px;
    border: 1px solid rgba(81, 44, 3, 0.2);
    border-radius: 30px;
    text-align: left;
    height: 100%;
}

.chooseus-icon {
    font-size: 2.1rem;
    margin-bottom: 0.3rem;
    height: 80px;
    width: 80px;
    background: #FFF6ED;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.chooseus-heading {
    font-weight: 700;
    color: #512C03;
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
}

.chooseus-desc {
    color: #512C03;
    font-size: 1rem;
    margin-inline: auto;
    /* max-width: 250px; */
    line-height: 1.4;
    letter-spacing: 0.2px;
}

@media (max-width: 991.98px) {
    .chooseus-desc {
        /* max-width: 320px; */
    }
}

@media (max-width: 767.98px) {
    .chooseus-title {
        font-size: 2rem;
    }

    .chooseus-icon {
        font-size: 1.7rem;
    }

    .chooseus-heading {
        font-size: 1rem;
    }

    .chooseus-section {
        background: transparent;
        padding: 40px 20px;
        /* removes any background */
    }
}

.masonry-gallery {
    column-count: 3;
    column-gap: 1.5rem;
}

.masonry-video {
    width: 100%;
    display: block;
    margin-bottom: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    break-inside: avoid;
    border-radius: 36px;
}

@media (max-width: 991.98px) {
    .masonry-gallery {
        column-count: 2;
    }
}

@media (max-width: 575.98px) {
    .masonry-gallery {
        column-count: 1;
    }
}

.masonry-video {
    position: relative;
}

.custom-play-btn,
.custom-pause-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    transform: translate(-50%, -50%);
    border: none;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.8);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 25px;
    cursor: pointer;
    z-index: 2;
    transition: 0.3s;
}

.custom-play-btn {
    background-image: url("data:image/svg+xml,%3Csvg fill='black' viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.018 14L14.41 8 4.018 2z'/%3E%3C/svg%3E");
}

.custom-pause-btn {
    background-image: url("data:image/svg+xml,%3Csvg fill='black' viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.5 3.5h2v9h-2zm3 0h2v9h-2z'/%3E%3C/svg%3E");
}

.hide {
    display: none !important;
}


.faq-section {
    padding: 0px 20px 80px 20px;
}

.faq-accordion .accordion-item {
    border: none;
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
}

.accordion-button.faq-btn {
    background: #fff4ea;
    border: none;
    border-radius: 15px !important;
    font-weight: 600;
    color: #88211c;
    padding-top: 19px;
    padding-bottom: 19px;
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 1.18rem;
    box-shadow: none;
}

.accordion-button.faq-btn:not(.collapsed) {
    color: #a42520;
    background: #fff;
    box-shadow: none;
}

.faq-badge {
    background: #a42520;
    color: #fff;
    font-weight: 600;
    padding: 6px 22px;
    border-radius: 18px;
    font-size: 1rem;
    margin-right: 12px;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.faq-title {
    flex-grow: 1;
    font-weight: 600;
    font-size: 1.09rem;
    color: #512C03;
    text-align: left;
}

.accordion-body {
    background: #fff;
    color: #444;
    border-radius: 0 0 12px 12px;
    font-size: 1.05rem;
    padding: 10px 28px 10px 28px;
    line-height: 24px;
}

@media (max-width: 767px) {
    .accordion-button.faq-btn {
        font-size: 1rem;
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .faq-badge {
        font-size: 0.97rem;
        padding: 6px 16px;
    }

    .accordion-body {
        padding: 12px 15px 15px 20px;
        font-size: 0.99rem;
    }

    .faq-title {
        font-size: 16px;
    }
}

.promo-bg {
    background: url('../assets/images/cta.png') center center/cover no-repeat;
    min-height: 300px;
    display: flex;
    align-items: center;
    position: relative;
    border-radius: 30px;
}

.promo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(81, 44, 3, 0.6);
    z-index: 1;
    border-radius: 30px;
}

.container.z-2 {
    position: relative;
    z-index: 2;
}

.promo-title {
    font-weight: 700;
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 7px;
    text-shadow: 0 2px 10px #2229;
    width: 60%;
}

.promo-desc {
    font-size: 1.07rem;
    color: #fff;
    margin-top: 4px;
    text-shadow: 0 2px 8px #2228;
}

.promo-link {
    color: #EF1923;
    font-size: 1.08rem;
    text-decoration: underline;
    font-weight: 500;
    text-shadow: 0 2px 8px #2226;
}

.promo-bubble {
    position: absolute;
    top: 24px;
    right: 96px;
    background: #fff;
    color: #512C03;
    border-radius: 50px;
    padding: 20px 40px;
    font-size: 1.04rem;
    font-weight: 500;
    text-decoration: none;
    z-index: 2;
}

.promo-bubble:hover {
    background: #fff;
    text-decoration: none;
    color: #512C03;
}



@media (max-width: 991px) {
    .promo-bubble {
        top: 50%;
        right: 50%;
        transform: translate(50%, 120%);
        padding: 20px 20px;
    }

    .promo-title {
        display: flex;
        text-align: center;
        justify-content: center;
        font-size: 2rem;
        margin-top: -20px;
        width: 100%;

    }

    .promo-bg {
        /* min-height: 250px; */
    }
}

.booking-form {
    /* max-width: 900px; */
    /* margin: 0 auto; */
    padding: 60px 20px;
}

.booking-form img {
    border-radius: 36px;
}

.input-line {
    border: none;
    border-bottom: 1.7px solid #dbdbdb;
    border-radius: 0;
    background: transparent;
    font-size: 1.09rem;
    box-shadow: none;
    padding-left: 0;
    margin-bottom: 5px;
}

.input-line:focus {
    border-color: #92211e;
    box-shadow: none;
}

.form-label {
    font-size: 1.01rem;
    font-weight: 500;
    color: #222;
    margin-bottom: 2px;
    padding-left: 0;
}

.spacing-error {
    margin-top: 2px;
    font-size: 0.98rem;
}

.submit-btn {
    background-color: #222;
    color: #fff;
    font-weight: 600;
    border-radius: 2rem;
    padding: 10px 32px;
    font-size: 1.12rem;
    margin-top: 10px;
    box-shadow: none;
    border: none;
}

.submit-btn:hover {
    background-color: #4b3a2f;
    color: #fff;
}

@media (max-width: 767px) {
    .booking-form .row>[class^="col-"] {
        margin-bottom: 1.15rem;
    }
}

.mobile-bottom-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1050;
    background: #fff;
    box-shadow: 0 -2px 10px #2221;
    padding: 0;
}

.bottom-btn {
    display: block;
    width: 100%;
    padding: 20px 0 20px 0;
    text-align: center;
    font-size: 1.08rem;
    font-weight: 500;
    color: #fff;
    background: #1E9339;
    border: none;
    border-right: 1px solid #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.15s;
}

.bottom-btn.contact-btn {
    background: #512C03;
}

.bottom-btn:last-child {
    border-right: none;
}

.bottom-btn:active,
.bottom-btn:focus,
.bottom-btn:hover {
    background: #be2323;
    color: #fff;
    text-decoration: none;
}

@media (min-width: 576px) {
    .mobile-bottom-bar {
        display: none !important;
    }


}

@media (max-width: 576px) {
    .whatsapp-btn {
        bottom: 74px;
        display: none;
    }

    footer {

        padding-bottom: 5rem;
    }
}

.enquiry-section {
    position: relative;
    background: linear-gradient(to bottom, #4b2500 60%, #ffffff 50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 130px;
    padding-bottom: 90px;
}

.enquiry-header {
    position: relative;
    text-align: center;
}

.person-img {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    /* width: 180px;     */
    z-index: 2;
}

.enquiry-form-container {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 184px;
}

.enquiry-form-card {
    max-width: 800px;
    width: 100%;
    border-radius: 15px;
}

.enquiry-form-card h5 {
    color: #512C03;
    font-weight: 600;
    font-size: 30px;
}

.form-control,
.form-select {
    border-radius: 8px;
    box-shadow: none !important;
}

.submit-btn {
    background-color: #4b2500;
    color: white;
    border-radius: 25px;
    font-weight: 500;
    transition: 0.3s;
    width: 100%;
}

.submit-btn:hover {
    background-color: #663300;
    color: #fff;
}

@media (max-width: 576px) {
    .person-img {
        width: 350px;
    }

    .enquiry-form-container {
        position: relative;
        z-index: 1;
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 60px;
    }
}

.thankyou-page {
    /* min-height: 60vh; */
    display: flex;
    align-items: center;
    justify-content: center;
    /* flex-direction: column; */
    background: #FFF;
}

.thankyou-page .btn-back {
    background-color: #512C03;
    color: #fff;
}

.thankyou-box {
    width: max-content;
    background: #fff;
    padding: 2.5rem 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 6px 32px 0 rgba(60, 72, 88, 0.1);
    text-align: center;
}

.thankyou-icon {
    font-size: 3rem;
    color: #512C03;
    margin-bottom: 1rem;
}