/* ==========================================================================
   The Bougie Backpacker - Main Stylesheet
   LUXURY ADVENTURE THEME: Bougie Pirates - Treasure Maps Meet Luxury Travel
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Variables (Bougie Pirates - Luxury Adventure Palette)
   -------------------------------------------------------------------------- */
:root {
    /* Primary Brand Colors - Deep Ocean Navy */
    --primary-blue: #1b6396;
    --primary-blue-hover: rgba(27, 99, 150, 0.9);
    --primary-blue-light: #2a8ab8;
    --primary-teal: #0e8c8c;
    --text-navy: #052033;
    --dark-navy: #101a23;
    --deep-ocean: #0a1628;

    /* Accent Colors - Treasure Gold */
    --accent-gold: #c9a227;
    --accent-gold-light: #d4af37;
    --accent-gold-dark: #a68a1f;
    --accent-gold-glow: rgba(201, 162, 39, 0.25);
    --accent-teal: #0e8c8c;

    /* Parchment Colors - Treasure Map Feel */
    --parchment: #f5f0e6;
    --parchment-light: #faf8f3;
    --parchment-dark: #ebe4d4;
    --parchment-aged: #e8dfc9;
    --burnt-edge: #8b7355;
    --sepia: #704214;

    /* Background Colors */
    --background-light: #faf8f3;
    --background-white: #ffffff;
    --background-cream: #f5f0e6;

    /* Neutral Colors */
    --white: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #eeeeee;
    --gray-300: #e0e0e0;
    --gray-400: #bdbdbd;
    --gray-500: #9e9e9e;
    --gray-600: #757575;
    --gray-700: #616161;
    --gray-800: #424242;
    --gray-900: #212121;

    /* Semantic Colors */
    --success: #4caf50;
    --warning: #ff9800;
    --error: #f44336;
    --info: #2196f3;

    /* Typography - Luxury Adventure Stack */
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-elegant: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;

    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.25rem;
    --radius-xl: 2rem;
    --radius-2xl: 2.5rem;
    --radius-full: 9999px;

    /* Shadows - Enhanced with gold undertones */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 10px rgba(14, 88, 140, 0.1);
    --shadow-lg: 0 8px 20px rgba(14, 88, 140, 0.12);
    --shadow-xl: 0 12px 30px rgba(14, 88, 140, 0.15);
    --shadow-header: 0px 0.125rem 0.75rem rgba(0, 0, 0, 0.08);
    --shadow-button: 0px 4px 10px rgba(14, 88, 140, 0.3);
    --shadow-gold: 0 4px 20px rgba(201, 162, 39, 0.2);
    --shadow-treasure: 0 8px 32px rgba(112, 66, 20, 0.15);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;

    /* Container widths */
    --container-sm: 640px;
    --container-md: 768px;
    --container-lg: 1024px;
    --container-xl: 1200px;
}

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

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

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-navy);
    background-color: var(--background-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
}

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

a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent-gold);
}

/* --------------------------------------------------------------------------
   Typography - Luxury Adventure Style
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.25;
    color: var(--text-navy);
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.01em;
}

h1 { font-size: 2.75rem; font-weight: 700; }
h2 { font-size: 2.25rem; font-weight: 600; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: var(--spacing-md);
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Gold accent text - treasure highlight */
.text-gold,
.gold {
    color: var(--accent-gold-light);
}

.text-navy {
    color: var(--text-navy);
}

/* Elegant italic style */
.text-elegant {
    font-family: var(--font-elegant);
    font-style: italic;
}

/* Section eyebrow - small uppercase label */
.section-eyebrow {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-sm);
}

/* --------------------------------------------------------------------------
   Layout & Container
   -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container-xl);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.container-sm { max-width: var(--container-sm); }
.container-md { max-width: var(--container-md); }
.container-lg { max-width: var(--container-lg); }

.section {
    padding: var(--spacing-3xl) 0;
}

/* Add top padding to main content to account for fixed header */
main {
    padding-top: 4.6875rem;
}

@media (max-width: 768px) {
    main {
        padding-top: 3.5rem;
    }
}

/* Light section background */
.section-light {
    background: var(--background-light);
}

/* White section background */
.section-white {
    background: var(--white);
}

/* --------------------------------------------------------------------------
   Grid System (Mobile-First)
   -------------------------------------------------------------------------- */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 calc(-1 * var(--spacing-md));
}

.col {
    flex: 1;
    padding: 0 var(--spacing-md);
}

/* Column sizes */
.col-12 { flex: 0 0 100%; max-width: 100%; }
.col-6 { flex: 0 0 50%; max-width: 50%; }
.col-4 { flex: 0 0 33.333%; max-width: 33.333%; }
.col-3 { flex: 0 0 25%; max-width: 25%; }

/* Responsive columns */
@media (max-width: 768px) {
    .col-md-12 { flex: 0 0 100%; max-width: 100%; }
    .col-md-6 { flex: 0 0 50%; max-width: 50%; }
}

@media (max-width: 576px) {
    .col-sm-12 { flex: 0 0 100%; max-width: 100%; }
}

/* --------------------------------------------------------------------------
   Buttons - Clean Modern Style (matches production)
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.5rem;
    height: 3.25rem;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
    border: none;
    border-radius: var(--radius-2xl);
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    gap: 0.5rem;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Primary Button - Blue (matches production) */
.btn-primary {
    background: var(--primary-blue);
    color: var(--white);
    box-shadow: var(--shadow-button);
}

.btn-primary:hover:not(:disabled) {
    background: var(--primary-blue-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(14, 88, 140, 0.35);
}

/* Secondary Button - Outlined */
.btn-secondary {
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover:not(:disabled) {
    background-color: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

/* Ghost Button - for dark backgrounds */
.btn-ghost {
    background-color: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-ghost:hover:not(:disabled) {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.8);
    color: var(--white);
}

/* White/Light Button (for dark backgrounds) */
.btn-light {
    background-color: var(--white);
    color: var(--primary-blue);
}

.btn-light:hover:not(:disabled) {
    background-color: var(--gray-100);
    color: var(--text-navy);
}

/* Button Sizes */
.btn-sm {
    padding: 0 1rem;
    height: 2.5rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 0 2rem;
    height: 3.5rem;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
}

/* --------------------------------------------------------------------------
   Cards - Clean Modern Style (matches production)
   -------------------------------------------------------------------------- */
.card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    border: 1px solid rgba(27, 99, 150, 0.1);
}

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

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: var(--spacing-lg);
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.card-text {
    color: var(--gray-600);
    margin-bottom: var(--spacing-md);
}

.card-footer {
    padding: var(--spacing-md) var(--spacing-lg);
    background-color: var(--gray-50);
    border-top: 1px solid var(--gray-200);
}

/* Property Card Variant */
.property-card .card-image {
    height: 240px;
}

.property-card .property-meta {
    display: flex;
    gap: var(--spacing-md);
    color: var(--gray-600);
    font-size: 0.875rem;
    margin-bottom: var(--spacing-sm);
}

.property-card .property-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-blue);
}

.property-card .property-price span {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--gray-600);
}

/* --------------------------------------------------------------------------
   Navigation - Luxury Adventure Header with Gold Accents
   -------------------------------------------------------------------------- */
.navbar {
    background: rgba(16, 26, 35, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-header);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1046;
    height: 4.6875rem;
    border-bottom: 1px solid rgba(201, 162, 39, 0.3);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--spacing-xl);
    max-width: var(--container-xl);
    margin: 0 auto;
    height: 100%;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    text-decoration: none;
}

.navbar-logo img {
    height: 55px;
    width: auto;
    transition: all var(--transition-base);
}

