/* ==========================================================================
   DESIGN SYSTEM & CUSTOM STYLING: LAKSHYA SERVICE VILLA, WAYANAD
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
    /* Color Palette */
    --forest-darker: #050b07;
    --forest-dark: #09130e;
    --forest-accent: #11251b;
    --forest-card: #193225;
    --forest-light: #254736;
    --beige-light: #f5f2eb;
    --beige-dark: #ded8cb;
    --gold: #d4af37;
    --gold-hover: #f3cf59;
    --text-light: #faf8f5;
    --text-muted: #9ab0a4;
    --overlay-dark: rgba(5, 11, 7, 0.7);
    --glass-bg: rgba(9, 19, 14, 0.75);
    --glass-border: rgba(212, 175, 55, 0.15);
    
    /* Layout & Spacing */
    --container-width: 1200px;
    --header-height: 80px;
    
    /* Transitions & Shadows */
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-quick: all 0.3s ease;
    --shadow-luxury: 0 15px 35px rgba(0, 0, 0, 0.5);
    --gold-glow: 0 0 20px rgba(212, 175, 55, 0.3);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    background-color: var(--forest-darker);
    color: var(--text-light);
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--forest-darker);
}
::-webkit-scrollbar-thumb {
    background: var(--forest-accent);
    border-radius: 4px;
    border: 2px solid var(--forest-darker);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* Selection color */
::selection {
    background-color: var(--gold);
    color: var(--forest-darker);
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

h2.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

h2.section-title.left-aligned::after {
    left: 0;
    transform: none;
}

h3 {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    margin-bottom: 15px;
}

p {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--text-muted);
    letter-spacing: 0.01em;
    margin-bottom: 20px;
}

span.highlight-gold {
    color: var(--gold);
    font-family: inherit;
}

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

/* ==========================================================================
   LAYOUT UTILITIES
   ========================================================================== */
.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
}

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

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    align-items: center;
}

@media (max-width: 991px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ==========================================================================
   BUTTONS & ACTIONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-family: 'Outfit', sans-serif;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), #bd9c2c);
    color: var(--forest-darker);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-hover), var(--gold));
    box-shadow: var(--gold-glow);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 1px solid rgba(250, 248, 245, 0.3);
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.1);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 175, 55, 0.05);
    transform: translateX(-100%);
    transition: var(--transition-smooth);
    z-index: -1;
}

.btn-secondary:hover::before {
    transform: translateX(0);
}

.btn i {
    margin-left: 10px;
    font-size: 1.1rem;
    transition: var(--transition-quick);
}

.btn:hover i {
    transform: translateX(4px);
}

/* ==========================================================================
   FLOATING BOOKING BUTTON
   ========================================================================== */
.floating-booking {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gold), #b89625);
    color: var(--forest-darker);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
    text-transform: uppercase;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), var(--gold-glow);
    cursor: pointer;
    transition: var(--transition-smooth);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.floating-booking.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-booking:hover {
    transform: translateY(-3px) scale(1.03);
    background: linear-gradient(135deg, var(--gold-hover), var(--gold));
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4), 0 0 25px rgba(212, 175, 55, 0.5);
    color: var(--forest-darker);
}

.floating-booking i {
    font-size: 1.1rem;
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
header {
    width: 100%;
    height: var(--header-height);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    transition: var(--transition-quick);
}

header.sticky {
    position: fixed;
    background-color: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    height: 70px;
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
}

.nav-container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--text-light);
    line-height: 1.1;
}

.logo-sub {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    color: var(--gold);
    font-weight: 500;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 35px;
}

.nav-menu li a {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(250, 248, 245, 0.85);
    position: relative;
    padding: 8px 0;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--gold);
    transition: var(--transition-quick);
}

.nav-menu li a:hover {
    color: var(--gold);
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

.nav-menu li a.active {
    color: var(--gold);
}

.nav-cta {
    display: flex;
    align-items: center;
}

.nav-cta .btn {
    padding: 10px 20px;
    font-size: 0.8rem;
}

/* Mobile Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1000;
}

.bar {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: var(--text-light);
}

@media (max-width: 768px) {
    header.sticky {
        height: 65px;
    }
    
    .hamburger {
        display: block;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
        background-color: var(--gold);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
        background-color: var(--gold);
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        gap: 0;
        flex-direction: column;
        background-color: var(--forest-dark);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.4s ease;
        justify-content: center;
        box-shadow: 10px 0 30px rgba(0, 0, 0, 0.5);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 25px 0;
    }
    
    .nav-menu li a {
        font-size: 1.2rem;
    }
    
    .nav-cta {
        display: none; /* Hide top CTA on mobile, floating button is primary */
    }
}

