/* ==========================================================================
   BUNGAVILLA'S SAPANCA - Premium CSS
   ========================================================================== */

/* Custom Properties - Logo Colors */
:root {
    /* Primary Colors - From Logo */
    --primary-dark: #1e3a3f;
    --primary: #2a4f54;
    --primary-light: #3a6369;

    /* Accent Colors */
    --accent: #c4a35a;
    --accent-light: #d4b76a;
    --accent-glow: rgba(196, 163, 90, 0.3);

    /* Neutral Colors */
    --white: #ffffff;
    --cream: #faf8f5;
    --gray-100: #f5f3f0;
    --gray-200: #e8e5e0;
    --gray-300: #d4d0c9;
    --gray-400: #9a958c;
    --gray-500: #6b665d;
    --gray-600: #4a463f;
    --gray-700: #2d2a25;
    --black: #1a1815;

    /* Pool Blue accents */
    --pool-blue: #4fb3d9;
    --pool-glow: rgba(79, 179, 217, 0.2);

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 5rem;
    --space-3xl: 8rem;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slower: 0.8s cubic-bezier(0.4, 0, 0.2, 1);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 40px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(30, 58, 63, 0.08);
    --shadow-md: 0 8px 24px rgba(30, 58, 63, 0.12);
    --shadow-lg: 0 16px 48px rgba(30, 58, 63, 0.16);
    --shadow-xl: 0 24px 64px rgba(30, 58, 63, 0.24);
    --shadow-glow: 0 0 40px rgba(196, 163, 90, 0.3);
}

/* ==========================================================================
   Base Styles
   ========================================================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--cream);
    color: var(--gray-700);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

@media (max-width: 768px) {
    body {
        cursor: auto;
    }
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    background: none;
    border: none;
    cursor: none;
    font-family: inherit;
}

/* ==========================================================================
   Custom Cursor
   ========================================================================== */
.cursor {
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    mix-blend-mode: difference;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background 0.3s;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: all 0.15s ease-out;
    opacity: 0.6;
}

.cursor.hover {
    width: 60px;
    height: 60px;
    background: transparent;
    border: 2px solid var(--accent);
    mix-blend-mode: normal;
}

.cursor-follower.hover {
    width: 80px;
    height: 80px;
    opacity: 0.3;
}

@media (max-width: 768px) {

    .cursor,
    .cursor-follower {
        display: none;
    }
}

