/* ===================================
   AZURE VILLA - LUXURY RESORT DESIGN
   Travel & Resort Booking Website
   =================================== */

:root {
    /* Luxury Color Palette */
    --primary-gold: #d4af37;
    --gold: #d4af37;
    --primary-dark: #1a1a2e;
    --primary-navy: #16213e;
    --accent-teal: #0f4c75;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #6c757d;
    --dark-gray: #212529;
    
    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--dark-gray);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   NAVIGATION
   =================================== */
.luxury-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /*background: rgba(26, 26, 46, 0.95);*/
    background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.15) 0%, rgba(0, 0, 0, 0.2) 50%), radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.25) 0%, rgba(0, 0, 0, 0.48) 50%), radial-gradient(circle at 40% 20%, rgba(212, 175, 55, 0.3) 0%, rgba(0, 0, 0, 0.54) 50%);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary-gold);
    font-size: 24px;
    cursor: pointer;
}

.nav-logo .logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.nav-logo:hover .logo-image {
    transform: scale(1.05);
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 26px;
    letter-spacing: 2px;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-gold);
}

.btn-nav-book {
    background: linear-gradient(135deg, var(--primary-gold), #f0c75e);
    color: var(--primary-dark);
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-nav-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
}

/* ===================================
   HERO SECTION
   =================================== */
.luxury-hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    overflow: hidden;
}

.hero-background img {
    animation: kenburns 20s infinite alternate;
}

@keyframes kenburns {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--primary-gold);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 72px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    letter-spacing: -1px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s 0.3s both;
}

.hero-subtitle {
    font-size: 20px;
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0.95;
    line-height: 1.6;
    animation: fadeInUp 1s 0.5s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    animation: fadeInUp 1s 0.7s both;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-gold);
    color: var(--primary-dark);
    padding: 18px 40px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.6);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 18px 40px;
    border-radius: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--primary-gold);
}

.hero-stats {
    display: flex;
    gap: 50px;
    justify-content: center;
    padding: 30px 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 1s 0.9s both;
    max-width: 600px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 13px;
    opacity: 0.9;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 13px;
    letter-spacing: 1px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translate(-50%, 0);
    }
    50% {
        transform: translate(-50%, 10px);
    }
}

/* ===================================
   SECTION STYLING
   =================================== */
.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-badge {
    display: inline-block;
    color: var(--primary-gold);
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-badge.light {
    color: var(--white);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-title.light {
    color: var(--white);
}

.section-subtitle {
    font-size: 18px;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
}

.section-subtitle.light {
    color: rgba(255, 255, 255, 0.9);
}

/* ===================================
   VILLA SHOWCASE
   =================================== */
.villa-showcase {
    padding: var(--section-padding);
    background: var(--white);
}

.villa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.villa-feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.villa-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), #f0c75e);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.villa-feature-card:hover::before {
    transform: scaleX(1);
}

.villa-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-gold), #f0c75e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: var(--white);
    transition: all 0.4s ease;
}

.villa-feature-card:hover .feature-icon {
    transform: rotate(360deg) scale(1.1);
}

