@import url('https://fonts.googleapis.com/css2?family=Forum:wght@400&family=Wix+Madefor+Text:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Walter+Turncoat&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Forum&family=Parkinsans:wght@300..800&family=Wix+Madefor+Text:ital,wght@0,400..800;1,400..800&display=swap');

:root {
    --font-header: 'Forum', serif;
    --font-body: 'Wix Madefor Text', sans-serif;
    --font-body2: 'Parkinsans', sans-serif;
}



/* @font-face {
    font-family: 'wix_madefor_textregular';
    src: url('assets/font/wixmadefortext-regular-webfont.woff2') format('woff2'),
        url('assets/font/wixmadefortext-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}




@font-face {
    font-family: 'wix_madefor_textbold';
    src: url('assets/font/wixmadefortext-bold-webfont.woff2') format('woff2'),
        url('assets/font/wixmadefortext-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}




@font-face {
    font-family: 'wix_madefor_textextrabold';
    src: url('assets/font/wixmadefortext-extrabold-webfont.woff2') format('woff2'),
        url('assets/font/wixmadefortext-extrabold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}




@font-face {
    font-family: 'wix_madefor_textmedium';
    src: url('assets/font/wixmadefortext-medium-webfont.woff2') format('woff2'),
        url('assets/font/wixmadefortext-medium-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}


@font-face {
    font-family: 'forumregular';
    src: url('assets/font/forum-regular-webfont.woff2') format('woff2'),
        url('assets/font/forum-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

} */

html {
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    /* font-family: var(--font-header); */
}

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-body);
    background-color: #ffffff;
    color: #000000;
}

.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: #25D366;
    font-weight: 700;
    font-size: 18px;
}

.cust-navbar .navbarNav .btn-success:hover {
    background: #20c15b;
}



@media (max-width: 992px) {
    .cust-navbar .navbarNav span {
        display: none;
    }

    .cust-navbar .navbarNav .whatsapp-header-btn span {
        display: none;
    }

    .cust-navbar .navbarNav .btn-success {
        padding: 4px 10px;
    }

}




.hero-section {
    height: 70vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background Image */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../assets/images/pexels-emrecanalgul-26775378.jpg') center/cover no-repeat;
    background-attachment: fixed;
    z-index: 1;

    /* Subtle zoom animation */
    animation: backgroundZoom 20s ease-in-out infinite alternate;
}

@keyframes backgroundZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.05);
    }
}

/* Hero Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;

    /* Explore the Iconic Dubai Frame */





}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 3;
    animation: fadeInUp 1.2s ease-out;
}

@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-header);
}

/* 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-body);
    padding: 12px 20px;
}

/* WhatsApp Button */
.hero-buttons .btn-success {
    background: #25D366;
    border: 2px solid transparent;
    font-weight: 700;
}

.hero-buttons .btn-success:hover {
    background: #20c15b;
    transform: translateY(-3px);
}

/* More Details Button */
.hero-buttons .btn-danger {
    background: #EF1923;
    border: 2px solid transparent;
}

.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;
    }

    .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: #231F1E;
    font-family: var(--font-header);
}

.dream-sect p {
    color: #656362;
    font-size: 20px;
    letter-spacing: 1px;
}

/* Responsive font sizes for better mobile experience */
@media (max-width: 767px) {
    .display-4 {
        font-size: 2.5rem !important;
    }
}

/* Desert Safari Package Card */
.desert-safari-section {
    /* background-color: #f8f9fa; */
}

.package-card {
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
    background: #FFF6ED;
    margin: 0 auto;
    border: 1px solid #E8E9EA;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15) !important;
}

/* Card Image Container */
.card-img-container {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.card-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Static Card Overlay - Always Visible */
.card-img-overlay {
    opacity: 1;
    /* Always visible */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

/* Card Title */
.card-title {
    font-size: 1.5rem;

    color: #000;
    margin-top: 20px;
    font-family: var(--font-body2);
}

/* Price Badge */
.price-badge {
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    margin: 20px 0;
    background: #231F1E;
}

.price-badge .text-decoration-line-through {
    font-size: 1.8rem;
    color: #A7A5A5;
}

.price-badge strong {
    font-size: 1.8rem !important;
    color: #fff;
    font-weight: 700;
}

/* Feature List with Borders */
.feature-list {
    background: #FFF6ED;
}

.feature-item {
    margin: 12px 20px;
    /* padding-bottom: 6px; */
    font-size: 0.9rem;
    color: #495057;
    transition: background-color 0.2s ease;
    font-family: var(--font-body2);
    line-height: 20px;
    position: relative;
    padding-left: 20px;
}

/* 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;
    position: absolute;
    margin-left: -18px;
    top: 1px;
}

/* Action Buttons */
.card-footer {
    border-top: 1px solid #e9ecef;
    background-color: #FFF6ED;
}

.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: #EF1923;
}

.package-card .btn-danger:hover {
    background: #d20e18;
    transform: translateY(-2px);
}

/* 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 {
        /* padding: 10px 15px; */
        font-size: 0.85rem;
    }

    .package-card .btn {
        font-size: 0.8rem;
        padding: 8px 12px;
    }
}

