/* ===================================
   GLOBAL STYLES & VARIABLES
   =================================== */

:root {
    /* Coastal Luxury Color Palette */
    --ocean-deep: #0B3D5C;
    --ocean-blue: #1A5F7A;
    --coastal-teal: #2D8BA5;
    --sandy-beige: #F5EBD9;
    --sunset-coral: #E8896B;
    --sunset-gold: #D4A574;
    --palm-green: #5B8C5A;
    --soft-cream: #FAF8F3;
    --warm-white: #FFFFFF;
    --charcoal: #2C3E50;
    --slate-gray: #5A6C7D;
    --light-gray: #E8ECEF;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;
    
    /* Effects */
    --transition: all 0.3s ease;
    --shadow-soft: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.15);
    --shadow-strong: 0 15px 50px rgba(0, 0, 0, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%; /* Prevent font scaling in landscape */
    -ms-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    line-height: 1.7;
    background-color: var(--warm-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
}

/* ===================================
   NAVIGATION
   =================================== */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    z-index: 1000;
    transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

/* Non-hero pages: force solid navbar since there's no dark background behind it */
body:not(:has(.hero)):not(:has(.things-hero)):not(:has(.property-hero-modern)) .navbar,
body:not(:has(.hero)):not(:has(.things-hero)):not(:has(.property-hero-modern)) .navbar:not(.scrolled) {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

body:not(:has(.hero)):not(:has(.things-hero)):not(:has(.property-hero-modern)) .navbar .nav-menu a {
    color: var(--charcoal);
    text-shadow: none;
}

body:not(:has(.hero)):not(:has(.things-hero)):not(:has(.property-hero-modern)) .navbar .mobile-menu-toggle span {
    background: var(--ocean-deep);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--ocean-deep);
}

.logo-subtitle {
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 3px;
    color: var(--sunset-gold);
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-menu a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--warm-white);
    transition: var(--transition);
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.navbar.scrolled .nav-menu a {
    color: var(--charcoal);
    text-shadow: none;
}

.nav-menu a:hover {
    color: var(--coastal-teal);
}

.navbar.scrolled .nav-menu a:hover {
    color: var(--coastal-teal);
}

.btn-book {
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--sunset-coral), var(--sunset-gold));
    color: var(--warm-white);
    border-radius: 30px;
    font-weight: 600;
    box-shadow: var(--shadow-soft);
}

.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    color: var(--warm-white);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--warm-white);
    border-radius: 3px;
    transition: var(--transition);
}

.navbar.scrolled .mobile-menu-toggle span {
    background: var(--ocean-deep);
}

/* ===================================
   HERO SECTION - FULL WIDTH VIDEO WITH OVERLAY
   =================================== */

.hero {
    position: relative;
    min-height: 90vh;
    width: 100%;
    overflow: hidden;
}

.hero-video-fullscreen {
    position: relative;
    width: 100%;
    min-height: 90vh;
    overflow: hidden;
}

.video-container-fullscreen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-video-full {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 aspect ratio */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 aspect ratio */
    transform: translate(-50%, -50%);
    object-fit: cover;
    border: none;
    pointer-events: none;
}

.hero-overlay-static {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(11, 61, 92, 0.4) 0%, rgba(11, 61, 92, 0.6) 100%),
                linear-gradient(to right, rgba(26, 95, 122, 0.6) 0%, rgba(26, 95, 122, 0.3) 25%, transparent 25%);
    z-index: 1;
    pointer-events: none;
}

.hero-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    z-index: 2;
    padding: 60px 20px;
}

.hero-content {
    max-width: 800px;
    text-align: left;
    color: var(--warm-white);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--warm-white);
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.6rem;
    color: var(--warm-white);
    margin-bottom: 15px;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-description {
    font-size: 1.15rem;
    color: var(--warm-white);
    margin-bottom: 35px;
    font-weight: 400;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-highlights {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.highlight-icon {
    font-size: 2rem;
    filter: grayscale(0.3);
}

.highlight-item span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--charcoal);
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 35px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--ocean-blue), var(--coastal-teal));
    color: var(--warm-white);
    box-shadow: var(--shadow-soft);
}

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

.btn-secondary {
    background: var(--warm-white);
    border: 2px solid var(--warm-white);
    color: var(--ocean-blue);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
    font-weight: 700;
}

.btn-secondary:hover {
    background: var(--sunset-gold);
    border-color: var(--sunset-gold);
    color: var(--warm-white);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.5);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 50px;
    font-size: 1.1rem;
}

.trust-badge {
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--warm-white);
    display: flex;
    gap: 10px;
    justify-content: flex-start;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--warm-white);
    font-size: 0.85rem;
    font-weight: 500;
    z-index: 3;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    margin: 10px auto 0;
    border-left: 2px solid var(--warm-white);
    border-bottom: 2px solid var(--warm-white);
    transform: rotate(-45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0) rotate(-45deg); }
    50% { transform: translateY(10px) rotate(-45deg); }
}

/* ===================================
   SECTION HEADERS
   =================================== */

.section-header {
    margin-bottom: 60px;
}

.section-header.centered {
    text-align: center;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3.3rem;
    font-weight: 600;
    color: var(--ocean-deep);
    margin-bottom: 16.5px;
}

.title-underline {
    width: 88px;
    height: 4.4px;
    background: linear-gradient(90deg, var(--sunset-coral), var(--sunset-gold));
    margin: 22px 0;
}

.section-header.centered .title-underline {
    margin: 20px auto;
}

.section-description {
    font-size: 1.265rem;
    color: var(--slate-gray);
    max-width: 770px;
    line-height: 1.8;
}

.section-header.centered .section-description {
    margin: 0 auto;
}

/* ===================================
   INTRODUCTION SECTION
   =================================== */

.intro-section {
    padding: 110px 0;
    background: url('images/coastal-lighthouse-turquoise-beach.jpg') center/cover no-repeat;
    position: relative;
    background-size: cover;
    background-position: center 10%;
}

.intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
    z-index: 0;
}

.intro-section .container {
    position: relative;
    z-index: 1;
}

/* ===================================
   PROPERTIES SECTION - REDESIGNED
   =================================== */

.properties-section-new {
    padding: 100px 0;
    background: var(--soft-cream);
}

.properties-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    margin-top: 60px;
    margin-bottom: 60px;
}

.showcase-card {
    background: var(--warm-white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: grid;
    grid-template-columns: 55fr 45fr;
    min-height: 600px;
    transform: perspective(2000px) rotateY(-1deg);
}

.showcase-card:hover {
    transform: perspective(2000px) rotateY(-1deg) translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Alternate layout for second card */
.cape-coral-card {
    grid-template-columns: 45fr 55fr;
    transform: perspective(2000px) rotateY(1deg);
}

.cape-coral-card .showcase-image-wrapper {
    order: 2;
}

.cape-coral-card .showcase-content {
    order: 1;
}

.cape-coral-card:hover {
    transform: perspective(2000px) rotateY(1deg) translateY(-8px);
}

.showcase-image-wrapper {
    position: relative;
    overflow: hidden;
    min-height: 700px;
}

.showcase-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-card:hover .showcase-image-wrapper img {
    transform: scale(1.1);
}

.showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
}

.showcase-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
    z-index: 2;
}

.showcase-badge.featured {
    background: rgba(232, 137, 107, 0.95);
    color: var(--warm-white);
}

.showcase-badge.premium {
    background: rgba(212, 165, 116, 0.95);
    color: var(--warm-white);
}

.showcase-rating {
    position: absolute;
    top: 25px;
    right: 25px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.showcase-rating .stars {
    color: var(--sunset-gold);
    font-size: 1rem;
    letter-spacing: 2px;
}

.showcase-rating .rating-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--charcoal);
}

.showcase-content {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.showcase-header {
    margin-bottom: 25px;
}

.showcase-location {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--coastal-teal);
    font-size: 0.95rem;
    font-weight: 600;
}

.location-icon {
    width: 18px;
    height: 18px;
    stroke-width: 2.5;
}

.showcase-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--ocean-deep);
    margin-bottom: 8px;
    line-height: 1.1;
}

.showcase-subtitle {
    font-size: 1.1rem;
    color: var(--sunset-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.showcase-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--slate-gray);
    margin-bottom: 30px;
}