.villa-feature-card h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.villa-feature-card p {
    color: var(--medium-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.feature-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-gold);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ===================================
   AMENITIES SECTION
   =================================== */
.amenities-section {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.amenities-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.amenities-description {
    font-size: 18px;
    color: var(--medium-gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

.amenities-list {
    display: grid;
    gap: 20px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    color: var(--dark-gray);
}

.amenity-item i {
    font-size: 24px;
    color: var(--primary-gold);
}

.amenities-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.amenities-image img {
    width: 100%;
    display: block;
    transition: transform 0.6s ease;
}

.amenities-image:hover img {
    transform: scale(1.05);
}

.image-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(10px);
    padding: 20px 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--white);
}

.image-badge i {
    font-size: 32px;
    color: var(--primary-gold);
}

.badge-title {
    font-weight: 600;
    font-size: 16px;
}

.badge-subtitle {
    font-size: 13px;
    opacity: 0.8;
}

/* ===================================
   BOOKING SECTION
   =================================== */
.booking-section {
    position: relative;
    padding: 120px 0;
    background-image: url('https://img2.pic.in.th/pic/a6cfb9_445eafc712c049498758a35255727744_mv2.png?w=1920');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.booking-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(15, 76, 117, 0.85));
}

.booking-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.booking-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 25px;
    max-width: 900px;
    margin: 50px auto 0;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.booking-quick-info {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 2px solid #e9ecef;
}

.quick-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.quick-info-item i {
    font-size: 32px;
    color: var(--primary-gold);
}

.info-label {
    font-size: 13px;
    color: var(--medium-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-value {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-dark);
}

.info-value span {
    font-size: 16px;
    color: var(--medium-gray);
}

.quick-info-divider {
    width: 1px;
    height: 50px;
    background: #e9ecef;
}

.btn-booking-primary {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, var(--primary-gold), #f0c75e);
    color: var(--primary-dark);
    padding: 20px 50px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-booking-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
}

.btn-booking-primary i {
    font-size: 24px;
}

/* ===================================
   GALLERY - Auto Scrolling Marquee
   =================================== */
.gallery-preview {
    padding: 80px 0 60px;
    background: var(--white);
    overflow: hidden;
}

.gallery-marquee-wrapper {
    overflow: hidden;
    width: 100%;
    max-width: 1900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.gallery-marquee-wrapper::before,
.gallery-marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.gallery-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--white), transparent);
}

.gallery-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--white), transparent);
}

.gallery-marquee-track {
    display: flex;
    gap: 15px;
    animation: marqueeScroll 40s linear infinite;
    width: max-content;
    will-change: transform;
}

.gallery-marquee-track.reverse {
    animation: marqueeScrollReverse 45s linear infinite;
}

.gallery-marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes marqueeScrollReverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.gallery-marquee-item {
    flex-shrink: 0;
    width: 320px;
    height: 240px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.4s ease;
}

.gallery-marquee-item:hover {
    transform: scale(1.03);
}

.gallery-marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-marquee-item:hover img {
    transform: scale(1.1);
}

.gallery-marquee-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 46, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-marquee-overlay i {
    font-size: 36px;
    color: #fff;
    transform: scale(0);
    transition: transform 0.3s 0.1s ease;
}

.gallery-marquee-item:hover .gallery-marquee-overlay {
    opacity: 1;
}

.gallery-marquee-item:hover .gallery-marquee-overlay i {
    transform: scale(1);
}

/* Gallery Empty State */
.gallery-empty-state {
    text-align: center;
    padding: 80px 20px;
    color: #aaa;
}

.gallery-empty-state i {
    font-size: 64px;
    color: #ddd;
    display: block;
    margin-bottom: 20px;
}

.gallery-empty-state p {
    font-size: 20px;
    font-weight: 600;
    color: #999;
    margin-bottom: 8px;
}

.gallery-empty-state span {
    font-size: 14px;
    color: #bbb;
}

/* ===================================
   GALLERY LIGHTBOX
   =================================== */
