/* --- VARIABLES & GLOBAL STYLES --- */
:root {
    --forest-green: #2F4841;
    --cream: #F5F3EF;
    --tan-beige: #D2B48C;
    --dark-gray: #333333;
    --font-headline: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--dark-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2 {
    font-family: var(--font-headline);
    font-weight: 700;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 0;
}

.bg-cream { background-color: var(--cream); }
.bg-green {
    background-color: var(--forest-green);
    color: var(--cream);
}
.bg-green h2, .bg-green p, .bg-green li {
    color: var(--cream);
}

/* --- HEADER --- */
#main-header {
    background-color: rgba(245, 243, 239, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 50;
}

#main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 5%;
}

#main-header .logo {
    font-family: var(--font-headline);
    font-size: 1.5em;
    font-weight: 700;
    text-decoration: none;
    color: var(--dark-gray);
    transition: color 0.3s ease;
}

#main-header .logo:hover {
    color: var(--forest-green);
}

#main-header nav a {
    margin: 0 1rem;
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 700;
    position: relative;
    z-index: 10;
}

#main-header .logo,
#main-header nav a,
#main-header .btn {
    opacity: 1 !important;
}

#main-header .btn,
#sticky-booking-bar .btn {
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
}

/* --- BUTTONS --- */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 0.375rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--forest-green);
    position: relative;
    overflow: hidden;
    color: var(--forest-green);
    background-color: white;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:hover {
    background-color: var(--forest-green);
    border-color: var(--forest-green);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(47, 72, 65, 0.2);
}

/* --- STICKY BOOKING BAR --- */
#sticky-booking-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--forest-green), #1e3a32);
    padding: 1rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 100;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

#sticky-booking-bar.visible {
    transform: translateY(0);
}

.booking-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.urgency-text {
    color: var(--cream);
    font-weight: 700;
    font-size: 1.1rem;
}

/* --- OVERLAPPING REVIEW CARD --- */
.overlapping-review-card {
    max-width: 700px;
    margin: -5rem auto 0 auto;
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(245,243,239,0.98));
    backdrop-filter: blur(10px);
    padding: 3.5rem 3rem 3rem 3rem;
    border-radius: 1rem;
    box-shadow: 0 20px 60px rgba(47, 72, 65, 0.15);
    text-align: center;
    position: relative;
    z-index: 10;
    border: 1px solid rgba(210, 180, 140, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.overlapping-review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(47, 72, 65, 0.25);
}

.overlapping-review-card::before {
    content: '"';
    position: absolute;
    top: -0.5rem;
    left: 1.5rem;
    font-family: var(--font-headline);
    font-size: 8rem;
    color: var(--tan-beige);
    opacity: 0.2;
    line-height: 1;
}

.overlapping-review-card .stars {
    color: var(--tan-beige);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.25rem;
}

.overlapping-review-card p {
    font-family: var(--font-headline);
    font-size: 1.75rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--forest-green);
    font-style: italic;
    font-weight: 400;
}

.overlapping-review-card .reviewer {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--dark-gray);
    font-size: 0.95rem;
    letter-spacing: 0.05rem;
    text-transform: uppercase;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.badge-item {
    background-color: transparent;
    color: var(--forest-green);
    padding: 0.5rem 1.25rem;
    border-radius: 0;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    border-bottom: 2px solid var(--tan-beige);
}

/* --- HERO SECTION --- */
#hero {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

/* Gradient removed - was too strong */

/* Hero overlay removed per user request */

#hero .hero-content {
    position: relative;
    z-index: 2;
    padding: 1rem;
}

.social-proof-badge {
    background: linear-gradient(145deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #f5f5f5;
    padding: 0.65rem 1.75rem;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.925rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    box-shadow: 0 4px 16px rgba(0,0,0,0.35);
    border: 1px solid rgba(212,175,55,0.25);
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-proof-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.4), transparent);
}

.social-proof-badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    border-color: rgba(212,175,55,0.4);
}

#hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 300;
    letter-spacing: 0.05rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-cta-buttons {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

.urgency-note {
    color: var(--cream);
    font-weight: 600;
    background-color: rgba(210, 180, 140, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.95rem;
}

#hero .badge {
    display: inline-block;
    background-color: var(--tan-beige);
    color: var(--dark-gray);
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1.125rem;
}

/* --- TWO COLUMN LAYOUTS --- */
.two-column, .two-column-flipped {
    display: grid;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 768px) {
    .two-column, .two-column-flipped {
        grid-template-columns: 1fr 1fr;
    }
    .two-column-flipped .image-content {
        order: -1;
    }
}

/* --- STATS & VALUE PROPS --- */
.stats-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    font-size: 0.875rem;
    color: var(--dark-gray);
    font-weight: 500;
    letter-spacing: 0.025rem;
}

.stat-item strong {
    color: var(--forest-green);
    font-size: 1.5rem;
    font-family: var(--font-headline);
    display: block;
    margin-bottom: 0.25rem;
}

.value-props {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.prop-item {
    background-color: rgba(47, 72, 65, 0.05);
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    font-weight: 600;
    border-left: 3px solid var(--forest-green);
}

/* --- INTRO SECTION --- */
#intro .image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

#intro .image-grid img:first-child {
    grid-column: span 2;
}

.image-grid img,
.two-column img,
.two-column-flipped img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border-radius: 0.5rem;
}

.image-grid img:hover,
.two-column img:hover,
.two-column-flipped img:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* --- FEATURES SECTION --- */
#features .icon-list {
    list-style: none;
    padding: 0;
    font-size: 1.125rem;
}
#features .icon-list li {
    margin-bottom: 1rem;
}

/* --- WHY BOOK DIRECT SECTION (High Converting) --- */
#why-book-direct {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.direct-booking-hero {
    margin-bottom: 3rem;
    position: relative;
}

.direct-booking-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #2F4841;
    padding: 8px 24px;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    animation: pulse-glow 2s ease-in-out infinite;
}

.savings-amount {
    font-size: 1.25rem;
    margin-right: 8px;
}

.savings-text {
    font-size: 0.9rem;
    opacity: 0.9;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3); }
    50% { box-shadow: 0 4px 25px rgba(255, 215, 0, 0.6); }
}

.direct-booking-hero h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
    color: var(--cream);
}

.subheadline {
    font-size: 1.25rem;
    color: rgba(245, 243, 239, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.benefit-card {
    background: rgba(245, 243, 239, 0.1);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(245, 243, 239, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-5px);
    background: rgba(245, 243, 239, 0.15);
    border-color: var(--tan-beige);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 243, 239, 0.1);
    border-radius: 50%;
    color: var(--tan-beige);
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    background: var(--tan-beige);
    color: var(--forest-green);
    transform: scale(1.1);
}

.benefit-icon svg {
    stroke: currentColor;
}

.benefit-card h3 {
    color: var(--cream);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-family: var(--font-headline);
}

.benefit-card p {
    color: rgba(245, 243, 239, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

.cta-bar {
    background: rgba(245, 243, 239, 0.1);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.urgency-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--cream);
    font-weight: 500;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: #ff4444;
    border-radius: 50%;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.cta-bar .btn {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .cta-bar {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-bar .btn {
        width: 100%;
    }
}

/* --- SPLIT IMAGE SECTIONS --- */
.split-image-sections {
    width: 100%;
    padding: 0;
    margin: 0;
}

.split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
}

.split-section {
    position: relative;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.split-content {
    text-align: center;
    color: white;
    padding: 3rem;
    max-width: 500px;
}

.split-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.split-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.btn-white {
    background: white;
    color: #222;
    border: 2px solid white;
}

.btn-white:hover {
    background: transparent;
    color: white;
    border-color: white;
}

@media (max-width: 768px) {
    .split-container {
        grid-template-columns: 1fr;
    }
    
    .split-section {
        min-height: 400px;
    }
}

/* --- FAQ SECTION (SEO Optimized) --- */
#faq {
    padding: 6rem 0;
}

.faq-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.125rem;
    margin-top: -2rem;
    margin-bottom: 3rem;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--tan-beige);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.faq-question {
    width: 100%;
    background: white;
    border: none;
    padding: 1.5rem;
    text-align: left;
    font-family: var(--font-headline);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark-gray);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: #f9f9f9;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--forest-green);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #fafafa;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1.5rem;
}

.faq-answer p {
    margin: 0;
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
}

/* --- TESTIMONIALS SECTION --- */
.centered-headline {
    text-align: center;
    margin-bottom: 1rem;
    font-size: clamp(2rem, 4vw, 3rem);
}

.reviews-source {
    text-align: center;
    font-size: 0.875rem;
    color: #717171;
    margin-bottom: 3rem;
    font-weight: 500;
}

.reviews-source svg {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.testimonial-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: white;
    padding: 1.75rem;
    border-radius: 12px;
    border: 1px solid #EBEBEB;
    box-shadow: 0 8px 30px rgba(47, 72, 65, 0.12);
    border: 1px solid rgba(210, 180, 140, 0.15);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    border-color: #222;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0.5rem;
    left: 1rem;
    font-family: var(--font-headline);
    font-size: 5rem;
    color: var(--tan-beige);
    opacity: 0.15;
    line-height: 1;
}

.testimonial-card p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.5;
    color: #222;
    font-weight: 400;
    color: var(--forest-green);
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial-card span {
    font-family: var(--font-body);
    font-weight: 600;
    color: #717171;
    font-size: 0.875rem;
    font-size: 0.85rem;
    letter-spacing: 0.05rem;
    text-transform: uppercase;
    display: block;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(210, 180, 140, 0.3);
}

/* --- FINAL CTA SECTION --- */
#final-cta .image-content {
    position: relative;
    min-height: 300px;
}

