@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Inter:wght@300;400;500;600&display=swap');

:root {
    /* Color System */
    --primary-forest: #0B4A34;
    /* Premium rich emerald green */
    --deep-green: #062D1F;
    /* Dark luxury green */
    --mist-green: #147252;
    /* Vivid accent green */
    --warm-wood: #E8F5EE;
    /* Light mint tint instead of wood */
    --gold-accent: #2DAE7A;
    /* Bright green accent instead of gold */
    --soft-cream: #FFFFFF;
    /* Pure white */
    --white: #FFFFFF;
    --dark: #0A1410;
    /* Almost black green */

    /* Typography */
    --font-heading: 'DM Serif Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Interactions */
    --mouse-x: 50vw;
    --mouse-y: 50vh;
}

/* ==================================================
   PATTERN BACKGROUNDS
   ================================================== */
.pattern-bg-light {
    background-color: var(--white);
    background-image:
        radial-gradient(rgba(11, 74, 52, 0.05) 15%, transparent 16%),
        radial-gradient(rgba(11, 74, 52, 0.05) 15%, transparent 16%);
    background-size: 60px 60px;
    background-position: 0 0, 30px 30px;
}

.pattern-bg-dark {
    background-color: var(--deep-green) !important;
    background-image:
        linear-gradient(45deg, var(--primary-forest) 25%, transparent 25%, transparent 75%, var(--primary-forest) 75%, var(--primary-forest)),
        linear-gradient(45deg, var(--primary-forest) 25%, transparent 25%, transparent 75%, var(--primary-forest) 75%, var(--primary-forest)) !important;
    background-size: 60px 60px !important;
    background-position: 0 0, 30px 30px !important;
    color: var(--white) !important;
}

.pattern-bg-dark h1,
.pattern-bg-dark h2,
.pattern-bg-dark h3,
.pattern-bg-dark h4,
.pattern-bg-dark p,
.pattern-bg-dark .subtitle {
    color: var(--white) !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
    /* Hide default cursor for custom cursor */
}

html {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--soft-cream);
    color: var(--dark);
    overflow-x: hidden;
    max-width: 100%;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    color: var(--primary-forest);
}

a {
    text-decoration: none;
    color: inherit;
}

/* ==================================================
   1. GLOBAL VISUAL EFFECTS
   ================================================== */
.gradient-bg {
    background: linear-gradient(120deg, var(--deep-green), var(--primary-forest), var(--dark));
    background-size: 200% 200%;
    animation: gradientMist 20s ease infinite;
}

@keyframes gradientMist {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* ==================================================
   2. CURSOR REACTIVE EFFECTS
   ================================================== */
.cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
    background: radial-gradient(circle 600px at var(--mouse-x) var(--mouse-y),
            rgba(20, 114, 82, 0.08),
            transparent 80%);
    mix-blend-mode: soft-light;
    transition: opacity 0.3s;
}

.custom-cursor {
    position: fixed;
    top: var(--mouse-y);
    left: var(--mouse-x);
    width: 12px;
    height: 12px;
    background-color: var(--gold-accent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 10000;
    transition: width 0.2s, height 0.2s;
    mix-blend-mode: difference;
}

.custom-cursor.hovering {
    width: 40px;
    height: 40px;
    background-color: rgba(20, 114, 82, 0.4);
}

/* ==================================================
   3. MAGNETIC BUTTONS & COMPONENTS
   ================================================== */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid var(--gold-accent);
    background: transparent;
    color: var(--gold-accent);
    transition: background-color 0.3s, color 0.3s;
}

.btn-primary {
    background: var(--gold-accent);
    color: var(--primary-forest);
}

.btn:hover {
    background: var(--gold-accent);
    color: var(--primary-forest);
}

.btn-primary:hover {
    background: transparent;
    color: var(--gold-accent);
    border-color: var(--gold-accent);
}

.magnetic-wrap {
    display: inline-block;
}