/* ==========================================================================
   HERO SLIDER
   ========================================================================== */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(5, 11, 7, 0.6) 0%, 
        rgba(5, 11, 7, 0.4) 50%, 
        var(--forest-darker) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 20px;
    margin-top: 50px;
}

.hero-tagline {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.4em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 20px;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero h1 {
    margin-bottom: 25px;
    font-weight: 500;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-subtext {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: rgba(250, 248, 245, 0.9);
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.scroll-indicator .mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 20px;
    margin-bottom: 8px;
    position: relative;
}

.scroll-indicator .wheel {
    width: 4px;
    height: 8px;
    background-color: var(--gold);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollMouse 1.8s infinite;
}

@keyframes scrollMouse {
    0% { top: 8px; opacity: 1; }
    100% { top: 22px; opacity: 0; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   ABOUT / STORY SECTION
   ========================================================================== */
.about-section {
    background: radial-gradient(circle at 10% 10%, var(--forest-accent) 0%, var(--forest-darker) 70%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212,175,55,0.03) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.about-narrative {
    z-index: 2;
}

.about-tag {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
    display: inline-block;
}

.about-highlight-box {
    border-left: 2px solid var(--gold);
    padding-left: 20px;
    margin: 30px 0;
}

.about-highlight-box p {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--beige-light);
    line-height: 1.5;
}

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

.about-img-wrapper {
    position: absolute;
    width: 70%;
    height: 70%;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-luxury);
    border: 1px solid rgba(250, 248, 245, 0.1);
    transition: var(--transition-smooth);
}

.about-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.about-img-wrapper:hover img {
    transform: scale(1.08);
}

.about-img-1 {
    top: 0;
    left: 0;
    z-index: 3;
}

.about-img-2 {
    bottom: 0;
    right: 0;
    z-index: 2;
    border-color: var(--gold-hover);
}

.about-img-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid transparent;
    transition: var(--transition-quick);
}

.about-img-wrapper:hover {
    transform: translateY(-8px);
    z-index: 4;
}

.about-experience-counter {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.counter-item {
    display: flex;
    flex-direction: column;
}

.counter-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 5px;
}

.counter-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .about-imagery {
        height: 350px;
        margin-top: 20px;
    }
}

/* ==========================================================================
   ACCOMMODATIONS / ROOMS
   ========================================================================== */
.rooms-section {
    background-color: var(--forest-dark);
}

.rooms-intro {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 991px) {
    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .rooms-grid {
        grid-template-columns: 1fr;
    }
}

.room-card {
    background-color: var(--forest-accent);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-luxury);
    border: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.room-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), var(--gold-glow);
}

.room-img-container {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.room-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.room-card:hover .room-img-container img {
    transform: scale(1.08);
}

.room-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--forest-darker);
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 6px 12px;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 2px;
}

.room-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.room-content h3 {
    margin-bottom: 10px;
    transition: var(--transition-quick);
}

.room-card:hover .room-content h3 {
    color: var(--gold);
}

.room-details {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 0.8rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.room-details span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.room-content p {
    font-size: 0.95rem;
    margin-bottom: 25px;
    flex-grow: 1;
}

.room-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    padding-top: 20px;
    margin-top: auto;
}

.room-price {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.price-amount {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-top: 2px;
}

.room-link {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 6px;
}

.room-link i {
    font-size: 0.9rem;
    transition: var(--transition-quick);
}

.room-card:hover .room-link {
    color: var(--gold);
}

.room-card:hover .room-link i {
    transform: translateX(4px);
}

/* ==========================================================================
   AMENITIES / HIGHLIGHTS SECTION
   ========================================================================== */
.amenities-section {
    background: radial-gradient(circle at 90% 90%, var(--forest-accent) 0%, var(--forest-darker) 70%);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 60px;
}

@media (max-width: 991px) {
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .amenities-grid {
        grid-template-columns: 1fr;
    }
}

.amenity-card {
    background-color: rgba(25, 50, 37, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.08);
    padding: 40px 30px;
    text-align: center;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.amenity-card:hover {
    transform: translateY(-8px);
    background-color: var(--forest-accent);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-luxury);
}

.amenity-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    margin: 0 auto 25px;
    color: var(--gold);
    font-size: 1.8rem;
    transition: var(--transition-smooth);
}

.amenity-card:hover .amenity-icon {
    background-color: var(--gold);
    color: var(--forest-darker);
    transform: rotateY(180deg);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.amenity-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-light);
}

.amenity-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ==========================================================================
   IMAGE GALLERY SECTION
   ========================================================================== */
