/* ====== Variables & Setup ====== */
:root {
    --primary-color: #fdfbf7;
    /* Light beige / cream */
    --secondary-color: #f4eee1;
    /* Slightly darker beige */
    --accent-color: #d35400;
    /* Rust / Desert Orange */
    --accent-hover: #e67e22;
    --header-bg: #f8f9fa;
    /* Light gray */
    --footer-bg: #4a3320;
    /* Brown */
    --text-main: #333333;
    --text-light: #666666;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    --glass-bg: rgba(255, 255, 255, 0.25);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--primary-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-accent {
    color: #ffa469;
}

.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.bg-secondary {
    background-color: var(--secondary-color);
}

.section {
    padding: 80px 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--footer-bg);
}

.subsection-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin: 1.5rem 0 1rem;
    color: var(--accent-color);
}

.lead-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* ====== Buttons ====== */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: var(--accent-color);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(211, 84, 0, 0.3);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 84, 0, 0.4);
}

.btn-reserve {
    background: #73563d;
    color: white;
    /* box-shadow: 0 4px 15px rgba(211, 84, 0, 0.2); */
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    font-weight: 600;
}

.btn-reserve:hover {
    background: linear-gradient(135deg, var(--accent-hover), #ba4a00);
    box-shadow: 0 6px 20px rgba(211, 84, 0, 0.35);
    transform: translateY(-2px);
}

/* ====== Glassmorphism Utilities ====== */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: 15px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.05);
    border-radius: 12px;
}

/* ====== Header ====== */
.header {
    width: 100%;
    background-color: #ffffff;
    padding: 0 0;
    position: fixed;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    /* border-top: 5px solid var(--accent-color); */
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 100px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

.main-nav .nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.main-nav .nav-links a {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--footer-bg);
    text-transform: capitalize;
    letter-spacing: 0.5px;
    position: relative;
    padding: 5px 0;
}

.main-nav .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.main-nav .nav-links a:hover::after,
.main-nav .nav-links a.active::after {
    width: 100%;
}

.main-nav .nav-links a:hover,
.main-nav .nav-links a.active {
    color: var(--accent-color);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    padding: 10px 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
}

.dropdown-menu li a:hover {
    background-color: var(--primary-color);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-main);
    cursor: pointer;
}

/* ====== Hero Section ====== */
.hero {
    position: relative;
    height: 80vh;
    min-height: 450px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-image: url('../assets/desert_camp_hero_1778739156025.png');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    display: none;
}

/* ====== Hero Text Section ====== */
.hero-text-section {
    padding: 60px 0 50px;
    text-align: center;
    background: var(--primary-color);
    animation: fadeIn 1s ease-out;
}

.badge {
    display: inline-block;
    padding: 5px 15px;
    background: var(--accent-color);
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 40px;
    color: var(--text-main);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: inline-flex;
    align-items: center;
    padding: 20px 40px;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.stat-item i {
    font-size: 2rem;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.15);
}

/* ====== About Section ====== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-images {
    position: relative;
}

.img-1 {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    background-image: url('../assets/swiss_tents_1778739175855.png');
    background-size: cover;
    background-position: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.experience-card {
    position: absolute;
    bottom: -30px;
    left: -30px;
    padding: 25px;
    max-width: 250px;
    border-radius: 15px;
    animation: float 6s ease-in-out infinite;
}

.experience-card h4 {
    font-family: var(--font-heading);
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

/* ====== Offerings Section ====== */
.offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(375px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.offering-card {
    position: relative;
    height: 420px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.offering-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.offering-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
}

.offering-card:hover .offering-img {
    transform: scale(1.1);
}

.offering-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 2;
    transition: opacity 0.5s ease;
}

#img-camel-safari {
    background-image: url('../assets/camel_safari_1778739196416.png');
}

#img-jeep-safari {
    background-image: url('../assets/jeep_safari_1778739213306.png');
}

#img-folk-dance {
    background-image: url('../assets/folk_dance_bonfire_1778739230115.png');
}

#img-quad-bike {
    background-image: url('../assets/quad_bike_desert_1778739250704.png');
}

#img-overnight-safari {
    background-image: url('../assets/overnight_safari.png');
}