.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(10px);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border: none;
    background: rgba(212, 175, 55, 0.2);
    color: #d4af37;
    font-size: 24px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.lightbox-close:hover {
    background: rgba(220, 53, 69, 0.8);
    border-color: #fff;
    color: #fff;
    transform: rotate(90deg) scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.lightbox-nav:hover {
    background: rgba(212, 175, 55, 0.3);
    border-color: var(--gold);
    color: var(--gold);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-content {
    position: relative;
    z-index: 5;
    max-width: 85vw;
    max-height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgb(213 156 52 / 50%);
    transition: opacity 0.3s ease;
    object-fit: contain;
}

.lightbox-caption {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    margin-top: 15px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.lightbox-counter {
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    z-index: 10;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 2px;
}

.lightbox-thumbnails {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 8px;
    max-width: 700px;
    overflow-x: auto;
    padding: 10px 5px;
    scrollbar-width: none;
    background: rgba(0,0,0,0.4);
    border-radius: 12px;
}

.thumb-nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1) !important;
    border: 2px solid rgba(255,255,255,0.3) !important;
    opacity: 0.8 !important;
}

.thumb-nav-btn:hover {
    background: rgba(212,175,55,0.3) !important;
    border-color: var(--gold) !important;
    opacity: 1 !important;
}

.lightbox-thumbnails::-webkit-scrollbar {
    display: none;
}

.lightbox-thumb {
    flex-shrink: 0;
    width: 60px;
    height: 45px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.lightbox-thumb.active {
    border-color: var(--gold);
    opacity: 1;
    transform: scale(1.1);
}

.lightbox-thumb:hover {
    opacity: 0.8;
}

.lightbox-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===================================
   TESTIMONIALS
   =================================== */
.testimonials-section {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: var(--primary-gold);
    font-size: 18px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-gold), #f0c75e);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
}

.author-name {
    font-weight: 600;
    color: var(--primary-dark);
}

.author-location {
    font-size: 13px;
    color: var(--medium-gray);
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact-section {
    padding: var(--section-padding);
    background: var(--white);
}

.contact-luxury {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-description {
    font-size: 17px;
    color: var(--medium-gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-methods {
    display: grid;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
}

.method-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-gold), #f0c75e);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
}

.method-label {
    font-size: 13px;
    color: var(--medium-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.method-value {
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 16px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary-gold);
    color: var(--white);
    transform: translateY(-3px);
}

.contact-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.contact-map img {
    width: 100%;
    display: block;
}

/* ===================================
   FOOTER
   =================================== */
.luxury-footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 60px;
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.footer-logo i {
    color: var(--primary-gold);
    font-size: 28px;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--primary-gold);
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.footer-column a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-badges {
    display: flex;
    gap: 20px;
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 13px;
}

.footer-badge i {
    color: var(--primary-gold);
}

/* ===================================
   FLOATING ACTION BUTTONS (Mobile)
   =================================== */
.fab-container {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    gap: 20px;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 30px;
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.3);
    width: 90%;
    max-width: 400px;
    justify-content: space-between;
}

.fab-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 6px 10px;
    background: transparent;
    color: var(--white);
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    flex: 1;
}

.fab-button i {
    font-size: 18px;
    transition: all 0.3s ease;
}

.fab-label {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.fab-button:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.fab-button.fab-primary {
    background: linear-gradient(135deg, var(--primary-gold), #f0c75e);
    color: var(--dark-navy);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    flex: 1;
    padding: 3px 10px;
}

.fab-button.fab-primary:hover {
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
    transform: translateY(-3px);
}

.fab-button.fab-primary i {
    font-size: 24px;
}

.fab-button.fab-primary .fab-label {
    font-size: 11px;
    font-weight: 600;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 768px) {
    .fab-container {
        display: flex;
    }
    
    /* Hero Mobile Fix */
    .luxury-hero {
        min-height: 100vh;
        height: auto;
    }
    
    .hero-background {
        min-height: 100vh !important;
    }
    
    .hero-background img {
        animation: none !important;
        transform: none !important;
        object-fit: cover !important;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(26, 26, 46, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        z-index: 999;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-link {
        display: block;
        padding: 15px 20px;
        width: 100%;
    }
    
    .btn-nav-book {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 15px;
        padding: 20px 15px;
        max-width: 90%;
    }
    
    .stat-item {
        flex: 1;
    }
    
    .stat-number {
        font-size: 20px;
    }
    
    .stat-label {
        font-size: 11px;
    }
    
    .stat-divider {
        display: block;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .villa-grid {
        grid-template-columns: 1fr;
    }
    
    .amenities-content,
    .contact-luxury {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .booking-quick-info {
        flex-direction: column;
        gap: 25px;
    }
    
    .quick-info-divider {
        display: none;
    }
    
    .gallery-marquee-item {
        width: 250px;
        height: 180px;
    }
    
    .gallery-marquee-wrapper::before,
    .gallery-marquee-wrapper::after {
        width: 30px;
    }
    
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
    
    .lightbox-content {
        max-width: 92vw;
    }
    
    .lightbox-thumbnails {
        max-width: 90vw;
    }
    
    .lightbox-thumb {
        width: 45px;
        height: 34px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
    }
    
    .footer-column h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .footer-column a {
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-badges {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
}