.gallery-section {
    background-color: var(--forest-darker);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(250, 248, 245, 0.15);
    color: var(--text-muted);
    padding: 8px 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    border-radius: 30px;
    transition: var(--transition-quick);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--gold);
    color: var(--forest-darker);
    border-color: var(--gold);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 15px;
}

.gallery-item {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-luxury);
    border: 1px solid rgba(250, 248, 245, 0.05);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.gallery-item.hidden {
    display: none;
}

/* Grid configurations for luxury asymmetry */
.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item.tall {
    grid-row: span 2;
}

@media (max-width: 991px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-item.wide,
    .gallery-item.tall {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 240px;
    }
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-item:hover img {
    transform: scale(1.08) rotate(1deg);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(5, 11, 7, 0.9) 0%, rgba(5, 11, 7, 0.2) 70%, transparent 100%);
    opacity: 0;
    transition: var(--transition-quick);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    z-index: 2;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-tag {
    color: var(--gold);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 5px;
}

.gallery-title {
    color: var(--text-light);
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    transform: translateY(10px);
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-title {
    transform: translateY(0);
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 11, 7, 0.95);
    z-index: 1000;
    display: none;
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 85%;
    max-height: 80%;
    position: relative;
}

.lightbox-content img {
    width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 4px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-luxury);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--text-light);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition-quick);
}

.lightbox-close:hover {
    color: var(--gold);
}

.lightbox-caption {
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--beige-light);
}

/* ==========================================================================
   REVIEWS & TESTIMONIALS SECTION
   ========================================================================== */
.reviews-section {
    background-color: var(--forest-dark);
    position: relative;
}

.reviews-carousel-container {
    max-width: 800px;
    margin: 50px auto 0;
    overflow: hidden;
    position: relative;
}

.reviews-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.review-slide {
    min-width: 100%;
    padding: 0 40px;
}

.review-card-luxury {
    background-color: var(--forest-accent);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-luxury);
    position: relative;
}

.review-card-luxury::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    line-height: 1;
    color: rgba(212, 175, 55, 0.08);
}

.review-rating {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.review-card-luxury p {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 25px;
}

.reviewer-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--forest-light);
    color: var(--gold);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    border: 1px solid var(--gold);
}

.reviewer-info {
    text-align: left;
}

.reviewer-name {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-light);
}

.reviewer-source {
    font-size: 0.75rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(9, 19, 14, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--text-light);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 5;
    transition: var(--transition-quick);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-nav-btn:hover {
    background-color: var(--gold);
    color: var(--forest-darker);
    border-color: var(--gold);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.3);
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    background-color: rgba(250, 248, 245, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-quick);
}

.carousel-dot.active {
    background-color: var(--gold);
    width: 24px;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .review-slide {
        padding: 0 10px;
    }
    .review-card-luxury {
        padding: 30px 20px;
    }
    .carousel-nav-btn {
        display: none; /* Swipe gesture or dots are better on mobile */
    }
}

/* ==========================================================================
   LOCATION & MAP SECTION
   ========================================================================== */
.location-section {
    background-color: var(--forest-darker);
    position: relative;
}

.location-grid {
    display: grid;
    grid-template-columns: 4fr 5fr;
    gap: 50px;
    align-items: center;
}

@media (max-width: 991px) {
    .location-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.location-details {
    padding-right: 20px;
}

.location-item {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.location-icon {
    font-size: 1.5rem;
    color: var(--gold);
    margin-top: 4px;
}

.location-text h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.location-text p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.map-wrapper {
    background-color: var(--forest-accent);
    border: 1px solid var(--glass-border);
    padding: 10px;
    border-radius: 8px;
    box-shadow: var(--shadow-luxury);
    position: relative;
    height: 450px;
}

/* Luxury corner brackets */
.map-wrapper::before,
.map-wrapper::after,
.map-corner-bl,
.map-corner-br {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-color: var(--gold);
    border-style: solid;
    z-index: 3;
    pointer-events: none;
}

.map-wrapper::before { top: -2px; left: -2px; border-width: 2px 0 0 2px; }
.map-wrapper::after { top: -2px; right: -2px; border-width: 2px 2px 0 0; }
.map-corner-bl { bottom: -2px; left: -2px; border-width: 0 0 2px 2px; }
.map-corner-br { bottom: -2px; right: -2px; border-width: 0 2px 2px 0; }

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 4px;
    filter: invert(90%) hue-rotate(180deg) brightness(85%) contrast(90%); /* Sleek custom dark map styling */
}

@media (max-width: 768px) {
    .map-wrapper {
        height: 300px;
    }
}

/* ==========================================================================
   INTERACTIVE FOOTER
   ========================================================================== */
footer {
    background-color: var(--forest-darker);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    color: var(--text-light);
    position: relative;
}

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

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

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 0.9rem;
    margin-bottom: 25px;
    max-width: 320px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(250, 248, 245, 0.15);
    background-color: rgba(25, 50, 37, 0.2);
    border-radius: 50%;
    color: var(--text-light);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-quick);
    position: relative;
}