.navbar-logo:hover img {
    transform: scale(1.02);
}

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

.logo-main {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--parchment-light);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.logo-tagline {
    font-size: 0.65rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
}

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

.navbar-nav a {
    color: var(--parchment-light);
    font-weight: 500;
    padding: var(--spacing-sm) var(--spacing-md);
    position: relative;
    transition: all var(--transition-fast);
    font-size: 0.95rem;
    border-radius: var(--radius-md);
}

/* Gold underline on hover */
.navbar-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: all var(--transition-fast);
    transform: translateX(-50%);
}

.navbar-nav a:hover::after,
.navbar-nav a.active::after {
    width: 60%;
}

.navbar-nav a:hover,
.navbar-nav a.active {
    color: var(--accent-gold-light);
    background: rgba(201, 162, 39, 0.15);
}

.navbar-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-sm);
}

.navbar-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background-color: var(--parchment-light);
    margin: 6px 0;
    transition: all var(--transition-fast);
    border-radius: 2px;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .navbar {
        height: 3.5rem;
    }

    .navbar-toggle {
        display: block;
    }

    .logo-text {
        display: none;
    }

    .navbar-logo img {
        height: 40px;
    }

    .navbar-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(16, 26, 35, 0.95);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        flex-direction: column;
        padding: var(--spacing-md);
        gap: 0;
        box-shadow: var(--shadow-lg);
        border-bottom: 1px solid rgba(201, 162, 39, 0.3);
    }

    .navbar-nav.active {
        display: flex;
    }

    .navbar-nav li {
        border-bottom: 1px solid rgba(201, 162, 39, 0.2);
    }

    .navbar-nav li:last-child {
        border-bottom: none;
    }

    .navbar-nav a {
        display: block;
        padding: var(--spacing-md);
        text-align: center;
        color: var(--parchment-light);
        border-radius: 0;
    }

    .navbar-nav a:hover,
    .navbar-nav a.active {
        background: rgba(201, 162, 39, 0.15);
        color: var(--accent-gold-light);
    }
}

/* --------------------------------------------------------------------------
   Footer - Deep Ocean Navy with Gold Accents
   -------------------------------------------------------------------------- */
.footer {
    background: linear-gradient(180deg, var(--dark-navy) 0%, var(--deep-ocean) 100%);
    color: var(--white);
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
    position: relative;
}

/* Subtle gold accent at top */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
}

.footer-section h5 {
    color: var(--accent-gold-light);
    margin-bottom: var(--spacing-lg);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.1rem;
}

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

.footer-section li {
    margin-bottom: var(--spacing-sm);
}

.footer-section a {
    color: var(--gray-400);
    transition: all var(--transition-fast);
}

.footer-section a:hover {
    color: var(--accent-gold-light);
    padding-left: 4px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--gray-400);
    margin-bottom: var(--spacing-sm);
}

.footer-social {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: var(--radius-full);
    color: var(--gray-400);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background-color: rgba(201, 162, 39, 0.15);
    color: var(--accent-gold-light);
    border-color: var(--accent-gold);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(201, 162, 39, 0.15);
    padding-top: var(--spacing-xl);
    text-align: center;
    color: var(--gray-400);
    font-size: 0.875rem;
}

/* --------------------------------------------------------------------------
   Forms - Elegant Style
   -------------------------------------------------------------------------- */
.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-label {
    display: block;
    margin-bottom: var(--spacing-sm);
    font-weight: 500;
    color: var(--text-navy);
}

.form-control {
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
    font-family: var(--font-primary);
    font-size: 1rem;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-md);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    background-color: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px var(--accent-gold-glow);
}

.form-control::placeholder {
    color: var(--gray-400);
}

/* --------------------------------------------------------------------------
   Utilities
   -------------------------------------------------------------------------- */
.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }
.mt-4 { margin-top: var(--spacing-xl); }
.mt-5 { margin-top: var(--spacing-2xl); }

.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }
.mb-4 { margin-bottom: var(--spacing-xl); }
.mb-5 { margin-bottom: var(--spacing-2xl); }

.py-1 { padding-top: var(--spacing-sm); padding-bottom: var(--spacing-sm); }
.py-2 { padding-top: var(--spacing-md); padding-bottom: var(--spacing-md); }
.py-3 { padding-top: var(--spacing-lg); padding-bottom: var(--spacing-lg); }
.py-4 { padding-top: var(--spacing-xl); padding-bottom: var(--spacing-xl); }
.py-5 { padding-top: var(--spacing-2xl); padding-bottom: var(--spacing-2xl); }

.d-flex { display: flex; }
.d-block { display: block; }
.d-none { display: none; }

.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.align-center { align-items: center; }

.gap-1 { gap: var(--spacing-sm); }
.gap-2 { gap: var(--spacing-md); }
.gap-3 { gap: var(--spacing-lg); }
.gap-4 { gap: var(--spacing-xl); }

/* ==========================================================================
   HOMEPAGE STYLES - LUXURY ADVENTURE THEME
   ========================================================================== */

/* --------------------------------------------------------------------------
   Hero Section - Nautical Adventure with Stunning Background
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Fallback background for slow connections */
    background-image:
        linear-gradient(135deg, rgba(5, 32, 51, 0.7) 0%, rgba(3, 21, 37, 0.85) 100%),
        url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1920&q=80');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

/* --------------------------------------------------------------------------
   Cinematic Video Background
   -------------------------------------------------------------------------- */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Slightly slow down the video for more cinematic feel */
    filter: brightness(0.9);
}

/* Video play/pause control button */
.video-control {
    position: absolute;
    bottom: 24px;
    right: 24px;
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.video-control:hover {
    background: rgba(255, 255, 255, 0.25);
    opacity: 1;
    transform: scale(1.05);
}

.video-control:focus {
    outline: 2px solid var(--accent-gold);
    outline-offset: 2px;
}

/* Hide video on mobile for performance (fallback to static image) */
@media (max-width: 768px) {
    .hero-video-container {
        display: none;
    }

    .video-control {
        display: none;
    }

    .hero {
        background-attachment: scroll;
    }
}

/* Reduced motion - hide video */
@media (prefers-reduced-motion: reduce) {
    .hero-video {
        animation: none;
    }
}

/* Hero overlay with subtle gold gradient accent */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(5, 32, 51, 0.7) 0%,
        rgba(3, 21, 37, 0.6) 50%,
        rgba(10, 22, 40, 0.75) 100%
    );
    z-index: 1;
}

/* Subtle gold accent overlay */
.hero-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        ellipse at 50% 100%,
        rgba(201, 162, 39, 0.08) 0%,
        transparent 60%
    );
    pointer-events: none;
}

/* Decorative Compass Rose - Bougie Pirates Theme */
.compass-rose {
    position: absolute;
    bottom: 10%;
    right: 5%;
    width: 200px;
    height: 200px;
    opacity: 0.06;
    z-index: 1;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='45' fill='none' stroke='%23d4af37' stroke-width='1'/%3E%3Ccircle cx='50' cy='50' r='35' fill='none' stroke='%23d4af37' stroke-width='0.5'/%3E%3Cpath d='M50 5 L55 45 L50 50 L45 45 Z' fill='%23d4af37'/%3E%3Cpath d='M50 95 L55 55 L50 50 L45 55 Z' fill='%23d4af37'/%3E%3Cpath d='M5 50 L45 45 L50 50 L45 55 Z' fill='%23d4af37'/%3E%3Cpath d='M95 50 L55 45 L50 50 L55 55 Z' fill='%23d4af37'/%3E%3Cpath d='M15 15 L47 47 L50 50 L47 50 Z' fill='%23d4af37' opacity='0.6'/%3E%3Cpath d='M85 15 L53 47 L50 50 L53 50 Z' fill='%23d4af37' opacity='0.6'/%3E%3Cpath d='M15 85 L47 53 L50 50 L47 50 Z' fill='%23d4af37' opacity='0.6'/%3E%3Cpath d='M85 85 L53 53 L50 50 L53 50 Z' fill='%23d4af37' opacity='0.6'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    animation: slowRotate 120s linear infinite;
}

