/**
 * Layout CSS - Simplified Structure
 * Hero section + Parallax background for content
 */

/* === Fixed Header === */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-small {
    height: 50px;
    width: auto;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.header-nav a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--ocean-deep);
    transition: color 0.2s;
}

.header-nav a:hover {
    color: var(--ocean-medium);
}

.btn-header {
    padding: 0.5rem 1.5rem;
    background: var(--ocean-medium);
    color: white;
    border-radius: 0.5rem;
}

.btn-header:hover {
    background: var(--ocean-deep);
    color: white;
}

/* === Hero Fullscreen Section === */
.hero-fullscreen {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    background: rgba(255, 255, 255, 0.9);
    padding: 4rem 5rem;
    border-radius: 1.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--ocean-deep);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: var(--ocean-medium);
    margin-bottom: 3rem;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* === Main Content with Parallax Background === */
#main-content {
    position: relative;
    z-index: 10;
}

.parallax-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
}

.parallax-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: opacity 0.5s ease;
}

.parallax-layer.high-tide {
    background-image: url('../images/watercolor-high-tide.png');
    opacity: 1;
    z-index: 1;
}

.parallax-layer.low-tide {
    background-image: url('../images/watercolor-low-tide.png');
    opacity: 0;
    z-index: 2;
    transform: scaleX(-1);
    /* Flip horizontally to match high-tide composition */
}

#marine-life-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

/* === Content Sections === */
.content-section {
    position: relative;
    padding: 8rem 0;
    background: transparent;
    margin-bottom: 4rem;
    z-index: 10;
}

.content-section:first-child {
    margin-top: 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.section-header {
    margin-bottom: 5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--ocean-deep);
    margin-bottom: 1.5rem;
}

.section-intro {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

/* === About Section === */
.about-content {
    display: grid;
    gap: 5rem;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 1.8;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.about-text p {
    margin-bottom: 2rem;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.highlight-card {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(91, 163, 199, 0.1) 0%, rgba(26, 77, 109, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.highlight-card:hover::before {
    opacity: 1;
}

.highlight-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(26, 77, 109, 0.3);
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(91, 163, 199, 0.5);
}

.highlight-card>* {
    position: relative;
    z-index: 1;
}

.highlight-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.highlight-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--ocean-medium);
}

.highlight-card p {
    font-size: 1rem;
    color: var(--gray-600);
    margin: 0;
}

/* === Features Section === */

/* Subsection Titles */
.subsection-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--ocean-deep);
    margin-bottom: 2.5rem;
    text-align: center;
}

/* Quick Facts Grid */
.quick-facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.fact-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(91, 163, 199, 0.3);
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.fact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(91, 163, 199, 0.15) 0%, rgba(26, 77, 109, 0.15) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.fact-card:hover::before {
    opacity: 1;
}

.fact-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 60px rgba(26, 77, 109, 0.25);
    border-color: rgba(91, 163, 199, 0.6);
}

.fact-card>* {
    position: relative;
    z-index: 1;
}

.fact-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--ocean-medium);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.fact-unit {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--ocean-deep);
    margin-bottom: 0.75rem;
}

.fact-label {
    font-size: 0.95rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Amenities Section */
.amenities-section {
    margin-bottom: 5rem;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
}

.amenity-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 1.25rem;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.amenity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(91, 163, 199, 0.08) 0%, rgba(26, 77, 109, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.amenity-card:hover::before {
    opacity: 1;
}

.amenity-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(26, 77, 109, 0.2);
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(91, 163, 199, 0.5);
}

.amenity-card>* {
    position: relative;
    z-index: 1;
}

.amenity-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.amenity-name {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--ocean-deep);
    margin-bottom: 0.5rem;
}

.amenity-desc {
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* Rooms Section */
.rooms-section {
    margin-bottom: 5rem;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.room-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(91, 163, 199, 0.3);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.room-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(91, 163, 199, 0.1) 0%, rgba(26, 77, 109, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.room-card:hover::before {
    opacity: 1;
}

.room-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(26, 77, 109, 0.25);
    border-color: rgba(91, 163, 199, 0.6);
}

.room-card>* {
    position: relative;
    z-index: 1;
}

.room-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(91, 163, 199, 0.2);
}

.room-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.room-header h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--ocean-deep);
    margin: 0;
    flex: 1;
}