#final-cta img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
}

/* --- FOOTER --- */
footer {
    padding: 4rem 5% 2rem 5%;
    position: relative;
    z-index: 50;
}

footer .container {
    max-width: 1400px;
    margin: 0 auto;
}

footer .footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    align-items: start;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(245, 243, 239, 0.2);
}

footer .footer-section {
    display: flex;
    flex-direction: column;
}

footer .footer-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--cream);
    margin-bottom: 1rem;
}

footer .footer-section h4 {
    color: var(--cream);
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

footer .footer-column h4 {
    color: var(--cream);
    font-weight: 700;
    margin-bottom: 1rem;
}

footer .footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

footer .footer-nav a {
    color: rgba(245, 243, 239, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

footer .footer-nav a:hover {
    color: var(--tan-beige);
    transform: translateX(5px);
}

footer .footer-bottom {
    text-align: center;
    padding-top: 2rem;
    color: rgba(245, 243, 239, 0.6);
}

/* --- CHECKOUT PAGE --- */
.checkout-page {
    background-color: var(--cream);
    padding: 2rem 0 4rem 0;
    min-height: 80vh;
}

.checkout-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
}

@media (max-width: 968px) {
    .checkout-container {
        grid-template-columns: 1fr;
    }
}

.checkout-left h1 {
    font-family: var(--font-headline);
    color: var(--forest-green);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.checkout-subtitle {
    color: var(--dark-gray);
    opacity: 0.7;
    margin-bottom: 3rem;
}

.checkout-section {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.checkout-section h2 {
    font-family: var(--font-headline);
    color: var(--forest-green);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--forest-green);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid rgba(210, 180, 140, 0.3);
    border-radius: 0.5rem;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--forest-green);
}

.happyguest-section {
    border: 2px solid var(--tan-beige);
}

.happyguest-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.required-badge {
    background-color: var(--forest-green);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.happyguest-card {
    background: linear-gradient(135deg, rgba(47, 72, 65, 0.03), rgba(210, 180, 140, 0.05));
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.happyguest-logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--forest-green);
    margin-bottom: 1rem;
}

.happyguest-description {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.happyguest-benefits {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.happyguest-benefits li {
    padding: 0.5rem 0;
    color: var(--dark-gray);
}

.happyguest-fee {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--tan-beige);
    font-size: 1.1rem;
}

/* Cancellation Policy Styles */
.cancellation-policy-section {
    border: 3px solid #d4af37;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(212, 175, 55, 0.1));
}

.policy-card {
    background: white;
    border-radius: 0.5rem;
    overflow: hidden;
}

.policy-badge {
    background: linear-gradient(135deg, #2d5016 0%, #3d6b1f 100%);
    color: #f5f3ef;
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    letter-spacing: 0.5px;
}

.policy-content {
    padding: 1.5rem;
}

.policy-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 1rem;
    background: #f9f8f6;
    border-radius: 0.5rem;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
}

.policy-item:hover {
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.policy-item:nth-child(1) {
    border-left-color: #10b981;
}

.policy-item:nth-child(2) {
    border-left-color: #f59e0b;
}

.policy-item:nth-child(3) {
    border-left-color: #ef4444;
}

.policy-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.policy-text {
    color: #333;
    line-height: 1.6;
    font-size: 0.95rem;
}

.policy-text strong {
    color: #2d5016;
}

.policy-note {
    background: #fffbeb;
    border-left: 4px solid #d4af37;
    padding: 1rem 1.5rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.policy-note strong {
    color: #2d5016;
}

.payment-secure-badge {
    background: linear-gradient(135deg, rgba(47, 72, 65, 0.05), rgba(210, 180, 140, 0.05));
    padding: 0.75rem;
    border-radius: 0.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--forest-green);
    font-weight: 600;
}

#payment-element {
    margin: 1.5rem 0;
}

.payment-errors {
    color: #B91C1C;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.checkbox-label {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    cursor: pointer;
}

.checkbox-label a {
    color: var(--forest-green);
    text-decoration: underline;
}

.booking-summary {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    position: sticky;
    top: 2rem;
}

.booking-summary h3 {
    font-family: var(--font-headline);
    color: var(--forest-green);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.property-summary {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(210, 180, 140, 0.3);
}

.property-summary img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 0.5rem;
}

.property-summary h4 {
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.property-summary p {
    font-size: 0.9rem;
    color: var(--dark-gray);
    opacity: 0.7;
}

.summary-details {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(210, 180, 140, 0.3);
}

.detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.price-breakdown .price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.price-breakdown .price-row.total {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--tan-beige);
    font-size: 1.25rem;
}

.checkout-trust-badges {
    margin-top: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(47, 72, 65, 0.05), rgba(210, 180, 140, 0.05));
    border-radius: 0.5rem;
}

.trust-item {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--forest-green);
    font-weight: 600;
}

/* --- CONFIRMATION PAGE --- */
.confirmation-page {
    background-color: var(--cream);
    padding: 4rem 2rem;
    min-height: 80vh;
}

.confirmation-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.confirmation-icon {
    margin: 0 auto 2rem auto;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.confirmation-page h1 {
    font-family: var(--font-headline);
    color: var(--forest-green);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.confirmation-subtitle {
    font-size: 1.25rem;
    color: var(--dark-gray);
    opacity: 0.7;
    margin-bottom: 3rem;
}

.confirmation-card {
    background: white;
    padding: 2.5rem;
    border-radius: 0.75rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: left;
}

.confirmation-card h2 {
    font-family: var(--font-headline);
    color: var(--forest-green);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.booking-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(47, 72, 65, 0.03), rgba(210, 180, 140, 0.05));
    border-radius: 0.5rem;
}

.info-row .label {
    color: var(--dark-gray);
    opacity: 0.7;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: start;
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: var(--forest-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.step-content h3 {
    font-weight: 700;
    color: var(--forest-green);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--dark-gray);
    line-height: 1.6;
}

.enhance-stay {
    background: linear-gradient(135deg, rgba(47, 72, 65, 0.05), rgba(210, 180, 140, 0.1));
}

.enhancement-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

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

.enhancement-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.enhancement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border-color: var(--tan-beige);
}

.enhancement-card h3 {
    font-family: var(--font-headline);
    color: var(--forest-green);
    margin-bottom: 0.5rem;
}

.enhancement-card p {
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.enhancement-link {
    color: var(--forest-green);
    font-weight: 700;
}

.confirmation-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 3rem 0;
}

.confirmation-contact {
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 0.75rem;
}

.confirmation-contact p {
    margin-bottom: 0.5rem;
}

.confirmation-contact a {
    color: var(--forest-green);
    text-decoration: underline;
}

/* --- SUBTLE BADGE ANIMATION --- */
.social-proof-badge {
    animation: subtleGlow 3s ease-in-out infinite;
}

@keyframes subtleGlow {
    0%, 100% { 
        box-shadow: 0 4px 16px rgba(0,0,0,0.35);
    }
    50% { 
        box-shadow: 0 4px 20px rgba(0,0,0,0.4), 0 0 30px rgba(212,175,55,0.15);
    }
}

.badge {
    animation: float 4s ease-in-out infinite;
}

/* --- HERO SUBPAGE PARALLAX --- */
#hero-subpage {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

#hero-subpage .hero-content {
    position: relative;
    z-index: 2;
}

#hero-subpage h1 {
    font-family: var(--font-headline);
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* --- STAT COUNTER ANIMATIONS --- */
.stat-item strong {
    display: inline-block;
    transition: transform 0.3s ease;
}

.stat-item:hover strong {
    transform: scale(1.15);
    color: var(--tan-beige);
}

/* --- TESTIMONIAL CARD ENHANCEMENTS --- */
.testimonial-grid {
    perspective: 1000px;
}

/* Airbnb-style star rating */
.testimonial-card .stars,
.stars {
    color: #FF385C;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    letter-spacing: 2px;
}

/* Show more button styling */
.show-more-btn {
    background: white;
    color: #222;
    border: 1px solid #222;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
}

.show-more-btn:hover {
    background: #F7F7F7;
    transform: scale(1.02);
}

/* --- VALUE PROPS ANIMATION --- */
.prop-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.prop-item:hover {
    transform: translateX(10px);
    background-color: rgba(47, 72, 65, 0.08);
    border-left-width: 5px;
}

/* --- VIATOR WIDGET --- */
.viator-widget-container {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(47, 72, 65, 0.1);
    margin: 2rem auto;
    max-width: 1200px;
}

.centered-text {
    text-align: center;
    color: var(--dark-gray);
}

/* --- ANIMATIONS --- */
.fade-in-section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Stagger animation for children */
.fade-in-section.is-visible > * {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

.fade-in-section.is-visible > *:nth-child(1) { animation-delay: 0.1s; }
.fade-in-section.is-visible > *:nth-child(2) { animation-delay: 0.2s; }
.fade-in-section.is-visible > *:nth-child(3) { animation-delay: 0.3s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- BOOKING MODAL --- */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(47, 72, 65, 0.9);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    position: relative;
    background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(245,243,239,0.95));
    margin: 5% auto;
    padding: 3rem;
    width: 90%;
    max-width: 600px;
    border-radius: 1rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from { 
        transform: translateY(-50px);
        opacity: 0;
    }
    to { 
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    font-weight: 300;
    color: var(--forest-green);
    cursor: pointer;
    transition: transform 0.2s ease;
}

.close-modal:hover {
    transform: scale(1.1);
}

.modal-content h2 {
    font-family: var(--font-headline);
    color: var(--forest-green);
    margin-bottom: 0.5rem;
    font-size: 2.5rem;
}

.modal-subtitle {
    color: var(--dark-gray);
    opacity: 0.7;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.date-inputs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.input-group label {
    display: block;
    font-weight: 600;
    color: var(--forest-green);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    letter-spacing: 0.05rem;
    text-transform: uppercase;
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid rgba(210, 180, 140, 0.3);
    border-radius: 0.5rem;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: white;
    cursor: pointer;
}

.input-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%232F4841' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.input-group input:focus,
.input-group select:focus {
    outline: none;
    border-color: var(--forest-green);
    box-shadow: 0 0 0 3px rgba(47, 72, 65, 0.1);
    transform: translateY(-2px);
}

.input-group input:hover,
.input-group select:hover {
    border-color: var(--tan-beige);
}

.pricing-section {
    background: linear-gradient(135deg, rgba(47, 72, 65, 0.05), rgba(210, 180, 140, 0.1));
    padding: 1.5rem;
    border-radius: 0.75rem;
    margin-top: 1.5rem;
}

.pricing-breakdown {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(210, 180, 140, 0.2);
}

.price-row.total {
    border-bottom: none;
    padding-top: 0.75rem;
    border-top: 2px solid var(--tan-beige);
    font-size: 1.25rem;
}

.modal-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--dark-gray);
    opacity: 0.6;
    margin-top: 1rem;
    letter-spacing: 0.05rem;
}

/* --- BLOG / JOURNAL STYLES --- */
.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.post-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.post-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 0;
}

