/*
Theme Name: Green Island
Theme URI: https://greenisland.lv
Author: Green Island
Author URI: https://greenisland.lv
Description: Custom theme for Green Island - Pirts uz Udens
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: greenisland
*/

:root {
    --color-forest: #2D4A3E;
    --color-forest-dark: #1a2f27;
    --color-forest-light: #3d5f4f;
    --color-sage: #8B9D83;
    --color-sage-light: #a8b8a1;
    --color-cream: #F5F2ED;
    --color-cream-dark: #E8E4DC;
    --color-warm: #F47F40;
    --color-warm-light: #f9a06d;
    --color-gold: #C4A962;
    --color-text: #2C2C2C;
    --color-text-light: #5A5A5A;
    --color-white: #FFFFFF;

    --font-display: 'Cormorant Upright', serif;
    --font-body: 'Outfit', sans-serif;
    --font-accent: 'Cormorant', serif;

    --section-padding: 100px 0;
    --container-width: 1200px;
    --border-radius: 4px;

    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html[lang="ru"] {
    --font-display: 'Cormorant', serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--color-text);
    background-color: var(--color-cream);
    line-height: 1.7;
    font-size: 16px;
}

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    letter-spacing: 0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: 0.02em;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.section-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-sage);
    margin-bottom: 16px;
    display: block;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition-smooth);
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: var(--container-width);
    height: 1px;
    background: rgba(255,255,255,0.3);
    transition: var(--transition-smooth);
}

.header.scrolled {
    background: var(--color-forest);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.header.scrolled::after {
    opacity: 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo img {
    height: 45px;
    width: auto;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav a {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--color-white);
    text-decoration: none;
    opacity: 0.9;
    transition: var(--transition-smooth);
}

.nav a:hover {
    opacity: 1;
    color: var(--color-warm);
}

/* Keep CTA button text white on hover (override nav a:hover) */
.nav .nav-cta:hover {
    color: var(--color-white);
}

.nav-cta-group {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 20px;
    padding-left: 20px;
    border-left: 1px solid rgba(255,255,255,0.2);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: var(--border-radius);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.nav-cta svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.nav-cta-call {
    color: var(--color-white);
    border: 1px solid rgba(255,255,255,0.3);
    background: transparent;
}

.nav-cta-call:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
    color: var(--color-white);
}

.nav-cta-reserve {
    background: var(--color-forest-light);
    color: var(--color-white);
    border: 1px solid var(--color-forest-light);
}

.header.scrolled .nav-cta-reserve {
    background: var(--color-warm);
    border-color: var(--color-warm);
}

.nav-cta-reserve:hover {
    background: var(--color-warm);
    border-color: var(--color-warm);
    color: var(--color-white);
}

/* Mobile header */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--color-white);
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    position: relative;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-white);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-cta-group {
    display: none;
}

@media (max-width: 1024px) {
    .nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-cta-group {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .mobile-cta {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: var(--border-radius);
        color: var(--color-white);
        transition: var(--transition-smooth);
    }

    .mobile-cta svg {
        width: 20px;
        height: 20px;
    }

    .mobile-cta-call {
        border: 1px solid rgba(255,255,255,0.3);
        background: transparent;
    }

    .mobile-cta-reserve {
        background: var(--color-forest-light);
    }

    .header.scrolled .mobile-cta-reserve {
        background: var(--color-warm);
    }
}

/* iPhone Pro and smaller screens */
@media (max-width: 430px) {
    .logo img {
        height: 36px;
    }

    .mobile-cta {
        width: 34px;
        height: 34px;
    }

    .mobile-cta svg {
        width: 17px;
        height: 17px;
    }

    .mobile-menu-btn svg {
        width: 22px;
        height: 22px;
    }

    .mobile-cta-group {
        gap: 6px;
    }
}

/* Mobile Navigation Menu */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    height: 100dvh;
    background: var(--color-forest);
    z-index: 1001;
    transition: right 0.3s ease;
    padding: 80px 30px 40px;
    box-shadow: -5px 0 30px rgba(0,0,0,0.3);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--color-white);
    cursor: pointer;
    padding: 8px;
}

.mobile-nav-close svg {
    width: 24px;
    height: 24px;
}

.mobile-nav a {
    display: block;
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--color-white);
    text-decoration: none;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition-smooth);
}

.mobile-nav a:hover {
    color: var(--color-warm);
    padding-left: 10px;
}

.mobile-nav-cta {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-nav-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    border: none;
}