/* ==================================================
   4. NAVBAR
   ================================================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 24px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    padding: 15px 5%;
    background: rgba(15, 61, 46, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    padding: 8px 16px;
    border-radius: 50px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.18);
    text-decoration: none;
    transition: box-shadow 0.3s ease, transform 0.25s ease;
}

.logo:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.22);
    transform: translateY(-1px);
}

.logo img {
    max-height: 42px;
    width: auto;
    display: block;
    margin: 0 auto;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links li a {
    color: var(--white);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: var(--gold-accent);
}

.hamburger {
    display: none;
    color: var(--white);
    font-size: 1.5rem;
    z-index: 1001;
}

/* ==================================================
   5. PAGE LOADER
   ================================================== */
#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-forest);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--gold-accent);
    transition: opacity 0.8s ease;
}

.loader-logo {
    width: 120px;
    max-width: 40%;
    animation: loaderPulse 2s ease-in-out infinite;
}

@keyframes loaderPulse {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }

    100% {
        transform: scale(0.95);
        opacity: 0.8;
    }
}

/* ==================================================
   6. SCROLL REVEAL ANIMATIONS
   ================================================== */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-active {
    opacity: 1;
    transform: translate(0, 0);
}

/* ==================================================
   7. HERO SECTION
   ================================================== */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    text-align: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    /* for parallax */
    background: url('https://images.unsplash.com/photo-1542224566-6e21b21235b2?auto=format&fit=crop&q=80&w=2500') center/cover no-repeat;
    z-index: -2;
}

.hero-video {
    object-fit: cover;
}

.mobile-video {
    display: none;
}

@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 100vh;
    }

    .hero-video {
        height: 100% !important;
        width: 100% !important;
        object-position: center;
    }

    .desktop-video {
        display: none;
    }

    .mobile-video {
        display: block;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 61, 46, 0.3), rgba(10, 31, 24, 0.7));
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 4.5rem;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.1;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    letter-spacing: 4px;
    margin-bottom: 40px;
    text-transform: uppercase;
    color: var(--soft-cream);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.hero-amenities {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 30px;
    flex-wrap: wrap;
}

.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: var(--white);
    text-transform: uppercase;
    animation: float 4s ease-in-out infinite;
}

.glass-card:nth-child(even) {
    animation-delay: 2s;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 20px;
}

.scroll-dot {
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollDot 2s infinite;
}

@keyframes scrollDot {
    0% {
        top: 10px;
        opacity: 1;
    }

    100% {
        top: 30px;
        opacity: 0;
    }
}

/* Canvas Background */
#particlesCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ==================================================
   8. ABOUT SECTION
   ================================================== */
.section {
    padding: 100px 5%;
    position: relative;
}

.about-resort {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-forest);
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--mist-green);
}

.about-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.img-wrapper {
    overflow: hidden;
    border-radius: 8px;
    height: 250px;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s;
}

.img-wrapper:hover img {
    transform: scale(1.05);
}

/* ==================================================
   9. VILLAS PREVIEW
   ================================================== */
.villas-section {
    background-color: var(--white);
}

.text-center {
    text-align: center;
}

.villas-grid {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    margin-top: 50px;
    padding-bottom: 20px;
    /* Carousel styles */
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    /* Hide scrollbar IE/Edge */
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
}

/* Hide scrollbar Webkit */
.villas-grid::-webkit-scrollbar {
    display: none;
}

/* Prevent cards from shrinking or stretching unexpectedly */
.villa-card {
    scroll-snap-align: center;
    flex: 0 0 auto;
}

.flow-arrow {
    font-size: 2rem;
    color: var(--primary-forest);
    opacity: 0.6;
    flex-shrink: 0;
    pointer-events: none;
    user-select: none;
    display: block;
}

/* Horizontal Responsive Step Card */
.villa-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 24px;
    width: 280px;
    height: 180px;
    gap: 12px;
    align-items: flex-start;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    scroll-snap-align: center;
    flex: 0 0 auto;
}