.post-card .card-content {
    padding: 1.5rem;
}

.post-category {
    display: inline-block;
    background: var(--tan-beige);
    color: var(--dark-gray);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    margin-bottom: 0.75rem;
}

.post-card h3 {
    font-family: var(--font-headline);
    font-size: 1.5rem;
    color: var(--dark-gray);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.post-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.post-date {
    display: block;
    color: #999;
    font-size: 0.85rem;
    font-style: italic;
}

/* Empty state for no posts */
.post-grid:empty::after {
    content: "No blog posts yet. Start Sanity Studio to create your first post!";
    display: block;
    text-align: center;
    padding: 3rem;
    color: #999;
    font-style: italic;
}

@media (max-width: 768px) {
    .post-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}


/* --- CONTACT PAGE STYLES --- */
.contact-page {
    padding: 0;
}

.page-hero {
    padding: 6rem 0 4rem;
    text-align: center;
    color: #f5f3ef;
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

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

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    margin: 4rem auto;
    max-width: 1200px;
}

.contact-form-section h2,
.contact-info-section h3 {
    color: var(--forest-green);
    margin-bottom: 1rem;
}

.section-intro {
    color: var(--dark-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    border: 2px solid rgba(210, 180, 140, 0.3);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    font-weight: 600;
    color: var(--forest-green);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    letter-spacing: 0.03rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid rgba(210, 180, 140, 0.3);
    border-radius: 0.5rem;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--forest-green);
    box-shadow: 0 0 0 3px rgba(47, 72, 65, 0.1);
}

.contact-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%232F4841' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.date-range-inputs {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.date-range-inputs input {
    flex: 1;
}