#img-horse-safari {
    background-image: url('../assets/horse_safari.png');
}

.offering-content {
    position: relative;
    z-index: 3;
    padding: 35px 30px;
    background: transparent;
    display: flex;
    flex-direction: column;
    color: white;
}

.offering-content h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, color 0.3s ease;
}

.offering-card:hover .offering-content h3 {
    color: var(--accent-color);
    transform: translateY(-5px);
}

.offering-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-link {
    color: white;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    align-self: flex-start;
    transition: color 0.3s ease;
}

.btn-link:hover {
    color: var(--accent-hover);
}

.btn-link i {
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), background 0.3s ease;
    background: var(--accent-color);
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    box-shadow: 0 4px 15px rgba(211, 84, 0, 0.4);
}

.offering-card:hover .btn-link i {
    transform: translateX(10px);
    background: white;
    color: var(--accent-color);
}

/* ====== Getaway Section ====== */
.getaway-section {
    background-image: url('../assets/folk_dance_bonfire_1778739230115.png');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
    padding: 120px 0;
    z-index: 1;
}

.getaway-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 51, 32, 0.85), rgba(44, 30, 19, 0.95));
    z-index: -1;
}

.getaway-content {
    max-width: 850px;
    margin: 0 auto;
    padding: 60px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    transform: translateY(0);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.getaway-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.4);
}

.getaway-content .section-title {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.getaway-content .lead-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    line-height: 1.8;
}

.getaway-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 40px 0;
}

.getaway-features span {
    font-weight: 500;
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 25px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.getaway-features span:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.getaway-features span i {
    background: white;
    color: var(--accent-color);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.8rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.getaway-content .btn-primary {
    padding: 15px 40px;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ====== Trust Section ====== */
.trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.platform-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.logo-box {
    background: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    height: 109px;
}

.logo-box:hover {
    transform: translateY(-5px);
    color: var(--accent-color);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.platform-logo {
    max-height: 60px;
    max-width: 100px;
    object-fit: contain;
}

.recent-bookings {
    padding: 40px 30px;
}

.pulse-icon {
    width: 60px;
    height: 60px;
    background: rgba(211, 84, 0, 0.1);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
    animation: pulse 2s infinite;
}

.booking-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--accent-color);
    margin: 15px 0;
}

.trust-badge {
    font-size: 0.9rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

/* ====== Story Section ====== */
.story-section {
    background-image: url('https://images.unsplash.com/photo-1543410537-88981b2ce2da?q=80&w=1920&auto=format&fit=crop');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
    z-index: 1;
    padding: 100px 0;
}

.story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(44, 30, 19, 0.85));
    z-index: -1;
}

.story-section .story-content .lead-text,
.story-section .story-content p {
    color: rgba(255, 255, 255, 0.9);
}

/* ====== Why Us Section ====== */
.why-us-section {
    padding: 100px 0;
}

.why-us-section .why-us-content {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-main);
}

.why-us-section .why-us-content .subsection-title {
    color: var(--accent-color) !important;
}

@media (max-width: 992px) {
    .order-mobile-last {
        order: 2;
    }
}

/* ====== FAQ Accordion ====== */
.faq-item {
    padding: 0 !important;
    margin-bottom: 20px;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 28px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(211, 84, 0, 0.04);
}

.faq-question h4 {
    font-family: var(--font-heading);
    color: var(--accent-color);
    font-size: 1.15rem;
    margin: 0;
    line-height: 1.4;
    flex: 1;
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: rgba(211, 84, 0, 0.08);
    color: var(--accent-color);
    font-size: 0.85rem;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), background 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    background: var(--accent-color);
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.165, 0.84, 0.44, 1), padding 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 0 28px;
}

.faq-answer p {
    color: var(--text-main);
    line-height: 1.7;
    margin: 0;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
}

.faq-item.active .faq-answer {
    padding: 0 28px 24px;
}

.faq-item.active .faq-answer p {
    opacity: 1;
    transform: translateY(0);
}