.villa-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.villa-card-img {
    display: none;
    /* Flow/Step cards usually don't use large thumbnails, hidden unless needed */
}

.villa-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.villa-card:hover .villa-card-img img {
    transform: scale(1.05);
}

.villa-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    flex-grow: 1;
}

.villa-info h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-forest);
}

.villa-info p {
    color: var(--mist-green);
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 500px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.villa-info .btn {
    align-self: flex-start;
    border-radius: 10px;
    padding: 12px 24px;
}

/* ==================================================
   9b. MODERN VILLAS SLIDER
   ================================================== */
.modern-villas-section {
    background-color: var(--soft-cream);
    padding: 100px 5%;
    overflow: hidden;
}

.villas-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.header-text {
    max-width: 600px;
}

.villas-header h2 {
    margin-bottom: 15px;
}

.slider-controls {
    display: flex;
    gap: 15px;
}

.btn-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--primary-forest);
    background: transparent;
    color: var(--primary-forest);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-icon:hover {
    background: var(--primary-forest);
    color: var(--white);
    transform: scale(1.1);
}

.modern-slider-container {
    width: 100%;
}

.modern-slider-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
    padding-bottom: 30px;
    /* Space for box-shadow */
    padding-top: 10px;
}

.modern-slider-track::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.modern-villa-card {
    flex: 0 0 380px;
    scroll-snap-align: start;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}

.modern-villa-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.modern-card-img {
    height: 250px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.modern-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.modern-villa-card:hover .modern-card-img img {
    transform: scale(1.08);
    /* slight zoom on hover */
}

.modern-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--primary-forest);
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.modern-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.modern-card-content h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: var(--primary-forest);
}

.villa-perks {
    font-size: 0.95rem;
    color: var(--primary-forest);
    margin-bottom: 25px;
    line-height: 1.5;
}

.modern-card-content .card-footer {
    margin-top: auto;
    display: flex;
    justify-content: flex-start;
}

@media (max-width: 768px) {
    .modern-villa-card {
        flex: 0 0 85vw;
        /* Adjust for mobile width */
    }

    .villas-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .slider-controls {
        margin-top: 10px;
    }
}

/* ==================================================
   10. AMENITIES
   ================================================== */
.amenities-section {
    position: relative;
}

.leaf-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCI+PHBhdGggZD0iTTIwIDE1QzE1IDE1IDE1IDI1IDIwIDI1QzI1IDI1IDI1IDE1IDIwIDE1WiIgZmlsbD0iIzBmM2QyZSIgZmlsbC1vcGFjaXR5PSIwLjA1Ii8+PC9zdmc+');
    pointer-events: none;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.amenity-item {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s, box-shadow 0.3s;
}

.amenity-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.amenity-icon {
    font-size: 2.5rem;
    color: var(--gold-accent);
    margin-bottom: 15px;
}

/* ==================================================
   11. EXPERIENCE PARALLAX
   ================================================== */
.experience-parallax {
    height: 80vh;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.exp-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 130%;
    z-index: -2;
}

.exp-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 31, 24, 0.6);
    z-index: -1;
}

.experience-parallax h2 {
    font-size: 3.5rem;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto 30px;
}

/* ==================================================
   12. SVG WAVE DIVIDER
   ================================================== */
.wave-divider {
    width: 100%;
    height: 6vw;
    line-height: 0;
    display: block;
}

.wave-divider svg {
    width: 100%;
    height: 100%;
}

.wave-path {
    fill: var(--white);
    animation: waveAnim 10s linear infinite alternate;
}

@keyframes waveAnim {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50px);
    }
}

/* ==================================================
   13. TESTIMONIALS
   ================================================== */
.testimonials-section {
    background: var(--white);
    overflow: hidden;
}

.testimonial-slider {
    display: flex;
    gap: 24px;
    margin-top: 40px;
    padding: 20px 5%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    /* Hide scrollbar IE/Edge */
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
}