.showcase-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    background: var(--soft-cream);
    border-radius: 12px;
    transition: var(--transition);
}

.feature-box:hover {
    background: rgba(45, 139, 165, 0.08);
    transform: translateX(5px);
}

.feature-icon-circle {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--ocean-blue), var(--coastal-teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-circle svg {
    width: 24px;
    height: 24px;
    stroke: var(--warm-white);
    stroke-width: 2;
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.feature-text strong {
    font-size: 1rem;
    color: var(--ocean-deep);
    font-weight: 700;
}

.feature-text span {
    font-size: 0.9rem;
    color: var(--slate-gray);
}

.showcase-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.highlight-tag {
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(45, 139, 165, 0.1), rgba(26, 95, 122, 0.1));
    color: var(--ocean-deep);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 2px solid rgba(45, 139, 165, 0.2);
}

.showcase-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 2px solid var(--light-gray);
}

.showcase-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.price-from {
    font-size: 0.9rem;
    color: var(--slate-gray);
    font-weight: 500;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--ocean-deep);
}

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

.showcase-actions {
    display: flex;
    gap: 12px;
}

.btn-outline {
    padding: 14px 30px;
    border: 2px solid var(--ocean-blue);
    color: var(--ocean-blue);
    background: transparent;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-block;
    text-align: center;
}

.btn-outline:hover {
    background: var(--ocean-blue);
    color: var(--warm-white);
    transform: translateY(-2px);
}

/* Help CTA Box */
.properties-help-cta {
    position: relative;
    background: url('images/lighthouse-sunset-waterfront-property.jpg') center/cover no-repeat;
    border-radius: 20px;
    padding: 50px;
    box-shadow: var(--shadow-medium);
    overflow: hidden;
}

.properties-help-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(11, 61, 92, 0.85), rgba(45, 139, 165, 0.85));
    z-index: 0;
}

.help-cta-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    color: var(--warm-white);
}

.help-icon {
    font-size: 4rem;
    min-width: 80px;
    text-align: center;
}

.help-text {
    flex: 1;
}

.help-text h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 8px;
}

.help-text p {
    font-size: 1.1rem;
    opacity: 0.95;
}

.btn-secondary-large {
    padding: 16px 40px;
    background: var(--warm-white);
    color: var(--ocean-deep);
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    display: inline-block;
    white-space: nowrap;
}

.btn-secondary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Old properties section (keep for other pages if needed) */
.properties-section {
    padding: var(--section-padding);
    background: var(--soft-cream);
}

.property-card {
    margin-bottom: 80px;
    background: var(--warm-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.property-card:hover {
    box-shadow: var(--shadow-medium);
}

.property-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.property-card.reverse .property-content-wrapper {
    grid-template-columns: 1fr 1fr;
}

.property-card.reverse .property-images {
    order: 2;
}

.property-card.reverse .property-details {
    order: 1;
}

.property-images {
    position: relative;
}

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

.property-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 20px;
    background: var(--sunset-coral);
    color: var(--warm-white);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.image-badge.premium {
    background: var(--sunset-gold);
}

.property-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
}

.property-gallery-thumbs img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0.9;
}

.property-gallery-thumbs img:hover {
    opacity: 1;
    transform: scale(1.05);
}

.property-details {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.property-name {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--ocean-deep);
    margin-bottom: 5px;
}

.property-tagline {
    font-size: 1rem;
    color: var(--sunset-gold);
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.property-description {
    font-size: 1.05rem;
    color: var(--slate-gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.property-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 35px;
}

.feature-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.feature-icon {
    width: 24px;
    height: 24px;
    color: var(--coastal-teal);
    flex-shrink: 0;
    stroke-width: 2;
}

.feature-item div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.feature-item strong {
    font-size: 0.95rem;
    color: var(--charcoal);
}

.feature-item span {
    font-size: 0.85rem;
    color: var(--slate-gray);
}

.property-actions {
    display: flex;
    gap: 15px;
}

.view-gallery-btn {
    background: none;
    border: 2px solid var(--ocean-blue);
    color: var(--ocean-blue);
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.view-gallery-btn:hover {
    background: var(--ocean-blue);
    color: var(--warm-white);
}

.cta-box {
    text-align: center;
    padding: 60px;
    background: linear-gradient(135deg, var(--ocean-deep), var(--ocean-blue));
    color: var(--warm-white);
    border-radius: 20px;
    margin-top: 40px;
}

.cta-box h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-box .btn-secondary {
    border-color: var(--warm-white);
    color: var(--warm-white);
}

.cta-box .btn-secondary:hover {
    background: var(--warm-white);
    color: var(--ocean-deep);
}

/* ===================================
   AMENITIES SECTION
   =================================== */

.amenities-section {
    padding: var(--section-padding);
    background: var(--warm-white);
    overflow: hidden;
}

.amenities-carousel-wrapper {
    position: relative;
    overflow: hidden;
    margin: 0 -20px;
    padding: 20px 0;
}

.amenities-carousel {
    display: flex;
    gap: 30px;
    animation: scroll-carousel 40s linear infinite;
    width: fit-content;
}

.amenities-carousel:hover {
    animation-play-state: paused;
}

@keyframes scroll-carousel {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 15px));
    }
}

.amenity-card {
    text-align: center;
    padding: 35px 25px;
    background: var(--soft-cream);
    border-radius: 15px;
    transition: var(--transition);
    min-width: 280px;
    flex-shrink: 0;
}

.amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
}

.amenity-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    filter: grayscale(0.2);
}

.amenity-card h3 {
    font-size: 1.1rem;
    color: var(--ocean-deep);
    margin-bottom: 10px;
    font-weight: 600;
}

.amenity-card p {
    font-size: 0.9rem;
    color: var(--slate-gray);
    line-height: 1.6;
}

/* ===================================
   REVIEWS SECTION
   =================================== */

.reviews-section {
    padding: var(--section-padding);
    background: url('images/tropical-beach-pier-turquoise-water.jpg') center/cover no-repeat;
    position: relative;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
    z-index: 0;
}

.reviews-section .container {
    position: relative;
    z-index: 1;
}

.overall-rating {
    text-align: center;
    margin-top: 20px;
}

.rating-stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.star {
    font-size: 1.8rem;
    color: var(--light-gray);
}

.star.filled {
    color: var(--sunset-gold);
}

.overall-rating p {
    font-size: 1.05rem;
    color: var(--slate-gray);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.review-card {
    background: var(--warm-white);
    padding: 35px;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.reviewer-info h4 {
    font-size: 1.1rem;
    color: var(--ocean-deep);
    margin-bottom: 3px;
}

.reviewer-info p {
    font-size: 0.85rem;
    color: var(--slate-gray);
}

.review-header .rating-stars {
    margin: 0;
}

.review-header .star {
    font-size: 1.2rem;
}

.review-text {
    font-size: 0.95rem;
    color: var(--charcoal);
    line-height: 1.7;
    margin-bottom: 15px;
}

.review-date {
    font-size: 0.85rem;
    color: var(--slate-gray);
    font-style: italic;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.trust-badge-item {
    padding: 30px;
    background: var(--warm-white);
    border-radius: 15px;
    border: 2px solid var(--light-gray);
}

.trust-badge-item h4 {
    font-size: 1.2rem;
    color: var(--ocean-deep);
    margin-bottom: 8px;
}

.trust-badge-item p {
    font-size: 0.9rem;
    color: var(--slate-gray);
}

/* ===================================
   LOCATION SECTION
   =================================== */

.location-section {
    padding: var(--section-padding);
    background: var(--warm-white);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.location-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

.location-details h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--ocean-deep);
    margin-bottom: 20px;
}

.location-intro {
    font-size: 1.1rem;
    color: var(--slate-gray);
    line-height: 1.8;
    margin-bottom: 35px;
}

.nearby-attractions {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.attraction-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.attraction-icon {
    font-size: 2rem;
    flex-shrink: 0;
    filter: grayscale(0.2);
}

.attraction-item h4 {
    font-size: 1.1rem;
    color: var(--ocean-deep);
    margin-bottom: 5px;
}

.attraction-item p {
    font-size: 0.95rem;
    color: var(--slate-gray);
    line-height: 1.6;
}

/* ===================================
   BOOKING CTA SECTION
   =================================== */

.booking-cta-section {
    padding: 0;
    position: relative;
}

.booking-cta-content {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cta-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 61, 92, 0.75);
    z-index: 1;
}

.cta-text {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--warm-white);
    max-width: 800px;
    padding: 0 20px;
}

.cta-text h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.cta-text > p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 25px;
}