.date-range-inputs span {
    color: var(--dark-gray);
    font-weight: 500;
}

.form-note {
    font-size: 0.85rem;
    color: var(--dark-gray);
    opacity: 0.7;
    margin-top: 1rem;
}

.form-message {
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    margin-top: 1.5rem;
    font-weight: 500;
}

.form-message.success {
    background: #d1fae5;
    color: #065f46;
    border-left: 4px solid #10b981;
}

.form-message.error {
    background: #fee2e2;
    color: #991b1b;
    border-left: 4px solid #ef4444;
}

/* Contact Cards */
.contact-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 2px solid rgba(210, 180, 140, 0.3);
    margin-bottom: 1.5rem;
}

.contact-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--forest-green);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-person {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-person strong {
    color: var(--forest-green);
    font-size: 1.1rem;
}

.contact-link {
    color: var(--tan-beige);
    font-size: 1.25rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--forest-green);
}

.contact-label {
    font-size: 0.85rem;
    color: var(--dark-gray);
    opacity: 0.7;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--dark-gray);
    opacity: 0.8;
    margin-top: 1rem;
    line-height: 1.6;
}

.highlight-card {
    background: linear-gradient(135deg, rgba(47, 72, 65, 0.05), rgba(210, 180, 140, 0.1));
    border-color: var(--tan-beige);
}