@keyframes slowRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .compass-rose {
        width: 120px;
        height: 120px;
        bottom: 5%;
        right: 2%;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--spacing-3xl) var(--spacing-md);
    max-width: 900px;
    width: 100%;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--spacing-lg);
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Gold accent in title */
.hero-title .gold {
    color: var(--accent-gold-light);
}

.hero-subtitle {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-2xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    letter-spacing: 0.02em;
}

/* --------------------------------------------------------------------------
   Search Card - Clean Modern Style
   -------------------------------------------------------------------------- */
.search-card {
    background: var(--white);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-xl);
    padding: var(--spacing-xs);
    max-width: 850px;
    margin: 0 auto;
}

.search-form {
    display: flex;
    align-items: center;
    gap: 0;
}

.search-field {
    flex: 1;
    padding: var(--spacing-sm) var(--spacing-lg);
    position: relative;
    min-width: 0;
}

.search-field label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-navy);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2px;
}

.search-input {
    width: 100%;
    border: none;
    background: transparent;
    font-size: 0.95rem;
    color: var(--gray-700);
    padding: 0;
    cursor: pointer;
    font-family: var(--font-primary);
}

.search-input:focus {
    outline: none;
    color: var(--text-navy);
}

.search-input option {
    padding: var(--spacing-sm);
}

.search-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-300);
    flex-shrink: 0;
}

.search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
    margin-right: var(--spacing-xs);
    box-shadow: var(--shadow-button);
}

.search-btn:hover {
    background: var(--primary-blue-hover);
    transform: scale(1.02);
    box-shadow: 0 6px 15px rgba(14, 88, 140, 0.35);
}

.search-btn svg {
    flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Amenity Filter Pills - Hero Section
   -------------------------------------------------------------------------- */
.amenity-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
}

.amenity-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: var(--spacing-xs) var(--spacing-md);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all var(--transition-fast);
    cursor: pointer;
}

.amenity-pill:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--text-navy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.amenity-pill svg {
    flex-shrink: 0;
    opacity: 0.9;
}

.amenity-pill:hover svg {
    opacity: 1;
}

@media (max-width: 768px) {
    .amenity-pills {
        gap: var(--spacing-xs);
    }

    .amenity-pill {
        font-size: 0.8rem;
        padding: 6px var(--spacing-sm);
    }
}

/* Mobile Search Form */
@media (max-width: 900px) {
    .search-card {
        border-radius: var(--radius-xl);
        padding: var(--spacing-md);
    }

    .search-form {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .search-field {
        width: 100%;
        padding: var(--spacing-sm) var(--spacing-md);
        background: rgba(255, 255, 255, 0.7);
        border-radius: var(--radius-md);
    }

    .search-divider {
        display: none;
    }

    .search-btn {
        width: 100%;
        margin: var(--spacing-sm) 0 0 0;
        padding: var(--spacing-md);
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero {
        min-height: 600px;
    }
}

/* --------------------------------------------------------------------------
   Section Headers - Luxury Adventure Style
   -------------------------------------------------------------------------- */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-navy);
    letter-spacing: -0.02em;
}

/* Gold decorative underline with compass accent */
.section-header h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    margin: var(--spacing-md) auto 0;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* --------------------------------------------------------------------------
   Featured Properties Section - Treasure Map Background
   -------------------------------------------------------------------------- */
.featured-section {
    background: var(--parchment-light);
    position: relative;
}

/* Subtle vintage paper texture */
.featured-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(201, 162, 39, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(139, 115, 85, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

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

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

/* Property Card - Treasure Destination Style */
.property-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.property-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 1px solid rgba(139, 115, 85, 0.15);
    position: relative;
}

/* Subtle parchment texture effect on hover */
.property-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        transparent 0%,
        rgba(201, 162, 39, 0.02) 50%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
    z-index: 1;
}

.property-card:hover::before {
    opacity: 1;
}

.property-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-treasure);
    border-color: rgba(201, 162, 39, 0.25);
}

.property-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

/* Hover overlay with "View Details" */
.property-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to top,
        rgba(5, 32, 51, 0.85) 0%,
        rgba(5, 32, 51, 0.3) 40%,
        transparent 100%
    );
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: var(--spacing-lg);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.property-card:hover .property-overlay {
    opacity: 1;
}

.view-details {
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-lg);
    background: rgba(201, 162, 39, 0.9);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.view-details:hover {
    background: var(--accent-gold);
    transform: scale(1.05);
}

.view-details span {
    transition: transform var(--transition-fast);
}

.property-card:hover .view-details span {
    transform: translateX(4px);
}

/* Property badge - treasure style */
.property-badge {
    position: absolute;
    top: var(--spacing-md);
    left: var(--spacing-md);
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    color: var(--white);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(201, 162, 39, 0.4);
}

/* 10% OFF Discount badge - eye-catching green */
.property-badge.discount-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 2px 12px rgba(16, 185, 129, 0.5);
    animation: pulse-glow 2s ease-in-out infinite;
}

.property-badge.discount-badge + .property-badge {
    top: calc(var(--spacing-md) + 28px);
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 2px 12px rgba(16, 185, 129, 0.5); }
    50% { box-shadow: 0 2px 20px rgba(16, 185, 129, 0.8); }
}

/* Property star rating badge */
.property-rating {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(5, 32, 51, 0.85);
    backdrop-filter: blur(4px);
    color: var(--white);
    padding: 6px 10px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.property-rating svg {
    color: var(--accent-gold-light);
}

/* Property amenity tags - parchment style */
.property-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: var(--spacing-md);
}

.amenity-tag {
    display: inline-block;
    padding: 4px 10px;
    background: var(--parchment);
    border: 1px solid var(--burnt-edge);
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    color: var(--sepia);
    font-weight: 500;
}

.property-info {
    padding: var(--spacing-lg);
}

.property-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-navy);
    margin-bottom: var(--spacing-xs);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.property-location {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.property-location svg {
    width: 14px;
    height: 14px;
    color: var(--primary-blue);
}

.property-meta {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--gray-200);
}

.meta-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gray-400);
}

.property-price {
    display: flex;
    align-items: baseline;
    gap: var(--spacing-xs);
}

.price-amount {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.price-period {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* Loading Skeleton */
.loading-skeleton {
    display: contents;
}

.skeleton-card {
    background: linear-gradient(
        90deg,
        var(--parchment-dark) 0%,
        var(--parchment-light) 50%,
        var(--parchment-dark) 100%
    );
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: var(--radius-lg);
    height: 380px;
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Fallback / Empty State */
.fallback-message,
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: var(--spacing-3xl) var(--spacing-xl);
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 2px dashed var(--gray-300);
}

.fallback-icon {
    margin-bottom: var(--spacing-lg);
}

.fallback-icon svg {
    color: var(--primary-blue);
}

.fallback-message h3,
.empty-state h3 {
    font-family: var(--font-display);
    color: var(--text-navy);
    margin-bottom: var(--spacing-sm);
}

.fallback-message p,
.empty-state p {
    color: var(--gray-600);
    margin: 0;
}

.fallback-message a,
.empty-state a {
    color: var(--primary-blue);
    font-weight: 500;
}

.fallback-message a:hover,
.empty-state a:hover {
    color: var(--primary-blue-light);
    text-decoration: underline;
}

/* Price label styling */
.price-label {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* --------------------------------------------------------------------------
   Why Choose Us Section - Chart Your Course Adventure Features
   -------------------------------------------------------------------------- */
.why-section {
    background: var(--parchment-light);
    position: relative;
}

/* Subtle compass pattern background */
.why-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='45' fill='none' stroke='%23d4af37' stroke-width='0.5' opacity='0.03'/%3E%3C/svg%3E");
    background-size: 300px 300px;
    background-position: center;
    opacity: 0.5;
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

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

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

.feature-card {
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-lg);
    border-radius: var(--radius-lg);
    background: var(--white);
    transition: all var(--transition-base);
    border: 1px solid rgba(139, 115, 85, 0.1);
    text-decoration: none;
    display: block;
}

.feature-card-link {
    text-decoration: none;
    color: inherit;
}

.feature-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-treasure);
    transform: translateY(-6px);
    border-color: rgba(201, 162, 39, 0.3);
}