.booking-note {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ===================================
   CONTACT SECTION
   =================================== */

.contact-section {
    padding: var(--section-padding);
    background: url('images/coastal-lighthouse-sunset-sky.webp') center/cover no-repeat;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
    z-index: 0;
}

.contact-section .container {
    position: relative;
    z-index: 1;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
    filter: grayscale(0.2);
}

.contact-item h4 {
    font-size: 1.1rem;
    color: var(--ocean-deep);
    margin-bottom: 5px;
}

.contact-item a,
.contact-item p {
    font-size: 1rem;
    color: var(--slate-gray);
}

.contact-item a:hover {
    color: var(--coastal-teal);
}

.contact-form-wrapper {
    background: var(--warm-white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.honeypot {
    position: absolute;
    left: -9999px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--charcoal);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--coastal-teal);
}

.form-helper-text {
    font-size: 0.85rem;
    color: var(--slate-gray);
    text-align: center;
    margin-top: 10px;
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background: var(--ocean-deep);
    color: var(--warm-white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.footer-col h3 {
    font-size: 1.5rem;
}

.footer-col h4 {
    font-size: 1.1rem;
}

.footer-col p {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.7;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    opacity: 0.9;
    font-size: 0.95rem;
}

.footer-col a:hover {
    opacity: 1;
    color: var(--sunset-gold);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ===================================
   NAV AUTH AREA
   =================================== */

.nav-auth-area {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 20px;
}

.btn-signin {
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--ocean-blue), var(--coastal-teal));
    color: var(--warm-white);
    border: none;
    border-radius: 25px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-signin:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sunset-coral), var(--sunset-gold));
    color: var(--warm-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.user-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--charcoal);
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.btn-signout {
    padding: 7px 16px;
    background: transparent;
    border: 2px solid var(--light-gray);
    border-radius: 20px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--slate-gray);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-signout:hover {
    border-color: var(--sunset-coral);
    color: var(--sunset-coral);
}

/* ===================================
   AUTH MODAL
   =================================== */

.auth-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 61, 92, 0.6);
    backdrop-filter: blur(6px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.auth-modal-box {
    background: var(--warm-white);
    border-radius: 20px;
    padding: 50px 45px;
    max-width: 440px;
    width: 100%;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    animation: authSlideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes authSlideIn {
    from { opacity: 0; transform: translateY(-20px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.auth-modal-close {
    position: absolute;
    top: 18px;
    right: 22px;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--slate-gray);
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
}

.auth-modal-close:hover {
    color: var(--charcoal);
}

.auth-modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
    margin: 0 auto 18px;
    display: block;
}

.auth-modal-header h2 {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    color: var(--ocean-deep);
    margin-bottom: 6px;
}

.auth-modal-header p {
    font-size: 0.95rem;
    color: var(--slate-gray);
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 20px;
}

.auth-form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.auth-form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--charcoal);
}

.auth-form-group input {
    padding: 13px 16px;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--charcoal);
    transition: var(--transition);
    background: var(--soft-cream);
}

.auth-form-group input:focus {
    outline: none;
    border-color: var(--coastal-teal);
    background: var(--warm-white);
}

.auth-submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--ocean-blue), var(--coastal-teal));
    color: var(--warm-white);
    border: none;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 5px;
}

.auth-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.auth-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.auth-error {
    font-size: 0.9rem;
    color: #c0392b;
    background: rgba(192, 57, 43, 0.08);
    border-radius: 8px;
    padding: 0;
    min-height: 0;
    transition: all 0.2s;
}

.auth-error:not(:empty) {
    padding: 10px 14px;
}

.auth-switch {
    text-align: center;
    font-size: 0.9rem;
    color: var(--slate-gray);
}

.auth-switch a {
    color: var(--coastal-teal);
    font-weight: 600;
    text-decoration: underline;
}

.auth-switch a:hover {
    color: var(--ocean-deep);
}

.auth-verify-msg {
    text-align: center;
    font-size: 0.95rem;
    color: var(--charcoal);
    line-height: 1.7;
    padding: 20px;
    background: rgba(45, 139, 165, 0.08);
    border-radius: 10px;
    margin-bottom: 20px;
}

.auth-verify-msg a {
    color: var(--coastal-teal);
    font-weight: 600;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .nav-auth-area {
        margin-left: 0;
        order: 3;
    }

    .user-name {
        display: none;
    }

    .auth-modal-box {
        padding: 35px 25px;
    }

    .auth-modal-header h2 {
        font-size: 1.6rem;
    }
}

/* ===================================
   GALLERY MODAL
   =================================== */

.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.gallery-modal.active {
    display: flex;
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 3rem;
    color: var(--warm-white);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2001;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

#modalImage {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    color: var(--warm-white);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    padding: 20px 30px;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-nav:hover {
    background: rgba(0, 0, 0, 0.8);
}

.gallery-nav.prev {
    left: 20px;
}

.gallery-nav.next {
    right: 20px;
}

/* ===================================
   CHECKOUT PAGE STYLES
   =================================== */

.checkout-hero {
    padding: 80px 0 40px;
    background: linear-gradient(135deg, var(--ocean-deep), var(--ocean-blue));
    color: var(--warm-white);
    text-align: center;
}

.checkout-hero h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 15px;
}

.checkout-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.progress-bar {
    background: var(--warm-white);
    padding: 30px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 80px;
    z-index: 100;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.progress-steps::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: var(--light-gray);
    z-index: 0;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--light-gray);
    color: var(--slate-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    transition: var(--transition);
}

.progress-step.active .step-number,
.progress-step.completed .step-number {
    background: var(--coastal-teal);
    color: var(--warm-white);
}

.step-label {
    font-size: 0.9rem;
    color: var(--slate-gray);
    font-weight: 500;
    text-align: center;
}

.progress-step.active .step-label {
    color: var(--ocean-deep);
    font-weight: 600;
}

.checkout-section {
    padding: 60px 0;
    background: var(--soft-cream);
}

.checkout-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.checkout-main {
    background: var(--warm-white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
}

.checkout-step {
    display: none;
}

.checkout-step.active {
    display: block;
}

.checkout-step h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--ocean-deep);
    margin-bottom: 30px;
}

.form-section {
    margin-bottom: 40px;
}

.form-section h3 {
    font-size: 1.3rem;
    color: var(--ocean-deep);
    margin-bottom: 20px;
}

.property-selection {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.property-option {
    cursor: pointer;
}

.property-option input[type="radio"] {
    display: none;
}

.property-option-card {
    display: flex;
    gap: 20px;
    padding: 20px;
    border: 3px solid var(--light-gray);
    border-radius: 12px;
    transition: var(--transition);
}

.property-option input[type="radio"]:checked + .property-option-card {
    border-color: var(--coastal-teal);
    background: rgba(45, 139, 165, 0.05);
}

.property-option-card img {
    width: 200px;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
}

.property-option-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.property-option-details h4 {
    font-size: 1.3rem;
    color: var(--ocean-deep);
}

.property-option-details p {
    font-size: 0.95rem;
    color: var(--slate-gray);
}

.property-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--coastal-teal);
    margin: 10px 0;
}

.availability-badge {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.availability-badge.available {
    background: rgba(91, 140, 90, 0.2);
    color: var(--palm-green);
}

.date-selection {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 15px;
}

.date-input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.date-input-group label {
    font-weight: 600;
    color: var(--charcoal);
}

.date-input-group input {
    padding: 14px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: 1rem;
}

.date-info {
    font-size: 0.9rem;
    color: var(--slate-gray);
    margin-bottom: 25px;
}

.calendar-container {
    background: var(--soft-cream);
    padding: 25px;
    border-radius: 12px;
}

.calendar-container h4 {
    font-size: 1.1rem;
    color: var(--ocean-deep);
    margin-bottom: 20px;
}

.calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-bottom: 20px;
}