.quick-actions {
    display: flex;
    flex-direction: column;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: #f9f8f6;
    border-radius: 0.5rem;
    text-decoration: none;
    color: var(--forest-green);
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--tan-beige);
    color: white;
    transform: translateX(5px);
}

.social-link span {
    font-size: 1.5rem;
}

.response-guarantee {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #fffbeb, #fef3c7);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border-left: 4px solid #d4af37;
}

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

.guarantee-text strong {
    display: block;
    color: var(--forest-green);
    margin-bottom: 0.25rem;
}

.guarantee-text p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--dark-gray);
}

/* Map Section */
.map-section {
    margin: 4rem 0;
}

.map-section h2 {
    text-align: center;
    color: var(--forest-green);
    margin-bottom: 2rem;
}

.map-container {
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.map-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.map-detail-item {
    text-align: center;
    padding: 1.5rem;
    background: #f9f8f6;
    border-radius: 0.5rem;
}

.map-detail-item strong {
    display: block;
    color: var(--forest-green);
    margin-bottom: 0.5rem;
}

.map-detail-item span {
    color: var(--dark-gray);
    font-size: 0.95rem;
}

/* Benefits Grid */
.why-contact-section {
    margin: 4rem 0;
    padding: 3rem 0;
    background: #f9f8f6;
}

.why-contact-section h2 {
    text-align: center;
    color: var(--forest-green);
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.benefit-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: var(--forest-green);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.benefit-card p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Testimonials */
.contact-testimonials {
    margin: 4rem 0;
}

.contact-testimonials h2 {
    text-align: center;
    color: var(--forest-green);
    margin-bottom: 3rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    border: 2px solid rgba(210, 180, 140, 0.3);
}

.testimonial-card .stars {
    color: #d4af37;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    color: var(--dark-gray);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.testimonial-card strong {
    color: var(--forest-green);
    font-size: 0.9rem;
}

/* FAQ Preview */
.faq-preview-section {
    margin: 4rem 0;
}

.faq-preview-section h2 {
    text-align: center;
    color: var(--forest-green);
    margin-bottom: 1rem;
}

.faq-preview-section .section-intro {
    text-align: center;
    margin-bottom: 2rem;
}

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

.faq-preview-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: white;
    border: 2px solid rgba(210, 180, 140, 0.3);
    border-radius: 0.5rem;
    text-decoration: none;
    color: var(--forest-green);
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-preview-item:hover {
    border-color: var(--tan-beige);
    background: rgba(210, 180, 140, 0.05);
    transform: translateX(5px);
}

.faq-preview-item span {
    color: var(--tan-beige);
    font-size: 1.25rem;
}

.faq-preview-section .btn {
    display: block;
    margin: 0 auto;
    width: fit-content;
}

/* --- FAQ PAGE STYLES --- */
.faq-page {
    padding: 0;
}

.faq-search-section {
    max-width: 700px;
    margin: 3rem auto;
    text-align: center;
}

.faq-search-input {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    border: 2px solid rgba(210, 180, 140, 0.3);
    border-radius: 2rem;
    transition: all 0.3s ease;
}

.faq-search-input:focus {
    outline: none;
    border-color: var(--forest-green);
    box-shadow: 0 0 0 4px rgba(47, 72, 65, 0.1);
}

.search-hint {
    margin-top: 0.75rem;
    color: var(--dark-gray);
    opacity: 0.7;
    font-size: 0.9rem;
}

.faq-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0;
}

.category-link {
    padding: 0.75rem 1.5rem;
    background: white;
    border: 2px solid rgba(210, 180, 140, 0.3);
    border-radius: 2rem;
    text-decoration: none;
    color: var(--forest-green);
    font-weight: 600;
    transition: all 0.3s ease;
}

.category-link:hover {
    background: var(--tan-beige);
    color: white;
    border-color: var(--tan-beige);
    transform: translateY(-2px);
}

.faq-category-section {
    margin: 4rem 0;
    scroll-margin-top: 100px;
}

.faq-category-section h2 {
    color: var(--forest-green);
    font-size: 1.75rem;
    margin-bottom: 2rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--tan-beige);
}