.room-floor {
    font-size: 0.85rem;
    color: var(--gray-600);
    background: rgba(91, 163, 199, 0.15);
    padding: 0.4rem 0.8rem;
    border-radius: 0.5rem;
    font-weight: 500;
}

.room-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.room-features li {
    font-size: 0.95rem;
    color: var(--gray-700);
    padding-left: 1.5rem;
    position: relative;
}

.room-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--ocean-medium);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Suitable For Section */
.suitable-section {
    margin-bottom: 5rem;
}

.suitable-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.suitable-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(91, 163, 199, 0.3);
    border-radius: 1.25rem;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.suitable-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(91, 163, 199, 0.08) 0%, rgba(26, 77, 109, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.suitable-card:hover::before {
    opacity: 1;
}

.suitable-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(26, 77, 109, 0.2);
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(91, 163, 199, 0.5);
}

.suitable-card>* {
    position: relative;
    z-index: 1;
}

.suitable-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.suitable-text {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--ocean-deep);
}

/* House Rules Section */
.house-rules-section {
    margin-bottom: 5rem;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.rule-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    border: 2px solid;
    border-radius: 1.25rem;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.rule-card.rule-not-allowed {
    border-color: rgba(239, 68, 68, 0.3);
}

.rule-card.rule-info {
    border-color: rgba(59, 130, 246, 0.3);
}

.rule-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.rule-card.rule-not-allowed:hover {
    border-color: rgba(239, 68, 68, 0.5);
    background: rgba(254, 242, 242, 0.8);
}

.rule-card.rule-info:hover {
    border-color: rgba(59, 130, 246, 0.5);
    background: rgba(239, 246, 255, 0.8);
}

.rule-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.rule-text {
    flex: 1;
}

.rule-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ocean-deep);
    margin-bottom: 0.25rem;
}

.rule-desc {
    font-size: 0.9rem;
    color: var(--gray-600);
}

.rule-status {
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Special Features Section */
.special-features-section {
    margin-bottom: 3rem;
}

.features-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-badge {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(91, 163, 199, 0.4);
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.feature-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(91, 163, 199, 0.12) 0%, rgba(26, 77, 109, 0.12) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.feature-badge:hover::before {
    opacity: 1;
}

.feature-badge:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(26, 77, 109, 0.25);
    border-color: rgba(91, 163, 199, 0.7);
}

.feature-badge>* {
    position: relative;
    z-index: 1;
}

.badge-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.badge-text {
    flex: 1;
}

.badge-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ocean-deep);
    margin-bottom: 0.5rem;
}

.badge-desc {
    font-size: 0.95rem;
    color: var(--gray-600);
}

/* === Gallery Grid === */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    aspect-ratio: 4 / 3;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.gallery-item:hover {
    transform: translateY(-16px) scale(1.03);
    box-shadow: 0 24px 48px rgba(26, 77, 109, 0.25);
    border-color: rgba(91, 163, 199, 0.8);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
    transform: translateY(0);
}

/* === Responsive === */
@media (max-width: 768px) {
    .header-container {
        padding: 0.75rem 1rem;
    }

    .logo-small {
        height: 40px;
    }

    .header-nav a:not(.btn-header) {
        display: none;
    }

    .hero-overlay-content {
        padding: 2rem;
        width: 90%;
    }

    .hero-cta {
        flex-direction: column;
    }

    .content-section {
        padding: 5rem 0;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .quick-facts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rules-grid {
        grid-template-columns: 1fr;
    }

    .features-badges {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* === AGB Page Styles === */
.agb-hero {
    position: relative;
    width: 100%;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(91, 163, 199, 0.9) 0%, rgba(26, 77, 109, 0.9) 100%);
    margin-top: 80px;
}

.agb-hero-content {
    text-align: center;
    color: white;
    padding: 3rem;
}

.agb-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
}

.agb-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
}