.calendar-legend {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

.legend-color.available {
    background: var(--palm-green);
}

.legend-color.booked {
    background: var(--slate-gray);
}

.legend-color.selected {
    background: var(--coastal-teal);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.step-navigation {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 30px;
}

.payment-description {
    font-size: 1rem;
    color: var(--slate-gray);
    margin-bottom: 25px;
    line-height: 1.7;
}

.payment-info-box {
    background: var(--soft-cream);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.secure-badge {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.secure-badge svg {
    width: 30px;
    height: 30px;
    color: var(--palm-green);
    flex-shrink: 0;
}

.secure-badge strong {
    display: block;
    font-size: 1.1rem;
    color: var(--ocean-deep);
    margin-bottom: 5px;
}

.secure-badge p {
    font-size: 0.9rem;
    color: var(--slate-gray);
}

.stripe-payment-section {
    text-align: center;
    margin-bottom: 30px;
}

.stripe-checkout-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 50px;
}

.payment-note {
    font-size: 0.85rem;
    color: var(--slate-gray);
    margin-top: 15px;
}

.policy-box {
    background: var(--soft-cream);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--coastal-teal);
}

.policy-box p {
    font-size: 0.95rem;
    color: var(--charcoal);
    line-height: 1.7;
}

.terms-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.terms-checkbox input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
}

.terms-checkbox span {
    font-size: 0.95rem;
    color: var(--charcoal);
}

.terms-checkbox a {
    color: var(--coastal-teal);
    text-decoration: underline;
}

.checkout-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.booking-summary {
    background: var(--warm-white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
}

.booking-summary.sticky {
    position: sticky;
    top: 150px;
}

.booking-summary h3 {
    font-size: 1.5rem;
    color: var(--ocean-deep);
    margin-bottom: 25px;
    font-family: var(--font-heading);
}

.summary-section {
    margin-bottom: 20px;
}

.summary-section h4 {
    font-size: 0.9rem;
    color: var(--slate-gray);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.summary-section p {
    font-size: 1.1rem;
    color: var(--charcoal);
    font-weight: 500;
}

.summary-property-name {
    font-size: 1.3rem;
    color: var(--ocean-deep);
    font-weight: 600;
    margin-bottom: 8px;
}

.summary-property-details {
    font-size: 0.95rem;
    color: var(--slate-gray);
    margin-bottom: 8px;
    font-weight: 400;
}

.summary-property-price {
    font-size: 1.1rem;
    color: var(--coastal-teal);
    font-weight: 700;
}

.summary-detail {
    font-size: 0.9rem;
    color: var(--slate-gray);
}

.summary-divider {
    height: 1px;
    background: var(--light-gray);
    margin: 20px 0;
}

.summary-pricing {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: var(--charcoal);
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ocean-deep);
    margin-top: 10px;
}

.urgency-message {
    display: flex;
    gap: 12px;
    padding: 15px;
    background: rgba(232, 137, 107, 0.1);
    border-radius: 8px;
    margin-top: 20px;
}

.urgency-message svg {
    width: 20px;
    height: 20px;
    color: var(--sunset-coral);
    flex-shrink: 0;
}

.urgency-message p {
    font-size: 0.85rem;
    color: var(--charcoal);
    line-height: 1.5;
}

.trust-indicators {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--charcoal);
}

.trust-item svg {
    width: 18px;
    height: 18px;
    color: var(--palm-green);
}

.support-box {
    background: var(--soft-cream);
    padding: 25px;
    border-radius: 12px;
}

.support-box h4 {
    font-size: 1.2rem;
    color: var(--ocean-deep);
    margin-bottom: 10px;
}

.support-box p {
    font-size: 0.9rem;
    color: var(--slate-gray);
    margin-bottom: 20px;
}

.support-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    color: var(--coastal-teal);
    font-weight: 600;
    border-bottom: 1px solid var(--light-gray);
}

.support-link:last-child {
    border: none;
}

.support-link svg {
    width: 20px;
    height: 20px;
}

.support-link:hover {
    color: var(--ocean-deep);
}

/* Summary Property Cards */
.summary-property-card {
    margin-bottom: 20px;
}

.summary-property-image {
    width: 100%;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
}

.summary-property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.summary-property-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.summary-property-description {
    font-size: 0.9rem;
    color: var(--slate-gray);
    line-height: 1.6;
    margin: 8px 0;
}

.summary-note {
    padding: 15px;
    background: var(--soft-cream);
    border-radius: 8px;
    border-left: 4px solid var(--coastal-teal);
}

.summary-note p {
    font-size: 0.9rem;
    color: var(--charcoal);
    line-height: 1.6;
    margin: 0;
}

.summary-note strong {
    color: var(--ocean-deep);
    display: block;
    margin-bottom: 5px;
}

/* Summary Sections */
.summary-section-title {
    font-size: 1rem;
    color: var(--slate-gray);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--light-gray);
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-label {
    color: var(--slate-gray);
    font-weight: 500;
}

.summary-value {
    color: var(--charcoal);
    font-weight: 600;
    text-align: right;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    margin-top: 15px;
    border-top: 2px solid var(--ocean-deep);
}

.summary-total-label {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--ocean-deep);
}

.summary-total-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--coastal-teal);
}

.booking-summary-info {
    padding: 20px 0;
    border-top: 1px solid var(--light-gray);
    margin-top: 20px;
}

.booking-summary-info h4 {
    font-size: 1rem;
    color: var(--ocean-deep);
    margin-bottom: 15px;
    font-weight: 600;
}

/* ===================================
   THINGS TO DO PAGE - MAGAZINE STYLE
   =================================== */

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

.things-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.things-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.things-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(11, 61, 92, 0.4) 0%, rgba(11, 61, 92, 0.7) 100%);
    z-index: 1;
}

.things-hero .container {
    position: relative;
    z-index: 2;
}

.things-hero-content {
    text-align: center;
    color: var(--warm-white);
    max-width: 900px;
    margin: 0 auto;
}

.hero-label {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.things-hero-title {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.things-hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1.6;
    opacity: 0.95;
}

/* Magazine Grid Section */
.magazine-grid-section {
    padding: 100px 0;
    background: var(--soft-cream);
}

.activity-category {
    margin-bottom: 120px;
}

.activity-category:last-child {
    margin-bottom: 0;
}

.category-header {
    margin-bottom: 50px;
}

.category-number {
    display: inline-block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--sunset-coral);
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.category-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--ocean-deep);
    margin-bottom: 15px;
    line-height: 1.2;
}

.category-description {
    font-size: 1.2rem;
    color: var(--slate-gray);
    max-width: 700px;
}

/* Magazine Grid Layouts */
.magazine-grid {
    display: grid;
    gap: 20px;
}

/* Beaches Grid - Large left, two small right */
.beaches-grid {
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 500px;
}

.beaches-grid .large-item {
    grid-row: 1 / 2;
    grid-column: 1 / 2;
}

/* Water Sports Grid - Small left, large center, small right */
.water-sports-grid {
    grid-template-columns: 1fr 2fr 1fr;
    grid-template-rows: 500px;
}

.water-sports-grid .large-item {
    grid-column: 2 / 3;
}

/* Dining Grid - Tall left, two stacked right */
.dining-grid {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 240px 240px;
}

.dining-grid .tall-item {
    grid-row: 1 / 3;
    grid-column: 1 / 2;
}

/* Recreation Grid - Large left, two small right */
.recreation-grid {
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 500px;
}

.recreation-grid .large-item {
    grid-column: 1 / 2;
}

/* Culture Grid - Two small left, large right */
.culture-grid {
    grid-template-columns: 1fr 1fr 2fr;
    grid-template-rows: 500px;
}

.culture-grid .large-item {
    grid-column: 3 / 4;
}

/* Grid Items */
.grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.grid-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.item-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(11, 61, 92, 0.9) 0%, rgba(11, 61, 92, 0.3) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 35px;
    transition: background 0.5s ease;
}

.grid-item:hover .item-overlay {
    background: linear-gradient(to top, rgba(11, 61, 92, 0.95) 0%, rgba(11, 61, 92, 0.5) 70%, rgba(11, 61, 92, 0.2) 100%);
}

.item-content {
    color: var(--warm-white);
    transform: translateY(0);
    transition: transform 0.5s ease;
}

.grid-item:hover .item-content {
    transform: translateY(-10px);
}

.item-content h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.3;
}

.item-content p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.95;
}

/* Featured Experiences Section */
.featured-experiences {
    padding: 100px 0;
    background: var(--warm-white);
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.experience-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--soft-cream);
    border-radius: 15px;
    transition: var(--transition);
}

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