.faq-item {
    background: white;
    border: 2px solid rgba(210, 180, 140, 0.3);
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--tan-beige);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-question h3 {
    margin: 0;
    color: var(--forest-green);
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--tan-beige);
    font-weight: 700;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

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

.faq-answer p,
.faq-answer ul {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--dark-gray);
    line-height: 1.8;
}

.faq-answer ul {
    list-style-position: inside;
    margin-top: 0.5rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

.faq-answer a {
    color: var(--tan-beige);
    text-decoration: none;
    font-weight: 600;
}

.faq-answer a:hover {
    text-decoration: underline;
}

.faq-contact-cta {
    margin: 5rem 0;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--forest-green), rgba(61, 107, 31, 0.95));
    border-radius: 1rem;
    text-align: center;
    color: #f5f3ef;
}

.cta-content h2 {
    color: #f5f3ef;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .map-details {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .faq-preview-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-categories {
        flex-direction: column;
        align-items: stretch;
    }
    
    .category-link {
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

/* --- CONTACT & FAQ PAGE TYPOGRAPHY --- */
.contact-page h1,
.contact-page h2,
.contact-page h3,
.faq-page h1,
.faq-page h2,
.faq-page h3 {
    font-family: var(--font-heading);
}

.contact-page,
.faq-page {
    font-family: var(--font-body);
}

/* Elegant benefit icons without emojis */
.benefit-icon {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--tan-beige);
    font-family: Georgia, serif;
}