/* Highlight card variation */
.feature-card-highlight {
    background: linear-gradient(135deg, var(--parchment) 0%, var(--white) 100%);
    border-color: rgba(201, 162, 39, 0.2);
}

.feature-card-highlight:hover {
    border-color: var(--accent-gold);
}

.feature-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-navy) 100%);
    border-radius: var(--radius-lg);
    position: relative;
    color: var(--white);
}

/* Gold ring around icon on hover */
.feature-card:hover .feature-icon {
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.3);
}

.feature-icon svg {
    width: 32px;
    height: 32px;
}

.feature-icon span {
    font-size: 2rem;
    filter: grayscale(1) brightness(10);
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-navy);
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0 0 var(--spacing-md) 0;
}

/* Feature link arrow */
.feature-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--accent-gold-dark);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.feature-link .arrow {
    transition: transform var(--transition-fast);
}

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

.feature-card:hover .feature-link .arrow {
    transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   Social Proof Section - Treasure Chest of Success
   -------------------------------------------------------------------------- */
.social-proof-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--text-navy) 50%, var(--deep-ocean) 100%);
    color: var(--white);
    padding: var(--spacing-3xl) 0;
    position: relative;
    overflow: hidden;
}

/* Gold radial accents */
.social-proof-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 30% 0%, rgba(201, 162, 39, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 100%, rgba(201, 162, 39, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Decorative compass in background */
.compass-decoration {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    width: 150px;
    height: 150px;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='45' fill='none' stroke='%23d4af37' stroke-width='1'/%3E%3Ccircle cx='50' cy='50' r='35' fill='none' stroke='%23d4af37' stroke-width='0.5'/%3E%3Cpath d='M50 5 L55 45 L50 50 L45 45 Z' fill='%23d4af37'/%3E%3Cpath d='M50 95 L55 55 L50 50 L45 55 Z' fill='%23d4af37'/%3E%3Cpath d='M5 50 L45 45 L50 50 L45 55 Z' fill='%23d4af37'/%3E%3Cpath d='M95 50 L55 45 L50 50 L55 55 Z' fill='%23d4af37'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.social-proof-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.proof-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: var(--spacing-xs);
    color: var(--accent-gold-light);
    text-shadow: 0 2px 10px rgba(201, 162, 39, 0.3);
}

.stat-label {
    font-size: 0.85rem;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
}

.stat-stars {
    display: flex;
    gap: 2px;
    margin-top: var(--spacing-xs);
    color: var(--accent-gold-light);
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, transparent, var(--accent-gold), transparent);
    opacity: 0.5;
}

.proof-tagline {
    font-family: var(--font-elegant);
    font-size: 1.6rem;
    font-style: italic;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto var(--spacing-lg);
}

/* Superhost badge */
.proof-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-lg);
    background: rgba(201, 162, 39, 0.15);
    border: 1px solid rgba(201, 162, 39, 0.4);
    border-radius: var(--radius-full);
    color: var(--accent-gold-light);
    font-weight: 600;
    font-size: 0.9rem;
}

.badge-icon {
    display: flex;
    color: var(--accent-gold-light);
}

@media (max-width: 768px) {
    .proof-stats {
        gap: var(--spacing-xl);
    }

    .stat-divider {
        display: none;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .proof-tagline {
        font-size: 1.25rem;
    }

    .compass-decoration {
        display: none;
    }
}

/* --------------------------------------------------------------------------
   CTA Section - Set Sail Call to Action
   -------------------------------------------------------------------------- */
.cta-section {
    background: linear-gradient(180deg, var(--parchment) 0%, var(--parchment-light) 100%);
    padding: var(--spacing-3xl) 0;
    position: relative;
}

/* Decorative compass */
.cta-compass {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    width: 120px;
    height: 120px;
    opacity: 0.06;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='45' fill='none' stroke='%23704214' stroke-width='1'/%3E%3Cpath d='M50 5 L55 45 L50 50 L45 45 Z' fill='%23704214'/%3E%3Cpath d='M50 95 L55 55 L50 50 L45 55 Z' fill='%23704214'/%3E%3Cpath d='M5 50 L45 45 L50 50 L45 55 Z' fill='%23704214'/%3E%3Cpath d='M95 50 L55 45 L50 50 L55 55 Z' fill='%23704214'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.cta-content {
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-gold);
    margin-bottom: var(--spacing-sm);
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-navy);
}

.cta-content p {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: var(--spacing-xl);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   Animations - Fade In Effects
   -------------------------------------------------------------------------- */
.animate-ready {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation for grid items */
.animate-ready:nth-child(1) { transition-delay: 0ms; }
.animate-ready:nth-child(2) { transition-delay: 100ms; }
.animate-ready:nth-child(3) { transition-delay: 200ms; }
.animate-ready:nth-child(4) { transition-delay: 300ms; }
.animate-ready:nth-child(5) { transition-delay: 400ms; }
.animate-ready:nth-child(6) { transition-delay: 500ms; }

/* Hover scale effect */
.hover-lift {
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.hover-lift:hover {
    transform: translateY(-4px);
}

/* --------------------------------------------------------------------------
   Responsive Adjustments
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
    .section {
        padding: var(--spacing-2xl) 0;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }

    .cta-compass {
        display: none;
    }
}

/* ==========================================================================
   LISTINGS PAGE STYLES
   ========================================================================== */

/* --------------------------------------------------------------------------
   Page Header - Adventure Style
   -------------------------------------------------------------------------- */
.page-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-navy) 100%);
    padding: var(--spacing-3xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header h1 {
    color: var(--white);
    font-size: 2.75rem;
    margin-bottom: var(--spacing-sm);
    position: relative;
    z-index: 1;
}

.page-header p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* --------------------------------------------------------------------------
   Filters Bar
   -------------------------------------------------------------------------- */
.filters-bar {
    background: var(--white);
    padding: var(--spacing-lg) 0;
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 72px;
    z-index: 100;
}

.filters-container {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.filter-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-600);
}

.filter-select {
    padding: var(--spacing-sm) var(--spacing-md);
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    background: var(--white);
    cursor: pointer;
    transition: border-color var(--transition-fast);
}

.filter-select:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.filter-results {
    margin-left: auto;
    color: var(--gray-600);
    font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   Listings Grid
   -------------------------------------------------------------------------- */
.listings-section {
    background: var(--parchment-light);
    padding: var(--spacing-2xl) 0;
}

.listings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

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

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

    .filters-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .filter-results {
        margin-left: 0;
    }
}

/* Empty State */
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: var(--spacing-3xl);
}

.empty-state h3 {
    color: var(--gray-600);
    margin-bottom: var(--spacing-md);
}