.experience-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--ocean-blue), var(--coastal-teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.experience-card:hover .experience-icon {
    transform: scale(1.1) rotate(5deg);
}

.experience-icon svg {
    color: var(--warm-white);
    stroke-width: 2;
}

.experience-card h3 {
    font-size: 1.3rem;
    color: var(--ocean-deep);
    margin-bottom: 15px;
    font-weight: 600;
}

.experience-card p {
    font-size: 0.95rem;
    color: var(--slate-gray);
    line-height: 1.7;
}

/* Seasonal Section */
.seasonal-section {
    padding: 100px 0;
    background: var(--soft-cream);
}

.seasonal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin-top: 60px;
}

.seasonal-card {
    background: var(--warm-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.seasonal-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.seasonal-image {
    height: 300px;
    overflow: hidden;
}

.seasonal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.seasonal-card:hover .seasonal-image img {
    transform: scale(1.1);
}

.seasonal-content {
    padding: 40px;
}

.seasonal-content h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--ocean-deep);
    margin-bottom: 25px;
}

.seasonal-content ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.seasonal-content li {
    font-size: 1.05rem;
    color: var(--charcoal);
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.seasonal-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--coastal-teal);
    border-radius: 50%;
}

/* Things CTA Section */
.things-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--ocean-deep), var(--coastal-teal));
}

.things-cta-content {
    text-align: center;
    color: var(--warm-white);
    max-width: 800px;
    margin: 0 auto;
}

.things-cta-content h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.things-cta-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
}

.things-cta-content .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive - Things to Do Page */
@media (max-width: 1024px) {
    .things-hero-title {
        font-size: 3.5rem;
    }

    .category-title {
        font-size: 2.8rem;
    }

    .beaches-grid,
    .water-sports-grid,
    .recreation-grid,
    .culture-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 350px 350px;
    }

    .beaches-grid .large-item,
    .water-sports-grid .large-item,
    .recreation-grid .large-item,
    .culture-grid .large-item {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
    }

    .dining-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 300px 300px;
    }

    .dining-grid .tall-item {
        grid-column: 1 / 2;
        grid-row: 1 / 3;
    }

    .experiences-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .seasonal-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .things-hero {
        height: 60vh;
        min-height: 500px;
    }

    .things-hero-title {
        font-size: 2.5rem;
    }

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

    .magazine-grid-section {
        padding: 60px 0;
    }

    .activity-category {
        margin-bottom: 80px;
    }

    .category-title {
        font-size: 2.2rem;
    }

    .category-description {
        font-size: 1rem;
    }

    .beaches-grid,
    .water-sports-grid,
    .recreation-grid,
    .culture-grid,
    .dining-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 15px;
    }

    .grid-item,
    .beaches-grid .large-item,
    .water-sports-grid .large-item,
    .recreation-grid .large-item,
    .culture-grid .large-item,
    .dining-grid .tall-item {
        grid-column: 1 / 2;
        grid-row: auto;
        height: 350px;
    }

    .item-content h3 {
        font-size: 1.5rem;
    }

    .item-content p {
        font-size: 0.9rem;
    }

    .featured-experiences,
    .seasonal-section,
    .things-cta-section {
        padding: 60px 0;
    }

    .experiences-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

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

    .things-cta-content p {
        font-size: 1.1rem;
    }

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

/* ===================================
   TOUCH-FRIENDLY IMPROVEMENTS
   =================================== */