/* Elegant guarantee icon */
.guarantee-icon {
    font-size: 2rem;
    font-weight: 700;
    color: var(--tan-beige);
    font-family: Georgia, serif;
}

/* Star styling for testimonials */
.stars {
    font-size: 1rem;
    letter-spacing: 0.1rem;
    color: var(--tan-beige);
}

/* Mobile responsive footer */
@media (max-width: 968px) {
    footer .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    footer .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    footer .footer-nav {
        align-items: center;
    }
}

/* === CONTACT & FAQ PAGE STYLES === */

/* Page hero - use Lato to match site */
.page-hero h1 {
    font-family: 'Lato', sans-serif !important;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-hero .hero-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 1.25rem;
    opacity: 0.95;
}

/* Dark overlay for hero readability */
.page-hero {
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

/* Contact and FAQ section headings */
.contact-page h2,
.contact-page h3,
.faq-page h2,
.faq-page h3 {
    font-family: 'Playfair Display', serif !important;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--forest-green);
    cursor: pointer;
    padding: 0.5rem;
    z-index: 101;
}

/* Airbnb-style star colors */
.stars {
    color: #FF5A5F;
    font-size: 1rem;
    letter-spacing: 0.1rem;
}

/* Benefits grid - 3 per line on desktop */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    justify-items: center;
}

.benefit-card {
    text-align: center;
    max-width: 320px;
}

/* Header Navigation - Prevent Wrapping */
#main-header .container {
    flex-wrap: nowrap;
}

#main-header nav {
    flex-wrap: nowrap;
    gap: 0.5rem;
}

#main-header nav a {
    margin: 0 0.5rem;
    white-space: nowrap;
    font-size: 0.95rem;
}

/* Mobile Responsive Header */
@media (max-width: 1200px) {
    #main-header nav a {
        margin: 0 0.3rem;
        font-size: 0.85rem;
    }
}

/* Hamburger menu - only when menu doesn't fit */
@media (max-width: 1100px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    #main-header nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: calc(100vh - 70px);
        background: rgba(245, 243, 239, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s ease;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        z-index: 100;
        gap: 0;
    }
    
    #main-header nav.active {
        left: 0;
    }
    
    #main-header nav a {
        margin: 0;
        padding: 1rem;
        width: 100%;
        border-bottom: 1px solid rgba(47, 72, 65, 0.1);
        font-size: 1rem;
    }
    
    #main-header .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Benefits grid responsive */
@media (max-width: 968px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Footer - Horizontal Layout */
footer .footer-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(245, 243, 239, 0.2);
    flex-wrap: wrap;
}

footer .footer-section {
    flex: 1;
    min-width: 200px;
}

footer .footer-section:first-child {
    flex: 1.5;
}

@media (max-width: 968px) {
    footer .footer-content {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    footer .footer-section {
        flex: 1 1 45%;
    }
}

@media (max-width: 640px) {
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    footer .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    footer .footer-section {
        flex: 1 1 100%;
        text-align: center;
    }
    
    footer .footer-nav {
        align-items: center;
    }
}

/* Contact Page Mobile */
@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .map-details {
        grid-template-columns: 1fr;
    }
    
    .faq-preview-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .date-range-inputs {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .date-range-inputs span {
        display: none;
    }
}

/* FAQ Mobile */
@media (max-width: 640px) {
    .faq-categories {
        flex-direction: column;
    }
    
    .category-link {
        text-align: center;
        width: 100%;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        padding-right: 2rem;
    }
    
    .faq-toggle {
        font-size: 1.25rem;
    }
}

/* FAQ Accordion */
.faq-item {
    margin-bottom: 1rem;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.faq-question {
    cursor: pointer;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}

.faq-question:hover {
    background: #f9f9f9;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--tan-beige);
    transition: transform 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: #fafafa;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 1.5rem;
}

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