/* === Admin Settings Custom Styles === */
.amenity-category-heading {
    margin: 1.25rem 0 0.625rem;
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
}
.amenity-category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.625rem;
    margin-bottom: 1.25rem;
}
.amenity-item {
    padding: 0.625rem;
    background: #f8f9fa;
    border-radius: 4px;
    border-left: 3px solid #3498db;
}
.amenity-description {
    color: #666;
}

.category-table {
    width: 100%;
    border-collapse: collapse;
}
.category-table-header {
    background: #f5f5f5;
    border-bottom: 2px solid #ddd;
}
.category-table-icon,
.category-table-name,
.category-table-amenities,
.category-table-order {
    padding: 0.75rem;
    text-align: left;
}
.category-table-amenities,
.category-table-order {
    text-align: center;
}
.category-table-row {
    border-bottom: 1px solid #eee;
}
.category-table-icon-cell {
    padding: 0.75rem;
    font-size: 1.25rem;
}
.category-table-name-cell {
    padding: 0.75rem;
}
.category-table-amenities-cell,
.category-table-order-cell {
    padding: 0.75rem;
    text-align: center;
}

.room-types-table {
    width: 100%;
    border-collapse: collapse;
}
.room-types-table-header {
    background: #f5f5f5;
    border-bottom: 2px solid #ddd;
}
.room-types-table-type,
.room-types-table-desc {
    padding: 0.75rem;
    text-align: left;
}
.room-types-table-row {
    border-bottom: 1px solid #eee;
}
.room-types-table-type-cell,
.room-types-table-desc-cell {
    padding: 0.75rem;
}
.add-room-type-btn {
    background: #27ae60;
    color: white;
    padding: 0.625rem 1.25rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 1.25rem;
    font-size: 1rem;
    font-weight: 600;
    transition: background 0.2s;
}
.add-room-type-btn:hover {
    background: #219150;
}
/* === System Dashboard Card Custom Styles === */
.value-card-backups {
    text-decoration: none;
    color: inherit;
}

.value-icon-backups {
    background: #4CAF50;
    border-radius: 50%;
    padding: 0.5rem;
}

.value-card-disabled {
    opacity: 0.5;
    pointer-events: none;
}

.value-icon-disabled {
    background: #9E9E9E;
    border-radius: 50%;
    padding: 0.5rem;
}
/* ============================================
   Mammoth Property Rentals - Main Stylesheet
   ============================================ */

/* === CSS Reset & Base Styles === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --primary-color: #2c5f8d;
    --primary-dark: #1a3d5c;
    --primary-light: #4a8fc7;
    --secondary-color: #d97706;
    --secondary-dark: #b45309;
    --accent-color: #10b981;
    --text-dark: #1f2937;
    --text-medium: #4b5563;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --overlay-dark: rgba(0, 0, 0, 0.6);
    
    /* Typography */
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', sans-serif;
    --font-heading: 'Georgia', serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 0.75rem;
    --spacing-md: 1.25rem;
    --spacing-lg: 1.75rem;
    --spacing-xl: 2.5rem;
    --spacing-2xl: 3.5rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
}

body {
    font-family: var(--font-primary);
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
    margin: 0;
    padding: 0;
}

html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
}

h1 { 
    font-size: 1.875rem; 
    font-weight: 700; 
    text-align: center;
    margin-bottom: 0;
}

h2 { 
    font-size: 1.75rem; 
    font-weight: 600; 
    color: var(--primary-color);
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
}

h3 { 
    font-size: 1.25rem; 
    font-weight: 600; 
    margin-bottom: var(--spacing-sm);
}

h4 { font-size: 1.25rem; font-weight: 600; }
h5 { font-size: 1.125rem; font-weight: 600; }
h6 { font-size: 1rem; font-weight: 600; }

@media (max-width: 768px) {
    body { 
        font-size: 16px;
    }
    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.375rem; }
}

p {
    margin-bottom: var(--spacing-md);
    font-size: 1rem;
}

.intro {
    font-size: 1.25rem;
    line-height: 1.4;
    text-align: center;
    max-width: 900px;
    margin: 0 auto calc(var(--spacing-md) / 4);
    color: var(--text-medium);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* === Layout === */
.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

@media (max-width: 768px) {
    .container {
        width: 100%;
        max-width: 100vw;
    }
}

/* === Header === */
.site-header {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    min-height: 85px;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.logo img {
    height: 75px;
    width: auto;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition-normal);
}

.main-nav {
    display: flex;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-sm);
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    display: block;
    padding: var(--spacing-xs) var(--spacing-sm);
    color: var(--text-dark);
    font-weight: 500;
    transition: color var(--transition-fast);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu .btn-book {
    background: var(--secondary-color);
    color: white;
    border-radius: var(--radius-md);
    padding: var(--spacing-xs) var(--spacing-md);
}

.nav-menu .btn-book:hover {
    background: var(--secondary-dark);
    color: white;
}

/* Submenu Styles */
.has-submenu > a::after,
.has-dropdown > a::after {
    content: ' ▾';
    font-size: 0.8rem;
}

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    min-width: 200px;
    padding: var(--spacing-sm) 0;
    list-style: none;
    z-index: 1001;
}

.has-submenu:hover > .submenu,
.has-submenu > a[aria-expanded="true"] + .submenu {
    display: block;
}

.submenu li {
    padding: 0;
    position: relative;
}

.submenu a {
    padding: var(--spacing-xs) var(--spacing-md);
}

/* Third level dropdown - appears to the right */
.submenu-level-2 {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    background: var(--bg-white);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    min-width: 250px;
    padding: var(--spacing-sm) 0;
    list-style: none;
    z-index: 1002;
    margin-left: -1px;
}

.has-dropdown:hover > .submenu-level-2,
.has-dropdown > a[aria-expanded="true"] + .submenu-level-2 {
    display: block;
}

.submenu-level-2 li {
    padding: 0;
}

.submenu-level-2 a {
    padding: var(--spacing-xs) var(--spacing-md);
    display: block;
    white-space: nowrap;
}

.submenu-level-2 a:hover {
    background: var(--gray-100);
}

/* === Hero Section === */
.hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

/* === Page Hero (About, Explore, etc.) === */
.page-hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin-top: calc(var(--spacing-xl) / 2); /* Half spacing from breadcrumbs */
}

.page-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--overlay-dark);
    z-index: 1;
}

.page-hero .hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.page-hero h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.page-hero .hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Hero Carousel Background */
.hero-carousel {
    background-image: none;
}

.hero-carousel-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-carousel-wrapper .carousel-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-carousel-wrapper .carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.8s ease-in-out;
}

.hero-carousel-wrapper .carousel-slide {
    min-width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.hero-carousel-wrapper .carousel-slide.active {
    opacity: 1;
}

.hero-carousel-wrapper .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--overlay-dark);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 800px;
    margin-top: -35px;
}

.hero h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-tagline {
    font-size: 1.5rem;
    font-weight: 500;
    font-style: italic;
    margin-top: 1rem;
    margin-bottom: 1rem;
    color: #FFD966;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
    min-height: 2rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: calc(var(--spacing-xl) - 15px);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: calc(var(--spacing-xl) + 15px);
}

/* === Unified Navigation Button Styles === */
.nav-btn {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    color: white;
    font-size: 2rem;
    line-height: 1;
    padding: 0;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.nav-btn svg {
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Carousel Controls in Hero */
.hero .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
}

.hero .carousel-btn:hover {
    transform: translateY(-50%) scale(1.1);
}

.hero .carousel-btn-prev {
    left: var(--spacing-lg);
}

.hero .carousel-btn-next {
    right: var(--spacing-lg);
}

.hero .carousel-indicators {
    position: absolute;
    bottom: var(--spacing-lg);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    z-index: 3;
}

.hero .carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all var(--transition-fast);
    padding: 0;
    backdrop-filter: blur(4px);
}

.hero .carousel-indicator:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.hero .carousel-indicator.active {
    background: white;
    transform: scale(1.3);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
    .submenu {
        position: static;
        box-shadow: none;
        padding-left: var(--spacing-md);
    }
    
    .submenu-level-2 {
        position: static;
        box-shadow: none;
        padding-left: var(--spacing-md);
        margin-left: 0;
    }
    
    .hero {
        min-height: 400px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }

    .hero .carousel-btn {
        display: none;
    }

    .hero .carousel-indicators {
        bottom: var(--spacing-md);
    }
}

/* === Property Carousel (Deprecated - Now in Hero) === */
.property-carousel-section {
    display: none;
}

/* === Buttons === */
.btn {
    display: inline-block;
    padding: calc(0.94rem - 5px) calc(1.598rem - 5px);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1.317rem;
    line-height: 1;
    font-family: var(--font-primary);
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    text-decoration: none;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.75;
    pointer-events: none;
    cursor: not-allowed;
    transform: none !important;
}

.btn-loading::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-top-color: white;
    border-radius: 50%;
    animation: btn-spin 0.7s linear infinite;
    flex-shrink: 0;
}

@keyframes btn-spin {
    to { transform: rotate(360deg); }
}

.btn-compact {
    display: inline-flex;
    align-items: center;
    padding: calc(0.5rem - 5px) calc(1rem - 5px);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all var(--transition-normal);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
}

.btn-compact:hover {
}

/* Size modifier - handles sizing only, inherits color from .btn-primary */
.btn-large {
    padding: calc(1.315rem - 5px) calc(2.63rem - 5px);
    font-size: 1.75rem;
}