/* Ensure all clickable elements have adequate touch targets (minimum 44x44px) */
@media (max-width: 768px) {
    button,
    .btn-primary,
    .btn-secondary,
    .btn-outline,
    .btn-book,
    a.btn-primary,
    a.btn-secondary,
    a.btn-outline {
        min-height: 44px;
        min-width: 44px;
    }

    /* Improve tap targets for form inputs */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="date"],
    input[type="password"],
    select,
    textarea {
        min-height: 44px;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    /* Better spacing for mobile cards */
    .showcase-card,
    .review-card,
    .amenity-card,
    .dashboard-card {
        margin-bottom: 20px;
    }
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 1024px) {
    /* New Properties Section Responsive */
    .showcase-card,
    .cape-coral-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .cape-coral-card .showcase-image-wrapper {
        order: 1;
    }

    .cape-coral-card .showcase-content {
        order: 2;
    }

    .showcase-image-wrapper {
        min-height: 400px;
    }

    .showcase-content {
        padding: 40px;
    }

    .showcase-title {
        font-size: 2.3rem;
    }

    .showcase-features-grid {
        grid-template-columns: 1fr;
    }

    .help-cta-content {
        flex-direction: column;
        text-align: center;
    }

    .help-icon {
        min-width: auto;
    }

    /* Original responsive styles */
    .hero-video-fullscreen {
        min-height: 70vh;
    }

    .hero-content-overlay {
        padding: 40px 20px;
    }

    .hero-title {
        font-size: 3rem;
    }

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

    .property-content-wrapper {
        grid-template-columns: 1fr;
    }

    .property-card.reverse .property-images {
        order: 1;
    }

    .property-card.reverse .property-details {
        order: 2;
    }

    .amenities-carousel {
        animation-duration: 30s;
    }
    
    .amenity-card {
        min-width: 250px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .location-content {
        grid-template-columns: 1fr;
    }

    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .booking-summary.sticky {
        position: static;
    }
}

@media (max-width: 768px) {
    /* New Properties Section Mobile */
    .properties-showcase {
        gap: 30px;
    }

    .showcase-card {
        transform: perspective(2000px) rotateY(0deg);
    }

    .cape-coral-card {
        transform: perspective(2000px) rotateY(0deg);
    }

    .showcase-card:hover,
    .cape-coral-card:hover {
        transform: perspective(2000px) rotateY(0deg) translateY(-5px);
    }

    .showcase-image-wrapper {
        min-height: 300px;
        max-height: 350px;
    }

    .showcase-content {
        padding: 25px 20px;
    }

    .showcase-location {
        font-size: 0.85rem;
    }

    .showcase-title {
        font-size: 1.8rem;
    }

    .showcase-subtitle {
        font-size: 0.9rem;
    }

    .showcase-description {
        font-size: 0.95rem;
    }

    .showcase-features-grid {
        gap: 15px;
    }

    .feature-box {
        padding: 15px;
    }

    .feature-icon-circle {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }

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

    .feature-text strong {
        font-size: 0.95rem;
    }

    .feature-text span {
        font-size: 0.85rem;
    }

    .showcase-footer {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .showcase-actions {
        width: 100%;
        flex-direction: column;
    }

    .showcase-actions a {
        width: 100%;
        text-align: center;
    }

    .showcase-highlights {
        gap: 8px;
    }

    .highlight-tag {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .price-amount {
        font-size: 1.8rem;
    }

    .properties-help-cta {
        padding: 25px 20px;
    }

    .help-cta-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .help-icon {
        font-size: 3rem;
    }

    .help-text h3 {
        font-size: 1.3rem;
    }

    .help-text p {
        font-size: 0.95rem;
    }

    .btn-secondary-large {
        width: 100%;
        text-align: center;
        padding: 14px 30px;
    }

    /* Original responsive styles */
    .nav-container {
        padding: 15px 20px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--warm-white);
        flex-direction: column;
        padding: 40px 20px;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-medium);
        overflow-y: auto;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 15px 10px;
        font-size: 1.1rem;
        border-bottom: 1px solid var(--light-gray);
    }

    .nav-menu .btn-book {
        margin-top: 10px;
        text-align: center;
        border: none;
    }

    .hero-video-fullscreen {
        min-height: 70vh;
    }

    .hero-content-overlay {
        padding: 30px 15px;
    }

    .hero-title {
        font-size: 2.2rem;
        text-shadow: 0 3px 15px rgba(0, 0, 0, 0.7), 0 1px 3px rgba(0, 0, 0, 0.9);
        line-height: 1.2;
        font-weight: 700;
    }

    .hero-subtitle {
        font-size: 1rem;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
        font-weight: 600;
    }

    .hero-description {
        font-size: 0.95rem;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
    }

    .btn-large {
        padding: 16px 35px;
        font-size: 1rem;
    }

    .trust-badge {
        font-size: 0.8rem;
        flex-wrap: wrap;
    }

    .hero-highlights {
        flex-direction: column;
        gap: 15px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .property-details {
        padding: 30px;
    }

    .property-features {
        grid-template-columns: 1fr;
    }

    .property-actions {
        flex-direction: column;
    }

    .amenities-carousel {
        animation-duration: 25s;
    }
    
    .amenity-card {
        min-width: 220px;
        padding: 30px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .form-row,
    .form-grid,
    .date-selection {
        grid-template-columns: 1fr;
    }

    .cta-text h2 {
        font-size: 2.5rem;
    }

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

    .trust-badges {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .trust-badge-item {
        padding: 20px;
    }

    .step-label {
        font-size: 0.75rem;
    }

    .progress-step {
        gap: 5px;
    }
}

@media (max-width: 480px) {
    /* Mobile-first improvements for small screens */
    .container {
        padding: 0 15px;
    }

    /* Improve text readability on small screens */
    body {
        line-height: 1.6;
    }

    p {
        line-height: 1.7;
    }

    .hero-title {
        font-size: 1.9rem;
        line-height: 1.2;
        text-shadow: 0 3px 15px rgba(0, 0, 0, 0.8), 0 1px 3px rgba(0, 0, 0, 1);
        font-weight: 700;
    }

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

    .hero-description {
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 14px 30px;
        font-size: 0.95rem;
    }

    .scroll-indicator {
        font-size: 0.8rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section-description {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    /* Properties Section Mobile */
    .showcase-title {
        font-size: 1.6rem;
    }

    .showcase-subtitle {
        font-size: 0.85rem;
    }

    .showcase-description {
        font-size: 0.9rem;
    }

    .showcase-badge {
        font-size: 0.8rem;
        padding: 8px 16px;
    }

    .showcase-rating .rating-text {
        font-size: 0.75rem;
    }

    .price-amount {
        font-size: 1.6rem;
    }

    .btn-outline,
    .btn-primary {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    /* Amenities Mobile */
    .amenities-carousel-wrapper {
        margin: 0 -15px;
    }

    .amenity-card {
        min-width: 200px;
        padding: 25px 15px;
    }

    .amenity-icon {
        font-size: 2.5rem;
    }

    .amenity-card h3 {
        font-size: 1rem;
    }

    .amenity-card p {
        font-size: 0.85rem;
    }

    /* Reviews Mobile */
    .review-card {
        padding: 25px 20px;
    }

    .reviewer-info h4 {
        font-size: 1rem;
    }

    .review-text {
        font-size: 0.9rem;
    }

    /* Contact Form Mobile */
    .contact-section {
        padding: 60px 0;
    }

    .contact-content {
        gap: 40px;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 16px;
        font-size: 16px; /* Prevents iOS zoom */
    }

    .contact-item {
        padding: 15px 0;
    }

    /* Footer Mobile */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-col h3 {
        font-size: 1.3rem;
    }

    .footer-col h4 {
        font-size: 1rem;
    }

    /* Checkout Mobile */
    .checkout-hero h1 {
        font-size: 2rem;
    }

    .checkout-hero p {
        font-size: 1rem;
    }

    .progress-steps::before {
        display: none;
    }

    .progress-step {
        flex: 1;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .step-label {
        font-size: 0.7rem;
    }

    .checkout-main {
        padding: 25px 20px;
    }

    .checkout-step h2 {
        font-size: 1.6rem;
    }

    .property-option-card {
        flex-direction: column;
    }

    .property-option-card img {
        width: 100%;
        height: 200px;
    }

    .property-option-details h4 {
        font-size: 1.1rem;
    }

    .property-price {
        font-size: 1.3rem;
    }

    .booking-summary {
        padding: 25px 20px;
    }

    .booking-summary h3 {
        font-size: 1.3rem;
    }

    .summary-total {
        font-size: 1.3rem;
    }

    /* Property Pages Mobile */
    .property-name {
        font-size: 1.8rem;
    }

    .property-hero-title {
        font-size: 2rem;
    }

    .property-hero-subtitle {
        font-size: 1rem;
    }

    .overview-intro h2 {
        font-size: 1.6rem;
    }

    .intro-text {
        font-size: 1.05rem;
    }

    /* Things to Do Mobile */
    .things-hero-title {
        font-size: 2rem;
    }

    .things-hero-subtitle {
        font-size: 1rem;
    }

    .category-title {
        font-size: 1.8rem;
    }

    .item-content h3 {
        font-size: 1.3rem;
    }

    /* Gallery Mobile */
    .gallery-hero h1 {
        font-size: 2rem;
    }

    .gallery-hero p {
        font-size: 1rem;
    }

    .category-title {
        font-size: 2rem;
    }

    .masonry-gallery {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery-item img {
        height: 250px;
    }
}

/* ===================================
   PROPERTY PAGE STYLES
   =================================== */

/* Property Hero */
.property-hero {
    background: linear-gradient(135deg, var(--ocean-deep), var(--ocean-blue));
    padding: 120px 20px 60px;
    text-align: center;
    color: var(--warm-white);
    position: relative;
    overflow: hidden;
}

.property-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="white" opacity="0.05" d="M0,50 Q25,40 50,50 T100,50 L100,100 L0,100 Z"/></svg>') repeat-x bottom;
    background-size: 200px 100px;
    pointer-events: none;
}

.property-hero.sunset-hero {
    background: linear-gradient(135deg, var(--sunset-coral), var(--sunset-gold));
}

.property-hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.property-hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.property-hero-badge.premium {
    background: rgba(255, 255, 255, 0.3);
}

.property-hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.property-hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 300;
    letter-spacing: 2px;
}

.property-hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

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

.stat-icon {
    font-size: 2rem;
}

.stat-text {
    font-size: 1rem;
    font-weight: 500;
}

.property-hero-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.rating-text {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Photo Gallery */
.property-gallery-section {
    padding: 60px 0;
    background: var(--warm-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto auto;
    gap: 10px;
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
}

.gallery-main {
    grid-row: 1 / 3;
    height: 600px;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-main img:hover {
    transform: scale(1.02);
}

.gallery-side {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
}

.gallery-side img {
    width: 100%;
    height: 295px;
    object-fit: cover;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-side img:hover {
    transform: scale(1.05);
}

.gallery-bottom {
    grid-column: 1 / 3;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.gallery-bottom img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-bottom img:hover {
    transform: scale(1.05);
}

.additional-photos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    border-radius: 15px;
    overflow: hidden;
}

.additional-photos-grid .photo-item {
    position: relative;
    overflow: hidden;
}

.additional-photos-grid .photo-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    cursor: pointer;
    transition: var(--transition);
}

.additional-photos-grid .photo-item img:hover {
    transform: scale(1.05);
}

.view-all-photos-btn {
    display: inline-block;
    padding: 14px 35px;
    background: var(--ocean-blue);
    color: var(--warm-white);
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.view-all-photos-btn:hover {
    background: var(--ocean-deep);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

/* Property Video Section */
.property-video-section {
    padding: 60px 0;
    background: var(--warm-white);
}

.video-header {
    text-align: center;
    margin-bottom: 40px;
}

.video-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--ocean-deep);
    margin-bottom: 15px;
}

.video-header p {
    font-size: 1.1rem;
    color: var(--slate-gray);
}

.property-video-wrapper {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
}

.property-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Property Overview */
.property-overview-section {
    padding: 60px 0 100px;
    background: var(--soft-cream);
}

.overview-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.overview-main {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.overview-intro h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--ocean-deep);
    margin-bottom: 25px;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--charcoal);
    margin-bottom: 20px;
    font-weight: 500;
}

.overview-intro p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--slate-gray);
}

/* Property Highlights Box */
.property-highlights-box {
    background: var(--warm-white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
}

.property-highlights-box h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--ocean-deep);
    margin-bottom: 30px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.highlight-feature {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.highlight-icon {
    width: 30px;
    height: 30px;
    color: var(--coastal-teal);
    flex-shrink: 0;
    stroke-width: 2;
}

.highlight-feature h4 {
    font-size: 1.1rem;
    color: var(--ocean-deep);
    margin-bottom: 5px;
}

.highlight-feature p {
    font-size: 0.95rem;
    color: var(--slate-gray);
}

/* Property Amenities */
.property-amenities-section {
    background: var(--warm-white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
}

.property-amenities-section h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--ocean-deep);
    margin-bottom: 30px;
}

.amenities-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.amenity-column h4 {
    font-size: 1.1rem;
    color: var(--ocean-deep);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.amenity-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.amenity-column li {
    font-size: 0.95rem;
    color: var(--slate-gray);
    padding-left: 20px;
    position: relative;
}

.amenity-column li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--palm-green);
    font-weight: bold;
}

/* Sleeping Arrangements */
.sleeping-arrangements {
    background: var(--warm-white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
}

.sleeping-arrangements h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--ocean-deep);
    margin-bottom: 30px;
}

.bedroom-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.bedroom-card {
    background: var(--soft-cream);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
}

.bedroom-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
}

.bedroom-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.bedroom-card h4 {
    font-size: 1.1rem;
    color: var(--ocean-deep);
    margin-bottom: 8px;
}

.bedroom-card > p {
    font-size: 1rem;
    color: var(--charcoal);
    font-weight: 600;
    margin-bottom: 10px;
}

.bedroom-details {
    font-size: 0.9rem;
    color: var(--slate-gray);
    line-height: 1.6;
}

/* House Rules */
.house-rules-section {
    background: var(--warm-white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
}

.house-rules-section h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--ocean-deep);
    margin-bottom: 30px;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.rule-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--charcoal);
}

.rule-icon {
    color: var(--palm-green);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Property Location */
.property-location-section {
    background: var(--warm-white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
}

.property-location-section h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--ocean-deep);
    margin-bottom: 20px;
}

.location-description {
    font-size: 1.05rem;
    color: var(--slate-gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.nearby-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.nearby-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.distance-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--coastal-teal);
    color: var(--warm-white);
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    width: fit-content;
}

.nearby-item h4 {
    font-size: 1.1rem;
    color: var(--ocean-deep);
    margin-top: 5px;
}

.nearby-item p {
    font-size: 0.95rem;
    color: var(--slate-gray);
}

/* Booking Sidebar */
.booking-sidebar-wrapper {
    position: relative;
}

.booking-sidebar {
    background: var(--warm-white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--light-gray);
}

.booking-sidebar.sticky {
    position: sticky;
    top: 100px;
}

.pricing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--light-gray);
    margin-bottom: 25px;
}