@media (max-width: 576px) {
    .desert-safari-section {
        padding: 2rem 0;
    }

    .card-img-container {
        height: 220px;
    }

    .card-title {
        font-size: 1.2rem;
    }

    .feature-item {
        /* padding: 8px 12px; */
    }
}

/* 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: #FFF6ED;
    position: relative;
    overflow: hidden;
    padding-bottom: 3rem;
}

.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;
}

.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 {
    animation: blinker 1.5s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0.5;
        background-color: #14ad51;
    }

}

.testimonials {
    background-color: #FFF6ED;
}

.testimonials-section {
    padding: 60px 20px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    /* font-weight: 700; */
    color: #231F1E;
    position: relative;
    font-family: var(--font-header);
}

.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: 16px;
    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: #A98434;
    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;
    /* 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: #A98434;
}

.customer-details p {
    margin: 5px 0 0 0;
    font-size: 14px;
    color: #888;
}

/* Swiper Pagination Styling */
.swiper-pagination {
    position: relative !important;
    margin-top: 30px;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ccc;
    opacity: 1;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: #A98434;
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }

    .testimonial-card {
        padding: 20px;
        /* Remove min-height on mobile for better flexibility */
    }

    .testimonials-section {
        padding: 40px 15px;
    }

    .swiper {
        padding: 30px 0 0 0;
    }


}

.about-section h2 {
    color: #231F1E;
    font-family: var(--font-header);

}

.about-section p {
    line-height: 28px;
}

.bg-sand {
    background-color: #fff4ea;
    padding: 80px 20px;
}

.stats-section .stats-title {
    color: #231F1E;
    font-size: 2.5rem;
    font-family: var(--font-header);
    letter-spacing: 0.03em;
}

.stat-card-hero {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 3px 18px 0 #eaded8;
    transition: box-shadow 0.2s;
    min-width: 220px;
    max-width: 340px;
    margin-bottom: 1rem;
    border: none;
}

.stat-card-hero:hover {
    box-shadow: 0 6px 24px 0 #dbc2be;
}

.stat-number-hero {
    font-size: 2.7rem;
    color: #A98434;
    font-weight: 700;
    font-family: var(--font-header);
}

.stat-label-hero {
    font-size: 1.15rem;
    color: #212529;
    font-weight: 500;
    margin-top: 0.8rem;
}

@media (max-width: 767.98px) {
    .stats-section .stats-title {
        font-size: 1.6rem;
    }

    .stat-card-hero {
        min-width: unset;
        padding: 1.25rem 0.75rem;
    }

    .stat-number-hero {
        font-size: 2rem;
    }

    .stat-label-hero {
        font-size: 1rem;
    }

    .about-section p {
        font-size: 16px;
    }
}


/* External CSS for improved spacing and no white background */
.chooseus-section {
    background: transparent;
    padding: 80px 20px;
    /* removes any background */
}

.chooseus-title {
    color: #231F1E;
    font-size: 2.5rem;
    letter-spacing: 0.5px;
    font-family: var(--font-header);
}

.chooseus-feature {
    padding: 0 12px 0 12px;
    /* no box, no bg, no shadow */
}

.chooseus-icon {
    font-size: 2.1rem;
    margin-bottom: 0.3rem;
}

.chooseus-heading {
    font-weight: 700;
    color: #A98434;
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
}

.chooseus-desc {
    color: #333;
    font-size: 1.01rem;
    margin-inline: auto;
    max-width: 250px;
    line-height: 1.4;
}

@media (max-width: 991.98px) {
    .chooseus-desc {
        max-width: 320px;
    }
}

@media (max-width: 767.98px) {
    .chooseus-title {
        font-size: 1.5rem;
    }

    .chooseus-icon {
        font-size: 1.7rem;
    }

    .chooseus-heading {
        font-size: 1rem;
    }
}

/* Place this in your external CSS file */
.bg-light-sand {
    /* background: #fff5ee; */
}

.faq-section {
    padding: 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: #92211e;
    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/hero-img.jpg') center center/cover no-repeat;
    min-height: 350px;
    display: flex;
    align-items: center;
    position: relative;
}

.promo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(33, 19, 17, 0.6);
    z-index: 1;
}

.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;
}

.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: 35px;
    right: 16px;
    background: #EF1923;
    color: #fff;
    border-radius: 50px;
    padding: 20px 26px;
    font-size: 1.04rem;
    font-weight: 500;
    text-decoration: none;
    z-index: 2;
}



@media (max-width: 991px) {
    .promo-bubble {
        top: 60%;
        right: 50%;
        transform: translate(50%, 120%);
    }

    .promo-title {
        display: flex;
        text-align: center;
    }

    .promo-bg {
        /* min-height: 250px; */
    }


}

.booking-form {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.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;
    border-top: 4px solid #F23030;
}

.bottom-btn {
    display: block;
    width: 100%;
    padding: 20px 0 20px 0;
    text-align: center;
    font-size: 1.08rem;
    font-weight: 500;
    color: #fff;
    background: #F23030;
    border: none;
    border-right: 1px solid #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.15s;
}

.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;
    }

    footer {

        padding-bottom: 5rem;
    }
}