.social-icon:hover {
    border-color: var(--gold);
    color: var(--gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
    transform: translateY(-3px);
}

/* Instagram coming soon tooltip */
.social-icon.coming-soon::after {
    content: 'Coming Soon';
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    background-color: var(--gold);
    color: var(--forest-darker);
    font-size: 0.65rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 3px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-quick);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.social-icon.coming-soon:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.footer-links h4,
.footer-contact h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.85rem;
    color: var(--gold);
    margin-bottom: 25px;
}

.footer-links ul {
    list-style: none;
}

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

.footer-links ul li a {
    font-size: 0.9rem;
    color: var(--text-muted);
}

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

.footer-contact-list {
    list-style: none;
}

.footer-contact-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-contact-list li i {
    color: var(--gold);
    margin-top: 4px;
}

.footer-contact-list li a {
    color: var(--text-muted);
}

.footer-contact-list li a:hover {
    color: var(--gold);
}

.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid rgba(250, 248, 245, 0.05);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    margin-bottom: 0;
}

/* ==========================================================================
   EXPLORE PAGE SPECIFIC STYLES
   ========================================================================== */
.explore-hero {
    height: 60vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.explore-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(5, 11, 7, 0.75) 0%, var(--forest-darker) 100%);
    z-index: 1;
}

.explore-hero-content {
    position: relative;
    z-index: 2;
}

.explore-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    margin-bottom: 15px;
}

.explore-experience-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 80px;
}

.experience-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.experience-block.reversed {
    grid-template-columns: 1fr 1fr;
}

.experience-block.reversed .experience-content {
    order: 2;
}

.experience-block.reversed .experience-img {
    order: 1;
}

@media (max-width: 768px) {
    .experience-block,
    .experience-block.reversed {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .experience-block.reversed .experience-content {
        order: 1;
    }
    
    .experience-block.reversed .experience-img {
        order: 2;
    }
}

.experience-img {
    height: 400px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow-luxury);
    border: 1px solid rgba(250, 248, 245, 0.08);
}

.experience-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.experience-block:hover .experience-img img {
    transform: scale(1.05);
}

.experience-content h3 {
    margin-bottom: 20px;
}

.experience-meta-list {
    list-style: none;
    margin: 25px 0;
}

.experience-meta-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.experience-meta-list li i {
    color: var(--gold);
}

.sightseeing-section {
    background-color: var(--forest-dark);
}

.sightseeing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

@media (max-width: 991px) {
    .sightseeing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sightseeing-grid {
        grid-template-columns: 1fr;
    }
}

.sightseeing-card {
    background-color: var(--forest-accent);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-luxury);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.sightseeing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), var(--gold-glow);
}

.sightseeing-img {
    height: 220px;
    overflow: hidden;
}

.sightseeing-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.sightseeing-card:hover .sightseeing-img img {
    transform: scale(1.08);
}

.sightseeing-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.sightseeing-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--text-light);
    transition: var(--transition-quick);
}

.sightseeing-card:hover .sightseeing-content h4 {
    color: var(--gold);
}