/* ====== Footer ====== */
.footer {
    background-color: var(--footer-bg);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h4 {
    color: white;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-links i {
    color: var(--accent-color);
    margin-right: 10px;
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

/* ====== Mobile Reserve Button ====== */
.mobile-reserve-container {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    width: 90%;
}

.mobile-reserve {
    display: block;
    width: 100%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* ====== Animations ====== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(211, 84, 0, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(211, 84, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(211, 84, 0, 0);
    }
}

/* ====== Responsive ====== */
@media (max-width: 992px) {
    .hero {
        height: 50vh;
        min-height: 300px;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .hero-text-section {
        padding: 40px 0 35px;
    }

    .about-grid,
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .experience-card {
        position: static;
        margin-top: -30px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .logo img {
        height: 45px;
    }

    .menu-toggle {
        display: block;
    }

    .desktop-reserve {
        display: none;
    }

    .mobile-reserve-container {
        display: block;
    }

    .main-nav {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--header-bg);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        padding: 20px;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease-in-out;
    }

    .main-nav.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .main-nav .nav-links {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero {
        height: 40vh;
        min-height: 250px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-text-section {
        padding: 30px 0 25px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        border-radius: 15px;
    }

    .stat-divider {
        width: 100%;
        height: 1px;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: transparent;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        padding-left: 20px;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .getaway-section {
        padding: 80px 0;
    }

    .getaway-content {
        padding: 40px 20px;
        border-radius: 15px;
    }

    .getaway-content .section-title {
        font-size: 2.2rem;
    }

    body {
        padding-bottom: 80px;
    }

    /* Space for mobile floating button */
}

/* ====== Floating Action Buttons ====== */
.floating-buttons {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.phone-float,
.whatsapp-float {
    width: 60px;
    height: 60px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
    position: static;
}

.phone-float {
    background-color: #73563d;
    color: #FFF;
    font-size: 26px;
}

.phone-float:hover {
    background-color: #5a4330;
    color: #FFF;
    transform: scale(1.1);
}

.whatsapp-float {
    background-color: #25d366;
    color: #FFF;
    font-size: 35px;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: #FFF;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .floating-buttons {
        bottom: 90px;
        /* Above mobile reserve button */
        right: 20px;
        gap: 10px;
    }

    .phone-float,
    .whatsapp-float {
        width: 50px;
        height: 50px;
    }

    .phone-float {
        font-size: 22px;
    }

    .whatsapp-float {
        font-size: 30px;
    }
}

/* ====== Booking Notification Popup ====== */
.booking-notification {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 998;
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    padding: 14px 20px 14px 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
    min-width: 220px;
    max-width: 280px;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    animation: notifSlideIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) 2s forwards;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.booking-notification.hidden {
    opacity: 0 !important;
    transform: translateY(30px) scale(0.95) !important;
    pointer-events: none;
}

@keyframes notifSlideIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.booking-notif-close {
    position: absolute;
    top: 6px;
    right: 10px;
    font-size: 16px;
    line-height: 1;
    color: #999;
    cursor: pointer;
    transition: color 0.2s ease;
    padding: 2px 4px;
}

.booking-notif-close:hover {
    color: #333;
}

.booking-notif-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(211, 84, 0, 0.3);
}

.booking-notif-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.3;
}

.booking-notif-title {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #999;
    font-weight: 600;
}

.booking-notif-text {
    font-size: 0.88rem;
    color: var(--text-main);
    font-weight: 400;
    line-height: 1.4;
}

.booking-notif-text strong {
    color: var(--accent-color);
    font-weight: 700;
}

.booking-notif-verified {
    font-size: 0.68rem;
    color: #2ecc71;
    font-weight: 600;
    margin-top: 2px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.booking-notif-verified i {
    font-size: 0.65rem;
}

.booking-notif-pulse-dot {
    position: absolute;
    top: 12px;
    left: 14px;
    width: 8px;
    height: 8px;
    background: #2ecc71;
    border-radius: 50%;
    animation: notifPulse 2s infinite;
}

@keyframes notifPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.5);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(46, 204, 113, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
    }
}

@media (max-width: 768px) {
    .booking-notification {
        bottom: 90px;
        left: 16px;
        min-width: 190px;
        max-width: 240px;
        padding: 12px 16px 12px 14px;
        border-radius: 14px;
    }

    .booking-notif-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
        font-size: 1rem;
    }

    .booking-notif-text {
        font-size: 0.82rem;
    }
}