/* Hide scrollbar Webkit */
.testimonial-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    background: var(--soft-cream);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    flex: 0 0 auto;
    width: 350px;
    padding: 40px;
    text-align: center;
    scroll-snap-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.stars {
    color: var(--gold-accent);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 20px;
}

/* ==================================================
   14. MODERN VILLA LISTING (villas.html)
   ================================================== */
.modern-villa-list {
    background-color: var(--white);
    padding: 100px 5%;
    position: relative;
    overflow: hidden;
}

.modern-villa-list::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCI+PHBhdGggZD0iTTIwIDE1QzE1IDE1IDE1IDI1IDIwIDI1QzI1IDI1IDI1IDE1IDIwIDE1WiIgZmlsbD0iIzFGM0QyQiIgZmlsbC1vcGFjaXR5PSIwLjAyIi8+PC9zdmc+');
    pointer-events: none;
    z-index: 0;
}

.modern-villa-list-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.modern-villa-list-header h2 {
    font-size: 3rem;
    color: var(--primary-forest);
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.modern-villa-list-header p {
    font-size: 1.1rem;
    color: var(--primary-forest);
    font-style: italic;
}

.modern-villa-layout {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Left Content */
.modern-villa-content {
    flex: 0 0 70%;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
}

.modern-villa-content.fade-out {
    opacity: 0;
    transform: translateY(10px);
}

.mvl-image-wrapper {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}

.mvl-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.mvl-image-wrapper:hover img {
    transform: scale(1.05);
}

.mvl-details {
    padding: 40px;
}

.mvl-details h3 {
    font-size: 2.5rem;
    color: var(--primary-forest);
    margin-bottom: 20px;
}

.mvl-desc {
    color: #444;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 30px;
    font-family: var(--font-body);
}

.mvl-desc p {
    margin-bottom: 15px;
}

.mvl-amenities-wrap h4 {
    font-size: 1.2rem;
    color: var(--primary-forest);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mvl-amenities {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 40px;
}

.mvl-amenities li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--primary-forest);
}

.mvl-amenities li::before {
    content: '✦';
    color: var(--gold-accent);
}

.mvl-cta {
    display: flex;
}

.mvl-btn {
    background-color: var(--gold-accent);
    color: var(--white) !important;
    border: none;
    border-radius: 50px;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(45, 174, 122, 0.4);
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
}

.mvl-btn:hover {
    background-color: var(--primary-forest);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(31, 61, 43, 0.3);
}

/* Right Nav */
.modern-villa-nav {
    flex: 0 0 30%;
    display: flex;
    flex-direction: column;
}

.mvl-tab {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(31, 61, 43, 0.1);
    padding: 30px 20px;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--primary-forest);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 12px;
}

.mvl-tab:last-child {
    border-bottom: none;
}

.mvl-tab:hover {
    background-color: rgba(45, 174, 122, 0.1);
    color: var(--gold-accent);
}

.mvl-tab.active {
    background-color: var(--primary-forest);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(31, 61, 43, 0.2);
    border-color: transparent;
}

/* Mobile Layout */
@media (max-width: 1024px) {
    .modern-villa-layout {
        flex-direction: column;
    }

    .modern-villa-nav {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 15px;
        order: -1;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .modern-villa-nav::-webkit-scrollbar {
        display: none;
    }

    .mvl-tab {
        flex: 0 0 auto;
        border-bottom: none;
        padding: 15px 25px;
        scroll-snap-align: start;
        border-radius: 50px;
        margin-right: 10px;
        border: 1px solid rgba(31, 61, 43, 0.1);
        font-size: 1.2rem;
    }

    .mvl-tab.active {
        border-color: var(--primary-forest);
    }

    .modern-villa-content {
        flex: 1;
    }

    .mvl-image-wrapper {
        height: 300px;
    }

    .mvl-amenities {
        grid-template-columns: 1fr;
    }

    .mvl-details h3 {
        font-size: 2rem;
    }

    .mvl-details {
        padding: 25px;
    }
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-forest);
}