.agb-main {
    background: linear-gradient(to bottom, rgba(240, 248, 255, 0.5), rgba(255, 255, 255, 0.8));
    padding: 6rem 0;
    min-height: 60vh;
}

.agb-content {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 1.5rem;
    padding: 4rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.agb-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(91, 163, 199, 0.2);
}

.agb-section:last-of-type {
    border-bottom: none;
}

.agb-section h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--ocean-deep);
    margin-bottom: 1.25rem;
}

.agb-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 1rem;
}

.agb-section p:last-child {
    margin-bottom: 0;
}

.agb-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.agb-list li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-700);
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
}

.agb-list li::before {
    content: '•';
    position: absolute;
    left: 0.5rem;
    color: var(--ocean-medium);
    font-weight: 700;
    font-size: 1.5rem;
}

.agb-note {
    background: rgba(91, 163, 199, 0.1);
    border-left: 4px solid var(--ocean-medium);
    padding: 1rem 1.5rem;
    margin-top: 1.5rem;
    border-radius: 0.5rem;
    font-style: italic;
}

.agb-footer-info {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(91, 163, 199, 0.3);
    text-align: center;
}

.agb-footer-info p {
    margin-bottom: 0.5rem;
    color: var(--gray-600);
}

/* === Footer Styles === */
.site-footer {
    background: rgba(26, 77, 109, 0.95);
    backdrop-filter: blur(20px);
    color: white;
    padding: 4rem 0 2rem;
    margin-top: 6rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-section p {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

/* === Why Book Here Section === */
.why-book-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.benefit-card {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(91, 163, 199, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.benefit-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 25px 60px rgba(26, 77, 109, 0.3);
    border-color: rgba(91, 163, 199, 0.7);
}

.benefit-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.benefit-stat {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--ocean-medium);
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.25rem;
    color: var(--ocean-deep);
    margin-bottom: 1rem;
}

.benefit-card p {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* === Meet Your Hosts Section === */
.hosts-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.hosts-image {
    position: sticky;
    top: 120px;
}

.hosts-placeholder {
    background: linear-gradient(135deg, rgba(91, 163, 199, 0.2) 0%, rgba(26, 77, 109, 0.2) 100%);
    border: 3px dashed rgba(91, 163, 199, 0.4);
    border-radius: 1.5rem;
    padding: 4rem 2rem;
    text-align: center;
    aspect-ratio: 3/4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hosts-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.hosts-placeholder p {
    font-size: 1.25rem;
    color: var(--ocean-deep);
    font-weight: 600;
}

.hosts-text {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.hosts-greeting h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--ocean-deep);
    margin-bottom: 1.5rem;
}

.hosts-intro {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 2rem;
}

.hosts-message p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
}

.hosts-signature {
    font-style: italic;
    color: var(--ocean-medium);
    margin-top: 2rem;
}

.hosts-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(91, 163, 199, 0.2);
}

.host-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-text {
    display: flex;
    flex-direction: column;
}

.stat-text strong {
    font-size: 1.25rem;
    color: var(--ocean-deep);
}

.stat-text span {
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* === Distance Cards === */
.distance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.distance-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
}

.distance-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(26, 77, 109, 0.2);
    background: rgba(255, 255, 255, 0.9);
}

.distance-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.distance-info {
    flex: 1;
}

.distance-value {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ocean-medium);
    margin-bottom: 0.25rem;
}

.distance-label {
    font-size: 0.95rem;
    color: var(--gray-600);
}

.location-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.location-highlight {
    padding: 3rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
}

.highlight-icon-large {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.location-highlight h4 {
    font-size: 1.5rem;
    color: var(--ocean-deep);
    margin-bottom: 1rem;
}

.location-highlight p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--gray-700);
}

/* === Pricing Section === */
.pricing-content {
    display: grid;
    gap: 3rem;
}

.pricing-main {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 3rem;
}

.pricing-main h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--ocean-deep);
    margin-bottom: 2rem;
}