.price-display {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--ocean-deep);
}

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

.rating-badge {
    display: flex;
    align-items: center;
    gap: 5px;
}

.rating-number {
    font-weight: 600;
    color: var(--charcoal);
}

.review-count {
    font-size: 0.9rem;
    color: var(--slate-gray);
}

/* Availability Widget */
.availability-calendar-widget {
    margin-bottom: 25px;
}

.availability-calendar-widget h4 {
    font-size: 1.1rem;
    color: var(--ocean-deep);
    margin-bottom: 15px;
}

.date-picker-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 15px;
}

.date-picker {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.date-picker label,
.guest-picker label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--charcoal);
}

.date-picker input,
.guest-picker select {
    padding: 12px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.date-picker input:focus,
.guest-picker select:focus {
    outline: none;
    border-color: var(--coastal-teal);
}

.guest-picker {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.btn-block {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

/* Pricing Breakdown */
.pricing-breakdown {
    padding: 20px 0;
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
    margin-bottom: 20px;
}

.pricing-note {
    font-size: 0.85rem;
    color: var(--slate-gray);
    text-align: center;
    margin-bottom: 15px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--charcoal);
}

.price-row.total {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ocean-deep);
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--light-gray);
}

/* Contact Host */
.contact-host {
    text-align: center;
}

.contact-host h4 {
    font-size: 1.1rem;
    color: var(--ocean-deep);
    margin-bottom: 8px;
}

.contact-host p {
    font-size: 0.9rem;
    color: var(--slate-gray);
    margin-bottom: 15px;
}

/* Property Reviews Section */
.property-reviews-section {
    padding: 80px 0;
    background: var(--warm-white);
}

.reviews-header {
    margin-bottom: 50px;
}

.reviews-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--ocean-deep);
    margin-bottom: 20px;
}

.overall-rating-display {
    display: flex;
    align-items: center;
    gap: 15px;
}

.rating-summary {
    font-size: 1.1rem;
    color: var(--slate-gray);
}

.show-all-reviews {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 35px;
    background: var(--soft-cream);
    color: var(--ocean-deep);
    border: 2px solid var(--ocean-blue);
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
}

.show-all-reviews:hover {
    background: var(--ocean-blue);
    color: var(--warm-white);
}

/* Property CTA Section */
.property-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--ocean-deep), var(--coastal-teal));
    text-align: center;
}

.cta-content {
    color: var(--warm-white);
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

/* ===================================
   MODERN PROPERTY PAGE REDESIGN
   =================================== */

/* Modern Hero Section */
.property-hero-modern {
    position: relative;
    height: 70vh;
    min-height: 600px;
    overflow: hidden;
}

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

.hero-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
}

.hero-content-modern {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 0;
    color: var(--warm-white);
}

.hero-badge-group {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-title-modern {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-subtitle-modern {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0.95;
    font-weight: 300;
}

.hero-quick-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.quick-stat {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
}

.stat-icon {
    font-size: 2rem;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Featured Photos Grid */
.featured-photos-section {
    padding: 0;
    background: var(--warm-white);
}

.featured-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 10px;
    height: 500px;
}

.featured-main {
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.featured-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-main:hover img {
    transform: scale(1.05);
}

.featured-secondary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.featured-item {
    position: relative;
    overflow: hidden;
}

.featured-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-item:hover img {
    transform: scale(1.05);
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    color: var(--warm-white);
}

.photo-label {
    font-size: 1rem;
    font-weight: 600;
}

.view-more-item {
    position: relative;
}

.view-more-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 61, 92, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--warm-white);
    font-size: 1.2rem;
    font-weight: 600;
    transition: var(--transition);
}

.view-more-overlay:hover {
    background: rgba(11, 61, 92, 0.95);
}

/* Property Content Section */
.property-content-section {
    padding: 80px 0;
    background: var(--soft-cream);
}

.content-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.main-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.content-block {
    background: var(--warm-white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
}

.content-block h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--ocean-deep);
    margin-bottom: 25px;
}

.content-block h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--ocean-deep);
    margin-bottom: 25px;
}

.lead-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--charcoal);
    margin-bottom: 20px;
    font-weight: 500;
}

.content-block p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--slate-gray);
}

/* Highlights Modern Grid */
.highlights-modern-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.highlight-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--soft-cream);
    border-radius: 12px;
    transition: var(--transition);
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
}

.highlight-icon-circle {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, var(--ocean-blue), var(--coastal-teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-icon-circle svg {
    width: 35px;
    height: 35px;
    color: var(--warm-white);
    stroke-width: 2;
}

.highlight-card h4 {
    font-size: 1.1rem;
    color: var(--ocean-deep);
    margin-bottom: 5px;
}

.highlight-card p {
    font-size: 0.9rem;
    color: var(--slate-gray);
}

/* Video Wrapper Modern */
.video-wrapper-modern {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
    background: #000;
}

.video-wrapper-modern iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    transform: translate(-50%, -50%);
    border: none;
    pointer-events: none;
}

.video-wrapper-modern .property-video-local {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    border: none;
    pointer-events: none;
    display: block;
}

/* Amenities Modern Grid */
.amenities-modern-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.amenity-category h4 {
    font-size: 1.1rem;
    color: var(--ocean-deep);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.amenity-category ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.amenity-category li {
    font-size: 0.95rem;
    color: var(--slate-gray);
    padding-left: 20px;
    position: relative;
}

.amenity-category li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--palm-green);
    font-weight: bold;
}

/* Bedrooms Modern Grid */
.bedrooms-modern-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.bedroom-modern-card {
    background: var(--soft-cream);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.bedroom-modern-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
}

.bedroom-image {
    height: 200px;
    overflow: hidden;
}

.bedroom-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bedroom-modern-card:hover .bedroom-image img {
    transform: scale(1.1);
}

.bedroom-info {
    padding: 20px;
}

.bedroom-info h4 {
    font-size: 1.1rem;
    color: var(--ocean-deep);
    margin-bottom: 5px;
}

.bed-type {
    font-size: 1rem;
    color: var(--charcoal);
    font-weight: 600;
    margin-bottom: 10px;
}

.bedroom-features {
    font-size: 0.9rem;
    color: var(--slate-gray);
    line-height: 1.6;
}