/* ==================================================
   13b. HOME LUXURY VILLA PREVIEW SECTION
   ================================================== */
.modern-villas-preview {
    background-color: var(--white);
    padding: 100px 5%;
    overflow: hidden;
}

.villas-preview-header {
    text-align: center;
    margin-bottom: 50px;
}

.villas-preview-header h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--primary-forest);
    margin-bottom: 10px;
}

.villas-preview-header p.subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--mist-green);
}

.preview-layout-container {
    display: grid;
    grid-template-columns: 7fr 3fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Left Panel */
.preview-left-panel {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: relative;
    transform: translateZ(0);
    /* Hardware acceleration */
}

.preview-card-layer {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    background: transparent;
    z-index: 1;
    position: relative;
    height: 100%;
}

.preview-card-layer.incoming-right {
    z-index: 5;
    animation: slideInRight 0.6s cubic-bezier(0.8, 0, 0.2, 1) forwards;
}

.preview-card-layer.incoming-left {
    z-index: 5;
    animation: slideInLeft 0.6s cubic-bezier(0.8, 0, 0.2, 1) forwards;
}

@keyframes slideInRight {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0);
    }
}

.preview-image-wrapper {
    width: 100%;
    height: 100%;
    min-height: 500px;
    /* Ensure an impressive size */
    position: relative;
    background: #e8e8e8;
    overflow: hidden;
}

.preview-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.preview-image-wrapper:hover img {
    transform: scale(1.03);
}

.preview-info-box {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(6, 45, 31, 0.9) 0%, rgba(6, 45, 31, 0.6) 50%, transparent 100%);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 60px 40px 40px;
    gap: 20px;
    box-sizing: border-box;
}

.preview-desc {
    flex: 1;
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: var(--white);
    line-height: 1.6;
    margin: 0;
    /* max 3 lines */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* More details button */
.btn-explore-villa {
    background-color: var(--gold-accent);
    color: var(--white) !important;
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-explore-villa:hover {
    background-color: var(--primary-forest);
    transform: scale(1.05);
}

/* Right Panel */
.preview-right-panel {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.selector-card {
    background: var(--white);
    border-radius: 12px;
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.selector-card h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--primary-forest);
    margin-bottom: 5px;
}

.selector-card p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--mist-green);
    margin: 0;
}

.selector-card:hover {
    border-color: rgba(45, 174, 122, 0.4);
    box-shadow: 0 4px 15px rgba(45, 174, 122, 0.1);
}

.selector-card.active {
    background-color: var(--primary-forest);
    border-color: var(--primary-forest);
    box-shadow: 0 8px 25px rgba(31, 61, 43, 0.3);
}

.selector-card.active h4,
.selector-card.active p {
    color: var(--white);
}

.view-all-wrapper {
    margin-top: 15px;
    text-align: center;
}

.view-all-btn {
    border-color: var(--primary-forest);
    color: var(--primary-forest);
    width: 100%;
    border-radius: 8px;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .preview-layout-container {
        grid-template-columns: 1fr;
    }

    .preview-right-panel {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 15px;
        order: -1;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .preview-right-panel::-webkit-scrollbar {
        display: none;
    }

    .selector-card {
        flex: 0 0 250px;
        scroll-snap-align: start;
        margin-right: 15px;
    }

    .preview-info-box {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .btn-explore-villa {
        width: 100%;
        text-align: center;
    }
}

/* ==================================================
   13c. MODERN FEATURES SECTION
   ================================================== */
.modern-features-section {
    background: var(--white);
    padding: 100px 5%;
    position: relative;
    overflow: hidden;
}

.features-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--white) 0%, var(--warm-wood) 100%);
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.features-header {
    margin-bottom: 60px;
    z-index: 1;
    position: relative;
}