.btn-md {
    display: inline-flex;
    align-items: center;
    font-size: 1rem;
    padding: calc(0.65rem - 5px) calc(1.25rem - 5px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

.btn-white {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-white svg {
    width: 1.125rem;
    height: 1.125rem;
    color: var(--primary-color);
}

.btn-white:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-dark);
    border-color: rgba(255, 255, 255, 0.9);
}

.btn-white:hover svg {
    color: var(--primary-dark);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-block {
    display: block;
    width: 100%;
}

/* === Sections === */
section {
    padding: var(--spacing-xl) 0 var(--spacing-xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: calc(var(--spacing-xl) - 10px);
    margin-top: -10px;
}

.section-header h2 {
    margin-bottom: calc(var(--spacing-sm) + 5px);
}

.section-header p {
    color: var(--text-medium);
    font-size: 1.125rem;
}

/* Header - Full width container */
header .container {
    max-width: 100% !important;
    padding: 0 var(--spacing-md) !important;
}

/* === Property Cards === */
.location-section:not(:last-child) {
    margin-bottom: var(--spacing-2xl);
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.property-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    position: relative;
}

.property-card > a {
    display: block;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* Hover effect for property cards */
.property-card > picture img {
    transition: transform var(--transition-normal);
}

.property-card:hover > picture img {
    transform: scale(1.05);
}

.property-badge {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    background: var(--secondary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    pointer-events: none;
    z-index: 10;
}

.property-content {
    max-width: 1400px; /* REMOVED */
    margin: 0 auto; /* REMOVED */
    padding: 1rem 1.5rem 2rem;
}

.property-content h3 {
    font-size: 1.5rem;
    margin: 0 0 var(--spacing-xs) 0;
}

.property-location {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin-bottom: var(--spacing-sm);
}

.property-description {
    color: var(--text-medium);
    margin-bottom: var(--spacing-md);
}

.property-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.property-features span {
    background: var(--bg-light);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.property-features svg {
    width: 1em;
    height: 1em;
    color: var(--primary-color);
}

.property-location {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.property-location svg {
    color: var(--primary-color);
}

.property-content > .btn {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

/* === Page Header Layouts === */
.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.gallery-tour-button-wrapper {
    text-align: center;
    margin: calc(-0.5rem - 5px) 0 5px;
    padding: 0;
    display: block;
}

.gallery-tour-button-wrapper .btn-compact {
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.centered-button-wrapper {
    text-align: center;
    margin: -0.5rem 0 0;
    padding: 0;
    display: block;
}

.centered-button-wrapper .btn-compact {
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.bottom-nav-wrapper {
    position: relative;
    margin: 3rem 0 2rem;
}

.bottom-nav-wrapper .back-button {
    position: absolute;
    left: 0;
}

.bottom-nav-wrapper .centered-content {
    text-align: center;
}

.text-center-margin {
    text-align: center;
    margin-top: 0.5rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.property-details-section-margin {
    margin-top: 3rem;
}

/* === Form Layouts === */
.form-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-row-3col {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
}

.form-actions {
    display: flex;
    gap: 0.75rem;
}

.form-actions-modal {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.form-actions-modal .btn-primary {
    flex: 1;
}

.form-actions-modal .btn-secondary {
    flex: 0 0 auto;
}

.required-mark {
    color: red;
}

/* === Content Helpers === */
.cancellation-policy-box {
    margin-top: 1rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: var(--radius-md);
}

.cancellation-policy-box p {
    margin: 0;
}

.link-with-margin {
    margin-top: 0.5rem;
}

.form-note {
    margin: 0.5rem 0;
    color: #666;
    font-size: 0.9rem;
}

.section-header-spacing {
    margin-bottom: 1.5rem;
}

.scroll-margin-top {
    scroll-margin-top: 100px;
}

.location-description {
    margin-top: 0;
    margin-bottom: 0;
}

.h2-small-margin {
    margin-bottom: 0.5rem;
}

.section-margin-reset {
    margin-top: 0;
}

.activities-header {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-medium);
}

.activities-section-spacing {
    margin-top: 1rem;
    margin-bottom: 0.75rem;
}

.activities-section-spacing-alt {
    margin-bottom: 1rem;
}

.properties-grid-custom {
    grid-template-columns: repeat(auto-fill, minmax(300px, 350px));
    justify-content: flex-start;
}

.widget-note-span {
    grid-column: 1 / -1;
}

.cta-button-container {
    text-align: center;
    margin-top: 0.5rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.center-margin-2rem {
    text-align: center;
    margin-top: 2rem;
}

/* === Modal States === */
.inquiry-modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.inquiry-modal.active {
    display: flex;
}

/* === Content Intro and Virtual Tour === */
.content-intro {
    margin: 0;
    padding: 0;
    font-size: 1.35rem;
    text-align: center;
    line-height: 1.2;
}

.content-intro .intro {
    margin: 0;
    padding: 0;
}

/* === Photo Gallery Sizing === */
.photo-item {
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.photo-item.fixed-height {
    height: 400px;
}

.photo-item img {
    display: block;
    transition: transform var(--transition-normal);
}

.photo-item.fixed-height img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* === Iframe Styling === */
iframe.map-embed {
    border: 0;
    border-radius: var(--radius-md);
    width: 100%;
}

iframe.calendar-widget {
    border: 0;
    width: 100%;
}

.virtual-tour-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* === Features Grid === */
.features-grid {
    display: block;
    margin-top: 0;
}

.feature {
    text-align: center;
    padding: 0 var(--spacing-lg) calc(var(--spacing-lg) - 30px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    margin-top: 0;
    line-height: 1;
}

/* Feature icon individual colors for SVG icons */
.feature-icon svg { width: 3rem; height: 3rem; }
.feature:nth-child(1) .feature-icon svg { color: #FF6B35; } /* Orange/red for mountains */
.feature:nth-child(2) .feature-icon svg { color: #2196F3; } /* Blue for work */
.feature:nth-child(3) .feature-icon svg { color: #4CAF50; } /* Green for nature */
.feature:nth-child(4) .feature-icon svg { color: #8D6E63; } /* Brown for coffee */

.feature h3 {
    margin-bottom: var(--spacing-sm);
}

/* === CTA Section === */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-md);
    margin-left: calc(-1 * var(--container-padding));
    margin-right: calc(-1 * var(--container-padding));
    width: calc(100% + 2 * var(--container-padding));
}

@media (max-width: 768px) {
    .cta-section {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }
}

.cta-section h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
}

.cta-section p {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-lg);
}

.cta-section .cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* === Testimonials === */
.testimonials {
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.testimonial {
    background: var(--bg-white);
    padding: 0 var(--spacing-lg) calc(var(--spacing-lg) - 25px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.testimonial h4 {
    font-size: 0.875rem;
    margin: 0;
    padding-top: 10px;
    margin-bottom: var(--spacing-xs);
    color: var(--text-dark);
}

.stars {
    color: var(--secondary-color);
    margin-bottom: var(--spacing-sm);
    line-height: 1;
}

.author {
    color: var(--text-medium);
    font-style: italic;
    font-size: 0.9rem;
    margin-top: var(--spacing-sm);
}

/* === Breadcrumbs === */
.breadcrumbs {
    background: var(--bg-light);
    padding: 0.25rem 0;
    font-size: 0.8125rem;
    margin-bottom: 0;
}

.breadcrumbs .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.breadcrumbs ol {
    display: flex;
    list-style: none;
    gap: var(--spacing-xs);
    flex-wrap: wrap;
    margin: 0;
}

.breadcrumbs li::after {
    content: ' /';
    margin-left: var(--spacing-xs);
    color: var(--text-light);
}

.breadcrumbs li:last-child::after {
    content: '';
}

/* === Content Section Spacing After Breadcrumbs === */
/* Ensures consistent spacing between breadcrumbs and page content across all pages */
.page-content,
.faq-section,
.contact-section,
.booking-section {
    padding-top: calc(var(--spacing-xl) / 2);
}

@media (max-width: 768px) {
    .page-content,
    .faq-section,
    .contact-section,
    .booking-section {
        width: 100%;
        max-width: 100vw;
    }
}

/* === Mid-Term Rental Notice === */
.midterm-rental-notice {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid #0ea5e9;
    border-radius: var(--radius-lg);
    padding: 0.75rem;
    margin: 1rem auto;
    width: fit-content;
    max-width: 90%;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.1);
}

.midterm-rental-notice .notice-icon {
    flex-shrink: 0;
    color: var(--primary-color);
    font-size: 2.5rem;
    line-height: 1;
}

.midterm-rental-notice .notice-icon svg {
    width: 1em;
    height: 1em;
}

.midterm-rental-notice .notice-content {
    flex: 1;
}

.midterm-rental-notice p {
    color: #0369a1;
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.6;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: nowrap;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .midterm-rental-notice {
        width: auto;
        flex-direction: column;
        text-align: center;
        padding: 0.625rem;
    }
    
    .midterm-rental-notice .notice-icon {
        margin: 0 auto;
    }
    
    .midterm-rental-notice p {
        font-size: 1rem;
        justify-content: center;
        flex-wrap: wrap;
        white-space: normal;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .midterm-rental-notice .btn {
        display: block;
        margin: 0 auto;
        width: fit-content;
    }
}

.breadcrumbs .contact-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.breadcrumbs .phone-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    background: rgba(44, 95, 141, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: background var(--transition-fast);
}

.breadcrumbs .phone-link:hover {
    background: rgba(44, 95, 141, 0.2);
}

/* === Property Header (Properties Listing Page) === */
.property-header {
    text-align: center;
    padding: 0 0 calc(var(--spacing-lg) / 2) 0;
    background: var(--bg-light);
}

.property-header h1 {
    margin-bottom: calc(var(--spacing-sm) / 2); /* Half the spacing between h1 and subtitle */
}

.property-header .subtitle {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 0;
}

/* Two-column header layout */
.header-two-column {
    display: flex;
    gap: var(--spacing-lg);
    align-items: center;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
}

.header-text {
    flex: 0 0 50%;
    text-align: left;
}

.header-text h1 {
    margin-bottom: calc(var(--spacing-sm) / 2);
}

.header-text .subtitle {
    margin-bottom: var(--spacing-md);
}

.header-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.area-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.property-size {
    margin-top: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-medium);
    font-weight: 500;
}

.property-size .pricing {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    white-space: nowrap;
}

.property-size .pricing svg {
    color: var(--primary-color);
}

.property-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.amenity-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.75rem;
    background: rgba(44, 95, 141, 0.1);
    color: var(--text-dark);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(44, 95, 141, 0.2);
}

.amenity-badge svg,
.amenity-badge i {
    font-size: 0.95rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.more-amenities-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.75rem;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.more-amenities-link:hover {
    background: rgba(44, 95, 141, 0.1);
    color: var(--primary-dark);
}

.more-amenities-link svg,
.more-amenities-link i {
    font-size: 0.8rem;
    flex-shrink: 0;
}

.highlight-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.125rem 0.375rem;
    background: rgba(44, 95, 141, 0.1);
    border-radius: var(--radius-sm);
    color: var(--text-medium);
    font-weight: 500;
}

.highlight-item svg,
.highlight-item i {
    font-size: 1rem;
    flex-shrink: 0;
}

/* Individual icon colors for SVGs */
.highlight-item:has(svg) svg { color: inherit; }

.highlight-item .fa-skiing,
.highlight-item svg[viewBox*="576 512"]:first-child { color: #2196F3; } /* Blue for skiing */
.fa-skiing { color: #2196F3; } /* Blue for skiing */
.fa-snowboarding { color: #00BCD4; } /* Cyan for snowboarding */
.fa-trophy { color: #FFD700; } /* Gold for Olympics */
.fa-bicycle { color: #FF9800; } /* Orange for biking */
.fa-fish-fins { color: #4CAF50; } /* Green for fishing */
.fa-spa { color: #E91E63; } /* Pink for hot springs */
.fa-mountain-sun { color: #795548; } /* Brown for mountains */
.fa-snowflake { color: var(--primary-color); } /* Primary blue for winter */

/* Reno activity icons */
.fa-dice { color: #E91E63; } /* Pink for casinos */
.fa-water { color: #03A9F4; } /* Light blue for Lake Tahoe */
.fa-music { color: #9C27B0; } /* Purple for entertainment */
.fa-utensils { color: #FF5722; } /* Red-orange for dining */
.fa-palette { color: #FF9800; } /* Orange for arts */
.fa-golf-ball-tee { color: #4CAF50; } /* Green for golf */

/* SVG icon colors - apply to specific icon contexts */
.highlight-item svg { color: var(--primary-color); }
.area-highlights .highlight-item:nth-child(1) svg { color: #2196F3; } /* skiing */
.area-highlights .highlight-item:nth-child(2) svg { color: #00BCD4; } /* snowboarding */
.area-highlights .highlight-item:nth-child(3) svg { color: #FFD700; } /* trophy */
.area-highlights .highlight-item:nth-child(4) svg { color: #FF9800; } /* bicycle */
.area-highlights .highlight-item:nth-child(5) svg { color: #4CAF50; } /* fish-fins */
.area-highlights .highlight-item:nth-child(6) svg { color: #E91E63; } /* spa */
.area-highlights .highlight-item:nth-child(7) svg { color: #795548; } /* mountain-sun */
.area-highlights .highlight-item:nth-child(8) svg { color: var(--primary-color); } /* snowflake */

.highlight-link,
.explore-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.125rem 0.375rem;
    background: var(--primary-color);
    border-radius: var(--radius-sm);
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: background var(--transition-fast);
}

.highlight-link svg,
.highlight-link i,
.explore-button svg,
.explore-button i {
    flex-shrink: 0;
}

.highlight-link:hover,
.explore-button:hover {
    background: var(--primary-dark);
    color: white;
}

/* === Page Navigation (Used by property, photo, explore pages) === */
.page-nav {
    background: var(--primary-color);
    border-top: 1px solid var(--primary-dark);
    border-bottom: 1px solid var(--primary-dark);
    position: sticky;
    top: 80px;
    z-index: 100;
    padding: 0;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    width: calc(100% + 3rem);
}

.page-nav-list {
    list-style: none;
    margin: 0;
    padding: 0 1.5rem;
    display: flex;
    justify-content: center;
    gap: 0;
    overflow-x: auto;
    max-width: 1400px;
    margin: 0 auto;
}

.page-nav-list a {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 600;
    line-height: 1.2;
    border-bottom: 3px solid transparent;
    transition: all var(--transition-normal);
    white-space: nowrap;
}

.page-nav-list a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    border-bottom-color: white;
}

@media (max-width: 768px) {
    .page-nav {
        top: 85px;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }
    
    .page-nav::after {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        width: 80px;
        background: linear-gradient(to left, rgba(255, 255, 255, 0.6), transparent);
        pointer-events: none;
        z-index: 1;
    }
    
    .page-nav-list {
        justify-content: flex-start;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }
    
    .page-nav-list::-webkit-scrollbar {
        display: none;
    }
    
    .page-nav-list a {
        padding: 0.375rem 1rem;
        font-size: 0.875rem;
    }
}

/* === Page Navigation Tabs === */
.page-nav {
    background: var(--primary-color);
    border-top: 1px solid var(--primary-dark);
    border-bottom: 1px solid var(--primary-dark);
    position: sticky;
    top: 85px;
    z-index: 100;
    padding: 0;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    width: calc(100% + 3rem);
}

.page-nav::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 80px;
    background: linear-gradient(to left, var(--primary-color), transparent);
    pointer-events: none;
    z-index: 1;
}

.page-nav-list {
    list-style: none;
    margin: 0;
    padding: 0 1.5rem;
    display: flex;
    justify-content: center;
    gap: 0;
    overflow-x: auto;
    max-width: 1400px;
    margin: 0 auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.page-nav-list::-webkit-scrollbar {
    display: none;
}

.page-nav-list a {
    display: block;
    padding: 0.375rem 1rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 3px solid transparent;
    transition: all var(--transition-normal);
    white-space: nowrap;
}

.page-nav-list a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    border-bottom-color: white;
}

.page-nav-wide .page-nav-list {
    justify-content: flex-start;
}

@media (max-width: 768px) {
    .page-nav {
        top: 85px;
    }
    
    .page-nav-list {
        justify-content: flex-start;
    }
    
    .page-nav-list a {
        padding: 0.375rem 1rem;
        font-size: 0.875rem;
    }
}

/* === Property Details Layout === */
.property-details {
    padding: calc(var(--spacing-2xl) / 2) 0 var(--spacing-2xl) 0;
}

.details-grid {
    display: block;
    width: 100%;
}

.details-main {
    width: 100%;
}

.details-sidebar {
    display: none;
}

.property-details-section {
    margin-bottom: 3rem;
    width: 100%;
}

.property-details-section:last-child {
    margin-bottom: 0;
}

.property-details-section h2,
.property-details-section h3 {
    margin-bottom: 1rem;
}

/* Feature tables styling */
.feature-tables {
    width: 100%;
    table-layout: fixed;
}

/* Override margin for h3 inside feature tables */
.feature-tables table h3 {
    margin-bottom: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
}

/* Restore default padding for ul inside feature tables */
.feature-tables table ul {
    padding-left: 2rem;
    margin: 0;
}

/* Remove spacing between <p><strong> headings and following ul in feature tables */
.feature-tables table p {
    margin: 0;
}

.feature-tables table p + ul {
    margin-top: 0;
}

/* Add spacing between the two main columns */
.feature-tables > tbody > tr > td:first-child {
    padding-right: 2rem;
}

/* Add spacing between rows */
.feature-tables > tbody > tr:first-child > td {
    padding-bottom: 2rem;
}

/* Style SVG icons in feature tables */
.feature-tables svg {
    width: 1.5em;
    height: 1.5em;
    color: var(--primary-color);
    display: block;
}

/* Add spacing between icon and heading */
.feature-tables table tr td:first-child {
    padding-right: 0.75rem;
    vertical-align: middle;
}

/* Welcome section gets default centered styling, no special CSS needed */
.welcome-section {
    margin-bottom: 3rem;
}

/* Property details sections use flex for headings with icons */
.property-details-section h2,
.property-details-section h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.property-details-section h2 {
    scroll-margin-top: 7.5rem;
}

/* SVG icons in headings should use primary color */
.property-details-section h2 svg,
.property-details-section h3 svg {
    color: var(--primary-color);
}

.booking-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    width: 100%;
    box-sizing: border-box;
}

.booking-card h3 {
    margin: 0 0 1rem 0;
    font-size: 1.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.booking-card h3 i {
    color: var(--primary-color);
    margin-right: 0.75rem;
}

/* Two-column layout for availability calendar and check availability form */
.ownerrez-api-calendar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
    padding: 0 2rem;
}

.availability-left {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-right: 1rem;
}

.availability-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-left: 1rem;
}

/* Booking form fills its container */
.booking-form {
    margin-top: 1rem;
    width: 100%;
}

/* ===========================
   BOOKING FORM LAYOUT
   ========================== */

/* Form sections (Guest Information, Add-Ons, Booking Summary) */
.booking-form-container {
    margin-bottom: var(--spacing-2xl);
}

.main-booking-form {
    background: var(--bg-light);
    padding: var(--spacing-xl);
    border-radius: var(--radius-md);
    max-width: 90%; /* Responsive - adapts to any screen size */
    margin: 0 auto;
}

/* Form section headings - match contact page h2 style exactly */
.form-section h3,
.booking-summary h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    font-size: 1.5rem;
    margin-top: var(--spacing-xl);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

/* First section shouldn't have top margin */
.form-section:first-of-type h3 {
    margin-top: 0;
}

/* Booking summary heading - remove extra top margin since it's in a box */
.booking-summary h3 {
    margin-top: 0;
}

/* Two column form rows */
.form-row.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

/* Single column form rows */
.form-row:not(.two-columns) {
    margin-bottom: var(--spacing-md);
}

/* Responsive: stack columns on mobile */
@media (max-width: 768px) {
    .form-row.two-columns {
        grid-template-columns: 1fr;
    }
    
    .main-booking-form {
        padding: var(--spacing-md);
    }
}

.booking-form .form-group {
    margin-bottom: 1rem;
}

.booking-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.booking-form input,
.booking-form select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: inherit;
}

/* Addon items styling */
.addons-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.addon-item label {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm);
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background-color 0.2s;
}

.addon-item label:hover {
    background-color: var(--bg-light);
}

.addon-item input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

.addon-label {
    flex: 1;
}

.addon-price {
    font-weight: 600;
    color: var(--primary-color);
}

/* Booking summary */
.booking-summary {
    background: white;
    padding: var(--spacing-md);
    border-radius: var(--radius-sm);
    border: 2px solid var(--primary-color);
    margin-top: var(--spacing-xl);
}

.booking-summary .note {
    color: var(--text-light);
    font-style: italic;
}

.price-note {
    padding: 1rem;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
}

.price-note p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
}

.price-note p:first-child {
    margin-top: 0;
}

.price-note p:last-child {
    margin-bottom: 0;
}

/* === OwnerRez API === */
.ownerrez-api-calendar {
    width: 100%;
}

.availability-calendar {
    margin: 0.5rem 0;
    padding: 0.5rem;
    background: var(--bg-light);
    border-radius: var(--radius-md);
}

.calendar-months {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.calendar-month-container {
    width: 100%;
}

.calendar-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.35rem;
}

.calendar-month {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--primary-color);
}

.calendar-nav {
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    color: var(--primary-color);
    padding: 0.25rem 0.5rem;
    transition: background var(--transition-fast);
}

.calendar-nav:hover {
    background: rgba(44, 95, 141, 0.1);
    border-radius: var(--radius-sm);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
}

.calendar-day-header {
    text-align: center;
    font-weight: 600;
    font-size: 0.625rem;
    color: var(--text-medium);
    padding: 0.15rem 0;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.625rem;
    border-radius: 1px;
    cursor: pointer;
    transition: all var(--transition-fast);
    min-height: 20px;
}

.calendar-day.empty {
    cursor: default;
}

.calendar-day.today {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}

.calendar-day.available {
    background: #e8f5e9;
    color: #2e7d32;
}

.calendar-day.available:hover {
    background: #c8e6c9;
}

.calendar-day.booked {
    background: #ffebee;
    color: #c62828;
    cursor: not-allowed;
}

.calendar-day:not(.empty):not(.booked):not(.available):not(.today) {
    background: white;
    color: var(--text-medium);
}

.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border-color);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.65rem;
}

.legend-color {
    width: 10px;
    height: 10px;
    border-radius: 1px;
}

.legend-color.available {
    background: #e8f5e9;
    border: 1px solid #c8e6c9;
}

.legend-color.booked {
    background: #ffebee;
    border: 1px solid #ffcdd2;
}

.estimated-price {
    margin: 1.5rem 0;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    border: 2px solid var(--primary-color);
}

.price-breakdown {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.price-breakdown span:first-child {
    font-weight: 600;
}

.price-amount {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.price-disclaimer {
    margin: 0;
    font-size: 0.75rem;
    color: var(--text-medium);
    font-style: italic;
}

.widget-note {
    margin-top: 1rem;
    padding: 0.75rem;
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    text-align: center;
}

.widget-note em {
    color: #856404;
}

/* === Rates Section === */
.rates-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.rate-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
}

.rate-card h3 {
    margin: 0 0 1rem 0;
    color: var(--primary-color);
    font-size: 1.25rem;
}

.rate-card .price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.rate-card .price .amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.rate-card .price .period {
    font-size: 1rem;
    color: var(--text-medium);
}

.rate-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.rate-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
}

.rate-label {
    font-weight: 600;
    color: var(--text-dark);
}

.rate-value {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.125rem;
}

.rate-note {
    margin: 1rem 0 0 0;
    font-size: 0.875rem;
    color: var(--text-medium);
    font-style: italic;
}

.rate-info-list {
    list-style: disc;
    padding-left: 1.5rem;
    margin: 0;
}

.rate-info-list li {
    padding: 0.5rem 0;
}

@media (max-width: 968px) {
    .rates-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 968px) {
    .ownerrez-api-calendar {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .rates-container {
        grid-template-columns: 1fr;
    }
}



/* === Inline CTA === */
.inline-cta {
    text-align: center;
    margin: 3rem 0 2rem 0;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--radius-md);
}

.inline-cta p {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-dark);
}

.inline-cta a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color var(--transition-fast);
}

.inline-cta a:hover {
    border-bottom-color: var(--primary-color);
}

/* === Property Contact Bar === */
.property-contact-bar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

/* Contact bar inside property nav */
.property-contact-bar-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.property-contact-bar-nav .contact-text {
    color: rgba(255, 255, 255, 0.9);
}

.property-contact-bar-nav .contact-phone {
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
}

.property-contact-bar-nav .contact-phone:hover {
    background: rgba(255, 255, 255, 0.25);
}

.property-contact-bar-nav svg {
    color: #fff;
}

/* Standalone Sticky Contact Bar */
.sticky-contact-bar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--primary-color);
    padding: 0.75rem 1.5rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.sticky-contact-bar .contact-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.875rem;
    font-weight: 500;
}

.sticky-contact-bar .contact-phone {
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    font-weight: 600;
}

.sticky-contact-bar .contact-phone:hover {
    background: rgba(255, 255, 255, 0.3);
}

.sticky-contact-bar svg {
    color: #fff;
}

.contact-text {
    font-size: 0.875rem;
    color: var(--text-medium);
    white-space: nowrap;
}

.contact-phone {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.75rem;
    background: rgba(44, 95, 141, 0.1);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.contact-phone:hover {
    background: rgba(44, 95, 141, 0.15);
    transform: translateY(-1px);
}

.contact-phone i {
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .breadcrumbs ol {
        display: none;
    }
    
    .breadcrumbs .container {
        justify-content: center;
    }
    
    .property-contact-bar {
        width: 100%;
        justify-content: flex-start;
    }
    
    .property-contact-bar-nav {
        display: none;
    }
    
    .sticky-contact-bar {
        padding: 0.6rem 1rem;
        justify-content: center;
    }
    
    .contact-text {
        font-size: 0.8rem;
    }
    
    .contact-phone {
        font-size: 0.8rem;
        padding: 0.35rem 0.6rem;
    }
}

/* === Sticky Bottom CTA Bar === */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta-bar.visible {
    transform: translateY(0);
}

.sticky-cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    gap: 1rem;
}

/* Desktop: sticky-cta-top acts as flexbox container for left side */
.sticky-cta-top {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 0 0 auto;
}

.sticky-cta-content > .btn {
    margin-left: 1rem;
    margin-right: auto;
}

.sticky-cta-info {
    flex: 0 0 auto;
}

/* Override sticky-contact-info when inside sticky-cta-bar */
.sticky-cta-bar .sticky-contact-info {
    position: static;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    margin-left: auto;
    flex: 0 0 auto;
}

.sticky-contact-info {
    position: fixed;
    bottom: 1rem;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 5px;
    background: #f3f4f6;
    color: var(--text-medium);
    border-radius: var(--radius-md);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.sticky-contact-info.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.sticky-contact-info .contact-text {
    font-size: 0.875rem;
    color: var(--text-medium);
    padding: 0 5px;
}

.sticky-contact-info .contact-phone {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    background: rgba(44, 95, 141, 0.1);
    padding: 5px 10px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: background 0.2s ease;
}

.sticky-contact-info .contact-phone:hover {
    background: rgba(44, 95, 141, 0.2);
}

.scroll-top-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    border: none;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
    margin-left: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.sticky-cta-info h3 {
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
    color: var(--text-dark);
}

.sticky-cta-price {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.sticky-cta-price span {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-medium);
}

.sticky-cta-bar .btn {
    flex: 0 0 auto;
}

@media (max-width: 768px) {
    .sticky-cta-content {
        flex-direction: column;
        gap: 0.375rem;
        padding: 0.375rem 0;
    }
    
    .sticky-cta-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 0.5rem;
        width: 100%;
    }
    
    .sticky-cta-info {
        text-align: left;
        flex: 1;
    }
    
    .sticky-cta-info h3 {
        font-size: 0.8125rem;
        margin: 0 0 0.125rem 0;
        display: block;
    }
    
    .sticky-cta-price {
        font-size: 0.9375rem;
        display: block;
        margin: 0;
    }
    
    .sticky-cta-top .btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
        flex-shrink: 0;
        align-self: center;
    }
    
    .sticky-cta-bar .sticky-contact-info {
        position: static;
        margin: 0 auto;
        flex: 0 0 auto;
        width: auto;
    }
    
    .sticky-contact-info {
        gap: 0.25rem;
        padding: 0.25rem 0.375rem;
        justify-content: center;
    }
    
    .sticky-contact-info .contact-text {
        font-size: 0.75rem;
    }
    
    .sticky-contact-info .contact-phone {
        font-size: 0.75rem;
        padding: 0.1875rem 0.375rem;
    }
    
    .scroll-top-btn {
        width: 26px;
        height: 26px;
        font-size: 14px;
        flex-shrink: 0;
        margin-left: 0.25rem;
    }
}

/* === Amenities Table === */
.amenities-table {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.heading-note {
    font-size: 0.65em;
    font-weight: normal;
    color: var(--text-muted);
}

/* === Location Grid === */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.location-details ul {
    padding-left: 1.5rem;
}

.location-map iframe {
    box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
    .location-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* === Info and Extras Grid === */
.info-extras-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.info-extras-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.info-column,
.fees-column,
.extras-column {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.info-column h2,
.fees-column h2,
.extras-column h2 {
    margin-top: 0;
}

.info-list,
.extras-list {
    padding-left: 1.5rem;
    list-style-position: outside;
}

.info-list li,
.extras-list li {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .info-extras-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* === Scroll Margin for Anchor Links === */
#photos,
#details,
#amenities,
#important-info,
#location,
#availability,
#rates,
#reviews,
#extras,
#mammoth-lakes,
#snowcreek-athletic-club,
#reno {
    scroll-margin-top: 120px;
}

/* === Features Grid === */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 1.5rem;
}

/* ALL FEATURE TABLE CSS DISABLED FOR DEBUGGING
.features-grid .feature-category {
    width: 100%;
    border-collapse: collapse;
}

.features-grid .feature-category .feature-icon {
    width: 1.25rem;
    padding-right: 0.75rem;
    vertical-align: middle;
    color: var(--primary-color);
}

.features-grid .feature-category .feature-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    display: inline-block;
    vertical-align: top;
}

.features-grid .feature-category .feature-content {
    vertical-align: top;
}

.features-grid .feature-category .feature-content h3 {
    color: var(--primary-color);
}

.features-grid .feature-category .feature-content ul {
    list-style: disc;
    padding: 0 0 0 1.5rem;
    margin: 0;
}

.features-grid .feature-category .feature-content ul li {
    padding: 0;
    margin: 0 0 0.5rem 0;
}
END ALL FEATURE TABLE CSS DISABLED */

/* TEMPORARILY DISABLED FOR DEBUGGING
.features-grid .feature-category {
    width: 100%;
    border-collapse: collapse;
    border: 3px solid black;
}

.features-grid .feature-category td {
    border: 1px solid gray;
}

.features-grid .feature-category tr:nth-child(1) {
    background-color: #ffe0e0;
}

.features-grid .feature-category tr:nth-child(2) {
    background-color: #e0e0ff;
}

.features-grid .feature-category .feature-icon {
    width: 1.25rem;
    padding-right: 0.75rem;
    vertical-align: middle;
    color: var(--primary-color);
    border: 2px solid red;
}

.features-grid .feature-category .feature-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    display: inline-block;
    vertical-align: top;
    border: 2px solid orange;
}

.features-grid .feature-category .feature-content {
    vertical-align: top;
    border: 2px solid blue;
    padding: 0;
}

.features-grid .feature-category .feature-content h3 {
    border: 2px solid green;
}

.features-grid .feature-category .feature-content ul {
    list-style: disc;
    padding: 0 0 0 1.5rem;
    margin: 0;
    border: 2px solid purple;
}

.features-grid .feature-category .feature-content ul {
    list-style: disc;
    padding: 0 0 0 1.5rem;
    margin: 0;
}

.features-grid .feature-category .feature-content ul li {
    padding: 0;
    margin: 0 0 0.5rem 0;
}

.features-grid .feature-category ul li i.fa-check {
    color: var(--primary-color);
    margin-top: 0.25rem;
    flex-shrink: 0;
}
END TEMPORARILY DISABLED */

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* === Section Headings with Icons === */
.property-details-section h2 svg,
.property-details-section h2 i,
.feature-category h3 svg,
.feature-category h3 i {
    margin-right: 0.75rem;
    vertical-align: middle;
}

.booking-card h3 svg,
.booking-card h3 i {
    margin-right: 0.75rem;
    vertical-align: middle;
}

/* Icon colors for all h2 sections */
.property-details-section h2 svg,
.property-details-section h2 i,
.feature-category h3 svg {
    color: var(--primary-color);
}

.amenity-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    border-bottom: 1px solid var(--border-color);
}

.amenity-row:last-child {
    border-bottom: none;
}

.amenity-label {
    padding: 1rem;
    background: var(--bg-light);
    border-right: 1px solid var(--border-color);
}

.amenity-value {
    padding: 1rem 1.5rem;
    background: white;
}

/* Style amenity lists */
.amenity-value ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.2rem 0;
}

.amenity-value ul li {
    position: relative;
    line-height: 1.2;
    margin-right: 0.75rem;
}

/* Hide bullet on first item */
.amenity-value ul li:first-child::before {
    display: none;
}

/* Add bullet before all items except first */
.amenity-value ul li:not(:first-child)::before {
    content: "•";
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1em;
    margin-right: 0.5rem;
}

/* Style bullets in bathroom and sleeping arrangement sections */
.amenity-row.bathroom .bullet,
.amenity-row.sleeping .bullet {
    color: var(--secondary-color);
    font-weight: bold;
}

@media (max-width: 768px) {
    .amenity-row {
        grid-template-columns: 1fr;
    }
    
    .amenity-label {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding: 0.75rem 1rem;
    }
    
    .amenity-value {
        padding: 1rem 1.25rem;
        line-height: 1.8;
        font-size: 14px;
    }
}


.header-carousel {
    flex: 0 0 45%;
    position: relative;
}

.carousel-view-all-link {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 100;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.carousel-view-all-link:hover {
    background: #2c5f8d;
    color: white;
}

.carousel-caption {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    color: white;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9), 
                 -1px -1px 2px rgba(0, 0, 0, 0.8),
                 1px -1px 2px rgba(0, 0, 0, 0.8),
                 -1px 1px 2px rgba(0, 0, 0, 0.8),
                 0 0 10px rgba(0, 0, 0, 0.7);
}

.header-carousel-container {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 2;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 3px solid rgba(44, 95, 141, 0.2);
}

.header-carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
    pointer-events: none;
}

.header-carousel-slide.active {
    opacity: 1;
    z-index: 2;
    pointer-events: auto;
}

.header-carousel-slide a {
    display: block;
    width: 100%;
    height: 100%;
}

.header-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* View All Photos Link Overlay */
.carousel-photo-link {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    display: block;
    text-decoration: none;
    text-align: center;
}

.carousel-photo-overlay {
    display: inline-block;
    background: rgba(44, 95, 141, 0.95);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px 8px 0 0;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.carousel-photo-link:hover .carousel-photo-overlay {
    background: rgba(26, 61, 92, 0.98);
    transform: translateY(-3px);
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive layout */
@media (max-width: 968px) {
    .header-two-column {
        flex-direction: column;
        gap: var(--spacing-lg);
    }
    
    .header-text {
        flex: 1;
        text-align: center;
        order: 2;
    }
    
    .header-carousel {
        order: 1;
    }
    
    .header-buttons {
        justify-content: center;
    }
    
    .header-carousel {
        flex: 1;
        width: 100%;
        max-width: 100%;
    }
    
    .header-carousel-container {
        width: 100%;
        max-width: 100%;
        height: 50vw;
        max-height: 400px;
    }
    
    .header-carousel-slide {
        line-height: 0;
    }
    
    .header-carousel-slide img {
        width: 100%;
        max-width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    
    /* Reduce property detail page header CTA buttons by ~1/3 on mobile */
    .property-details .header-two-column .text-center-margin .btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }
}

/* === Forms === */
.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group.checkbox label {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-weight: normal;
}

.form-group.checkbox input {
    width: auto;
}

.required {
    color: #dc2626;
}

/* Legacy alias for backwards compatibility */
.section-nav { @extend .page-nav; }
.section-nav-list { @extend .page-nav-list; }

/* === Footer === */
.site-footer,
.site-footer p,
.site-footer a,
.site-footer li {
    font-size: 1rem !important;
    line-height: 1.5 !important;
    font-weight: normal !important;
}

.site-footer strong {
    font-size: 1rem !important;
    line-height: 1.5 !important;
    font-weight: bold !important;
}

.site-footer h3,
.site-footer h4 {
    font-size: 1.25rem !important;
    line-height: 1.5 !important;
    font-weight: 600 !important;
}

.site-footer {
    background: var(--text-dark);
    color: #9ca3af;
    padding: var(--spacing-lg) 0 0 0;
    margin: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-sitemap {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sitemap-columns {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--spacing-lg);
    max-width: max-content;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0;
}

.footer-links strong {
    color: #e5e7eb;
}

.footer-links strong a {
    color: #e5e7eb;
}

.footer-links strong a:hover {
    color: white;
}

.footer-links a {
    color: #9ca3af;
}

.footer-links a:hover {
    color: white;
}

.footer-submenu,
.footer-submenu-level-2,
.footer-submenu-level-3 {
    list-style: none;
    margin-top: 0;
    padding-left: 0;
}

.footer-submenu {
    margin-left: 0.625rem;
}

.footer-submenu-level-2 {
    margin-left: 0.875rem;
}

.footer-submenu-level-3 {
    margin-left: var(--spacing-md);
}

.footer-submenu li,
.footer-submenu-level-2 li,
.footer-submenu-level-3 li {
    margin-bottom: 0;
    position: relative;
}

.footer-submenu li,
.footer-submenu-level-2 li {
    padding-left: 1rem;
}

.footer-submenu-level-3 li {
    padding-left: 0.625rem;
}

.footer-submenu li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--primary-light);
}

.footer-submenu-level-2 li::before {
    content: "▹";
    color: var(--primary-light);
}

.footer-submenu-level-3 li::before {
    content: "›";
    color: rgba(255, 255, 255, 0.5);
}

.footer-submenu strong {
    color: #d1d5db;
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
}

.social-links a {
    color: #9ca3af;
    transition: color var(--transition-fast);
}

.social-links a:hover {
    color: white;
}

.footer-section p a {
    color: var(--primary-light);
    transition: color var(--transition-fast);
}

.footer-section p a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding: var(--spacing-md) 0 var(--spacing-xl) 0;
    margin: 0;
    border-top: 1px solid #374151;
}

.footer-bottom p {
    margin: 0;
    padding: 0;
}

/* === Responsive Design === */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    
    .site-footer {
        padding-bottom: 2.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-sitemap {
        grid-column: span 1;
    }
    
    .sitemap-columns {
        grid-template-columns: 1fr;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        box-shadow: var(--shadow-lg);
    }
    
    .main-nav.active {
        display: block;
    }
    
    .nav-menu {
        flex-direction: column;
        padding: var(--spacing-md);
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu .btn-book {
        width: fit-content;
        max-width: 80%;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
    
    .submenu {
        position: static;
        box-shadow: none;
        padding-left: var(--spacing-md);
    }
    
    .hero {
        min-height: 400px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .properties-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .properties-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* === Utility Classes === */
.text-center { text-align: center; }
.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }
.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }
.lead { font-size: 1.25rem; line-height: 1.7; }

/* === Explore Page Styles === */
.destination-section {
    margin-bottom: var(--spacing-2xl);
}

.destination-section h2 {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.section-intro {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.activity-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    transition: all var(--transition-normal);
}

.activity-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.activity-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
}

.activity-icon svg {
    width: 40px;
    height: 40px;
}

.activity-card h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    font-size: 1.25rem;
}

.activity-card p {
    color: var(--text-medium);
    margin-bottom: var(--spacing-sm);
    line-height: 1.6;
}

.activity-card p:last-child {
    margin-bottom: 0;
}

.highlight-section {
    background: var(--bg-light);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-2xl);
    text-align: center;
}

.highlight-section h2 {
    margin-bottom: var(--spacing-md);
}

.cta-buttons {
    margin-top: var(--spacing-lg);
}

.attractions-highlight {
    margin-top: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: var(--bg-light);
    border-radius: var(--radius-lg);
}

.attractions-highlight h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.attractions-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.attractions-list li {
    padding: var(--spacing-md);
    background: var(--bg-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.seasonal-section {
    margin-bottom: var(--spacing-2xl);
}

.seasonal-section h3 {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: var(--spacing-xl);
    color: var(--text-dark);
}

.seasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.season-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    transition: all var(--transition-normal);
}

.season-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.season-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.season-icon svg {
    width: 48px;
    height: 48px;
}

.season-card h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    font-size: 1.25rem;
}

.season-card ul {
    text-align: left;
    list-style: disc;
    padding-left: var(--spacing-lg);
}

.season-card li {
    color: var(--text-medium);
    margin-bottom: var(--spacing-xs);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .destination-section h2 {
        text-align: center;
        padding-left: 0;
        padding-right: 0;
        margin-left: 0;
        margin-right: 0;
    }
    
    .section-intro {
        text-align: center;
        padding-left: 0;
        padding-right: 0;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }
    
    .activities-grid {
        grid-template-columns: 1fr;
    }
    
    .seasons-grid {
        grid-template-columns: 1fr;
    }
    
    .attractions-list {
        grid-template-columns: 1fr;
    }
}

/* === About Page Styles === */
.page-header-section {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.page-header-content h1 {
    margin-bottom: 0;
}

.content-with-image {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
    width: 100%;
    overflow: hidden;
}

.content-column h2 {
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-md);
}

.content-column h2:first-of-type {
    margin-top: 0;
}

.image-column {
    position: sticky;
    top: 100px;
    align-self: start;
}

.image-caption {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-light);
    font-style: italic;
}

.image-caption p {
    margin: 0;
}

@media (max-width: 968px) {
    .content-with-image {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        margin-bottom: 0;
        gap: 0;
    }
    
    .content-column {
        margin-bottom: 0.5rem;
    }
    
    .content-column h2 {
        text-align: center;
        margin-bottom: 0.75rem;
    }
    
    .content-column p {
        margin-bottom: 0.5rem;
    }
    
    .content-column p:last-child {
        margin-bottom: 0;
    }
    
    .destination-section {
        padding-top: 1rem;
        padding-bottom: 0;
        margin-bottom: 0;
    }
    
    .destination-section .container {
        padding-bottom: 0;
    }
    
    .page-content {
        padding-bottom: 0 !important;
        margin-bottom: 0 !important;
    }
    
    .page-content .container {
        padding-bottom: 0 !important;
    }
    
    .image-column {
        position: static;
        margin-top: 0;
        margin-bottom: 0;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    .image-column .image-caption {
        margin-top: 0.25rem;
        margin-bottom: 0;
    }
    
    .image-column .header-carousel {
    }
    
    .page-nav {
        margin-top: 0.5rem;
    }
    
    .mission-section {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
        padding: 3rem 1.25rem !important;
    }
    
    .seasonal-section {
        margin-top: 2rem;
    }
    
    .image-column img,
    .image-column picture,
    .image-column picture img {
        max-width: 100%;
        width: 100%;
        height: auto;
        display: block;
    }
}

.about-section {
    margin-bottom: var(--spacing-xl);
}

.about-section h2 {
    margin-bottom: var(--spacing-md);
}

.mission-section {
    background: var(--bg-light);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    margin: var(--spacing-2xl) 0;
    text-align: center;
}

.mission-section h2 {
    margin-bottom: var(--spacing-lg);
}

.mission-statement {
    max-width: 800px;
    margin: 0 auto;
}

.large-text {
    font-size: 1.5rem;
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
    font-weight: 500;
}

.properties-section {
    margin-bottom: var(--spacing-2xl);
}

.properties-section h2 {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.properties-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
}

.property-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.highlight {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    transition: all var(--transition-normal);
}

.highlight:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.highlight-icon {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-icon svg {
    width: 40px;
    height: 40px;
}

.highlight h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    font-size: 1.125rem;
}

.highlight p {
    color: var(--text-medium);
    margin: 0;
    font-size: 0.9375rem;
}

.commitment-section {
    margin-bottom: var(--spacing-2xl);
}

.commitment-section h2 {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.commitment-list {
    list-style: disc;
    padding-left: var(--spacing-xl);
    max-width: 900px;
    margin: 0 auto;
}

.commitment-list li {
    margin-bottom: var(--spacing-md);
    padding-left: var(--spacing-sm);
}

.why-destinations {
    margin-bottom: var(--spacing-2xl);
}

.why-destinations h2 {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.destination-info {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
}

.destination-info h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    font-size: 1.5rem;
}

.values-section {
    margin-bottom: var(--spacing-2xl);
}

.values-section h2 {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

/* ============================================================================
   SITE DEFAULT CARD LAYOUT CLASSES - USE THESE ACROSS THE ENTIRE SITE
   ============================================================================
   
   .values-grid and .value-card are the STANDARD classes for card-based layouts
   throughout the entire site. Use these for ANY multi-column card layout.
   
   Current Usage:
   - About page (company values, team info)
   - FAQ page (FAQ items)
   - Apply pages (application types, requirements, process steps)
   - Property pages (amenities, features)
   
   Structure Pattern:
   <div class="values-grid">
       <div class="value-card">
           <div class="value-icon"><?php echo svg_icon('icon-name'); ?></div>
           <h3>Card Title</h3>
           <p>Card content...</p>
       </div>
   </div>
   
   ⚠️ WARNING: DO NOT MODIFY THESE CLASSES WITHOUT TESTING ACROSS ALL PAGES
   Changes to .values-grid or .value-card will affect the entire site.
   If you need custom styling, create page-specific classes instead.
   ============================================================================ */

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.value-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    transition: all var(--transition-normal);
}

.value-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon svg {
    width: 48px;
    height: 48px;
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    font-size: 1.25rem;
}

.value-card p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* === FAQ Page Styles === */
/* FAQ Content Section */
.faq-section {
    padding-top: calc(var(--spacing-xl) / 2);
}

/* Old TOC styles - kept for backwards compatibility but not used */
.faq-toc {
    background: var(--bg-light);
    border: none;
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    margin-left: auto;
    margin-right: auto;
    max-width: 900px;
    text-align: center;
}

.faq-toc h2 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    font-size: 1.5rem;
}

.toc-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-xs);
    max-width: 900px;
    margin: 0 auto;
}

.toc-list li {
    margin: 0;
}

.toc-list a {
    display: block;
    padding: calc(var(--spacing-sm) * 0.67) calc(var(--spacing-md) * 0.67);
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: var(--radius-md);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.toc-list a:hover {
    background: var(--bg-white);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.faq-section h2,
.faq-categories h2 {
    margin-top: var(--spacing-xl);
    margin-bottom: calc(var(--spacing-md) / 2);
    border-bottom: 2px solid var(--primary-color);
    margin-left: calc(-1 * var(--spacing-md));
    margin-right: calc(-1 * var(--spacing-md));
    padding-left: var(--spacing-md);
    padding-right: var(--spacing-md);
    width: calc(100% + (2 * var(--spacing-md)));
    scroll-margin-top: 7.5rem;
}

.faq-grid {
    display: grid;
    gap: calc(var(--spacing-sm) / 2);
}

.faq-item {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: calc(var(--spacing-md) / 2) 0;
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: calc(var(--spacing-sm) / 2);
    font-size: 1.25rem;
}

.faq-item p {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
    font-size: 1.0625rem;
}

.faq-item p:last-child {
    margin-bottom: 0;
}

.faq-item ul, .faq-item ol {
    color: var(--text-medium);
    line-height: 1.6;
    margin-left: var(--spacing-lg);
    font-size: 1.0625rem;
}

.faq-item li {
    margin-bottom: var(--spacing-xs);
}

/* FAQ Contact CTA Section - Full Width Like Other CTAs */
/* === Contact Page Styles === */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    margin-top: var(--spacing-xl);
}

/* ===========================
   BOOKING PAGE - WHY BOOK DIRECT SECTION
   ========================== */

.why-book-direct {
    background: var(--bg-light);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    margin-top: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
}

.why-book-direct h2 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
}

.benefit {
    text-align: center;
    padding: var(--spacing-sm);
}

.benefit-icon {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    display: flex;
    justify-content: center;
    align-items: center;
}

.benefit-icon svg {
    width: 32px;
    height: 32px;
}

.benefit h3 {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xs);
    color: var(--text-color);
}

.benefit p {
    color: var(--text-light);
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Booking policies section */
.booking-policies {
    background: var(--bg-light);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    margin-top: var(--spacing-2xl);
    margin-bottom: 0;
}

.booking-policies h2 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.policies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.policy {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
}

.policy h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
}

.policy ul {
    list-style: none;
    padding: 0;
}

.policy li {
    padding: var(--spacing-xs) 0;
    line-height: 1.6;
}

/* Booking CTA - Match FAQ CTA styling exactly */


@media (max-width: 768px) {
    .benefits-grid,
    .policies-grid {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   LEGAL PAGES (TERMS, PRIVACY POLICY)
   ========================== */

.legal-page {
    max-width: 900px;
    margin: 0 auto;
}

.legal-page .intro {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
}

.legal-section {
    margin-top: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
}

.legal-section h3 {
    font-size: 1.25rem;
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    color: var(--text-color);
    font-weight: 600;
}

.legal-section ul {
    margin-left: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.legal-section li {
    margin-bottom: var(--spacing-sm);
    line-height: 1.8;
}

.legal-section p {
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.last-updated {
    text-align: center;
    margin-top: var(--spacing-md);
    margin-bottom: calc(var(--spacing-md) / 16);
}

.terms-section {
    padding-bottom: calc(var(--spacing-xl) / 4);
}

/* ==========================================
   TERMS NAVIGATION (matching FAQ style)
   ========================================== */
   
.terms-nav {
    background: var(--primary-color);
    border-top: 1px solid var(--primary-dark);
    border-bottom: 1px solid var(--primary-dark);
    position: sticky;
    top: 80px;
    z-index: 100;
    padding: 0.125rem 0;
    margin-top: calc(var(--spacing-md) * -0.5);
}

.terms-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    padding: 0;
    line-height: 1;
}

.terms-tabs a {
    padding: 0.25rem 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    border-bottom: 3px solid transparent;
    transition: all var(--transition-normal);
    white-space: nowrap;
    line-height: 1.2;
}

.terms-tabs a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    border-bottom-color: white;
}

.terms-content {
    padding-top: 0.125rem;
}

.terms-content .legal-section:first-of-type {
    margin-top: 2rem;
}

.terms-content .legal-section h2 {
    margin-top: 0;
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    margin-left: -1.25rem;
    margin-right: -1.25rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    width: calc(100% + 2.5rem);
    scroll-margin-top: 7.5rem;
}

.terms-content .legal-section {
    margin-top: 4rem;
    margin-bottom: 0.625rem;
    padding: 0;
}

.terms-content .legal-section > *:last-child {
    margin-bottom: 0;
}

.terms-content .legal-section ul {
    margin-bottom: 0;
}

/* ==========================================
   PRIVACY POLICY NAVIGATION (matching Terms/FAQ style)
   ========================================== */

.privacy-section {
    padding-bottom: 1.25rem;
}

.privacy-nav {
    background: var(--primary-color);
    border-top: 1px solid var(--primary-dark);
    border-bottom: 1px solid var(--primary-dark);
    position: sticky;
    top: 80px;
    z-index: 100;
    padding: 0;
    margin-top: calc(var(--spacing-md) * -0.5);
}

.privacy-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    padding: 0;
    overflow-x: auto;
}

.privacy-tabs a {
    padding: 0.375rem 1rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    border-bottom: 3px solid transparent;
    transition: all var(--transition-normal);
    white-space: nowrap;
}

.privacy-tabs a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    border-bottom-color: white;
}

.privacy-content {
    padding-top: 0.125rem;
}

.privacy-content .legal-section:first-of-type {
    margin-top: 2rem;
}

.privacy-content .legal-section h2 {
    margin-top: 0;
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    margin-left: -1.25rem;
    margin-right: -1.25rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    width: calc(100% + 2.5rem);
    scroll-margin-top: 7.5rem;
}

.privacy-content .legal-section {
    margin-top: 4rem;
    margin-bottom: 0.625rem;
    padding: 0;
}

.privacy-content .legal-section > *:last-child {
    margin-bottom: 0;
}

.privacy-content .legal-section ul {
    margin-bottom: 0;
}

/* ==========================================
   LEGAL LINKS SECTION
   ========================================== */
    margin-top: var(--spacing-2xl);
    padding: var(--spacing-xl);
    background: var(--bg-light);
    border-radius: var(--radius-md);
}

.legal-links h2 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
}

.legal-links ul {
    list-style: none;
    padding: 0;
}

.legal-links li {
    margin-bottom: var(--spacing-sm);
}

.legal-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.legal-links a:hover {
    text-decoration: underline;
}

/* ===========================
   CONTACT PAGE
   ========================== */

.contact-info-column h2,
.contact-form-column h2 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    font-size: 1.5rem;
}

.contact-methods {
    margin-top: var(--spacing-lg);
}

.contact-method {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-md);
    background: var(--bg-light);
    border-radius: var(--radius-md);
}

.method-icon {
    flex-shrink: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
    display: flex;
    align-items: flex-start;
    padding-top: 0.25rem;
}

.method-icon svg {
    width: 32px;
    height: 32px;
}

.method-content h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
    font-size: 1.125rem;
}

.method-content p {
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
}

.method-content .note {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

/* =========================================== */
/* STANDARD FORM BUTTON STYLING */
/* =========================================== */
/* All form submit buttons should be:
   1. Centered under the form (display: block, margin: 0 auto)
   2. Use .btn .btn-primary classes for consistent styling
   3. Have margin-top: 0.5rem for spacing
   
   Exception: Multiple buttons in .form-actions (side-by-side) 
   maintain their flex layout but are still centered as a group */

.contact-form button[type="submit"],
.booking-form button[type="submit"] {
    margin-top: 0.5rem;
    margin-bottom: 2rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* OwnerRez API Styling */
/* OwnerRez API buttons automatically inherit the standard form button styling above */
.ownerrez-api-container {
    width: 100%;
    max-width: 100%;
}
/* Override OwnerRez default styles to match site design */
.ownerrez-api-container input,
.ownerrez-api-container select,
.ownerrez-api-container textarea {
    width: 100% !important;
    padding: 0.75rem !important;
    border: 1px solid var(--border-color) !important;
    border-radius: var(--radius-md) !important;
    font-family: inherit !important;
    font-size: 1rem !important;
    margin-bottom: var(--spacing-md) !important;
}

.ownerrez-api-container input:focus,
.ownerrez-api-container select:focus,
.ownerrez-api-container textarea:focus {
    outline: none !important;
    border-color: var(--primary-color) !important;
}

.ownerrez-api-container label {
    display: block !important;
    margin-bottom: var(--spacing-xs) !important;
    font-weight: 600 !important;
    color: var(--text-dark) !important;
}

.ownerrez-api-container button[type="submit"],
.ownerrez-api-container .orw-submit-button {
    display: block !important;
    margin: 0.5rem auto 0 auto !important;
    padding: 1rem 2.5rem !important;
    background: var(--primary-color) !important;
    color: white !important;
    border: none !important;
    border-radius: var(--radius-md) !important;
    font-size: 1.125rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all var(--transition-fast) !important;
}

.ownerrez-api-container button[type="submit"]:hover,
.ownerrez-api-container .orw-submit-button:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(44, 95, 141, 0.3) !important;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* === Legal Page Styles === */
.legal-page h1 {
    color: var(--primary-color);
}

.last-updated {
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
}

.legal-section {
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.legal-section h2 {
    color: var(--primary-color);
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-md);
}

.legal-section h3 {
    color: var(--primary-dark);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
    font-size: 1.125rem;
}

.legal-section ul, .legal-section ol {
    margin-left: var(--spacing-xl);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

.legal-section li {
    margin-bottom: var(--spacing-xs);
    color: var(--text-medium);
}

/* === Smooth Scroll === */
html {
    scroll-behavior: smooth;
}

/* === Photo Gallery and Virtual Tour Page Styles === */

/* Override h1 and subheading styles for property content pages */
.property-content h1 {
    font-size: 1.875rem !important;
    margin: 0;
    text-align: center;
}

.property-content .subheading {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1rem;
    text-align: center;
}

.section-heading {
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
    margin: 0.125rem -1.5rem 0.5rem;
    border-bottom: 2px solid var(--primary-color);
    width: calc(100% + 3rem);
}

.photo-nav ~ .section-heading:last-of-type {
    margin-top: 2rem;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    width: calc(100% + 3rem);
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
    margin-bottom: 0.75rem;
    gap: 0.75rem;
}

.page-header .btn-compact:first-child {
    order: 1;
    flex: 0 0 auto;
}

.page-header .btn-compact:last-child {
    order: 2;
    flex: 0 0 auto;
}

.page-header h1 {
    order: 3;
    flex-basis: 100%;
    text-align: center;
    margin: 0;
    font-size: 1.5rem;
}

.virtual-tour-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background: #000;
    border-radius: 8px;
    margin: 0;
}

.virtual-tour-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* === Photo Gallery Page Styles === */

/* Slideshow Styles */
.slideshow-container {
    max-width: 100%;
    height: 400px;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    margin-bottom: 0.5rem;
    scroll-margin-top: 85px;
}

.slideshow-slide {
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.slideshow-slide.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.slideshow-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.slideshow-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    z-index: 100;
    pointer-events: none;
}

.slideshow-btn {
    pointer-events: auto;
}

/* Slideshow Filter Buttons */
.slideshow-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-bottom: 15px;
    justify-content: center;
}

.slideshow-filter-btn {
    padding: 0.25rem 0.5rem;
    background: #f0f0f0;
    border: 2px solid #ddd;
    border-radius: 6px;
    color: #333;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.slideshow-filter-btn:hover {
    background: #e0e0e0;
    border-color: var(--primary-color);
}

.slideshow-filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Photo Navigation Menu */
.photo-nav {
    background: var(--primary-color, #2c5f8d);
    border-top: 1px solid var(--primary-dark, #1a3d5c);
    border-bottom: 1px solid var(--primary-dark, #1a3d5c);
    position: sticky;
    top: 80px;
    z-index: 100;
    margin-bottom: 2rem;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    width: calc(100% + 3rem);
}

.photo-nav nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    justify-content: center;
}

.photo-nav a {
    padding: 0.375rem 1rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 600;
    border-bottom: 3px solid transparent;
}

.photo-nav a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    border-bottom-color: white;
}

/* Photo Sections */
.photo-section {
    scroll-margin-top: 120px;
    margin-bottom: 50px;
}

.photo-section h2 {
    margin-left: -1.25rem;
    margin-right: -1.25rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--primary-color);
    width: calc(100% + 2.5rem);
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    align-items: start;
}

.photo-item {
    cursor: pointer;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s;
    position: relative;
    display: block;
    line-height: 0;
}

.photo-item:hover {
    transform: scale(1.02);
}

.photo-item img {
    width: 100%;
    height: auto;
    display: block;
}

.photo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.25rem 0.75rem 0.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 30%, rgba(0,0,0,0.3) 60%, transparent 100%);
    font-size: 0.85rem;
    color: white;
    text-align: center;
    line-height: 1.3;
}

/* Slideshow Caption */
.slideshow-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.5rem 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 40%, rgba(0,0,0,0.3) 70%, transparent 100%);
    font-size: 0.95rem;
    color: white;
    text-align: center;
    z-index: 10;
    line-height: 1.3;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    position: relative;
    display: inline-block;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    display: block;
}

.lightbox-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 30%, rgba(0,0,0,0.4) 60%, transparent 100%);
    font-size: 1rem;
    color: white;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 3rem;
    color: white;
    cursor: pointer;
    z-index: 10001;
    background: transparent;
    border: none;
    padding: 0;
    line-height: 1;
}

.lightbox-close:hover {
    color: #ccc;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10001;
}

.lightbox-nav:hover {
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 40px;
}

.lightbox-next {
    right: 40px;
}

/* Photo Gallery Responsive Styles */
@media (max-width: 768px) {
    .slideshow-container {
        height: auto;
        min-height: auto;
        max-height: none;
    }
    
    .slideshow-slide.active {
        align-items: center;
    }
    
    .slideshow-slide img {
        width: 100%;
        height: auto;
        display: block;
    }
    
    .slideshow-btn {
        width: 2.25rem;
        height: 2.25rem;
        font-size: 1.25rem;
    }
    
    .lightbox-nav.nav-btn {
        width: 2.25rem;
        height: 2.25rem;
        font-size: 1.25rem;
    }
    
    .lightbox-close {
        font-size: 2rem;
        right: 1rem;
        top: 1rem;
    }
    
    .photo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .photo-item.fixed-height {
        height: auto;
    }
    
    .photo-item {
        line-height: 0;
    }
    
    .photo-item-400 {
        height: auto;
    }
    
    .photo-img-cover {
        height: auto;
        object-fit: contain;
    }
    
    .photo-item.fixed-height img {
        height: auto;
        width: 100%;
        display: block;
        line-height: 0;
    }
    
    /* Mobile photo nav positioning - Updated 2026-01-05 */
    .photo-nav {
        top: 5rem;
        z-index: 99;
    }
    
    .photo-section {
        scroll-margin-top: 9rem;
    }
    
    .photo-section h2 {
        margin-top: 0;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }
    
    /* Mobile scroll offsets for FAQ and explore pages - larger to account for sticky header + nav */
    .faq-section h2,
    .faq-categories h2,
    .destination-section h2,
    .scroll-offset {
        scroll-margin-top: 7.5rem;
    }
    
    .terms-content .legal-section h2,
    .privacy-content .legal-section h2 {
        margin-left: -1.25rem;
        margin-right: -1.25rem;
        padding-left: 1.25rem;
        padding-right: 1.25rem;
        width: calc(100% + 2.5rem);
    }
    
    .bottom-nav-wrapper {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        position: relative;
        margin: 2rem 0;
    }
    
    .bottom-nav-wrapper .back-button,
    .bottom-nav-wrapper > a {
        position: static;
    }
    
    .bottom-nav-wrapper .centered-content {
        width: 100%;
        text-align: center;
    }
    
    .photo-nav::after {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        width: 80px;
        background: linear-gradient(to left, rgba(255, 255, 255, 0.6), transparent);
        pointer-events: none;
        z-index: 1;
    }
    
    .photo-nav nav {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 0.25rem;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        justify-content: flex-start;
        padding: 0;
        padding-right: 3rem;
    }
    
    .photo-nav nav::-webkit-scrollbar {
        display: none;
    }
    
    .photo-nav a {
        padding: 0.5rem 0.875rem;
        border-bottom: 3px solid transparent;
        flex-shrink: 0;
        white-space: nowrap;
        font-size: 0.8125rem;
    }
    
    .photo-nav a {
        padding: 0.75rem 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    /* Stack feature table columns vertically on mobile */
    .feature-tables > tbody > tr > td {
        display: block;
        width: 100%;
        padding-right: 0 !important;
        padding-bottom: 1.5rem;
    }
}

/* === Print Styles === */
@media print {
    .site-header,
    .site-footer,
    .hero,
    .cta-section {
        display: none;
    }
}

/* ========================================
   BLOG STYLES
   ======================================== */

/* === Blog Listing Page === */
.blog-listing {
    padding: 0 0 var(--spacing-2xl);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--spacing-xl);
    justify-content: center;
    max-width: 50rem;
    margin: 0 auto;
}

.blog-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-card-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    font-weight: 600;
}

.blog-card-content {
    padding: var(--spacing-lg);
}

.blog-card-content h2 {
    font-size: 1.5rem;
    margin: 0 0 var(--spacing-md);
    color: var(--text-dark);
    line-height: 1.3;
}

.blog-card-meta {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    font-size: 0.875rem;
    color: var(--text-light);
}

.blog-card-author,
.blog-card-date {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.blog-card-author svg,
.blog-card-date svg {
    width: 1em;
    height: 1em;
}

.blog-card-excerpt {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.read-more-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    transition: gap var(--transition-normal);
}

.blog-card:hover .read-more-link {
    gap: 0.75rem;
}

.read-more-link svg {
    width: 1em;
    height: 1em;
}

/* === Blog Post Page === */
.blog-post-header {
    margin-bottom: 0.5rem;
}

/* Reduce spacing between header section and content section */
.page-content.blog-header-section {
    padding-bottom: 1.25rem; /* Half of default 2.5rem */
}

.blog-post-category {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.375rem 0.875rem;
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.blog-post-header h1 {
    margin-bottom: 0.5rem;
    text-align: center;
}

.blog-post-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    opacity: 0.9;
}

.blog-post-author,
.blog-post-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-post-author svg,
.blog-post-date svg {
    width: 1.125em;
    height: 1.125em;
}

.blog-post-content {
    padding: 0 0 calc(var(--spacing-xl) + 50px); /* No top padding, bottom padding for footer overlap */
}

.blog-post-content .container {
    display: block;
}

.blog-post-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: var(--spacing-2xl);
    max-width: 1200px;
}

.blog-content-wrapper {
    max-width: 800px;
    padding-top: 0;
    margin-top: 0;
}

.blog-section {
    margin-bottom: var(--spacing-xl);
    padding-top: 0;
    padding-bottom: 0;
}

.blog-section > *:last-child {
    margin-bottom: 0;
}

.blog-section:first-child {
    margin-top: 0;
    padding-top: 0;
}

.blog-section h2 {
    color: var(--text-dark);
}

.blog-section h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin: var(--spacing-lg) 0 var(--spacing-md);
}

.blog-section p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.blog-section a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color var(--transition-normal);
}

.blog-section a:hover {
    color: var(--primary-dark);
}

.blog-list {
    margin: var(--spacing-md) 0 0 0;
    padding-left: var(--spacing-lg);
}

.blog-list li {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: var(--spacing-sm);
}

.blog-list li:last-child {
    margin-bottom: 0;
}

.blog-list li strong {
    color: var(--text-dark);
}

.blog-references {
    background: var(--background-light);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
}

.blog-references h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
}

.blog-references-list {
    list-style: decimal;
    padding-left: var(--spacing-lg);
}

.blog-references-list li {
    margin-bottom: var(--spacing-sm);
}

.blog-references-list a {
    color: var(--primary-color);
    text-decoration: none;
}

.blog-references-list a:hover {
    text-decoration: underline;
}

/* === Blog Post Navigation === */
.blog-post-nav {
    display: flex;
    justify-content: space-between;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-2xl);
    padding-top: 0;
    border-top: 1px solid var(--border-color);
}

.blog-nav-prev,
.blog-nav-next {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md) var(--spacing-lg);
    background: var(--background-light);
    border-radius: var(--border-radius);
    text-decoration: none;
    color: var(--text-dark);
    transition: background var(--transition-normal);
    flex: 1;
}