.empty-state p {
    color: var(--gray-500);
}

/* ==========================================================================
   LISTING DETAIL PAGE STYLES
   ========================================================================== */

/* --------------------------------------------------------------------------
   Property Hero / Gallery
   -------------------------------------------------------------------------- */
.property-hero {
    position: relative;
    background: var(--dark-navy);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: repeat(2, 250px);
    gap: var(--spacing-sm);
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-main {
    grid-row: span 2;
    position: relative;
    overflow: hidden;
}

.gallery-main img,
.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-main:hover img,
.gallery-thumb:hover img {
    transform: scale(1.03);
}

.gallery-thumb {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-more {
    position: absolute;
    inset: 0;
    background: rgba(5, 32, 51, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.gallery-more:hover {
    background: rgba(5, 32, 51, 0.8);
}

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

    .gallery-main {
        grid-row: span 1;
    }

    .gallery-thumb {
        display: none;
    }
}

/* --------------------------------------------------------------------------
   Property Content Layout
   -------------------------------------------------------------------------- */
.property-content {
    background: var(--parchment-light);
    padding: var(--spacing-2xl) 0;
}

.property-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: var(--spacing-2xl);
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .property-layout {
        grid-template-columns: 1fr;
    }
}

/* --------------------------------------------------------------------------
   Property Main Info
   -------------------------------------------------------------------------- */
.property-main {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-2xl);
    box-shadow: var(--shadow-md);
}

.property-header {
    border-bottom: 1px solid var(--gray-200);
    padding-bottom: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.property-header h1 {
    font-size: 2rem;
    color: var(--text-navy);
    margin-bottom: var(--spacing-sm);
}

.property-header .location {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--gray-600);
    font-size: 1.1rem;
}

.property-header .location svg {
    color: var(--accent-gold);
}

.property-stats {
    display: flex;
    gap: var(--spacing-xl);
    padding: var(--spacing-lg) 0;
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: var(--spacing-lg);
}

.stat {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.stat-icon {
    width: 48px;
    height: 48px;
    background: var(--parchment);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold-dark);
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-navy);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray-500);
}

@media (max-width: 600px) {
    .property-stats {
        flex-wrap: wrap;
        gap: var(--spacing-md);
    }

    .stat {
        flex: 0 0 calc(50% - var(--spacing-sm));
    }
}

/* Description */
.property-description {
    margin-bottom: var(--spacing-2xl);
}

.property-description h2 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
}

.property-description p {
    color: var(--gray-700);
    line-height: 1.8;
}

/* Amenities Grid */
.amenities-section {
    margin-bottom: var(--spacing-2xl);
}

.amenities-section h2 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-lg);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: var(--spacing-md);
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) 0;
    color: var(--gray-700);
}

.amenity-item svg {
    color: var(--accent-gold-dark);
    flex-shrink: 0;
}

/* House Rules */
.rules-section {
    background: var(--parchment);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
}

.rules-section h2 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: var(--spacing-md);
}

.rule-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
}

.rule-item strong {
    color: var(--text-navy);
    display: block;
    font-size: 0.85rem;
}

.rule-item span {
    color: var(--gray-600);
    font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   Booking Sidebar
   -------------------------------------------------------------------------- */
.booking-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.booking-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(201, 162, 39, 0.2);
}

.booking-price-header {
    display: flex;
    align-items: baseline;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid var(--gray-200);
}

.booking-price {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-gold-dark);
}

.booking-price-period {
    color: var(--gray-500);
    font-size: 1rem;
}

.booking-form {
    margin-bottom: var(--spacing-lg);
}

.booking-dates {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: var(--spacing-md);
}

.booking-date-field {
    padding: var(--spacing-md);
}

.booking-date-field:first-child {
    border-right: 1px solid var(--gray-300);
}

.booking-date-field label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-600);
    margin-bottom: var(--spacing-xs);
}

.booking-date-field input {
    width: 100%;
    border: none;
    font-size: 0.95rem;
    color: var(--text-navy);
    background: transparent;
    cursor: pointer;
}

.booking-date-field input:focus {
    outline: none;
}

.booking-guests {
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.booking-guests label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-600);
    margin-bottom: var(--spacing-xs);
}

.booking-guests select {
    width: 100%;
    border: none;
    font-size: 0.95rem;
    color: var(--text-navy);
    background: transparent;
    cursor: pointer;
}

.booking-guests select:focus {
    outline: none;
}

.booking-summary {
    background: var(--parchment-light);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.booking-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--spacing-sm);
    color: var(--gray-700);
}

.booking-summary-row:last-child {
    margin-bottom: 0;
    padding-top: var(--spacing-sm);
    border-top: 1px solid var(--sepia);
    font-weight: 600;
    color: var(--text-navy);
}

.booking-summary-row.total {
    font-size: 1.1rem;
}

.booking-btn {
    width: 100%;
    padding: var(--spacing-md);
    font-size: 1.1rem;
}

.booking-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: var(--spacing-md);
}

@media (max-width: 1024px) {
    .booking-sidebar {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 100;
        padding: var(--spacing-md);
        background: var(--white);
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    }

    .booking-card {
        display: flex;
        align-items: center;
        gap: var(--spacing-lg);
        padding: 0;
        box-shadow: none;
        border: none;
    }

    .booking-price-header {
        margin: 0;
        padding: 0;
        border: none;
    }

    .booking-form,
    .booking-summary,
    .booking-note {
        display: none;
    }

    .booking-btn {
        flex-shrink: 0;
        width: auto;
        padding: var(--spacing-md) var(--spacing-2xl);
    }
}

/* ==========================================================================
   ABOUT PAGE STYLES
   ========================================================================== */

.about-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--text-navy) 100%);
    padding: var(--spacing-3xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(201, 162, 39, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(201, 162, 39, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.about-hero h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.about-hero .tagline {
    color: var(--accent-gold-light);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.about-content {
    background: var(--parchment-light);
    padding: var(--spacing-3xl) 0;
}

.about-story {
    max-width: 800px;
    margin: 0 auto var(--spacing-3xl);
    text-align: center;
}

.about-story p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--gray-700);
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-3xl);
}

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

.value-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(212, 196, 168, 0.3);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-lg);
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--text-navy) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    filter: grayscale(1) brightness(10);
}

.value-card h3 {
    color: var(--accent-gold-dark);
    margin-bottom: var(--spacing-sm);
}

.value-card p {
    color: var(--gray-600);
    margin: 0;
}

/* What Sets Us Apart List */
.differentiators {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-2xl);
    box-shadow: var(--shadow-md);
}

.differentiators h2 {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.differentiators h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-light));
    margin: var(--spacing-md) auto 0;
    border-radius: 2px;
}

.diff-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

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

.diff-list li {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--parchment-light);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.diff-list li:hover {
    background: var(--parchment);
    transform: translateX(4px);
}

.diff-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.5rem;
}

.diff-content strong {
    display: block;
    color: var(--text-navy);
    margin-bottom: var(--spacing-xs);
}

.diff-content span {
    color: var(--gray-600);
    font-size: 0.95rem;
}

/* ==========================================================================
   CONTACT PAGE STYLES
   ========================================================================== */

.contact-section {
    background: var(--parchment-light);
    padding: var(--spacing-3xl) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
}

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

.contact-info {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-2xl);
    box-shadow: var(--shadow-md);
}

.contact-info h2 {
    margin-bottom: var(--spacing-lg);
}

.contact-item {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--parchment);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold-dark);
    flex-shrink: 0;
}

.contact-details h4 {
    margin-bottom: var(--spacing-xs);
    font-size: 1rem;
}