.features-header .section-title {
    font-size: 3rem;
    color: var(--primary-forest);
    margin-bottom: 10px;
}

.features-header .subtitle {
    font-size: 1.1rem;
    color: var(--mist-green);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(45, 174, 122, 0.4);
    box-shadow: 0 15px 40px rgba(45, 174, 122, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(31, 61, 43, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
    color: var(--primary-forest);
}

.feature-card:hover .feature-icon {
    background: var(--primary-forest);
    color: var(--gold-accent);
}

.feature-card h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--primary-forest);
    margin-bottom: 15px;
}

.feature-card p {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--mist-green);
    line-height: 1.6;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================================================
   14. FOOTER
   ================================================== */
.footer {
    padding: 80px 5% 40px;
    color: var(--soft-cream);
    position: relative;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 10;
}

.footer-col h4 {
    color: var(--gold-accent);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--gold-accent);
}

.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-form input {
    padding: 10px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    flex-grow: 1;
    outline: none;
}

.newsletter-form button {
    padding: 10px 15px;
    border: none;
    background: var(--gold-accent);
    color: var(--dark);
    font-weight: bold;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 60px;
    padding-top: 20px;
    position: relative;
    z-index: 10;
}

/* ==================================================
   15. GALLERY PAGE
   ================================================== */
.page-hero {
    height: 60vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 60px;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.page-hero h1 {
    color: var(--white);
    font-size: 4rem;
    z-index: 1;
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-auto-rows: 250px;
    grid-auto-flow: dense;
    gap: 15px;
    padding: 0 5% 100px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item:nth-child(3n) {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item:nth-child(7n) {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 30px;
    opacity: 0;
    transition: opacity 0.4s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.view-label {
    color: var(--white);
    border: 1px solid var(--white);
    padding: 8px 16px;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 31, 24, 0.95);
    z-index: 100000;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
}

.close-lightbox {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--white);
    font-size: 40px;
}

/* ==================================================
   16. VILLAS FILTER PAGE
   ================================================== */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: none;
    font-size: 1rem;
    color: var(--mist-green);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 20px;
    transition: color 0.3s;
}

.filter-btn.active {
    color: var(--primary-forest);
    font-weight: bold;
    border-bottom: 2px solid var(--gold-accent);
}

/* ==================================================
   17. VILLA SINGLE TEMPLATE
   ================================================== */
.villa-layout {
    display: flex;
    gap: 50px;
    padding: 0 5% 100px;
}

.villa-main {
    flex: 2;
}

.villa-sidebar {
    flex: 1;
}

.villa-main h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.villa-main p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.facilities-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
    list-style: none;
}

.facilities-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.sticky-card {
    position: sticky;
    top: 120px;
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.price {
    font-size: 2rem;
    color: var(--primary-forest);
    font-family: var(--font-heading);
    margin-bottom: 10px;
}

.sticky-card p {
    color: var(--mist-green);
    margin-bottom: 30px;
}

/* ==================================================
   18. CONTACT PAGE
   ================================================== */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 50px 5% 100px;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 0.9rem;
    color: var(--mist-green);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    background: var(--white);
    outline: none;
    transition: border-color 0.3s;
    pointer-events: auto;
    font-family: var(--font-body);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold-accent);
}

.map-placeholder {
    background: #eee;
    height: 100%;
    min-height: 400px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
}

/* Contact info blocks */
.contact-info-block {
    margin-bottom: 30px;
}

.contact-info-block h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.contact-info-block p {
    color: var(--primary-forest);
}

/* ==================================================
   19. RESPONSIVE DESIGN
   ================================================== */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .about-resort {
        gap: 30px;
    }

    .villa-layout {
        flex-direction: column;
    }

    .sticky-card {
        position: relative;
        top: 0;
    }
}

/* ==================================================
   12. FACILITIES SECTION
   ================================================== */
