/**
 * Taj Palace Restaurant - Modern Premium Stylesheet
 * Primary Color Palette: Deep Crimson Red (#9b111e) and Rich Gold (#cca550)
 */

:root {
    /* Colors - Red and Green Palette from Reference Screenshot */
    --primary-color: #f22727;
    /* Vibrant Red */
    --primary-dark: #cc0000;
    --nav-color: #1e7536;
    /* Deep Green */
    --accent-color: #CCA550;
    /* Gold */
    --accent-hover: #b38e3e;

    --text-primary: #1A1A1A;
    --text-secondary: #555555;
    --text-light: #999999;

    --bg-white: #ffffff;
    --bg-light: #F8F5F2;
    --bg-dark: #121212;
    --bg-darker: #0d0d0d;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;

    /* Layout */
    --container-width: 1200px;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Base Reset & Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-secondary);
    line-height: 1.7;
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-dark {
    background-color: var(--bg-dark);
    color: var(--bg-white);
}

.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4 {
    color: var(--bg-white);
}

.section-padding {
    padding: 100px 0;
}

.mt-3 {
    margin-top: 30px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 0;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid transparent;
}

.btn i {
    margin-left: 8px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-outline-light {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.btn-outline-light:hover {
    background-color: var(--accent-color);
    color: var(--bg-dark);
}

.btn-text {
    padding: 14px 0;
    color: var(--bg-white);
    position: relative;
}

.btn-text::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.btn-text:hover {
    color: var(--accent-color);
}

.btn-text:hover::after {
    width: 100%;
}

/* Typography Headers */
.section-title-wrap {
    margin-bottom: 50px;
    position: relative;
}

.section-title-wrap.center {
    text-align: center;
}

.section-subtitle {
    display: block;
    font-family: var(--font-body);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

/* Inner Hero Styles - Red Overlay & Torn Edge */
.inner-hero {
    position: relative;
    padding: 220px 0 120px;
    background-color: var(--primary-color);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    color: var(--bg-white);
    overflow: hidden;
}

.inner-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(230, 0, 0, 0.7);
    /* Red overlay to match hero banner */
    z-index: 1;
}

.inner-hero .container {
    position: relative;
    z-index: 2;
}

.inner-hero h1 {
    font-size: 56px;
    font-family: var(--font-heading);
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.inner-hero .breadcrumb {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.9);
}

.inner-hero .breadcrumb a {
    color: var(--accent-color);
}

/* .inner-hero::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6vw;
    min-height: 40px;
    background-image: url('../img/resta-img22.png');
    background-size: 100% 100%;
    background-position: bottom center;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 3;
} */


.section-title-wrap.light .section-subtitle {
    color: var(--accent-color);
}

.section-title {
    font-size: 42px;
    position: relative;
    padding-bottom: 25px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: var(--accent-color);
}

.section-title-wrap.center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Topbar - REMOVED */

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--bg-white) !important;
    padding: 15px 0 15px 0;
    transition: var(--transition);
}

/* Logo Styling */
.logo-img {
    max-height: 55px;
    width: auto;
    display: block;
    transition: var(--transition);
}

.header.sticky .logo-img {
    max-height: 45px;
}

.logo-img-footer {
    max-height: 80px;
    width: auto;
    margin-bottom: 20px;
}

.header::after {
    content: '';
    display: block;
    position: absolute;
    /* top: 100%; */
    left: 0;
    width: 100%;
    height: 6vw;
    min-height: 40px;
    background-image: url('../img/resta-img22.png');
    background-size: 100% 100%;
    background-position: top center;
    background-repeat: no-repeat;
    /* transform: scaleY(-1); */
    pointer-events: none;
}