.sightseeing-distance {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.sightseeing-content p {
    font-size: 0.9rem;
    margin-bottom: 0;
    flex-grow: 1;
}

/* ==========================================================================
   BOOKING PAGE SPECIFIC STYLES
   ========================================================================== */
.booking-section {
    background: radial-gradient(circle at 50% 50%, var(--forest-accent) 0%, var(--forest-darker) 90%);
}

.booking-grid {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 50px;
}

@media (max-width: 991px) {
    .booking-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.booking-card-wrapper {
    background-color: rgba(9, 19, 14, 0.85);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-luxury);
    position: relative;
    backdrop-filter: blur(10px);
}

.booking-card-wrapper h3 {
    font-size: 1.6rem;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(250, 248, 245, 0.1);
    padding-bottom: 15px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 576px) {
    .form-row-2 {
        grid-template-columns: 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
}

.form-group input,
.form-group select,
.form-group textarea {
    background-color: rgba(25, 50, 37, 0.3);
    border: 1px solid rgba(250, 248, 245, 0.15);
    border-radius: 4px;
    color: var(--text-light);
    padding: 12px 16px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition-quick);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background-color: var(--forest-accent);
    outline: none;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

.form-group select option {
    background-color: var(--forest-dark);
    color: var(--text-light);
}

/* Custom pricing visual box */
.booking-summary-box {
    background-color: rgba(212, 175, 55, 0.05);
    border: 1px dashed rgba(212, 175, 55, 0.3);
    padding: 20px;
    border-radius: 4px;
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.summary-cost h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.summary-cost .cost-val {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--gold);
    font-weight: 700;
    margin-top: 2px;
}

.booking-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-box {
    background-color: var(--forest-accent);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 6px;
    box-shadow: var(--shadow-luxury);
}

.sidebar-box h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(250, 248, 245, 0.05);
    padding-bottom: 10px;
}

.contact-quick-inquiry {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-whatsapp {
    background-color: #25d366;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
    background-color: #20ba59;
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
}

.btn-call {
    background-color: var(--gold);
    color: var(--forest-darker);
}

/* FAQ Accordion styling */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 50px;
}

.faq-item {
    background-color: var(--forest-accent);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    overflow: hidden;
}

.faq-header {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-quick);
}

.faq-header:hover {
    background-color: rgba(250, 248, 245, 0.02);
}

.faq-header h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 0;
}

.faq-header i {
    color: var(--gold);
    transition: var(--transition-quick);
}

.faq-item.active .faq-header i {
    transform: rotate(180deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background-color: var(--forest-dark);
}

.faq-content-inner {
    padding: 20px 25px;
}

.faq-content-inner p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Dynamic Notification Modal */
.notification-modal {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 1001;
    background-color: var(--forest-accent);
    border-left: 4px solid var(--gold);
    padding: 20px 25px;
    border-radius: 4px;
    box-shadow: var(--shadow-luxury);
    display: flex;
    align-items: center;
    gap: 15px;
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.notification-modal.visible {
    transform: translateX(0);
}

.notification-icon {
    font-size: 1.5rem;
    color: var(--gold);
}

.notification-text h5 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-light);
}

.notification-text p {
    font-size: 0.8rem;
    margin-bottom: 0;
    color: var(--text-muted);
}

/* ==========================================================================
   ANIMATIONS & SCROLL-TRIGGER TARGETS
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ==========================================================================
   DIRECT CONTACT BOOKING CHANNELS (BOOKING PAGE)
   ========================================================================== */
.booking-direct-channels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 45px;
    width: 100%;
}

.channel-card {
    background-color: var(--forest-accent);
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-luxury);
    position: relative;
    overflow: hidden;
}

.channel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: transparent;
    transition: var(--transition-quick);
}

.channel-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-luxury), 0 10px 20px rgba(0, 0, 0, 0.4);
}

.channel-card.wa:hover {
    border-color: rgba(37, 211, 102, 0.4);
    box-shadow: var(--shadow-luxury), 0 0 25px rgba(37, 211, 102, 0.2);
}
.channel-card.wa::before {
    background: #25d366;
}

.channel-card.call:hover {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: var(--shadow-luxury), var(--gold-glow);
}
.channel-card.call::before {
    background: var(--gold);
}

.channel-card.insta:hover {
    border-color: rgba(225, 48, 108, 0.4);
    box-shadow: var(--shadow-luxury), 0 0 25px rgba(225, 48, 108, 0.2);
}
.channel-card.insta::before {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.channel-icon {
    font-size: 2.2rem;
    margin-bottom: 15px;
    transition: var(--transition-smooth);
}

.channel-card.wa .channel-icon { color: #25d366; }
.channel-card.call .channel-icon { color: var(--gold); }
.channel-card.insta .channel-icon { color: #e1306c; }

.channel-card:hover .channel-icon {
    transform: scale(1.1);
}

.channel-card h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-light);
}

.channel-card p {
    font-size: 0.85rem;
    margin-bottom: 20px;
    color: var(--text-muted);
    line-height: 1.4;
}

.btn-channel {
    font-size: 0.75rem;
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: transparent;
    border: 1px solid rgba(250, 248, 245, 0.2);
    color: var(--text-light);
    transition: var(--transition-quick);
}

.channel-card.wa:hover .btn-channel {
    background-color: #25d366;
    border-color: #25d366;
    color: #fff;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.channel-card.call:hover .btn-channel {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--forest-darker);
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}

.channel-card.insta:hover .btn-channel {
    background-image: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 10px rgba(225, 48, 108, 0.3);
}

@media (max-width: 768px) {
    .booking-direct-channels {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}