.mobile-nav-cta a svg {
    width: 18px;
    height: 18px;
}

.mobile-nav-cta .nav-cta-call {
    border: 1px solid rgba(255,255,255,0.3);
    background: transparent;
}

.mobile-nav-cta .nav-cta-reserve {
    background: var(--color-warm);
    color: var(--color-white);
}

.mobile-nav-cta .nav-cta-reserve:hover {
    background: var(--color-warm-light);
    color: var(--color-white);
}

.mobile-nav-cta a svg {
    flex-shrink: 0;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===== HERO ===== */
.hero {
    height: 100vh;
    min-height: 700px;
    background-size: cover;
    background-position: center 55%;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background: linear-gradient(180deg, rgba(26, 47, 39, 0.4) 0%, rgba(45, 74, 62, 0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    width: 100%;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: calc(100% - 80px);
    padding-top: 90px;
    padding-bottom: 25px;
}

.hero-text {
    text-align: center;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.hero-label {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    opacity: 0.9;
    margin-bottom: 20px;
}

.hero h1 {
    margin-bottom: 20px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.4);
    font-weight: 400;
    line-height: 1.1;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 300;
    opacity: 0.95;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.btn-primary {
    background: var(--color-forest);
    color: var(--color-white);
    padding: 14px 32px;
    border-radius: var(--border-radius);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: 1px solid var(--color-forest);
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--color-forest-light);
    border-color: var(--color-forest-light);
}

.btn-secondary {
    background: transparent;
    color: var(--color-white);
    padding: 14px 32px;
    border-radius: var(--border-radius);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.5);
    transition: var(--transition-smooth);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--color-white);
}

/* Google Reviews Badge */
.google-reviews {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255,255,255,0.2);
}

.google-reviews svg {
    width: 20px;
    height: 20px;
}

.google-stars {
    display: flex;
    gap: 2px;
}

.google-stars svg {
    width: 14px;
    height: 14px;
    fill: #FBBC04;
}

.google-reviews span {
    font-size: 0.85rem;
    opacity: 0.9;
}

.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
    text-decoration: none;
    cursor: pointer;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.scroll-indicator svg {
    width: 28px;
    height: 28px;
    color: var(--color-white);
    opacity: 0.6;
}

/* ===== INTRO FEATURES ===== */
.intro-features {
    padding: 80px 0 60px;
    background: var(--color-cream);
}

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

.feature-card {
    text-align: center;
    padding: 20px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    color: var(--color-forest);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--color-forest);
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ===== QUOTE SECTION ===== */
.quote-section {
    padding: 60px 0 80px;
    text-align: center;
    background: var(--color-cream);
}

.quote-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.quote-mark {
    font-family: var(--font-display);
    font-size: 5rem;
    color: var(--color-sage-light);
    line-height: 1;
    margin-bottom: -20px;
    opacity: 0.6;
}

.quote-text {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: clamp(1.15rem, 2vw, 1.5rem);
    color: var(--color-forest);
    line-height: 1.8;
    margin-bottom: 20px;
}

.quote-author {
    font-size: 0.85rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* ===== PIRTS SECTION ===== */
.pirts-section {
    padding: var(--section-padding);
    background: var(--color-white);
}

.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-grid.reverse {
    direction: rtl;
}

.section-grid.reverse > * {
    direction: ltr;
}

.section-image {
    position: relative;
}

.section-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.section-image::before {
    content: '';
    position: absolute;
    top: -16px;
    left: -16px;
    right: 16px;
    bottom: 16px;
    border: 1px solid var(--color-sage-light);
    border-radius: var(--border-radius);
    z-index: -1;
}

.section-content h2 {
    color: var(--color-forest);
    margin-bottom: 20px;
}

.section-content p {
    color: var(--color-text-light);
    margin-bottom: 28px;
    font-size: 1rem;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    margin-bottom: 28px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 14px;
    font-size: 0.95rem;
}

.feature-list li svg {
    width: 20px;
    height: 20px;
    color: var(--color-forest);
    flex-shrink: 0;
    margin-top: 3px;
}

.feature-list li strong {
    color: var(--color-forest);
    font-weight: 500;
}

.link-more {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--color-warm);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.link-more:hover {
    gap: 14px;
}

.link-more svg {
    width: 18px;
    height: 18px;
}

/* ===== LOKĀCIJA SECTION ===== */
.location-section {
    padding: var(--section-padding);
    background: var(--color-forest);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.location-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.location-content {
    position: relative;
    z-index: 1;
}

.location-header {
    text-align: center;
    margin-bottom: 50px;
}

.location-header .section-label {
    color: var(--color-sage-light);
}

.location-header h2 {
    margin-bottom: 14px;
}

.location-header p {
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
    font-size: 1rem;
}

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

.location-card {
    background: rgba(255,255,255,0.07);
    padding: 32px 28px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255,255,255,0.1);
}

.location-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.location-card-header svg {
    width: 28px;
    height: 28px;
    color: var(--color-sage-light);
}

.location-card h3 {
    color: var(--color-white);
    font-size: 1.2rem;
}

.location-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.location-card li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.6;
}