.header.scrolled {
    padding: 10px 0 10px 0;
    background-color: var(--bg-white) !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-content {
    text-align: center;
    position: relative;
    padding-top: 15px;
    /* space for crown */
}

.crown-icon {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
    color: #333333;
    /* Dark grey/black crown */
}

.logo-title {
    font-size: 32px;
    color: var(--primary-color);
    /* Red */
    margin: 0;
    font-family: var(--font-heading);
    line-height: 1;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 3px;
    margin-bottom: 3px;
}

.logo-subtitle {
    font-size: 14px;
    display: block;
    letter-spacing: 2px;
    color: #1e7536;
    /* Green */
    font-weight: 500;
}

.nav-list {
    display: flex;
    gap: 35px;
}

.nav-link {
    font-size: 15px;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--nav-color);
    position: relative;
    padding: 5px 0;
}

.nav-link i.fa-caret-down {
    font-size: 12px;
    margin-left: 3px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    /* Red hover underline */
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

/* Red active color */

.btn-enquiry {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(230, 0, 0, 0.3);
}

.btn-enquiry:hover {
    background-color: var(--primary-dark);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

/* Hero */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background-image: url('../img/restaurantimg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(230, 0, 0, 0.7);
    /* Red overlay to match branding */
    z-index: 1;
}


.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    max-width: 700px;
}

.hero .subtitle {
    display: block;
    color: var(--accent-color);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-bottom: 25px;
    font-weight: 600;
    font-family: var(--font-body);
}

.hero .title {
    font-size: 70px;
    color: var(--bg-white);
    line-height: 1.1;
    margin-bottom: 30px;
    font-style: italic;
}

.hero .description {
    font-size: 18px;
    color: #e0e0e0;
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
    height: 500px;
}

.about-images .img-large {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/customer2.jpg') center/cover;
    border-radius: 4px;
}

.about-images .img-small {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 55%;
    height: 55%;
    background: url('../img/customer4.jpg') center/cover;
    border: 10px solid var(--bg-white);
    border-radius: 4px;
    z-index: 2;
}

.experience-badge {
    position: absolute;
    top: 50%;
    left: 80%;
    transform: translate(-50%, -50%);
    background-color: var(--primary-color);
    color: var(--bg-white);
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 3;
    text-align: center;
    border: 8px solid var(--bg-light);
}

.experience-badge .number {
    font-size: 36px;
    font-weight: 700;
    font-family: var(--font-heading);
    line-height: 1;
}

.experience-badge .text {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 5px;
}

.about-text .lead {
    font-size: 20px;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-style: italic;
    margin-bottom: 25px;
}

.about-features {
    margin: 30px 0;
}

.about-features li {
    margin-bottom: 15px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-features i {
    color: var(--accent-color);
    font-size: 14px;
}

.signature {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.signature h4 {
    font-family: 'Great Vibes', cursive, var(--font-heading);
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: -5px;
}

.signature span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Menu */
.menu-categories {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    /* Ensure categories adapt to small screens */
}

.cat-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--bg-white);
    padding: 12px 30px;
    font-family: var(--font-body);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    border-radius: 30px;
    /* Luxury pill shape */
    transition: var(--transition);
}

.cat-btn.active,
.cat-btn:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--bg-dark);
    box-shadow: 0 4px 15px rgba(204, 165, 80, 0.4);
}

.menu-grid-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.menu-item-card {
    background: linear-gradient(145deg, #181818, #0a0a0a);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    transition: var(--transition);
    border: 1px solid rgba(204, 165, 80, 0.15);
}

.menu-item-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    z-index: -1;
    opacity: 0;
    border-radius: 14px;
    transition: var(--transition);
}

.menu-item-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.menu-item-card:hover::before {
    opacity: 1;
}

.menu-img-wrap {
    position: relative;
    height: 240px;
    overflow: hidden;
    border-bottom: 2px solid var(--accent-color);
}

.menu-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.menu-item-card:hover .menu-img-wrap img {
    transform: scale(1.15) rotate(1deg);
}