/* ==========================================================================
   Loading Screen
   ========================================================================== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    color: var(--cream);
}

.loading-logo {
    margin-bottom: var(--space-lg);
}

.mountain-icon {
    width: 100px;
    height: 60px;
    color: var(--cream);
    animation: mountainPulse 2s ease-in-out infinite;
}

@keyframes mountainPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.loading-text {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    margin-bottom: var(--space-xs);
    animation: fadeInUp 1s ease forwards;
}

.loading-subtext {
    font-size: 0.9rem;
    letter-spacing: 0.5em;
    color: var(--accent);
    margin-bottom: var(--space-lg);
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
}

.loading-bar {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin: 0 auto;
}

.loading-progress {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    animation: loadProgress 2s ease forwards;
}

@keyframes loadProgress {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   Container
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--space-md) 0;
    transition: all var(--transition-base);
}

.header.scrolled {
    background: rgba(30, 58, 63, 0.95);
    backdrop-filter: blur(20px);
    padding: var(--space-sm) 0;
    box-shadow: var(--shadow-lg);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.nav-logo {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.nav-logo img {
    height: 50px;
    width: auto;
    border-radius: var(--radius-sm);
    transition: transform var(--transition-base);
}

.nav-logo:hover img {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    list-style: none;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--cream);
    position: relative;
    padding: var(--space-xs) 0;
    transition: color var(--transition-base);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition-base);
}

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

.nav-cta {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--primary-dark);
    font-size: 0.9rem;
    font-weight: 600;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-glow);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(196, 163, 90, 0.4);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
    padding: 10px;
}

.nav-toggle span {
    width: 28px;
    height: 2px;
    background: var(--cream);
    transition: all var(--transition-base);
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 1024px) {

    .nav-menu,
    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        flex-direction: column;
        justify-content: center;
        gap: var(--space-xl);
        background: var(--primary-dark);
        transform: translateX(100%);
        transition: transform var(--transition-slow);
    }

    .nav-menu.active {
        display: flex;
        transform: translateX(0);
    }

    .nav-link {
        font-size: 1.5rem;
    }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease;
    transform: scale(1.1);
    animation: zoomOut 10s ease forwards;
}

.hero-slide.active {
    opacity: 1;
}

@keyframes zoomOut {
    from {
        transform: scale(1.1);
    }

    to {
        transform: scale(1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(30, 58, 63, 0.4) 0%,
            rgba(30, 58, 63, 0.6) 50%,
            rgba(30, 58, 63, 0.8) 100%);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 15s infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-100px) rotate(720deg);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 var(--space-lg);
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--cream);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInDown 1s ease 0.5s forwards;
    opacity: 0;
}

.badge-icon {
    font-size: 1.2rem;
    color: var(--accent);
    animation: sparkle 2s ease infinite;
}

@keyframes sparkle {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
    }

    50% {
        transform: scale(1.2) rotate(180deg);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 600;
    color: var(--cream);
    line-height: 1.1;
    margin-bottom: var(--space-lg);
}

.title-line {
    display: block;
    animation: slideInUp 1s ease forwards;
    opacity: 0;
}

.title-line:nth-child(1) {
    animation-delay: 0.3s;
}

.title-line:nth-child(2) {
    animation-delay: 0.5s;
}

.title-accent {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(250, 248, 245, 0.8);
    max-width: 600px;
    margin: 0 auto var(--space-xl);
    animation: fadeInUp 1s ease 0.7s forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.9s forwards;
    opacity: 0;
}

.hero-scroll {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: var(--cream);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    animation: fadeInUp 1s ease 1.1s forwards;
    opacity: 0;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid var(--cream);
    border-radius: var(--radius-full);
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-dot {
    width: 4px;
    height: 10px;
    background: var(--accent);
    border-radius: var(--radius-full);
    animation: scrollBounce 2s ease infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(10px);
        opacity: 0.3;
    }
}

.hero-slider-nav {
    position: absolute;
    bottom: var(--space-2xl);
    right: var(--space-xl);
    display: flex;
    gap: var(--space-sm);
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border: 2px solid var(--cream);
    border-radius: 50%;
    cursor: none;
    transition: all var(--transition-base);
}

.slider-dot.active {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.2);
}

.slider-dot:hover {
    transform: scale(1.3);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 1rem;
    font-weight: 600;
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--primary-dark);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(196, 163, 90, 0.4);
}

.btn-primary svg {
    transition: transform var(--transition-base);
}

.btn-primary:hover svg {
    transform: translateX(5px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--cream);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

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

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

.btn-light {
    background: var(--cream);
    color: var(--primary-dark);
    box-shadow: var(--shadow-md);
}

.btn-light:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--cream);
    box-shadow: 0 8px 30px rgba(220, 39, 67, 0.3);
}

.btn-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(220, 39, 67, 0.4);
}

/* ==========================================================================
   Section Styles
   ========================================================================== */
.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: var(--space-md);
    position: relative;
    padding-left: 40px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 30px;
    height: 2px;
    background: var(--accent);
    transform: translateY(-50%);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    color: var(--primary-dark);
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

.text-accent {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 600px;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-header .section-subtitle {
    margin: 0 auto;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about {
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about-images {
    position: relative;
    padding: var(--space-xl);
}

.about-image-main {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transform: rotate(-3deg);
    transition: transform var(--transition-slow);
}

.about-image-main:hover {
    transform: rotate(0deg) scale(1.02);
}

.about-image-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-image-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transform: rotate(3deg);
    transition: transform var(--transition-slow);
    border: 5px solid var(--cream);
}

.about-image-secondary:hover {
    transform: rotate(0deg) scale(1.02);
}

.about-image-secondary img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.image-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent);
    border-radius: var(--radius-lg);
    transform: translate(10px, 10px);
    z-index: -1;
    pointer-events: none;
}

.about-badge {
    position: absolute;
    top: 20px;
    right: 0;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow);
    animation: floatBadge 6s ease-in-out infinite;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.badge-content {
    text-align: center;
    color: var(--primary-dark);
}