.contact-details p,
.contact-details a {
    color: var(--gray-600);
    margin: 0;
}

.contact-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-2xl);
    box-shadow: var(--shadow-md);
}

.contact-form h2 {
    margin-bottom: var(--spacing-lg);
}

/* ==========================================================================
   BOUGIE PIRATES - LUXURY ADVENTURE VISUAL ENHANCEMENTS
   ========================================================================== */

/* --------------------------------------------------------------------------
   Compass Rose - Decorative Hero Element
   -------------------------------------------------------------------------- */
.compass-rose {
    position: absolute;
    top: 8%;
    right: 8%;
    width: 180px;
    height: 180px;
    opacity: 0.12;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cg fill='%23c9a227'%3E%3Cpolygon points='50,2 53,42 50,50 47,42'/%3E%3Cpolygon points='98,50 58,53 50,50 58,47'/%3E%3Cpolygon points='50,98 47,58 50,50 53,58'/%3E%3Cpolygon points='2,50 42,47 50,50 42,53'/%3E%3Cpolygon points='85,15 56,44 50,50 44,44' opacity='0.6'/%3E%3Cpolygon points='85,85 56,56 50,50 44,56' opacity='0.6'/%3E%3Cpolygon points='15,85 44,56 50,50 56,56' opacity='0.6'/%3E%3Cpolygon points='15,15 44,44 50,50 56,44' opacity='0.6'/%3E%3C/g%3E%3Ccircle cx='50' cy='50' r='6' fill='none' stroke='%23c9a227' stroke-width='1.5'/%3E%3Ccircle cx='50' cy='50' r='12' fill='none' stroke='%23c9a227' stroke-width='0.5' opacity='0.5'/%3E%3Ccircle cx='50' cy='50' r='20' fill='none' stroke='%23c9a227' stroke-width='0.3' opacity='0.3'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    animation: compass-rotate 120s linear infinite;
    pointer-events: none;
    z-index: 2;
}

@keyframes compass-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .compass-rose {
        width: 100px;
        height: 100px;
        top: 5%;
        right: 5%;
        opacity: 0.08;
    }
}

/* Smaller compass for page headers */
.compass-rose-small {
    width: 120px;
    height: 120px;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    opacity: 0.1;
    animation-duration: 180s;
}

@media (max-width: 768px) {
    .compass-rose-small {
        width: 80px;
        height: 80px;
        opacity: 0.06;
    }
}

/* --------------------------------------------------------------------------
   Enhanced Gold Accents - Glowing Luxury Effects
   -------------------------------------------------------------------------- */
.price-amount,
.stat-number,
.booking-price {
    text-shadow: 0 0 30px rgba(201, 162, 39, 0.5), 0 0 60px rgba(201, 162, 39, 0.2);
}

.btn-primary:hover:not(:disabled) {
    box-shadow: var(--shadow-lg), 0 0 40px rgba(201, 162, 39, 0.6), 0 0 80px rgba(201, 162, 39, 0.3);
}

/* Gold shimmer effect for hero title */
.hero-title .gold {
    background: linear-gradient(135deg, var(--accent-gold-light) 0%, var(--accent-gold) 50%, var(--accent-gold-light) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gold-shimmer 4s ease-in-out infinite;
}

@keyframes gold-shimmer {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

/* --------------------------------------------------------------------------
   Burnt Edge Card Effects - Aged Treasure Map Style
   -------------------------------------------------------------------------- */
.property-card,
.booking-card,
.feature-card,
.card {
    position: relative;
}

.property-card::before,
.feature-card::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(139, 115, 85, 0.2) 40%,
        rgba(139, 115, 85, 0.4) 50%,
        rgba(139, 115, 85, 0.2) 60%,
        transparent 70%
    );
    border-radius: calc(var(--radius-lg) + 3px);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.property-card:hover::before,
.feature-card:hover::before {
    opacity: 1;
}

/* Subtle inner shadow for aged look */
.property-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    box-shadow: inset 0 0 20px rgba(139, 115, 85, 0.05);
    pointer-events: none;
    transition: box-shadow 0.3s ease;
}

.property-card:hover::after {
    box-shadow: inset 0 0 30px rgba(139, 115, 85, 0.1);
}

/* --------------------------------------------------------------------------
   Property Image Dramatic Overlay
   -------------------------------------------------------------------------- */
.property-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(
        to top,
        rgba(5, 32, 51, 0.5) 0%,
        rgba(5, 32, 51, 0.2) 40%,
        transparent 100%
    );
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.property-card:hover .property-image::after {
    opacity: 1;
}

/* --------------------------------------------------------------------------
   Enhanced Parchment Textures - Aged Paper Effect
   -------------------------------------------------------------------------- */
.section-parchment,
.featured-section {
    background:
        /* Fine grain noise for paper texture */
        url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.06'/%3E%3C/svg%3E"),
        /* Color gradient for aged paper */
        linear-gradient(135deg, var(--parchment-light) 0%, var(--parchment) 40%, var(--parchment-dark) 100%);
}

/* Corner darkening for aged effect */
.section-parchment::before,
.featured-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        /* Top-left burnt corner */
        radial-gradient(ellipse at 0% 0%, rgba(139, 115, 85, 0.12) 0%, transparent 35%),
        /* Top-right burnt corner */
        radial-gradient(ellipse at 100% 0%, rgba(139, 115, 85, 0.1) 0%, transparent 30%),
        /* Bottom-left burnt corner */
        radial-gradient(ellipse at 0% 100%, rgba(139, 115, 85, 0.1) 0%, transparent 30%),
        /* Bottom-right burnt corner */
        radial-gradient(ellipse at 100% 100%, rgba(139, 115, 85, 0.12) 0%, transparent 35%),
        /* Center lightening for aged paper look */
        radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, 0.3) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

/* --------------------------------------------------------------------------
   Hero Enhancements - Dramatic Background
   -------------------------------------------------------------------------- */
.hero {
    /* Parallax effect on scroll */
    background-attachment: fixed;
}

/* Additional atmospheric overlay */
.hero .hero-overlay {
    background:
        /* Vignette effect */
        radial-gradient(ellipse at center, transparent 30%, rgba(3, 21, 37, 0.4) 100%),
        /* Light leak from top-left */
        radial-gradient(ellipse at 10% 10%, rgba(201, 162, 39, 0.08) 0%, transparent 40%),
        /* Ocean glow from bottom */
        linear-gradient(180deg, transparent 60%, rgba(27, 99, 150, 0.15) 100%);
}

/* Floating particles effect (subtle) */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(201, 162, 39, 0.15) 0%, transparent 2%),
        radial-gradient(circle at 80% 70%, rgba(201, 162, 39, 0.1) 0%, transparent 2%),
        radial-gradient(circle at 60% 20%, rgba(201, 162, 39, 0.08) 0%, transparent 1.5%),
        radial-gradient(circle at 30% 80%, rgba(201, 162, 39, 0.12) 0%, transparent 2%);
    pointer-events: none;
    z-index: 1;
    animation: float-particles 20s ease-in-out infinite;
}

@keyframes float-particles {
    0%, 100% { transform: translateY(0) translateX(0); }
    25% { transform: translateY(-10px) translateX(5px); }
    50% { transform: translateY(-5px) translateX(-5px); }
    75% { transform: translateY(-15px) translateX(3px); }
}

/* --------------------------------------------------------------------------
   Decorative Map Lines - Footer Enhancement
   -------------------------------------------------------------------------- */