.menu-price-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(18, 18, 18, 0.85);
    /* Glass Dark */
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: var(--accent-color);
    padding: 8px 18px;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    border: 1px solid var(--accent-color);
    border-radius: 30px;
    /* Luxury pill */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.menu-item-info {
    padding: 30px 25px;
    text-align: center;
}

.dish-name {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--bg-white);
    font-family: var(--font-heading);
    font-style: italic;
    transition: var(--transition);
}

.menu-item-card:hover .dish-name {
    color: var(--accent-color);
}

.dish-desc {
    font-size: 14px;
    color: #a0a0a0;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Services / Why Choose Us */
.services-modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-flip-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-flip-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--primary-color);
    z-index: -1;
    transition: var(--transition);
}

.service-flip-card:hover::before,
.service-flip-card.active-theme::before {
    height: 100%;
}

.service-flip-card:hover h4,
.service-flip-card.active-theme h4,
.service-flip-card:hover p,
.service-flip-card.active-theme p {
    color: var(--bg-white);
}

.service-flip-card:hover .service-icon,
.service-flip-card.active-theme .service-icon {
    color: var(--accent-color);
}

.service-icon {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 25px;
    transition: var(--transition);
}

.service-flip-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    transition: var(--transition);
}

.service-flip-card p {
    font-size: 15px;
    transition: var(--transition);
}

/* Gallery - Unique Expanding Accordion Slider */
.gallery-accordion {
    display: flex;
    width: 100%;
    height: 500px;
    gap: 15px;
}

.gallery-slide {
    position: relative;
    flex: 1;
    /* By default small */
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-slide.active,
.gallery-slide:hover {
    flex: 6;
    /* Expanding greatly */
}

.gallery-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-slide::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    z-index: 1;
}

.slide-content {
    position: absolute;
    bottom: 30px;
    left: 40px;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
    transition-delay: 0s;
    white-space: nowrap;
}

.gallery-slide.active .slide-content,
.gallery-slide:hover .slide-content {
    opacity: 1;
    transition-delay: 0.3s;
    /* Delay showing text until it expands a bit */
}

.slide-content h4 {
    color: var(--bg-white);
    font-size: 28px;
    margin: 0;
}

/* Reviews */
.review-card {
    background-color: var(--bg-white);
    padding: 50px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
    position: relative;
}

.quote-icon {
    font-size: 40px;
    color: var(--accent-color);
    opacity: 0.3;
    margin-bottom: 25px;
}

.review-text {
    font-size: 22px;
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 30px;
}

.review-author h5 {
    font-family: var(--font-body);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.review-author .stars i {
    color: var(--accent-color);
    font-size: 12px;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    background-image: linear-gradient(rgba(242, 39, 39, 0.85), rgba(242, 39, 39, 0.85)), url('../img/footer.jpg');
    background-size: 100% auto;
    background-position: bottom center;
    background-repeat: no-repeat;
    color: var(--bg-white);
    position: relative;
}


.footer::before {
    content: '';
    display: block;
    position: absolute;
    top: -0.9vw;
    /* Match the height to create the transition */
    left: 0;
    width: 100%;
    height: 6vw;
    min-height: 40px;
    background-image: url('../img/resta-img22.png');
    background-size: 100% 100%;
    background-position: top center;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 10;
}


.footer-top {
    padding: 80px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 50px;
}

.footer-col h4 {
    color: var(--bg-white);
    font-size: 20px;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-logo h2 {
    color: var(--bg-white);
    font-size: 36px;
    margin-bottom: 20px;
}

/* Global Logo Enhancement */
.logo-img {
    height: auto;
    max-height: 80px;
    width: auto;
    image-rendering: -moz-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.footer-desc {
    margin-bottom: 25px;
    font-size: 15px;
    max-width: 300px;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    transition: var(--transition);
}

.footer-socials a:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition);
}


.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.location-item h5 {
    color: var(--accent-color);
    margin-bottom: 5px;
}

.location-item p {
    font-size: 14px;
    margin-bottom: 10px;
}

.location-item a {
    display: block;
    font-size: 14px;
    color: var(--bg-white);
    margin-bottom: 5px;
}

.location-item a:hover {
    color: var(--accent-color);
}

.wa-link {
    color: #25D366 !important;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.15);
    padding: 20px 0;
    font-size: 13px;
    letter-spacing: 1px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}


/* Responsive */
@media (max-width: 991px) {
    .topbar {
        display: none;
    }

    .about-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .gallery-accordion {
        flex-direction: column;
        height: 800px;
        gap: 10px;
    }

    .gallery-slide.active,
    .gallery-slide:hover {
        flex: 4;
    }

    .hero .title {
        font-size: 50px;
    }

    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-white);
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        padding: 20px;
        display: none;
    }

    .navbar.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 15px;
    }

    .mobile-toggle {
        display: flex;
    }

    .header-action {
        display: none;
    }
}