.pricing-terms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.pricing-term {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(91, 163, 199, 0.08);
    border-radius: 1rem;
}

.term-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.term-info {
    display: flex;
    flex-direction: column;
}

.term-info strong {
    font-size: 1.1rem;
    color: var(--ocean-deep);
    margin-bottom: 0.25rem;
}

.term-info span {
    font-size: 0.95rem;
    color: var(--gray-600);
}

.pricing-extras {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.extras-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
}

.extras-card h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--ocean-deep);
    margin-bottom: 1.5rem;
}

.tax-period {
    font-size: 0.95rem;
    color: var(--ocean-medium);
    font-weight: 600;
    margin-bottom: 1rem;
}

.extras-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.extras-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(91, 163, 199, 0.15);
}

.extras-list li:last-child {
    border-bottom: none;
}

.extra-name {
    font-size: 1.05rem;
    color: var(--gray-700);
}

.extra-price {
    font-weight: 600;
    color: var(--ocean-medium);
    font-size: 1.05rem;
}

.tax-note {
    font-size: 0.85rem;
    color: var(--gray-600);
    font-style: italic;
    margin-top: 1rem;
}

/* === Activities Section === */
.activity-category {
    margin-bottom: 4rem;
}

.activity-category:last-child {
    margin-bottom: 0;
}

.category-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--ocean-deep);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid rgba(91, 163, 199, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-align: center;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
}

.activity-tag {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(91, 163, 199, 0.3);
    border-radius: 2rem;
    padding: 1.25rem 1.5rem;
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    color: var(--ocean-deep);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
}

.activity-tag:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 12px 30px rgba(26, 77, 109, 0.2);
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(91, 163, 199, 0.6);
}

/* Activity Image Tooltip */
.activity-tag[data-image]::after {
    content: '';
    position: absolute;
    bottom: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) scale(0.8);
    width: 300px;
    height: 200px;
    background-image: var(--tooltip-image);
    background-size: cover;
    background-position: center;
    border-radius: 1rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
    border: 3px solid rgba(255, 255, 255, 0.9);
}

.activity-tag[data-image]::before {
    content: '';
    position: absolute;
    bottom: calc(100% + 5px);
    left: 50%;
    transform: translateX(-50%) scale(0.8);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid rgba(255, 255, 255, 0.9);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1001;
}

.activity-tag[data-image]:hover::after {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

.activity-tag[data-image]:hover::before {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

/* === Reviews Section === */
.rating-overview {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.rating-main {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(91, 163, 199, 0.15) 0%, rgba(26, 77, 109, 0.15) 100%);
    border-radius: 1rem;
}

.rating-score {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 700;
    color: var(--ocean-medium);
    line-height: 1;
    margin-bottom: 1rem;
}

.rating-stars {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.rating-count {
    font-size: 1.1rem;
    color: var(--gray-600);
}

.rating-breakdown {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.rating-item {
    display: grid;
    grid-template-columns: 140px 1fr 60px;
    align-items: center;
    gap: 1.5rem;
}

.rating-category {
    font-size: 1.05rem;
    color: var(--gray-700);
    font-weight: 500;
}

.rating-bar {
    height: 12px;
    background: rgba(91, 163, 199, 0.15);
    border-radius: 6px;
    overflow: hidden;
}

.rating-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--ocean-medium) 0%, var(--ocean-deep) 100%);
    border-radius: 6px;
    transition: width 1s ease;
}

.rating-value {
    font-weight: 700;
    color: var(--ocean-medium);
    font-size: 1.1rem;
    text-align: right;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.review-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.review-stars {
    font-size: 1.25rem;
}

.review-date {
    font-size: 0.9rem;
    color: var(--gray-600);
}

.review-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--ocean-deep);
    margin: 0;
}

.review-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--gray-700);
    font-style: italic;
}

.review-author {
    font-size: 0.95rem;
    color: var(--gray-600);
}

.host-response {
    background: rgba(91, 163, 199, 0.08);
    border-left: 4px solid var(--ocean-medium);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
}

.response-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.host-response p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gray-700);
    margin: 0;
}