.blog-nav-prev:hover,
.blog-nav-next:hover {
    background: var(--primary-color);
    color: white;
}

.blog-nav-prev svg,
.blog-nav-next svg {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
}

.blog-nav-prev > div,
.blog-nav-next > div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.blog-nav-label {
    font-size: 0.875rem;
    opacity: 0.7;
}

.blog-nav-title {
    font-weight: 600;
    font-size: 1rem;
}

.blog-nav-next {
    justify-content: flex-end;
    text-align: right;
}

/* === Blog Sidebar === */
.blog-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background: var(--background-light);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    margin-bottom: var(--spacing-lg);
}

.sidebar-widget h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.category-list,
.recent-posts-list {
    list-style: none;
    padding: 0;
}

.category-list li,
.recent-posts-list li {
    margin-bottom: var(--spacing-sm);
}

.category-list a {
    color: var(--text-medium);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.category-list a:hover {
    color: var(--primary-color);
}

.recent-posts-list a {
    text-decoration: none;
    color: var(--text-dark);
    display: block;
    transition: color var(--transition-normal);
}

.recent-posts-list a:hover {
    color: var(--primary-color);
}

.recent-post-title {
    display: block;
    font-weight: 600;
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.recent-post-date {
    display: block;
    font-size: 0.875rem;
    color: var(--text-light);
}

.cta-widget {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

.cta-widget h3 {
    color: white;
}

.cta-widget p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-md);
}

.cta-widget .btn-primary {
    background: white;
    color: var(--primary-color);
}

.cta-widget .btn-primary:hover {
    background: var(--background-light);
}

/* === Responsive Blog Styles === */
@media (max-width: 992px) {
    .blog-post-content .container {
        grid-template-columns: 1fr;
    }
    
    .blog-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: var(--spacing-lg);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-post-header h1 {
        font-size: 1.875rem;
    }
    
    .blog-section h2 {
        font-size: 1.5rem;
    }
    
    .blog-section h3 {
        font-size: 1.25rem;
    }
    
    .blog-post-nav {
        flex-direction: column;
    }
    
    .blog-post-nav a {
        max-width: 100%;
        white-space: normal;
        text-align: center;
        word-wrap: break-word;
    }
    
    .blog-sidebar {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   SNOWCREEK ATHLETIC CLUB PAGE STYLES
   ======================================== */

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.info-grid.first-grid {
    margin-top: var(--spacing-xl);
}

.info-grid:last-child {
    margin-bottom: 0;
}

.info-card {
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.info-card h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    font-size: 1.25rem;
}

.info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-card ul li {
    padding: 0;
    margin-bottom: 1rem;
    color: var(--text-medium);
    line-height: 1;
}

.info-card ul li:last-child {
    margin-bottom: 0;
}

.info-card ul li strong {
    color: var(--text-dark);
}

/* Photo Gallery */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

/* === Explore Page Utility Classes === */
/* Photo credit overlay for carousel images */
.photo-credit {
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    line-height: 1.4;
    border-radius: 0.25rem;
}

/* Section styling variations */
.section-no-padding {
    padding: 0;
}

.section-light-bg {
    background: var(--background-light);
}

.section-top-margin {
    margin-top: 2rem;
}

/* Anchor scroll offset for sticky headers */
.scroll-offset {
    scroll-margin-top: 7.5rem;
}

.scroll-offset-100 {
    scroll-margin-top: 100px;
}

/* === Property Page Utility Classes === */
.section-spacing {
    margin-top: 1.5rem;
}

.section-header-spacing {
    margin-bottom: 1.5rem;
}

.welcome-section-top {
    margin-top: 0;
}

.cancellation-policy-box {
    margin-top: 1rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: var(--radius-md);
}

.cancellation-policy-box p {
    margin: 0;
}

.activities-section-heading {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-medium);
}

.activities-section-wrapper-top {
    margin-top: 1rem;
    margin-bottom: 0.75rem;
}

.activities-section-wrapper-bottom {
    margin-bottom: 1rem;
}

.location-description-compact {
    margin-top: 0;
    margin-bottom: 0;
}

.location-heading-compact {
    margin-bottom: 0.5rem;
}

.properties-grid-compact {
    /* Removed - using single unified grid system */
}

.map-iframe {
    border: 0;
    border-radius: var(--radius-md);
}

.reviews-note {
    font-style: italic;
    color: var(--text-medium);
    margin-top: 0.5rem;
}

.small-text {
    font-size: 0.85em;
}

/* ===========================
   Photo Page Utilities
   =========================== */
.phone-link-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    background: rgba(44, 95, 141, 0.1);
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: background var(--transition-normal);
}

.phone-link-badge:hover {
    background: rgba(44, 95, 141, 0.2);
}

.photo-item-400 {
    height: auto;
}

.photo-img-cover {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: transform var(--transition-normal);
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.gallery-item-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: var(--spacing-lg) var(--spacing-md) var(--spacing-sm);
    font-size: 0.9375rem;
    text-align: center;
}

/* Properties Grid */
/* Duplicate .properties-grid removed - using single definition at line 719 */

.property-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.property-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.property-card-content {
    padding: var(--spacing-lg);
}

.property-card h3 {
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    font-size: 1.25rem;
}

.property-card p {
    color: var(--text-medium);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.property-card-link {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: background var(--transition-normal);
    font-weight: 600;
}

.property-card-link:hover {
    background: var(--primary-dark);
}

/* Responsive Snowcreek Styles */
@media (max-width: 768px) {
    .photo-gallery {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .properties-grid {
        grid-template-columns: 1fr;
    }
}


/* === Alert Messages === */
.alert {
    padding: 1rem 1.25rem;
    margin-bottom: 1.25rem;
    border-radius: var(--radius-md);
    font-size: 1rem;
}

.alert p {
    margin: 0;
}

.alert-title {
    font-weight: 700;
    margin-bottom: 0.25rem !important;
}

.alert-success {
    background: #d4edda;
    border: 2px solid #28a745;
    color: #155724;
    text-align: center;
    font-weight: 700;
}

.alert-error {
    background: #f8d7da;
    border: 2px solid #dc3545;
    color: #721c24;
    font-weight: 600;
}

/* 2/3 + 1/3 layout — main content left, sidebar right */
.form-with-sidebar {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-xl);
    align-items: start;
    margin-bottom: var(--spacing-2xl);
}

@media (max-width: 768px) {
    .form-with-sidebar {
        grid-template-columns: 1fr;
    }
}

/* Apply page sidebar — compact card text */
.apply-sidebar .value-card {
    padding: var(--spacing-md);
}

.apply-sidebar .value-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.apply-sidebar .value-card ol,
.apply-sidebar .value-card ul {
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
    padding-left: 1.25rem;
}

.apply-sidebar .value-card li {
    margin-bottom: 0.35rem;
}

.apply-sidebar .value-card p {
    font-size: 0.875rem;
    margin-bottom: 0.35rem;
}

.apply-sidebar .value-icon {
    margin-bottom: 0.5rem;
}

.apply-sidebar .value-card ul,
.apply-sidebar .value-card ol {
    text-align: left;
}