.location-card li:last-child {
    border-bottom: none;
}

.location-card li strong {
    color: var(--color-white);
    font-weight: 500;
}

.location-map {
    margin-top: 40px;
}

.location-map iframe {
    width: 100%;
    height: 350px;
    border-radius: var(--border-radius);
}

@media (max-width: 768px) {
    .location-map iframe {
        height: 280px;
    }
}

/* ===== ATPŪTA / AMENITIES SECTION ===== */
.amenities-section {
    padding: var(--section-padding);
    background: var(--color-cream);
}

.amenities-header {
    text-align: center;
    margin-bottom: 50px;
}

.amenities-header h2 {
    color: var(--color-forest);
    margin-bottom: 14px;
}

.amenities-header p {
    max-width: 550px;
    margin: 0 auto;
    color: var(--color-text-light);
}

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

.amenity-card {
    background: var(--color-white);
    padding: 28px 22px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.amenity-card:hover {
    border-color: var(--color-sage-light);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.amenity-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 14px;
    color: var(--color-forest);
}

.amenity-card h4 {
    font-size: 1.05rem;
    color: var(--color-forest);
    margin-bottom: 10px;
}

.amenity-card p {
    font-size: 0.85rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* ===== GALLERY ===== */
.gallery-section {
    padding: var(--section-padding);
    background: var(--color-white);
}

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

.gallery-header h2 {
    color: var(--color-forest);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 220px);
    gap: 12px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.gallery-item[data-lightbox] {
    cursor: pointer;
}

/* ===== LIGHTBOX ===== */
.gi-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.gi-lightbox.active {
    display: flex;
}

.gi-lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gi-lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gi-lightbox-img.loaded {
    opacity: 1;
}

.gi-lightbox-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 10001;
    line-height: 1;
    padding: 8px;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.gi-lightbox-close:hover {
    opacity: 1;
}

.gi-lightbox-prev,
.gi-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    opacity: 0.7;
    transition: opacity 0.2s, background 0.2s;
}

.gi-lightbox-prev:hover,
.gi-lightbox-next:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.2);
}

.gi-lightbox-prev {
    left: 16px;
}

.gi-lightbox-next {
    right: 16px;
}

.gi-lightbox-prev svg,
.gi-lightbox-next svg {
    width: 24px;
    height: 24px;
}

.gi-lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-body);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .gi-lightbox-prev,
    .gi-lightbox-next {
        width: 40px;
        height: 40px;
    }

    .gi-lightbox-prev {
        left: 8px;
    }

    .gi-lightbox-next {
        right: 8px;
    }

    .gi-lightbox-close {
        top: 10px;
        right: 12px;
    }
}

/* ===== PRICING SECTION ===== */
.pricing-section {
    padding: var(--section-padding);
    background: var(--color-cream);
}

.pricing-header {
    text-align: center;
    margin-bottom: 50px;
}

.pricing-header h2 {
    color: var(--color-forest);
    margin-bottom: 14px;
}

.pricing-header p {
    max-width: 550px;
    margin: 0 auto;
    color: var(--color-text-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--color-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    transition: var(--transition-smooth);
    position: relative;
    border: 1px solid var(--color-cream-dark);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 50px rgba(0,0,0,0.1);
}

.pricing-card.featured {
    border: 2px solid var(--color-warm);
}

.pricing-badge {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: var(--color-warm);
    color: var(--color-white);
    padding: 8px 20px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
    z-index: 10;
}

.pricing-card.featured .pricing-header-card {
    padding-top: 48px;
}

.pricing-header-card {
    padding: 32px 28px 24px;
    background: var(--color-forest);
    color: var(--color-white);
    text-align: center;
}

.pricing-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 4px;
}

.pricing-price span {
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.8;
}

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

.pricing-body {
    padding: 28px;
}