.badge-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.badge-text {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.about-content {
    padding-right: var(--space-xl);
}

.about-text {
    font-size: 1.1rem;
    color: var(--gray-500);
    margin-bottom: var(--space-md);
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
    padding: var(--space-lg) 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.about-decoration {
    position: absolute;
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
    pointer-events: none;
}

.decoration-circle {
    width: 400px;
    height: 400px;
    border: 1px solid rgba(196, 163, 90, 0.2);
    border-radius: 50%;
    animation: rotateSlow 30s linear infinite;
}

@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .about-content {
        padding-right: 0;
    }

    .about-images {
        max-width: 600px;
        margin: 0 auto;
    }
}

/* ==========================================================================
   Gallery Section
   ========================================================================== */
.gallery {
    padding: var(--space-3xl) 0;
    position: relative;
    background: var(--primary-dark);
    overflow: hidden;
}

.gallery .section-title,
.gallery .section-tag::before {
    color: var(--cream);
}

.gallery .section-tag {
    color: var(--accent);
}

.gallery .section-subtitle {
    color: rgba(250, 248, 245, 0.7);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: var(--space-md);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: none;
}

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

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

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

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: var(--space-lg);
    background: linear-gradient(to top, rgba(30, 58, 63, 0.9), transparent);
    color: var(--cream);
    transform: translateY(100%);
    transition: transform var(--transition-base);
}

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

.gallery-overlay h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: var(--space-xs);
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.gallery-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    background: linear-gradient(135deg, var(--accent), transparent);
    border-radius: 50%;
    opacity: 0.1;
    animation: floatShape 20s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -150px;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    right: -100px;
    animation-delay: -7s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 60%;
    left: 30%;
    animation-delay: -14s;
}

@keyframes floatShape {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(50px, 50px) rotate(90deg);
    }

    50% {
        transform: translate(0, 100px) rotate(180deg);
    }

    75% {
        transform: translate(-50px, 50px) rotate(270deg);
    }
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .gallery-item {
        height: 250px;
    }

    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
        height: 300px;
    }

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

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

    .gallery-item.large {
        grid-column: span 1;
    }
}

/* ==========================================================================
   Features Section
   ========================================================================== */
.features {
    padding: var(--space-3xl) 0;
    position: relative;
    background: linear-gradient(180deg, var(--cream) 0%, var(--gray-100) 100%);
    overflow: hidden;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.feature-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-md);
    color: var(--primary);
    transition: all var(--transition-base);
}

.feature-card:hover .feature-icon {
    color: var(--accent);
    transform: scale(1.1);
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: var(--space-sm);
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.6;
}

.features-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    pointer-events: none;
}

.features-gradient {
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center bottom, rgba(196, 163, 90, 0.1), transparent 70%);
}

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

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

/* ==========================================================================
   Videos Section
   ========================================================================== */
.videos {
    padding: var(--space-3xl) 0;
    position: relative;
    background: var(--primary-dark);
    overflow: hidden;
}

.videos .section-title {
    color: var(--cream);
}

.videos .section-subtitle {
    color: rgba(250, 248, 245, 0.7);
}

.videos-grid {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

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

.video-wrapper {
    position: relative;
    width: 300px;
    height: 530px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.vertical-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 58, 63, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.video-wrapper:hover .video-overlay {
    opacity: 1;
}

.video-play-btn {
    width: 80px;
    height: 80px;
    color: var(--cream);
    transition: all var(--transition-base);
}

.video-play-btn:hover {
    transform: scale(1.1);
    color: var(--accent);
}

.video-glow {
    position: absolute;
    bottom: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 200%;
    height: 100%;
    background: radial-gradient(ellipse at center, var(--pool-glow), transparent 70%);
    pointer-events: none;
    opacity: 0.5;
}

.video-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--cream);
    margin-top: var(--space-md);
}

.videos-decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.decoration-ring {
    position: absolute;
    border: 1px solid rgba(196, 163, 90, 0.1);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulseRing 4s ease-in-out infinite;
}

.ring-1 {
    width: 600px;
    height: 600px;
    animation-delay: 0s;
}

.ring-2 {
    width: 800px;
    height: 800px;
    animation-delay: 2s;
}

@keyframes pulseRing {

    0%,
    100% {
        opacity: 0.1;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

@media (max-width: 768px) {
    .video-wrapper {
        width: 250px;
        height: 444px;
    }
}

/* ==========================================================================
   Video Modal
   ========================================================================== */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
}

.modal-content {
    position: relative;
    max-width: 400px;
    max-height: 90vh;
    z-index: 1;
}

.modal-content video {
    max-width: 100%;
    max-height: 80vh;
    border-radius: var(--radius-lg);
}

.modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    color: var(--cream);
    transition: all var(--transition-base);
}