.facilities-section {
    background-color: var(--primary-forest);
    padding: 30px 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    min-height: auto;
}

.facilities-container {
    max-width: 1200px;
    margin: 0 auto;
}

.facilities-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
    /* Space below heading */
}

.facilities-header .subtitle {
    color: var(--mist-green);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    /* Space between label and heading */
    font-weight: 500;
}

.facilities-header .section-title {
    color: var(--primary-forest);
    /* Deep royal blue / forest tone equivalent for the design */
    font-family: 'Playfair Display', serif;
    /* Or var(--font-heading) if defined */
    font-size: 46px;
    /* 40-52px range */
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 35px;
    /* 30-40px gap */
    width: 100%;
}

.facility-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    background-color: transparent;
}

.facility-card:hover {
    transform: translateY(-6px);
}

.facility-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    /* 48-56px */
    height: 52px;
    margin-bottom: 20px;
    /* 18-22px gap below icon */
}

.facility-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    /* Invert to white to stand out on green */
}

.facility-card h4 {
    color: var(--white);
    /* Changed to white */
    font-size: 14px;
    /* 14-15px */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

@media (max-width: 1024px) {
    .facilities-section {
        min-height: auto;
        padding: 40px 5%;
    }

    .facilities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}



@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--primary-forest);
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
        gap: 15px;
        display: none;
        z-index: 999;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    }

    .nav-links.active {
        display: flex;
    }

    /* Navbar needs relative positioning so dropdown works */
    .navbar {
        position: fixed;
        top: 0;
    }

    .hamburger {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .about-resort {
        grid-template-columns: 1fr;
    }

    .villa-card {
        flex-direction: column;
        padding: 20px;
        max-width: 100%;
        gap: 16px;
    }

    .villa-card-img {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .villa-info .btn {
        width: 100%;
        text-align: center;
    }

    .masonry-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        grid-auto-rows: 200px;
        padding: 0 5% 50px;
    }

    .gallery-item:nth-child(3n) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery-item:nth-child(7n) {
        grid-row: span 1;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    /* Disable hover effects on mobile */
    .custom-cursor {
        display: none;
    }

    * {
        cursor: auto !important;
    }

    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }

    .hero-amenities {
        padding: 10px;
    }

    .masonry-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }

    .testimonial-card {
        padding: 20px;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }
}

/* ── Floating Call Button ── */
.floating-call-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, #1b4332, #2d6a4f);
    box-shadow: 0 4px 20px rgba(45, 106, 79, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    outline: none;
    color: #ffffff !important;
    text-decoration: none;
}

.floating-call-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(45, 106, 79, 0.7);
    color: #ffffff !important;
}

.floating-call-btn svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    transition: transform 0.25s ease;
}

.floating-call-btn:hover svg {
    transform: rotate(15deg);
}

/* Pulsing ring for call button */
.floating-call-btn::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(82, 183, 136, 0.6);
    animation: callPulse 1.8s ease-out infinite;
}

@keyframes callPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Small label tooltip for call button */
.floating-call-btn::after {
    content: attr(data-label);
    position: absolute;
    right: 62px;
    bottom: 50%;
    transform: translateY(50%);
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    font-size: 11px;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.04em;
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}

.floating-call-btn:hover::after {
    opacity: 1;
}

/* Mobile fixes */
@media (max-width: 768px) {
    .floating-call-btn {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
    }
    .floating-call-btn::before {
        display: none; /* Disable pulsing ring on mobile */
    }
    .floating-call-btn::after {
        display: none; /* Hide tooltip on mobile */
    }
}

/* ── Footer Social Icons ── */
.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white) !important;
    transition: background 0.3s ease, color 0.3s ease, transform 0.25s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-socials a:hover {
    background: var(--gold-accent);
    color: var(--primary-forest) !important;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(45, 174, 122, 0.3);
}

.footer-socials svg {
    stroke: currentColor;
    fill: none;
    transition: transform 0.3s ease;
}