/* Compact pricing tiers */
.pricing-tiers-compact {
    margin-bottom: 20px;
    font-size: 0.8rem;
    background: var(--color-cream);
    border-radius: var(--border-radius);
    padding: 12px;
}

.pricing-tier-row {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.pricing-tier-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--color-forest);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
    padding-left: 4px;
}

.pricing-tier-label.weekend {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid var(--color-cream-dark);
}

.pricing-tier-row.shared {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid var(--color-cream-dark);
}

.pricing-tier-row span {
    flex: 1;
    text-align: center;
    color: var(--color-forest);
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    margin-bottom: 28px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--color-text);
}

.pricing-features li svg {
    width: 18px;
    height: 18px;
    color: var(--color-forest);
    flex-shrink: 0;
    margin-top: 2px;
}

.btn-book {
    display: block;
    width: 100%;
    padding: 14px;
    background: var(--color-forest);
    color: var(--color-white);
    border: none;
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-align: center;
    text-decoration: none;
}

.btn-book:hover {
    background: var(--color-forest-dark);
}

/* Button element reset for .btn-book */
button.btn-book {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    line-height: 1.5;
}

/* Button group for Call + WhatsApp */
.btn-book-group {
    display: flex;
    gap: 10px;
}

.btn-book-group .btn-book {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-book-group .btn-book svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn-book-call {
    background: var(--color-forest);
}

.btn-book-whatsapp {
    background: #25D366;
}

.btn-book-whatsapp:hover {
    background: #1da851;
}

/* Pricing CTA text */
.pricing-cta-text {
    font-size: 1.1rem;
    color: var(--color-forest);
    margin-top: 10px;
    font-weight: 500;
}

/* Hero WhatsApp button */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-whatsapp svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.btn-whatsapp svg {
    width: 20px;
    height: 20px;
}

/* ===== EXTRAS SECTION ===== */
.extras-section {
    padding: 70px 0;
    background: var(--color-forest-dark);
    color: var(--color-white);
}

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

.extras-content h3 {
    font-size: 1.7rem;
    margin-bottom: 14px;
}

.extras-content p {
    opacity: 0.9;
    margin-bottom: 20px;
    line-height: 1.7;
}

.extras-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 24px;
}

.extras-price .amount {
    font-size: 2.2rem;
    font-weight: 600;
}

.extras-price .period {
    opacity: 0.8;
}

.btn-outline {
    display: inline-block;
    padding: 12px 28px;
    border: 1px solid rgba(255,255,255,0.4);
    color: var(--color-white);
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--color-white);
}

.extras-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

/* ===== BOOKING SECTION ===== */
.booking-section {
    padding: var(--section-padding);
    background: var(--color-cream);
}

.booking-header {
    text-align: center;
    margin-bottom: 50px;
}

.booking-header h2 {
    color: var(--color-forest);
    margin-bottom: 14px;
}

.booking-header p {
    max-width: 550px;
    margin: 0 auto;
    color: var(--color-text-light);
}

.booking-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Booking Cards */
.booking-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.booking-card {
    background: var(--color-white);
    border-radius: var(--border-radius);
    padding: 40px 32px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--color-cream-dark);
    transition: var(--transition-smooth);
    position: relative;
}

.booking-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--color-sage);
}

.booking-card-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background: var(--color-warm);
    color: var(--color-white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.booking-card-icon {
    width: 64px;
    height: 64px;
    background: var(--color-forest);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--color-white);
}

.booking-card-icon svg {
    width: 28px;
    height: 28px;
}

.booking-card h3 {
    font-size: 1.5rem;
    color: var(--color-forest);
    margin-bottom: 8px;
}

.booking-card-subtitle {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.booking-card-price {
    margin-bottom: 24px;
}

.booking-card-price .price {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-forest);
}

.booking-card-price .period {
    font-size: 1rem;
    color: var(--color-text-light);
}

.booking-card-features {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    text-align: left;
}

.booking-card-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--color-cream-dark);
    font-size: 0.9rem;
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.booking-card-features li:last-child {
    border-bottom: none;
}

.booking-card-features li::before {
    content: '';
    width: 18px;
    height: 18px;
    background: var(--color-forest);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20,6 9,17 4,12'/%3E%3C/svg%3E");
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: center;
}

.btn-book-modal {
    width: 100%;
    padding: 16px 24px;
    background: var(--color-forest);
    color: var(--color-white);
    border: none;
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-book-modal:hover {
    background: var(--color-forest-dark);
}

.btn-book-modal svg {
    width: 20px;
    height: 20px;
}

/* Booking Modal - Blank Canvas Approach */
.booking-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    background: #fff;
    overflow-y: auto;
    overflow-x: hidden;
}