.modal-close:hover {
    color: var(--accent);
    transform: rotate(90deg);
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact {
    padding: var(--space-3xl) 0;
    position: relative;
    background: var(--cream);
    overflow: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.contact-info {
    padding-right: var(--space-xl);
}

.contact-text {
    font-size: 1.1rem;
    color: var(--gray-500);
    margin-bottom: var(--space-xl);
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.contact-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-text-wrapper {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.85rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-xs);
}

.contact-value {
    font-size: 1rem;
    color: var(--primary-dark);
    font-weight: 500;
    transition: color var(--transition-base);
}

a.contact-value:hover {
    color: var(--accent);
}

.contact-map {
    position: relative;
}

.map-wrapper {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
}

.map-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent);
    border-radius: var(--radius-lg);
    transform: translate(10px, 10px);
    z-index: -1;
    pointer-events: none;
}

.map-cta {
    margin-top: var(--space-lg);
    text-align: center;
}

.contact-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.deco-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: var(--accent);
    top: -200px;
    right: -200px;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: var(--pool-blue);
    bottom: -150px;
    left: -150px;
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .contact-info {
        padding-right: 0;
    }

    .map-wrapper {
        height: 350px;
    }
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta {
    position: relative;
    padding: var(--space-3xl) 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 63, 0.95), rgba(42, 79, 84, 0.9));
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--cream);
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    margin-bottom: var(--space-md);
    background: linear-gradient(135deg, var(--cream), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-text {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: var(--space-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    position: relative;
    background: var(--primary-dark);
    padding: var(--space-2xl) 0 var(--space-lg);
    overflow: hidden;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo img {
    height: 60px;
    border-radius: var(--radius-sm);
}

.footer-links {
    display: flex;
    gap: var(--space-lg);
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--gray-300);
    font-size: 0.95rem;
    transition: color var(--transition-base);
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-social {
    display: flex;
    gap: var(--space-md);
}

.social-link {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    transition: all var(--transition-base);
}

.social-link:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-3px);
}

.social-link svg {
    width: 22px;
    height: 22px;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-lg);
    color: var(--gray-400);
    font-size: 0.9rem;
}

.footer-credit {
    margin-top: var(--space-sm);
    font-size: 0.8rem;
    opacity: 0.7;
}

.footer-credit a {
    color: var(--accent);
    text-decoration: none;
    transition: all var(--transition-base);
}

.footer-credit a:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.footer-glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse at center bottom, rgba(196, 163, 90, 0.15), transparent 70%);
    pointer-events: none;
}

@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        text-align: center;
        gap: var(--space-sm);
    }
}

/* ==========================================================================
   Magnetic Button Effect
   ========================================================================== */
.magnetic-btn {
    position: relative;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   AOS-like Animations
   ========================================================================== */
[data-aos] {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(50px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-down"] {
    transform: translateY(-50px);
}

[data-aos="fade-down"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-left"] {
    transform: translateX(50px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-right"] {
    transform: translateX(-50px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

/* ==========================================================================
   Scrollbar
   ========================================================================== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--primary-dark);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--accent), var(--accent-light));
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-light);
}

/* ==========================================================================
   Selection
   ========================================================================== */
::selection {
    background: var(--accent);
    color: var(--primary-dark);
}

/* ==========================================================================
   Responsive Adjustments
   ========================================================================== */
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .hero-content {
        padding: 0 var(--space-sm);
    }

    .hero-slider-nav {
        right: var(--space-md);
        bottom: var(--space-xl);
    }
}

/* ==========================================================================
   Availability Calendar Section
   ========================================================================== */
.availability {
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--cream) 0%, var(--gray-100) 100%);
}

.availability-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.availability-decoration .decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-glow), transparent);
    filter: blur(80px);
}

.availability-decoration .circle-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation: floatSlow 15s ease-in-out infinite;
}

.availability-decoration .circle-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
    background: linear-gradient(135deg, var(--pool-glow), transparent);
    animation: floatSlow 20s ease-in-out infinite reverse;
}

@keyframes floatSlow {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

.calendar-container {
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
}

/* Bungalov Selector */
.bungalow-selector {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    background: var(--gray-100);
    padding: var(--space-xs);
    border-radius: var(--radius-md);
}

.bungalow-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    color: var(--gray-500);
    transition: all var(--transition-base);
    cursor: pointer;
}

.bungalow-tab:hover {
    color: var(--primary);
    background: rgba(255, 255, 255, 0.5);
}

.bungalow-tab.active {
    background: var(--white);
    color: var(--primary-dark);
    box-shadow: var(--shadow-sm);
}

.tab-icon {
    font-size: 1.3rem;
}

/* Calendar Navigation */
.calendar-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-lg);
}

.calendar-nav-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background: var(--gray-100);
    color: var(--gray-600);
    cursor: pointer;
    transition: all var(--transition-base);
}