.footer {
    background:
        /* Longitude/latitude grid lines like nautical chart */
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cpath d='M0 50 Q50 30 100 50 T200 50' fill='none' stroke='rgba(201,162,39,0.08)' stroke-width='0.5'/%3E%3Cpath d='M0 100 Q50 80 100 100 T200 100' fill='none' stroke='rgba(201,162,39,0.06)' stroke-width='0.5'/%3E%3Cpath d='M0 150 Q50 130 100 150 T200 150' fill='none' stroke='rgba(201,162,39,0.04)' stroke-width='0.5'/%3E%3Cpath d='M50 0 Q30 50 50 100 T50 200' fill='none' stroke='rgba(201,162,39,0.05)' stroke-width='0.5'/%3E%3Cpath d='M150 0 Q130 50 150 100 T150 200' fill='none' stroke='rgba(201,162,39,0.05)' stroke-width='0.5'/%3E%3C/svg%3E"),
        linear-gradient(180deg, var(--text-navy) 0%, var(--dark-navy) 100%);
}

/* --------------------------------------------------------------------------
   Social Proof Section - Enhanced Stats Glow
   -------------------------------------------------------------------------- */
.stat-number {
    position: relative;
}

.stat-number::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    opacity: 0.6;
}

/* --------------------------------------------------------------------------
   Booking Card - Premium Border Effect
   -------------------------------------------------------------------------- */
.booking-card {
    border: 1px solid rgba(201, 162, 39, 0.25);
    background: linear-gradient(180deg, var(--white) 0%, rgba(250, 248, 243, 0.5) 100%);
}

.booking-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 20%;
    right: 20%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    border-radius: 0 0 3px 3px;
}

/* --------------------------------------------------------------------------
   Section Dividers - Treasure Map Style
   -------------------------------------------------------------------------- */
.section-header h2::after {
    background: linear-gradient(90deg,
        transparent,
        var(--accent-gold) 20%,
        var(--accent-gold-light) 50%,
        var(--accent-gold) 80%,
        transparent
    );
    height: 2px;
    width: 80px;
}

/* --------------------------------------------------------------------------
   CTA Section - Enhanced Warmth
   -------------------------------------------------------------------------- */
.cta-section {
    background:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E"),
        linear-gradient(180deg, var(--parchment) 0%, var(--parchment-light) 50%, var(--parchment) 100%);
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.3), transparent);
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.3), transparent);
}

/* ==========================================================================
   RESPONSIVE UTILITIES
   ========================================================================== */

@media (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }
}

@media (min-width: 769px) {
    .hide-desktop {
        display: none !important;
    }
}

/* ==========================================================================
   BOUGIE PIRATES VISUAL OVERHAUL - DRAMATIC ENHANCEMENTS
   ========================================================================== */

/* --------------------------------------------------------------------------
   Section Eyebrow - Small Decorative Text Above Headings
   -------------------------------------------------------------------------- */
.section-eyebrow {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-bottom: var(--spacing-sm);
}

.cta-eyebrow {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-bottom: var(--spacing-sm);
}

.page-header-eyebrow {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-bottom: var(--spacing-sm);
}

/* --------------------------------------------------------------------------
   Feature Cards - INTERACTIVE with Links and Hover Effects
   -------------------------------------------------------------------------- */
.feature-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.feature-card {
    text-align: center;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    background: var(--parchment-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    background: var(--white);
    box-shadow: 0 20px 40px rgba(5, 32, 51, 0.15), 0 0 0 1px rgba(201, 162, 39, 0.2);
    transform: translateY(-10px);
    border-color: rgba(201, 162, 39, 0.3);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--text-navy) 100%);
    border-radius: var(--radius-lg);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-icon svg {
    color: var(--white);
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(-5deg);
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    box-shadow: 0 10px 30px var(--accent-gold-glow);
}

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

/* Gold border accent on hover */
.feature-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: calc(var(--radius-lg) + 3px);
    background: linear-gradient(135deg, var(--accent-gold), transparent 50%, var(--accent-gold));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover .feature-icon::before {
    opacity: 1;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-navy);
    transition: color 0.3s ease;
}

.feature-card:hover h3 {
    color: var(--accent-gold-dark);
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0 0 var(--spacing-md);
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-blue);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.feature-link .arrow {
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-link {
    opacity: 1;
    transform: translateY(0);
    color: var(--primary-blue);
}

.feature-card:hover .feature-link .arrow {
    transform: translateX(4px);
}

/* Highlight card variant */
.feature-card-highlight {
    background: rgba(27, 99, 150, 0.05);
    border: 2px solid rgba(27, 99, 150, 0.2);
}

.feature-card-highlight .feature-icon {
    background: var(--primary-blue);
}

.feature-card-highlight .feature-icon svg {
    color: var(--white);
}

/* --------------------------------------------------------------------------
   Property Card Enhancements - Overlay and Badges
   -------------------------------------------------------------------------- */
.property-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(5, 32, 51, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: var(--spacing-lg);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.property-card:hover .property-overlay {
    opacity: 1;
}

.view-details {
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-lg);
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    border-radius: var(--radius-full);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.property-card:hover .view-details {
    transform: translateY(0);
}

.view-details span {
    transition: transform 0.3s ease;
}

.property-card:hover .view-details span {
    transform: translateX(4px);
}

.price-label {
    font-size: 0.8rem;
    color: var(--gray-500);
    font-weight: 400;
    margin-right: var(--spacing-xs);
}

/* --------------------------------------------------------------------------
   Social Proof Enhancements
   -------------------------------------------------------------------------- */
.compass-decoration {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    width: 150px;
    height: 150px;
    opacity: 0.1;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cg fill='%23c9a227'%3E%3Cpolygon points='50,2 53,42 50,50 47,42'/%3E%3Cpolygon points='98,50 58,53 50,50 58,47'/%3E%3Cpolygon points='50,98 47,58 50,50 53,58'/%3E%3Cpolygon points='2,50 42,47 50,50 42,53'/%3E%3Cpolygon points='85,15 56,44 50,50 44,44' opacity='0.6'/%3E%3Cpolygon points='85,85 56,56 50,50 44,56' opacity='0.6'/%3E%3Cpolygon points='15,85 44,56 50,50 56,56' opacity='0.6'/%3E%3Cpolygon points='15,15 44,44 50,50 56,44' opacity='0.6'/%3E%3C/g%3E%3Ccircle cx='50' cy='50' r='6' fill='none' stroke='%23c9a227' stroke-width='1.5'/%3E%3C/svg%3E");
    background-size: contain;
    animation: compass-rotate 120s linear infinite;
    pointer-events: none;
}

.stat-stars {
    display: flex;
    gap: 2px;
    justify-content: center;
    margin-top: var(--spacing-xs);
}

.stat-stars svg {
    color: var(--accent-gold-light);
}

.proof-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-xl);
    padding: var(--spacing-sm) var(--spacing-lg);
    background: rgba(201, 162, 39, 0.15);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: var(--radius-full);
}