.booking-modal.active {
    display: block;
}

/* Green header bar */
.booking-modal-header {
    position: sticky;
    top: 0;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background: var(--color-forest);
    color: var(--color-white);
}

.booking-modal-header h3 {
    font-size: 1.1rem;
    margin: 0;
    color: var(--color-white);
}

/* Close button */
.booking-modal-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--color-white);
    transition: background 0.2s;
}

.booking-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.booking-modal-close svg {
    width: 20px;
    height: 20px;
}

/* Content area - BLANK CANVAS for FluentBooking */
.booking-modal-content {
    padding: 20px;
    background: #fff;
    min-height: calc(100vh - 72px);
    /* NO height constraints, NO overflow - let FluentBooking control its layout */
}

/* Responsive booking cards */
@media (max-width: 768px) {
    .booking-cards {
        grid-template-columns: 1fr;
    }

    .booking-card {
        padding: 32px 24px;
    }

    .booking-modal-header {
        padding: 14px 16px;
    }

    .booking-modal-content {
        padding: 16px;
    }
}

.booking-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 20px 0;
    margin-bottom: 20px;
}

.booking-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--color-text);
}

.booking-feature svg {
    width: 16px;
    height: 16px;
    color: var(--color-forest);
}

.btn-book-now {
    width: 100%;
    padding: 14px 24px;
    background: var(--color-forest);
    color: var(--color-white);
    border: none;
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-book-now:hover {
    background: var(--color-forest-dark);
}

.btn-book-now svg {
    width: 18px;
    height: 18px;
}

.booking-embed-note {
    margin-top: 40px;
    padding: 24px;
    background: var(--color-white);
    border-radius: var(--border-radius);
    border: 1px dashed var(--color-sage-light);
    text-align: center;
}

.booking-embed-note p {
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin: 0;
}

.booking-embed-note code {
    background: var(--color-cream);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.85rem;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: var(--section-padding);
    background: var(--color-white);
}

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

.faq-header h2 {
    color: var(--color-forest);
}

.faq-list {
    max-width: 750px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-cream-dark);
}

.faq-question {
    width: 100%;
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--color-forest);
    text-align: left;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.faq-question:hover {
    color: var(--color-forest-light);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    transition: var(--transition-smooth);
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-question svg {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding-bottom: 22px;
    color: var(--color-text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: var(--section-padding);
    background: var(--color-cream);
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-header h2 {
    color: var(--color-forest);
    margin-bottom: 14px;
}

.contact-header p {
    max-width: 550px;
    margin: 0 auto;
    color: var(--color-text-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 36px 24px;
    background: var(--color-white);
    border-radius: var(--border-radius);
    text-decoration: none;
    border: 2px solid transparent;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.contact-card:hover {
    border-color: var(--color-forest);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(45, 74, 62, 0.15);
}

.contact-card-icon {
    width: 64px;
    height: 64px;
    background: var(--color-forest);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition-smooth);
}

.contact-card:hover .contact-card-icon {
    background: var(--color-warm);
    transform: scale(1.1);
}

.contact-card-icon svg {
    width: 28px;
    height: 28px;
    color: var(--color-white);
}

.contact-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--color-forest);
    margin-bottom: 8px;
}

.contact-detail {
    font-size: 0.95rem;
    color: var(--color-text);
    margin-bottom: 16px;
    font-weight: 500;
}

.contact-action {
    display: inline-block;
    padding: 10px 20px;
    background: var(--color-cream);
    color: var(--color-forest);
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: var(--border-radius);
    transition: var(--transition-smooth);
}

.contact-card:hover .contact-action {
    background: var(--color-forest);
    color: var(--color-white);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--color-forest-dark);
    color: var(--color-white);
    padding: 70px 0 35px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand .logo {
    margin-bottom: 16px;
    display: inline-block;
}

.footer-brand .logo img {
    height: 40px;
}

.footer-brand p {
    opacity: 0.8;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: var(--transition-smooth);
}

.footer-social a:hover {
    background: var(--color-forest-light);
}

.footer-social svg {
    width: 16px;
    height: 16px;
}

.footer-column h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--color-white);
}

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

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.footer-column a:hover {
    color: var(--color-white);
}