/* Nearby Modern Grid */
.location-intro {
    font-size: 1.05rem;
    color: var(--slate-gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.nearby-modern-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.nearby-card {
    padding: 20px;
    background: var(--soft-cream);
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
}

.nearby-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
}

.distance {
    display: inline-block;
    padding: 5px 15px;
    background: var(--coastal-teal);
    color: var(--warm-white);
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.nearby-card h4 {
    font-size: 1.05rem;
    color: var(--ocean-deep);
    margin-bottom: 5px;
}

.nearby-card p {
    font-size: 0.9rem;
    color: var(--slate-gray);
}

/* Rules Modern Grid */
.rules-modern-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.rule-modern-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--soft-cream);
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--charcoal);
}

.rule-icon {
    color: var(--palm-green);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Reviews Modern */
.reviews-summary {
    text-align: center;
    padding: 30px;
    background: var(--soft-cream);
    border-radius: 12px;
    margin-bottom: 30px;
}

.rating-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.rating-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--ocean-deep);
}

.rating-stars-large {
    display: flex;
    gap: 5px;
}

.rating-stars-large .star {
    font-size: 1.5rem;
}

.reviews-count {
    font-size: 1rem;
    color: var(--slate-gray);
}

.reviews-modern-grid {
    display: grid;
    gap: 20px;
}

.review-modern-card {
    padding: 25px;
    background: var(--soft-cream);
    border-radius: 12px;
    border-left: 4px solid var(--coastal-teal);
}

.review-header-modern {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.review-header-modern h4 {
    font-size: 1.05rem;
    color: var(--ocean-deep);
    margin-bottom: 3px;
}

.reviewer-location {
    font-size: 0.85rem;
    color: var(--slate-gray);
}

.review-text {
    font-size: 0.95rem;
    color: var(--charcoal);
    line-height: 1.7;
    margin-bottom: 10px;
}

.review-date {
    font-size: 0.85rem;
    color: var(--slate-gray);
    font-style: italic;
}

/* Sidebar */
.sidebar-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.booking-card {
    background: var(--warm-white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--light-gray);
}

.booking-card.sticky {
    position: sticky;
    top: 100px;
}

.booking-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--light-gray);
    margin-bottom: 20px;
}

.booking-form {
    margin-bottom: 20px;
}

.form-group-inline {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 15px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--charcoal);
}

.form-field input,
.form-field select {
    padding: 12px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-field input:focus,
.form-field select:focus {
    outline: none;
    border-color: var(--coastal-teal);
}

.pricing-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--slate-gray);
    margin: 15px 0;
}

.contact-host-box {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--light-gray);
    margin-top: 20px;
}

.contact-host-box h4 {
    font-size: 1.1rem;
    color: var(--ocean-deep);
    margin-bottom: 8px;
}

.contact-host-box p {
    font-size: 0.9rem;
    color: var(--slate-gray);
    margin-bottom: 15px;
}

.trust-box {
    background: var(--warm-white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
}

.trust-box h4 {
    font-size: 1.1rem;
    color: var(--ocean-deep);
    margin-bottom: 15px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 0.9rem;
    color: var(--charcoal);
    border-bottom: 1px solid var(--light-gray);
}

.trust-item:last-child {
    border-bottom: none;
}

.trust-icon {
    color: var(--palm-green);
    font-weight: bold;
}

/* Property CTA Modern */
.property-cta-modern {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--ocean-deep), var(--coastal-teal));
    text-align: center;
    color: var(--warm-white);
}

.property-cta-modern h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 15px;
}

.property-cta-modern p {
    font-size: 1.3rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-buttons-modern {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   PROPERTY PHOTOS PREVIEW SECTION
   =================================== */

.property-photos-preview {
    padding: 60px 0;
    background: var(--warm-white);
}

.property-photos-preview h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--ocean-deep);
    margin-bottom: 40px;
    text-align: center;
}

.photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.photo-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    cursor: pointer;
}

.photo-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.photo-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.photo-card:hover img {
    transform: scale(1.1);
}

.photo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 50%, transparent 100%);
    color: var(--warm-white);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
}

@media (max-width: 768px) {
    .property-photos-preview h2 {
        font-size: 2rem;
    }
    
    .photos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .photo-card img {
        height: 300px;
    }
}

/* ===================================
   GALLERY PAGE STYLES
   =================================== */

.gallery-hero {
    padding: 120px 20px 60px;
    background: linear-gradient(135deg, var(--ocean-deep), var(--ocean-blue));
    text-align: center;
    color: var(--warm-white);
}

.gallery-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 30px;
    transition: var(--transition);
}

.back-link:hover {
    background: rgba(255, 255, 255, 0.3);
}

.gallery-hero h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.gallery-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.full-gallery-section {
    padding: 80px 0;
    background: var(--soft-cream);
}

.gallery-category {
    margin-bottom: 80px;
}

.category-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--ocean-deep);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--sunset-gold);
}

.masonry-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    color: var(--warm-white);
    font-size: 0.95rem;
    font-weight: 600;
}

.gallery-cta {
    text-align: center;
    padding: 60px 40px;
    background: var(--warm-white);
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    margin-top: 40px;
}

.gallery-cta h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--ocean-deep);
    margin-bottom: 15px;
}

.gallery-cta p {
    font-size: 1.2rem;
    color: var(--slate-gray);
    margin-bottom: 30px;
}

.gallery-cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 3rem;
    color: var(--warm-white);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2001;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--sunset-coral);
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#lightboxImage {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-caption {
    margin-top: 20px;
    font-size: 1.1rem;
    color: var(--warm-white);
    text-align: center;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    color: var(--warm-white);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    padding: 20px 30px;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 8px;
}

.lightbox-nav:hover {
    background: rgba(0, 0, 0, 0.8);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* Responsive - Property Pages */
@media (max-width: 1024px) {
    .hero-title-modern {
        font-size: 3.5rem;
    }

    .featured-grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    .featured-main {
        height: 400px;
    }

    .featured-secondary {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-item {
        height: 200px;
    }

    .content-layout {
        grid-template-columns: 1fr;
    }

    .booking-card.sticky {
        position: static;
    }

    .sidebar-content {
        gap: 20px;
    }

    .booking-card {
        padding: 25px 20px;
    }

    .highlights-modern-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .amenities-modern-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nearby-modern-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-main {
        grid-row: auto;
        height: 400px;
    }
    
    .gallery-side {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    
    .gallery-side img {
        height: 200px;
    }
    
    .gallery-bottom {
        grid-column: auto;
    }
    
    .overview-layout {
        grid-template-columns: 1fr;
    }
    
    .booking-sidebar.sticky {
        position: static;
    }
    
    .amenities-columns {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title-modern {
        font-size: 2.5rem;
    }

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

    .hero-quick-stats {
        gap: 20px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .featured-secondary {
        grid-template-columns: 1fr;
    }

    .highlights-modern-grid {
        grid-template-columns: 1fr;
    }

    .amenities-modern-grid {
        grid-template-columns: 1fr;
    }

    .bedrooms-modern-grid {
        grid-template-columns: 1fr;
    }

    .nearby-modern-grid {
        grid-template-columns: 1fr;
    }

    .rules-modern-grid {
        grid-template-columns: 1fr;
    }

    .form-group-inline {
        grid-template-columns: 1fr;
    }

    .masonry-gallery {
        grid-template-columns: 1fr;
    }

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

    .property-hero-title {
        font-size: 2.5rem;
    }
    
    .property-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .property-hero-stats {
        gap: 20px;
    }
    
    .gallery-side {
        grid-template-columns: 1fr;
    }
    
    .gallery-bottom {
        grid-template-columns: 1fr;
    }
    
    .gallery-bottom img {
        height: 250px;
    }
    
    .additional-photos-grid {
        grid-template-columns: 1fr;
    }
    
    .additional-photos-grid .photo-item img {
        height: 300px;
    }
    
    .overview-intro h2 {
        font-size: 2rem;
    }
    
    .amenities-columns {
        grid-template-columns: 1fr;
    }
    
    .bedroom-grid {
        grid-template-columns: 1fr;
    }
    
    .rules-grid {
        grid-template-columns: 1fr;
    }
    
    .nearby-grid {
        grid-template-columns: 1fr;
    }
    
    .date-picker-group {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}