.badge-icon {
    display: flex;
    color: var(--accent-gold-light);
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-gold-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* --------------------------------------------------------------------------
   CTA Section Enhancements
   -------------------------------------------------------------------------- */
.cta-compass {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    width: 120px;
    height: 120px;
    opacity: 0.08;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cg fill='%23c9a227'%3E%3Cpolygon points='50,2 53,42 50,50 47,42'/%3E%3Cpolygon points='98,50 58,53 50,50 58,47'/%3E%3Cpolygon points='50,98 47,58 50,50 53,58'/%3E%3Cpolygon points='2,50 42,47 50,50 42,53'/%3E%3C/g%3E%3Ccircle cx='50' cy='50' r='6' fill='none' stroke='%23c9a227' stroke-width='1.5'/%3E%3C/svg%3E");
    background-size: contain;
    animation: compass-rotate 90s linear infinite reverse;
    pointer-events: none;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   Fallback Content Styling
   -------------------------------------------------------------------------- */
.fallback-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: var(--spacing-3xl);
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 2px dashed rgba(201, 162, 39, 0.3);
}

.fallback-icon {
    color: var(--accent-gold);
    margin-bottom: var(--spacing-lg);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.fallback-message h3 {
    font-family: var(--font-display);
    color: var(--text-navy);
    margin-bottom: var(--spacing-md);
}

.fallback-message p {
    color: var(--gray-600);
    margin: 0;
}

.fallback-message a {
    color: var(--accent-gold-dark);
    font-weight: 600;
}

/* --------------------------------------------------------------------------
   Animation Classes for Scroll Reveal
   -------------------------------------------------------------------------- */
.animate-ready {
    opacity: 0;
    transform: translateY(30px);
}

.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Staggered animation delays for grid items */
.features-grid .feature-card:nth-child(1) { transition-delay: 0s; }
.features-grid .feature-card:nth-child(2) { transition-delay: 0.1s; }
.features-grid .feature-card:nth-child(3) { transition-delay: 0.2s; }
.features-grid .feature-card:nth-child(4) { transition-delay: 0.3s; }
.features-grid .feature-card:nth-child(5) { transition-delay: 0.4s; }
.features-grid .feature-card:nth-child(6) { transition-delay: 0.5s; }

.properties-grid .property-card-link:nth-child(1) .property-card { transition-delay: 0s; }
.properties-grid .property-card-link:nth-child(2) .property-card { transition-delay: 0.15s; }
.properties-grid .property-card-link:nth-child(3) .property-card { transition-delay: 0.3s; }

/* --------------------------------------------------------------------------
   Enhanced Why Section Background
   -------------------------------------------------------------------------- */
.why-section {
    background:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E"),
        linear-gradient(180deg, var(--white) 0%, var(--parchment-light) 100%);
    position: relative;
}

.why-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.3), transparent);
}

/* --------------------------------------------------------------------------
   Enhanced Button with Icons
   -------------------------------------------------------------------------- */
.btn svg {
    flex-shrink: 0;
}

.btn-ghost {
    border-color: var(--text-navy);
    color: var(--text-navy);
}

.btn-ghost:hover {
    background: var(--text-navy);
    color: var(--white);
    border-color: var(--text-navy);
}

/* --------------------------------------------------------------------------
   Responsive Adjustments for New Elements
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
    .compass-decoration,
    .cta-compass {
        display: none;
    }

    .section-eyebrow,
    .cta-eyebrow {
        font-size: 0.7rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .proof-badge {
        padding: var(--spacing-xs) var(--spacing-md);
    }

    .badge-text {
        font-size: 0.8rem;
    }

    .stat-stars {
        display: none;
    }
}

@media (max-width: 576px) {
    .feature-card {
        padding: var(--spacing-lg);
    }

    .feature-icon {
        width: 64px;
        height: 64px;
    }

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

    .feature-link {
        display: none;
    }
}

/* ==========================================================================
   BOUGIE PIRATES FINAL POLISH - LUXURY ADVENTURE COMPLETE
   ========================================================================== */

/* Enhanced Typography - Luxury Weight and Spacing */
body {
    font-weight: 400;
    letter-spacing: 0.01em;
}

h1, h2, h3, h4, h5, h6 {
    letter-spacing: -0.02em;
}

.hero-title {
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.gold-text {
    background: linear-gradient(135deg, var(--accent-gold-light) 0%, var(--accent-gold) 50%, var(--accent-gold-light) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Treasure Map Border Effect for Cards */
.treasure-border {
    position: relative;
    border: 2px solid transparent;
    background-image:
        linear-gradient(var(--white), var(--white)),
        linear-gradient(135deg, var(--burnt-edge) 0%, var(--sepia) 50%, var(--burnt-edge) 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

/* Premium Property Cards - Final Enhancements */
.property-card {
    border: 1px solid rgba(212, 196, 168, 0.4);
    background: linear-gradient(180deg, var(--white) 0%, var(--parchment-light) 100%);
}

.property-card .property-info {
    background: linear-gradient(180deg, transparent 0%, rgba(245, 240, 230, 0.3) 100%);
}

.property-badge {
    font-family: var(--font-primary);
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(201, 162, 39, 0.3);
}

.property-rating {
    font-family: var(--font-primary);
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.property-rating .review-count {
    font-weight: 400;
    opacity: 0.9;
    font-size: 0.75rem;
}

/* Navbar Enhancement - Frosted Glass Dark Theme */
.navbar {
    background: rgba(16, 26, 35, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201, 162, 39, 0.3);
}

.navbar-nav a {
    color: var(--parchment-light);
    font-weight: 600;
    position: relative;
}

.navbar-nav a:hover {
    color: var(--accent-gold-light);
    background: rgba(201, 162, 39, 0.15);
}

.navbar-nav a.active {
    color: var(--accent-gold-light);
    background: rgba(201, 162, 39, 0.15);
}

.navbar-nav a.active::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--accent-gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-gold);
}

/* Footer Enhancement */
.footer-section h5 {
    position: relative;
    display: inline-block;
}

.footer-section h5::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-gold), transparent);
}

/* Search Card Premium Enhancement */
.search-card {
    background: linear-gradient(135deg, var(--parchment-light) 0%, var(--parchment) 50%, var(--parchment-light) 100%);
    border: 2px solid rgba(201, 162, 39, 0.2);
    position: relative;
}

.search-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 20%;
    right: 20%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    border-radius: 0 0 3px 3px;
}

/* Amenity Pills - Enhanced Glassmorphism */
.amenity-pill {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.amenity-pill:hover {
    box-shadow: 0 4px 20px rgba(201, 162, 39, 0.4), inset 0 0 20px rgba(255, 255, 255, 0.1);
}

/* Stats Section - Dramatic Gold Numbers */
.stat-number {
    font-family: var(--font-display);
    letter-spacing: -0.02em;
}

.stat-number[data-value] {
    animation: count-up 0.5s ease-out;
}

@keyframes count-up {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* CTA Section - Warm Inviting Glow */
.cta-content h2 {
    position: relative;
    display: inline-block;
}

.cta-content h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-light));
    margin: var(--spacing-md) auto 0;
    border-radius: 2px;
}

/* Page Header Enhancements */
.page-header {
    position: relative;
    overflow: hidden;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold) 0%, var(--accent-gold-light) 25%, var(--accent-gold) 50%, var(--accent-gold-light) 75%, var(--accent-gold) 100%);
}

/* Booking Card - Premium Luxury Styling */
.booking-card {
    background: linear-gradient(180deg, var(--white) 0%, var(--parchment-light) 100%);
    border-radius: var(--radius-xl);
}

.booking-price {
    letter-spacing: -0.02em;
}

/* Subtle Hover States */
.btn {
    letter-spacing: 0.02em;
    font-weight: 600;
}

.btn-primary {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn-lg {
    letter-spacing: 0.03em;
}

/* Loading States - Luxury Skeleton */
.skeleton-card {
    background: linear-gradient(90deg, var(--parchment) 0%, var(--parchment-light) 40%, var(--parchment) 80%);
    background-size: 300% 100%;
    animation: skeleton-shimmer 1.5s infinite;
    border: 1px solid var(--sepia);
}

@keyframes skeleton-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Focus States - Accessibility with Gold Accents */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--accent-gold);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .booking-sidebar,
    .compass-rose,
    .compass-decoration,
    .cta-compass,
    .video-control,
    .hero-video-container {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .hero {
        min-height: auto;
        padding: 2rem;
    }

    .btn {
        border: 1px solid black;
    }
}