.footer-bottom {
    padding-top: 35px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    opacity: 0.7;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .section-grid {
        gap: 50px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

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

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 180px);
    }

    .gallery-item:first-child {
        grid-column: span 2;
    }

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

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

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .section-grid.reverse {
        direction: ltr;
    }

    .section-image {
        order: 1;
    }

    .section-image img {
        height: 300px;
    }

    .section-image::before {
        display: none;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
    }

    .contact-card {
        padding: 28px 20px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .gallery-item,
    .gallery-item:first-child {
        grid-column: span 1;
        grid-row: span 1;
        height: 220px;
    }

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

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        width: 200px;
        text-align: center;
    }

    .booking-option-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .booking-option-header {
        flex-wrap: wrap;
        gap: 12px;
    }

    .booking-option-price {
        text-align: left;
    }
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ===== LANGUAGE SWITCHER ===== */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: 20px;
    padding-left: 20px;
    border-left: 1px solid rgba(255,255,255,0.2);
}

.lang-option {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    padding: 4px 8px;
    border-radius: 3px;
    transition: var(--transition-smooth);
    letter-spacing: 0.05em;
}

.lang-option:hover {
    color: var(--color-white);
    background: rgba(255,255,255,0.1);
}

.lang-option.active {
    color: var(--color-white);
    background: rgba(255,255,255,0.15);
    font-weight: 600;
}

/* Mobile language switcher */
.lang-switcher-mobile {
    display: flex;
    gap: 8px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 10px;
}

.lang-option-mobile {
    flex: 1;
    text-align: center;
    padding: 10px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--border-radius);
    transition: var(--transition-smooth);
}

.lang-option-mobile:hover {
    color: var(--color-white);
    border-color: rgba(255,255,255,0.3);
}

.lang-option-mobile.active {
    background: rgba(255,255,255,0.15);
    color: var(--color-white);
    border-color: rgba(255,255,255,0.3);
}

@media (max-width: 1024px) {
    .lang-switcher {
        display: none;
    }
}

/* ===== WORDPRESS SPECIFIC ===== */
.wp-block-embed {
    margin: 0;
}

/* Trustindex widget styling */
.trustindex-widget {
    margin: 20px 0;
}

.hero-cta .trustindex-wrapper {
    width: 100%;
}

/* FluentBooking widget styling in modal */
.booking-modal-body .fluent_booking_app {
    margin: 0;
}

/* ===== 404 PAGE ===== */
.error-404-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-forest-dark);
    color: var(--color-white);
    padding: var(--section-padding) 0;
}

.error-404-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.error-404-code {
    font-family: var(--font-display);
    font-size: clamp(6rem, 15vw, 10rem);
    font-weight: 600;
    line-height: 1;
    color: var(--color-sage);
    opacity: 0.3;
    display: block;
    margin-bottom: -20px;
}

.error-404-content h1 {
    font-family: var(--font-display);
    color: var(--color-white);
    margin-bottom: 16px;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.error-404-message {
    color: var(--color-sage-light);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.error-404-suggestions {
    color: var(--color-sage);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.error-404-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.error-404-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--border-radius);
    color: var(--color-white);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.error-404-link:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--color-sage);
}

.error-404-link-home {
    background: var(--color-forest);
    border-color: var(--color-forest);
}

.error-404-link-home:hover {
    background: var(--color-forest-light);
    border-color: var(--color-forest-light);
}

.error-404-contact {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.error-404-contact .btn-secondary {
    color: var(--color-white);
}

/* ===== PAGE TEMPLATE ===== */
.page-template-main {
    min-height: 60vh;
    padding: 120px 0 var(--section-padding);
    background: var(--color-cream);
}

.page-template-main .entry-title {
    margin-bottom: 24px;
}

.page-template-main .entry-content {
    max-width: 800px;
    line-height: 1.8;
}

.page-template-main .entry-content p {
    margin-bottom: 1em;
}

/* ===== SEARCH RESULTS ===== */
.search-results-page {
    min-height: 60vh;
    padding: 120px 0 var(--section-padding);
    background: var(--color-cream);
}

.search-results-title {
    margin-bottom: 32px;
}

.search-result-item {
    padding: 24px 0;
    border-bottom: 1px solid var(--color-cream-dark);
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item h2 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.search-result-item h2 a {
    color: var(--color-forest);
    text-decoration: none;
}

.search-result-item h2 a:hover {
    color: var(--color-forest-light);
}

.search-result-excerpt {
    color: var(--color-text-light);
    line-height: 1.6;
}

.search-no-results {
    text-align: center;
    padding: 60px 0;
}

.search-no-results p {
    color: var(--color-text-light);
    margin-bottom: 24px;
}