@media (max-width: 768px) {
    .menu-grid-images {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .menu-categories {
        flex-direction: column;
        gap: 15px;
        padding: 0 20px;
    }

    .cat-btn {
        width: 100%;
    }

    .menu-img-wrap {
        height: 200px;
    }

    .dish-name {
        font-size: 22px;
    }
}

/* Contact Page Specific Fixes */
.contact-info p,
.contact-info a {
    color: var(--text-primary) !important;
}

.contact-info .section-subtitle {
    color: var(--primary-color) !important;
}

.contact-form-wrap {
    background: var(--bg-white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 2px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #eee;
    background: #fcfcfc;
    border-radius: 8px;
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: 0 5px 15px rgba(230, 0, 0, 0.05);
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

@media (max-width: 768px) {
    .footer-bottom-container {
        justify-content: center;
        text-align: center;
        flex-direction: column;
    }
}

/* WhatsApp Transparent Booking Form */
.hero-booking-form {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    padding: 15px 20px;
    margin-top: 40px;
    backdrop-filter: blur(5px);
    width: 100%;
}

.hero-booking-form form {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}

.booking-field {
    display: flex;
    flex-direction: column;
    text-align: left;
    padding: 0 15px;
    flex: 1;
}

.booking-field.border-sep {
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.booking-field label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.booking-field input,
.booking-field select {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 16px;
    outline: none;
    font-family: inherit;
    padding: 5px 0;
}

.booking-field input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.booking-field select option {
    background: #000;
    color: #fff;
}

.booking-field input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

.booking-field.button-field {
    padding-right: 0;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
}

.btn-search {
    background-color: #c07a3c;
    color: #fff;
    border: none;
    padding: 14px 35px;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s background;
}

.btn-search:hover {
    background-color: #a0642f;
}

@media (max-width: 768px) {
    .hero-booking-form form {
        flex-direction: column;
    }

    .booking-field {
        width: 100%;
        padding: 15px 0;
    }

    .booking-field.border-sep {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.3);
    }

    .booking-field.button-field {
        justify-content: center;
        padding-top: 20px;
    }

    .btn-search {
        width: 100%;
    }
}
.whatsapp-icon {
    position: fixed !important;
    bottom: 77px !important;
    right: 15px !important;
    background-color: #25d366 !important;
    color: #fff !important;
    font-size: 22px !important;
    padding: 12px 16px !important;
    border-radius: 48% 48% !important;
    text-decoration: none !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3) !important;
    transition: 0.3s ease !important;
    z-index: 2 !important;
}
.call-icon {
    position: fixed !important;
    bottom: 152px !important;
    right: 15px !important;
    background-color: #34b7f1 !important;
    color: #fff !important;
    font-size: 22px !important;
    padding: 12px 16px !important;
    border-radius: 50% !important;
    text-decoration: none !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3) !important;
    transition: 0.3s ease !important;
    z-index: 2 !important;
}