.calendar-nav-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.05);
}

.calendar-month {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-dark);
}

/* Calendar Grid */
.calendar-grid {
    margin-bottom: var(--space-lg);
}

.calendar-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: var(--space-sm);
}

.calendar-header span {
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-500);
    padding: var(--space-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    background: var(--white);
    border: 2px solid transparent;
}

.calendar-day:hover:not(.empty):not(.past) {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
    z-index: 5;
}

.calendar-day.empty {
    background: transparent;
    cursor: default;
}

.calendar-day.past {
    background: var(--gray-100);
    color: var(--gray-400);
    cursor: not-allowed;
}

.calendar-day.available {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(34, 197, 94, 0.05));
    border-color: rgba(34, 197, 94, 0.3);
}

.calendar-day.available:hover {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(34, 197, 94, 0.1));
    border-color: rgba(34, 197, 94, 0.5);
}

.calendar-day.booked {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(239, 68, 68, 0.05));
    border-color: rgba(239, 68, 68, 0.3);
}

.calendar-day.booked:hover {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(239, 68, 68, 0.1));
    border-color: rgba(239, 68, 68, 0.5);
}

.calendar-day.selected {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.calendar-day.today {
    position: relative;
}

.calendar-day.today::before {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

.day-number {
    font-size: 1rem;
    color: var(--gray-700);
}

.day-price {
    font-size: 0.65rem;
    color: var(--gray-500);
    font-weight: 600;
}

.calendar-day.past .day-number,
.calendar-day.past .day-price {
    color: var(--gray-400);
}

.calendar-day.available .day-number {
    color: #16a34a;
}

.calendar-day.booked .day-number {
    color: #dc2626;
}

/* Loading State */
.calendar-loading {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    padding: var(--space-2xl);
    color: var(--gray-500);
}

.calendar-loading.active {
    display: flex;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--gray-200);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Legend */
.calendar-legend {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    margin-bottom: var(--space-lg);
    padding-top: var(--space-md);
    border-top: 1px solid var(--gray-200);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.9rem;
    color: var(--gray-600);
}

.legend-dot {
    width: 16px;
    height: 16px;
    border-radius: var(--radius-sm);
}

.legend-dot.available {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.3), rgba(34, 197, 94, 0.1));
    border: 2px solid rgba(34, 197, 94, 0.5);
}

.legend-dot.booked {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.3), rgba(239, 68, 68, 0.1));
    border: 2px solid rgba(239, 68, 68, 0.5);
}

.legend-dot.past {
    background: var(--gray-200);
    border: 2px solid var(--gray-300);
}

/* Selected Date Info */
.selected-date-info {
    display: none;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    color: var(--cream);
    animation: slideUp 0.3s ease;
}

.selected-date-info.active {
    display: block;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.date-info-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.date-info-date,
.date-info-status,
.date-info-price {
    text-align: center;
}

.info-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(250, 248, 245, 0.7);
    margin-bottom: var(--space-xs);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
}

.selected-date-info .btn {
    width: 100%;
    justify-content: center;
}

/* Responsive */
@media (max-width: 768px) {
    .calendar-container {
        padding: var(--space-md);
        margin: 0 var(--space-sm);
    }

    .bungalow-selector {
        flex-direction: column;
    }

    .bungalow-tab {
        padding: var(--space-sm);
    }

    .calendar-month {
        font-size: 1.2rem;
    }

    .calendar-header span {
        font-size: 0.75rem;
        padding: var(--space-xs);
    }

    .calendar-day {
        padding: var(--space-xs);
    }

    .day-number {
        font-size: 0.85rem;
    }

    .day-price {
        display: none;
    }

    .calendar-legend {
        gap: var(--space-md);
        flex-wrap: wrap;
    }

    .date-info-content {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }

    .date-info-date,
    .date-info-status,
    .date-info-price {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: left;
        padding: var(--space-xs) 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .info-label {
        margin-bottom: 0;
    }
}

/* ==========================================================================
   WhatsApp Floating Button
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all var(--transition-base);
    cursor: pointer;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 36px;
    height: 36px;
}

.whatsapp-float .whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--primary-dark);
    color: var(--cream);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    pointer-events: none;
}

.whatsapp-float .whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 6px solid var(--primary-dark);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

@keyframes whatsappPulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }

    .whatsapp-float svg {
        width: 32px;
        height: 32px;
    }

    .whatsapp-float .whatsapp-tooltip {
        display: none;
    }
}