/*
Theme Name: Tromsø Adventures
Description: A custom WordPress theme for Tromsø Adventures.
Author: <a href="https://sfkarlsen.no">Sveinung Karlsen</a>
Version: 1.4.0
*/

/* CSS Custom Properties (Variables) – main palette set via PHP in functions.php */
:root {
    --background-color: #F8F8F8;
    --text-color: #333;

    /* Surface / neutrals */
    --surface-color: #fafafa;
    --surface-subtle: #e8eaed;
    --border-subtle: rgba(43, 45, 47, 0.1);

    /* Main palette: --main-color, --button-color, --button-text-color, --main-dark, --warm-accent, --muted-green, --main-sibling */
    --main-color-soft: color-mix(in srgb, var(--main-color) 18%, white);
    --button-hover: color-mix(in srgb, var(--button-color) 88%, black);
    --warm-accent-soft: color-mix(in srgb, var(--warm-accent) 25%, white);
}

/* Font Declarations */
@font-face {
    font-family: 'Sora';
    src: url('./fonts/Sora-VariableFont_wght.woff2') format('woff2');
    font-weight: 100 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('./fonts/Inter-VariableFont_opsz,wght.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('./fonts/Inter-Italic-VariableFont_opsz,wght.woff2') format('woff2');
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}

/* Reset and Base Styles */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: var(--background-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Skip Link */
.skip-link {
    position: absolute;
    left: -9999px;
}

.skip-link:focus {
    position: absolute;
    left: 6px;
    top: 7px;
    z-index: 999999;
    padding: 8px 16px;
    background: #000;
    color: #fff;
    text-decoration: none;
}

/* Header */
.site-header {
    position: relative;
    z-index: 1000;
    background: var(--main-color);
    padding: 1rem 0 0 0;
    transition: all 0.3s ease;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-bottom: 1rem;
}

.site-branding {
    display: flex;
    align-items: center;
}

.custom-logo-link {
    display: block;
    line-height: 0;
}

.custom-logo {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.site-title {
    margin: 0;
    font-size: 1.5rem;
    font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 600;
}

.site-title a {
    text-decoration: none;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.site-description {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Headers */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 1rem 0;
}

/* Navigation */
.main-navigation {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2rem;
}

.main-navigation a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.main-navigation a:hover {
    color: var(--warm-accent);
    text-shadow: 0 2px 8px rgba(200, 133, 74, 0.35);
}

.cta-button {
    display: inline-block;
    background: var(--warm-accent);
    color: #fff !important;
    padding: 0.625rem 1.25rem;
    font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    text-shadow: none !important;
    letter-spacing: 0.08em;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: none;
}

.cta-button:not(.secondary):hover {
    background: color-mix(in srgb, var(--warm-accent) 85%, black);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(200, 133, 74, 0.3);
    color: #fff !important;
}

.cta-button:focus-visible {
    outline: 2px solid var(--warm-accent-soft);
    outline-offset: 3px;
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--warm-accent) 25%, transparent);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    flex-direction: column;
    gap: 3px;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
}

.hamburger-line {
    width: 20px;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    transform-origin: center;
}

.main-navigation.toggled .hamburger-line:nth-child(2) {
    transform: rotate(45deg) translate(0, 7px);
}

.main-navigation.toggled .hamburger-line:nth-child(3) {
    opacity: 0;
}

.main-navigation.toggled .hamburger-line:nth-child(4) {
    transform: rotate(-45deg) translate(0, -7px);
}

/* Header basket – inline in nav, hidden until widget has items */
.header-basket-wrapper {
    display: none;
    align-items: center;
}

.header-basket-wrapper.has-basket {
    display: inline-flex;
}

/* Hide when basket icon is hidden (empty cart) */
.header-basket-wrapper:has(bilberry-basket-icon[hidden]),
.header-basket-wrapper:has(bilberry-basket-icon[style*="display: none"]),
.header-basket-wrapper:has(bilberry-basket-icon:not(:has(button))),
.header-basket-wrapper:has(bilberry-basket-icon button[style*="display: none"]) {
    display: none !important;
}

/* Basket icon – dark header style (light on dark) */
bilberry-basket-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

bilberry-basket-icon::part(root) {
    display: flex;
    align-items: center;
}

.site-header bilberry-basket-icon button {
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.6) !important;
    color: #fff !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
    font-weight: 500 !important;
}

.site-header bilberry-basket-icon button:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: var(--warm-accent) !important;
    color: var(--warm-accent) !important;
}

.screen-reader-text {
    position: absolute !important;
    clip: rect(1px, 1px, 1px, 1px);
    width: 1px !important;
    height: 1px !important;
    overflow: hidden;
}

/* Main Content */
.site-main {
    min-height: 60vh;
}

/* Index Container */
.index-container {
    margin-top: 2rem;
}

/* Front Page Specific */
.front-page {
    padding: 0;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Seasonal activities hero: full width, fixed height on desktop */
.hero-section--narrow {
    height: 400px;
    min-height: 400px;
    max-height: 400px;
}

.hero-section--narrow .hero-layout {
    min-height: 400px;
    padding: 1.5rem 0;
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.25) 60%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero-layout {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    padding: 2rem 0;
}

.hero-text {
    max-width: 600px;
    color: white;
}

.hero-subtitle {
    font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    margin: 0;
    text-transform: uppercase;
    opacity: 0.85;
}

.hero-accent-line {
    width: 60px;
    height: 3px;
    background: var(--warm-accent);
    margin: 1.25rem 0;
    border-radius: 2px;
}

.hero-title {
    font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
    line-height: 1.05;
    margin: 0 0 1.5rem 0;
    letter-spacing: -0.03em;
}

.hero-tagline {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.6;
    margin: 0 0 2.5rem 0;
    opacity: 0.85;
    max-width: 420px;
}

.hero-cta-button {
    display: inline-block;
    background: var(--warm-accent);
    color: #fff;
    padding: 1rem 2.5rem;
    font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    text-shadow: none;
    letter-spacing: 0.08em;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(200, 133, 74, 0.35);
}

.hero-cta-button:hover {
    background: color-mix(in srgb, var(--warm-accent) 85%, black);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(200, 133, 74, 0.45);
}

.hero-cta-button:focus-visible {
    outline: 2px solid var(--warm-accent-soft);
    outline-offset: 3px;
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--warm-accent) 25%, transparent);
}

/* Page Content Section */
.page-content {
    padding: 4rem 0;
}

.page-content .entry-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.entry-header {
    margin-bottom: 1rem;
}

.entry-title {
    margin: 0 0 0.5rem 0;
    font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 600;
}

.entry-title a {
    text-decoration: none;
    color: #333;
}

.entry-title a:hover {
    color: #0073aa;
}

.entry-content {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.entry-content p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: #555;
}

.entry-content a {
    color: var(--main-dark);
    text-decoration: underline;
}

.entry-content a:visited {
    color: var(--main-dark);
}

.entry-content a:hover {
    color: var(--warm-accent);
    text-decoration: underline;
}

.entry-content a:active {
    color: var(--warm-accent);
}

/* Blog Archive/Index Styling */
.site-main article {
    background: #fff;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.site-main article:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.entry-footer {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.read-more {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--warm-accent);
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(43, 45, 47, 0.2);
}

.read-more:hover {
    background: var(--button-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(43, 45, 47, 0.28);
}

/* No Results Page */
.no-results {
    background: #fff;
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.no-results .page-header {
    margin-bottom: 1.5rem;
}

.no-results .page-title {
    color: var(--main-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.no-results .page-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

/* Reviews Section */
.reviews-section {
    background: var(--surface-color);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.reviews-section-title {
    font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--main-color);
    text-align: center;
    margin-bottom: 3rem;
}

.reviews-carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.reviews-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
}

.reviews-btn {
    background: transparent;
    border: 2px solid var(--main-color);
    color: var(--main-color);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reviews-btn:hover {
    background: var(--main-color);
    color: #fff;
}

.reviews-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

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

.reviews-carousel {
    padding: 0;
}

.review-slide {
    text-align: center;
    color: #111827;
}

.review-content {
    max-width: 640px;
    margin: 0 auto;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.review-stars {
    margin-bottom: 1.75rem;
    font-size: 1.25rem;
    letter-spacing: 0.3rem;
}

.star {
    color: var(--surface-subtle);
    transition: color 0.3s ease;
}

.star.filled {
    color: var(--warm-accent);
    text-shadow: none;
}

.review-text {
    font-size: 1.2rem;
    line-height: 1.7;
    font-style: italic;
    margin: 0 0 1.75rem 0;
    color: #333;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 300;
}

.reviewer-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--main-dark);
    font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-style: normal;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Who Are We Section */
.who-are-we-section {
    background: #ffffff;
    padding: 100px 0;
}

.who-are-we-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.who-are-we-label {
    display: inline-block;
    font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--warm-accent);
    margin-bottom: 1rem;
}

.who-are-we-title {
    font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--main-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.who-are-we-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 2.5rem;
}

.who-are-we-description p {
    margin-bottom: 1rem;
}

.who-are-we-grid-col {
    /* right column for the info cards */
}

.featured-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.featured-info-item {
    background: var(--surface-color);
    padding: 2rem;
    border-radius: 8px;
    border-left: 3px solid var(--main-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    box-shadow: none;
}

.featured-info-item:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.featured-info-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 8px;
}

.featured-info-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.featured-info-content {
    flex: 1;
}

.featured-info-header {
    font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--main-dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
    letter-spacing: 0.02em;
}

.featured-info-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4a5568;
    margin: 0;
}

.who-are-we-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.browse-activities-btn,
.contact-us-btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.browse-activities-btn {
    background: var(--main-color);
    color: #ffffff;
    border: 2px solid var(--main-color);
}

.browse-activities-btn:hover {
    background: var(--main-dark);
    border-color: var(--main-dark);
    transform: translateY(-2px);
}

.contact-us-btn {
    background: transparent;
    color: var(--main-dark);
    border: 2px solid var(--main-dark);
}

.contact-us-btn:hover {
    background: var(--main-dark);
    color: #fff;
    transform: translateY(-2px);
}

/* Group Tours Section */
.group-tours-section {
    overflow: hidden;
}

.group-tours-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 560px;
}

.group-tours-text-col {
    background: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
}

.group-tours-text-inner {
    max-width: 460px;
}

.group-tours-label {
    display: inline-block;
    font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--main-dark);
    margin-bottom: 1rem;
}

.group-tours-title {
    font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.group-tours-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
}

.group-tours-description p {
    margin-bottom: 1rem;
}

.group-tours-image-col {
    overflow: hidden;
}

.group-tours-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.group-tours-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.group-tours-btn {
    display: inline-block;
    padding: 14px 28px;
    font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.read-more-btn {
    background-color: var(--warm-accent);
    color: #fff;
    border-color: var(--warm-accent);
}

.read-more-btn:hover {
    background-color: color-mix(in srgb, var(--warm-accent) 85%, black);
    border-color: color-mix(in srgb, var(--warm-accent) 85%, black);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(200, 133, 74, 0.3);
}

.request-quote-btn {
    background-color: var(--main-color);
    color: #ffffff;
    border-color: var(--main-color);
    border-radius: 4px;
}

.request-quote-btn:hover {
    background-color: var(--main-dark);
    border-color: var(--main-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(62, 95, 116, 0.3);
}

/* Responsive styles for front page sections */
@media (max-width: 768px) {
    /* Hero responsive */
    .hero-section {
        min-height: 85vh;
    }

    .hero-layout {
        min-height: 85vh;
    }

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
    }

    .hero-tagline {
        font-size: 1rem;
    }

    /* Reviews responsive */
    .reviews-section {
        padding: 3.5rem 0;
    }

    .reviews-section-title {
        margin-bottom: 2rem;
    }

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

    /* Who Are We responsive */
    .who-are-we-section {
        padding: 60px 0;
    }

    .who-are-we-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }


    .who-are-we-title {
        font-size: 2.5rem;
    }

    .who-are-we-actions {
        flex-direction: column;
        gap: 0.75rem;
    }

    .browse-activities-btn,
    .contact-us-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    /* Group Tours responsive */
    .group-tours-split {
        grid-template-columns: 1fr;
    }

    .group-tours-text-col {
        padding: 3rem 1.5rem;
        order: 2;
    }

    .group-tours-image-col {
        height: 300px;
        order: 1;
    }

    .group-tours-title {
        font-size: 2.5rem;
    }

    .group-tours-description {
        font-size: 1rem;
    }

    .group-tours-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 75vh;
    }

    .hero-layout {
        min-height: 75vh;
    }

    .who-are-we-title {
        font-size: 2rem;
    }

    .featured-info-item {
        padding: 1.5rem;
    }

    .featured-info-icon {
        width: 40px;
        height: 40px;
    }

    .featured-info-icon img {
        width: 24px;
        height: 24px;
    }

    .group-tours-text-col {
        padding: 2.5rem 1.25rem;
    }

    .group-tours-image-col {
        height: 240px;
    }

    .group-tours-title {
        font-size: 2rem;
    }
}

/* Tablet responsive */
@media (max-width: 1024px) {
    /* Most Popular Section Tablet */
    .most-popular-title {
        font-size: 3rem;
    }

    .hero-layout {
        padding-bottom: 2rem;
    }

    .popular-activities-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Most Popular Activities Section */
.most-popular-section {
    position: relative;
    min-height: 800px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 6rem 0;
}

.most-popular-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.most-popular-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.most-popular-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 2;
}

.most-popular-content {
    position: relative;
    z-index: 3;
    width: 100%;
}

.most-popular-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.most-popular-title {
    font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
    color: white;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Season Filter */
.season-filter {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 4px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.season-btn {
    padding: 12px 24px;
    border: none;
    background: transparent;
    color: white;
    font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 46px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    min-width: 100px;
}

.season-btn.active {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.season-btn:hover:not(.active) {
    background: rgba(255, 255, 255, 0.2);
}

/* Popular Activities Section (Bilberry Product List) */
.popular-activities-section {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.popular-activities-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.popular-activities-bg.active {
    opacity: 1;
}

.popular-activities-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(8, 18, 33, 0.6) 0%, rgba(8, 18, 33, 0.35) 100%);
    z-index: 2;
}

.popular-activities-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 60px 0 80px;
}

.popular-activities-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.popular-activities-title {
    font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0;
}

.popular-activities-widget-wrap {
    position: relative;
    margin-bottom: 2.5rem;
    min-height: 200px;
}

.popular-activities-bilberry {
    width: 100%;
}

.popular-activities-actions {
    text-align: center;
}

.popular-activities-cta {
    display: inline-block;
    padding: 14px 28px;
    font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 4px;
    transition: all 0.3s ease;
    background: var(--warm-accent);
    color: #fff;
    border: 2px solid transparent;
    box-shadow: 0 4px 20px rgba(200, 133, 74, 0.35);
}

.popular-activities-cta:hover {
    background: color-mix(in srgb, var(--warm-accent) 85%, black);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(200, 133, 74, 0.45);
}

/* Popular Activities Carousel */
.popular-activities-carousel-container {
    position: relative;
    margin-bottom: 4rem;
}

.popular-nav {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    z-index: 10;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
}

.popular-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.popular-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.popular-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.popular-activities-carousel {
    width: 100%;
    padding: 2rem 0;
    overflow: visible;
}

.popular-activities-carousel .swiper-wrapper {
    align-items: stretch;
}

/* Popular Activity Cards */
.popular-activity {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    height: auto;
    display: flex;
    flex-direction: column;
}

.popular-activity:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.popular-activity-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.popular-activity:hover .popular-activity-image img {
    transform: scale(1.05);
}

.popular-activity-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.popular-activity-title {
    font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    line-height: 1.3;
    color: #333;
}

.popular-activity-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.popular-activity-title a:hover {
    color: var(--warm-accent);
}

.popular-activity-excerpt {
    font-size: 0.9rem;
    color: #666;
    margin: 0 0 1.5rem 0;
    line-height: 1.6;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.popular-activity-book-btn {
    display: inline-block;
    background: var(--button-color);
    color: var(--button-text-color);
    padding: 0.75rem 1.5rem;
    font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    text-align: center;
    transition: all 0.3s ease;
    margin-top: auto;
    box-shadow: 0 4px 15px rgba(43, 45, 47, 0.2);
}

.popular-activity-book-btn:hover {
    background: var(--button-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(43, 45, 47, 0.28);
}

/* Browse All Button */
.browse-all-container {
    text-align: center;
}

.browse-all-btn {
    display: inline-block;
    background: var(--button-color);
    color: var(--button-text-color);
    padding: 1rem 2rem;
    font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(43, 45, 47, 0.2);
}

.browse-all-btn:hover {
    background: var(--button-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(43, 45, 47, 0.28);
}

/* Prevent body scroll when mobile menu is open */
body.menu-open {
    overflow: hidden;
}

/* Responsive Design for Most Popular Section */
@media (max-width: 1024px) {
    /* Most Popular Section Tablet */
    .most-popular-title {
        font-size: 3rem;
    }
}

/* Activities Page Styles */
.activities-page {
    padding: 0;
}

/* Thin Hero Section for Activities */
.activities-hero-section {
    background: var(--background-color);
    padding: 1.5rem 0;
    margin-top: 1rem;
    position: relative;
}

.activities-hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Location Switcher */
.location-switcher {
    position: relative;
    display: inline-block;
}

.location-switcher-toggle {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: transparent;
    border: none;
    color: var(--main-color);
    padding: 0;
    font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.location-switcher-toggle:hover {
    color: var(--warm-accent);
}

.location-switcher-icon {
    transition: transform 0.3s ease;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.location-switcher-toggle[aria-expanded="true"] .location-switcher-icon {
    transform: rotate(180deg);
}

.location-switcher-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: white;
    border-radius: 4px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
    min-width: 200px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.location-switcher-menu.active {
    max-height: 500px;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.location-switcher-item {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--main-color);
    text-decoration: none;
    font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.location-switcher-item:hover {
    background: var(--background-color);
    color: var(--main-dark);
}

.location-switcher-item.active {
    background: var(--main-color);
    color: white;
}

.activities-content-section {
    margin: 2rem auto;
}

.activities-list-section {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 20px;
    background-color: white;
    border-radius: 8px;
    border: 1px solid var(--border-subtle);
    padding: 2rem;
}

/* Other Areas Section */
.other-areas-section {
    padding: 4rem 0;
    background: var(--background-color);
}

.other-areas-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.other-areas-section h3 {
    font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--main-dark);
    margin: 0 0 2rem 0;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.child-pages-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.child-page-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.child-page-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.child-page-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f0f0f0;
}

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

.child-page-card:hover .child-page-image img {
    transform: scale(1.05);
}

.child-page-placeholder {
    width: 100%;
    height: 100%;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.child-page-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.child-page-content h4 {
    margin: 0;
    font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--main-dark);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.activities-section {
    background: var(--background-color);
    padding: 80px 0;
}

.activities-header {
    text-align: center;
    margin-bottom: 4rem;
}

.activities-header .season-toggle {
    margin: 1rem auto 0;
    max-width: 360px;
}

.activities-title {
    font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--main-dark);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

/* Activities Filters */
.activities-filters {
    padding: 2rem;
    margin-bottom: 3rem;
}

.filters-toggle {
    display: none;
    width: 100%;
    padding: 1rem;
    background: var(--main-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    justify-content: space-between;
    align-items: center;
}

.filters-toggle-icon {
    transition: transform 0.3s ease;
}

.filters-toggle.active .filters-toggle-icon {
    transform: rotate(180deg);
}

.filters-content {
    transition: all 0.3s ease;
}

.filters-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    align-items: end;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-group label {
    font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--main-color);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.filter-select {
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    background: #ffffff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 0.95rem;
    color: #333;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-select:focus {
    outline: none;
    border-color: var(--main-dark);
    box-shadow: 0 0 0 3px rgba(39, 168, 247, 0.1);
}

.filter-select:hover {
    border-color: #cbd5e0;
}

/* Season Toggle (Activities) */
.season-toggle {
    display: flex;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 999px;
    overflow: hidden;
}

.season-option {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    background: transparent;
    color: var(--main-color);
    font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.2s ease;
}

.season-option.active {
    background: var(--main-color);
    color: #ffffff;
}

.season-option:not(.active):hover {
    background: #f1f5f9;
}

.clear-filters-btn {
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: var(--main-color);
    border: 2px solid var(--main-color);
    border-radius: 4px;
    font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.clear-filters-btn:focus {
    outline: none;
}

.clear-filters-btn.has-active-filters {
    background: var(--main-color);
    color: white;
    border-color: var(--main-color);
}

.clear-filters-btn:hover {
    background: var(--main-color);
    color: white;
    transform: translateY(-1px);
}

/* Filter animations */
.activity-card {
    transition: all 0.3s ease;
}

.activity-card.hidden {
    display: none;
}

.no-results {
    text-align: center;
    padding: 4rem 2rem;
    color: #666;
    font-size: 1.1rem;
    grid-column: 1 / -1;
}

.activities-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.activity-card {
    display: flex;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.activity-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.activity-image {
    flex: 0 0 33.333%;
    position: relative;
    overflow: hidden;
}

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

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

.activity-placeholder {
    width: 100%;
    height: 100%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 1rem;
    min-height: 250px;
}

.activity-content {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.activity-header {
    margin-bottom: 1.5rem;
}

.activity-name {
    font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    line-height: 1.3;
    color: var(--main-color);
}

.activity-name a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.activity-name a:hover {
    color: var(--main-dark);
}

.activity-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.activity-meta span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
}

.activity-meta span:not(:last-child)::after {
    content: '•';
    position: absolute;
    right: -0.75rem;
    color: #ccc;
}

.activity-season {
    color: var(--warm-accent);
}

.activity-description {
    flex: 1;
    margin-bottom: 2rem;
}

.activity-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
    margin: 0;
}

.activity-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.activity-book-btn,
.activity-read-more-btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.activity-book-btn {
    background: var(--button-color);
    color: var(--button-text-color);
    border-color: var(--button-color);
    box-shadow: 0 4px 15px rgba(43, 45, 47, 0.2);
}

.activity-book-btn:hover {
    background: var(--button-hover);
    border-color: var(--button-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(43, 45, 47, 0.28);
}

.activity-read-more-btn {
    background: var(--main-color);
    color: white;
    border-color: var(--main-color);
    padding: 1rem 2rem;
    border-radius: 4px;
    letter-spacing: 0.08em;
}

.activity-read-more-btn:hover {
    background: var(--main-dark);
    color: white;
    border-color: var(--main-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(62, 95, 116, 0.3);
}

.no-activities {
    text-align: center;
    padding: 4rem 2rem;
    color: #666;
    font-size: 1.1rem;
}

/* Responsive styles for Activities section */
@media (max-width: 768px) {
    .activities-hero-section {
        padding: 1rem 0;
    }
    
    .activities-hero-content {
        justify-content: center;
    }
    
    .location-switcher-toggle {
        font-size: 2rem;
    }
    
    .location-switcher-icon {
        width: 14px;
        height: 14px;
    }
    
    .location-switcher-menu {
        left: 50%;
        transform: translateX(-50%) translateY(-10px);
        min-width: 250px;
    }
    
    .location-switcher-menu.active {
        transform: translateX(-50%) translateY(0);
    }
    
    .activities-section {
        padding: 60px 0;
    }
    
    .activities-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .activities-header {
        margin-bottom: 3rem;
    }
    
    /* Filters responsive */
    .activities-filters {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .filters-toggle {
        display: flex;
    }
    
    .filters-content {
        display: none;
        overflow: hidden;
    }
    
    .filters-content.active {
        display: block;
        animation: slideDown 0.3s ease;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            max-height: 0;
        }
        to {
            opacity: 1;
            max-height: 500px;
        }
    }
    
    .filters-row {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding-top: 1rem;
    }
    
    .filter-group label {
        font-size: 0.85rem;
    }
    
    .filter-select {
        padding: 0.625rem 0.875rem;
        font-size: 0.9rem;
    }
    
    .clear-filters-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.85rem;
        width: 100%;
    }
    
    .activities-grid {
        gap: 2rem;
    }
    
    .activity-card {
        flex-direction: column;
    }
    
    .activity-image {
        flex: none;
        height: 200px;
    }
    
    .activity-content {
        padding: 2rem 1.5rem;
    }
    
    .activity-name {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .activity-meta {
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .activity-meta span {
        font-size: 0.85rem;
    }
    
    .activity-description {
        margin-bottom: 1.5rem;
    }
    
    .activity-description p {
        font-size: 1rem;
    }
    
    .activity-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .activity-book-btn,
    .activity-read-more-btn {
        width: 100%;
        text-align: center;
        padding: 0.75rem 1.5rem;
    }
    
    .other-areas-section {
        padding: 3rem 0;
    }
    
    .other-areas-section h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .child-pages-cards {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .child-page-content {
        padding: 1.25rem;
    }
    
    .child-page-content h4 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .activities-hero-section {
        padding: 1rem 0;
    }
    
    .location-switcher-toggle {
        font-size: 1.75rem;
    }
    
    .location-switcher-icon {
        width: 12px;
        height: 12px;
    }
    
    .location-switcher-menu {
        min-width: 200px;
    }
    
    .location-switcher-item {
        padding: 0.625rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .activities-section {
        padding: 40px 0;
    }
    
    .activities-title {
        font-size: 2rem;
    }
    
    /* Filters mobile */
    .activities-filters {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .filters-row {
        gap: 0.75rem;
    }
    
    .filter-group label {
        font-size: 0.8rem;
    }
    
    .filter-select {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }
    
    .clear-filters-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .activities-grid {
        gap: 1.5rem;
    }
    
    .activity-content {
        padding: 1.5rem 1rem;
    }
    
    .activity-name {
        font-size: 1.25rem;
    }
    
    .activity-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .activity-meta span:not(:last-child)::after {
        display: none;
    }
    
    .activity-description p {
        font-size: 0.95rem;
    }
    
    .activity-book-btn,
    .activity-read-more-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .other-areas-section {
        padding: 2rem 0;
    }
    
    .other-areas-section h3 {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
    }
    
    .child-pages-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 1rem 0;
    }
    
    .child-page-image {
        height: 180px;
    }
    
    .child-page-content {
        padding: 1rem;
    }
    
    .child-page-content h4 {
        font-size: 1rem;
    }
}

/* Prevent body scroll when mobile menu is open */
body.menu-open {
    overflow: hidden;
}

/* Sidebar */
.widget-area {
    margin-top: 2rem;
}

.widget {
    margin-bottom: 2rem;
}

.widget-title {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 600;
}

/* Footer */
.site-footer {
    background: var(--main-dark);
    border-top: none;
    padding: 3rem 0 1.5rem;
    margin-top: 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-widgets {
    margin-bottom: 2rem;
}

.site-info {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-credit {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-credit a {
    background-image: linear-gradient(
        to right,
        var(--warm-accent),
        var(--warm-accent) 50%,
        rgba(255, 255, 255, 0.5) 50%
    );
    background-size: 200% 100%;
    background-position: -100%;
    display: inline-block;
    padding: 2px 0;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: background-position 0.3s ease-in-out;
}

.footer-credit a:hover {
    background-position: 0;
}

.footer-navigation ul {
    list-style: none;
    margin: 0 0 1rem 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-navigation a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-navigation a:hover {
    color: var(--warm-accent);
}

.copyright {
    margin: 0;
}

.copyright a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.footer-social {
    margin-bottom: 2rem;
    text-align: center;
}

.footer-social-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 600;
}

.footer-social-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.footer-social-list a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.footer-social-list a:hover {
    color: var(--warm-accent);
}

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

.footer-partner {
    margin-bottom: 2rem;
    text-align: center;
}

.footer-partner-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 600;
}

.footer-partner-link {
    display: inline-block;
    line-height: 0;
}

.footer-partner-logo {
    max-height: 60px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

/* Pagination */
.pagination {
    margin: 2rem 0;
    text-align: center;
}

.pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.pagination a,
.pagination .current {
    padding: 0.5rem 1rem;
    text-decoration: none;
    border: 1px solid #ddd;
    color: #333;
}

.pagination a:hover {
    background: #f5f5f5;
}

.pagination .current {
    background: #0073aa;
    color: #fff;
    border-color: #0073aa;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-layout {
        padding-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    /* Blog/Index page responsive */
    
    .site-main article {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .entry-title {
        font-size: 1.5rem;
    }
    
    .entry-content p {
        font-size: 1rem;
    }
    
    .no-results {
        padding: 2rem 1.5rem;
    }
    
    .no-results .page-title {
        font-size: 1.5rem;
    }
    
    .site-header .container {
        flex-wrap: nowrap;
    }
    
    .menu-toggle {
        display: flex;
        order: 2;
        z-index: 10000;
    }
    
    .site-branding {
        order: 1;
    }
    
    .nav-menu-wrapper {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 9999;
    }
    
    .main-navigation.toggled .nav-menu-wrapper {
        transform: translateX(0);
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .main-navigation a {
        font-size: 1.5rem;
        font-weight: 600;
    }
    
    .cta-button {
        font-size: 1.2rem;
        padding: 1rem 2rem;
    }
    
    .footer-navigation ul {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    /* Hero Section Mobile */
    .hero-section {
        min-height: 85vh;
    }

    .hero-layout {
        min-height: 85vh;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .hero-content {
        padding-top: 15vh;
    }

    .hero-text {
        max-width: 100%;
        padding: 0 0.5rem;
    }

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

    .hero-cta-button {
        padding: 0.875rem 1.75rem;
        font-size: 0.9rem;
    }

    /* Seasonal activities hero: shorter on mobile */
    .hero-section--narrow {
        max-height: 200px;
        min-height: 150px;
    }

    .hero-section--narrow .hero-layout {
        min-height: 150px;
        padding: 1rem 0;
    }

    .hero-section--narrow .hero-title {
        margin: 0;
    }

    .hero-section--narrow .hero-content {
        margin: auto 0;
        padding-top: 0;
    }

    /* Contact hero: compact on mobile */
    .contact-hero {
        height: auto;
        min-height: 200px;
        max-height: none;
    }

    .contact-hero .hero-layout {
        min-height: 200px;
        padding: 1rem 0;
    }
    
    .page-content {
        padding: 2rem 0;
    }
    
    .reviews-section {
        padding: 3rem 0;
    }
    
    .reviews-carousel {
        padding: 0 60px;
    }
    
    .reviews-btn {
        width: 40px;
        height: 40px;
    }
    
    .reviews-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .review-content {
        padding: 1.5rem;
    }
    
    .review-text {
        font-size: 1.1rem;
    }
    
    .review-stars {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    /* Most Popular Section Mobile */
    .most-popular-section {
        min-height: 600px;
        padding: 4rem 0;
    }
    
    .most-popular-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 3rem;
        gap: 1.5rem;
    }
    
    .most-popular-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .season-filter {
        order: 2;
        justify-content: center !important;
    }
    
    .popular-nav {
        justify-content: center !important;
        margin-bottom: 2rem;
    }
    
    .popular-btn {
        width: 40px;
        height: 40px;
    }
    
    .popular-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .popular-activity-image {
        height: 150px;
    }
    
    .popular-activity-content {
        padding: 1.25rem;
    }
    
    .popular-activity-title {
        font-size: 1.1rem;
    }
    
    .popular-activity-excerpt {
        font-size: 0.85rem;
        -webkit-line-clamp: 2;
    }
    
    .popular-activity-book-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    /* Blog/Index page for small mobile */
    
    .site-main article {
        padding: 1.25rem;
        margin-bottom: 1.25rem;
    }
    
    .entry-title {
        font-size: 1.25rem;
    }
    
    .entry-content p {
        font-size: 0.95rem;
    }
    
    .read-more {
        padding: 0.6rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .no-results {
        padding: 1.5rem 1rem;
    }
    
    .no-results .page-title {
        font-size: 1.25rem;
    }
    
    .no-results .page-content p {
        font-size: 1rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .reviews-carousel {
        padding: 0 50px;
    }
    
    .reviews-btn {
        width: 35px;
        height: 35px;
    }
    
    .review-content {
        padding: 1rem;
    }
    
    .review-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .review-stars {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    /* Most Popular Section Extra Small Mobile */
    .most-popular-title {
        font-size: 2rem;
    }
    
    .popular-activities-title {
        font-size: 1.75rem;
    }
    
    .season-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        min-width: 80px;
    }
    
    .popular-btn {
        width: 35px;
        height: 35px;
    }
    
    .browse-all-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Tablet responsive */
@media (max-width: 1024px) {
    .hero-layout {
        justify-items: center;
        align-items: center;
        padding-bottom: 2rem;
    }
}

/* About Us Page Styles */
.about-us-page {
    background: var(--background-color);
}

/* Section Label (reusable across pages) */
.section-label {
    display: inline-block;
    font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--warm-accent);
    margin-bottom: 1rem;
}

/* Our Story Section */
.our-story-section {
    padding: 4rem 0;
    background: #fff;
}

.section-title {
    font-family: 'Sora', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--main-dark);
    margin-bottom: 2rem;
    text-align: left;
    letter-spacing: -0.02em;
}

.story-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.story-content p {
    margin-bottom: 1.5rem;
}

.story-content h2,
.story-content h3,
.story-content h4 {
    font-family: 'Sora', sans-serif;
    color: var(--main-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.story-content ul,
.story-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.story-content li {
    margin-bottom: 0.5rem;
}

/* Our Mission Section */
.our-mission-section {
    padding: 4rem 0;
    background: var(--background-color);
}

.mission-content .section-title {
    font-family: 'Sora', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--main-dark);
    text-align: left;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mission-item {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border-left: 3px solid var(--main-color);
    transition: transform 0.3s ease;
}

.mission-item:hover {
    transform: translateX(4px);
}

.mission-icon {
    color: var(--warm-accent);
    margin-bottom: 1.5rem;
}

.mission-title {
    font-family: 'Sora', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--main-dark);
    margin-bottom: 1rem;
}

.mission-description {
    color: #666;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 4rem 0;
    background: #fff;
}

.team-section .section-title {
    font-family: 'Sora', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--main-dark);
    text-align: left;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.team-member {
    background: var(--background-color);
    padding: 2rem;
    border-radius: 8px;
    border-left: 3px solid var(--main-color);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateX(4px);
}

.team-image {
    margin-bottom: 1.5rem;
    text-align: center;
}

.member-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--border-subtle);
}

.member-name {
    font-family: 'Sora', sans-serif;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--main-dark);
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--warm-accent);
    font-weight: 500;
    margin-bottom: 1rem;
    text-align: center;
}

.member-bio {
    color: #666;
    line-height: 1.6;
    text-align: left;
}

.member-bio p {
    text-align: left;
}

/* Why Choose Us Section */
.why-choose-us-section {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    overflow: hidden;
}

.why-choose-background {
    display: none;
}

.why-choose-bg-image {
    display: none;
}

.why-choose-overlay {
    display: none;
}

.why-choose-content {
    position: relative;
    z-index: 3;
}

.why-choose-title {
    font-family: 'Sora', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--main-dark);
    letter-spacing: -0.02em;
}

.why-choose-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--warm-accent);
    margin: 1.5rem auto 3rem;
    border-radius: 2px;
}

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

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 0;
    background: transparent;
    border-radius: 0;
    backdrop-filter: none;
    border: none;
    position: relative;
}

.feature-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 60px;
    background: var(--warm-accent);
    border-radius: 2px;
    transition: height 0.3s ease;
}

.feature-item:hover::before {
    height: 100%;
}

.feature-number {
    display: none;
}

.feature-content {
    margin-left: 1.5rem;
}

.feature-title {
    font-family: 'Sora', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--main-color);
    letter-spacing: -0.01em;
}

.feature-description {
    line-height: 1.8;
    color: #475569;
    font-size: 1rem;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: var(--main-color);
    color: #fff;
}

.cta-title {
    font-family: 'Sora', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.cta-description {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    opacity: 0.9;
    text-align: left;
}

.cta-description p {
    text-align: left;
}

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

.cta-button.primary {
    background: var(--warm-accent);
    color: #fff;
    padding: 1rem 2rem;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(43, 45, 47, 0.2);
}

.cta-button.primary:hover {
    background: var(--button-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(43, 45, 47, 0.28);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: 2px solid white;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-button.secondary:hover {
    background: white !important;
    color: var(--main-dark) !important;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .why-choose-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .our-story-content {
        max-width: 100%;
    }
    
    .our-story-text .section-title,
    .mission-content .section-title,
    .team-section .section-title {
        font-size: 2rem;
    }
    
    .story-content {
        font-size: 1rem;
    }
    
    .why-choose-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button.primary,
    .cta-button.secondary {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .our-story-section,
    .our-mission-section,
    .team-section {
        padding: 2rem 0;
    }
    
    .why-choose-us-section {
        padding: 4rem 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .why-choose-title {
        font-size: 1.8rem;
    }
    
    
    .feature-title {
        font-size: 1.25rem;
    }
    
    .cta-section {
        padding: 2rem 0;
    }
    
    .mission-item,
    .team-member {
        padding: 1.5rem;
    }
    
    .our-story-text .section-title,
    .mission-content .section-title,
    .team-section .section-title,
    .why-choose-title,
    .cta-title {
        font-size: 1.8rem;
    }
}

/* Group Tours Page Styles */
.group-tours-page {
    background: var(--background-color);
}

.group-tours-page .section-title {
    text-align: center;
}

/* Group Content Section */
.group-content-section {
    padding: 4rem 0;
    background: #fff;
}

.group-content-layout {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.group-intro {
    margin-bottom: 3rem;
}

.group-intro .section-title {
    font-family: 'Sora', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--main-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

.intro-text p {
    margin-bottom: 1.5rem;
}

.intro-text p:last-child {
    margin-bottom: 0;
}

/* Group Features Grid */
.group-features-grid {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.group-feature-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    border-left: 3px solid var(--main-color);
    transition: transform 0.3s ease;
}

.group-feature-card:hover {
    transform: translateX(4px);
}

.group-feature-card.reverse {
    grid-template-columns: 1fr 1fr;
}

.group-feature-card.reverse .feature-image {
    order: 2;
}

.group-feature-card.reverse .feature-content {
    order: 1;
}

.feature-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
    position: relative;
}

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

.group-feature-card:hover .feature-image img {
    transform: scale(1.05);
}

.feature-content {
    padding: 3rem;
}

.feature-card-title {
    font-family: 'Sora', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--main-dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.feature-content-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
}

.feature-content-text p {
    margin-bottom: 1.25rem;
}

.feature-content-text p:last-child {
    margin-bottom: 0;
}

/* Activities Showcase */
.group-activities-showcase {
    margin-top: 5rem;
    padding: 4rem 0;
    background: var(--background-color);
    border-radius: 8px;
    text-align: center;
}

.showcase-title {
    font-family: 'Sora', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--main-dark);
    margin-bottom: 1.5rem;
}

.showcase-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    max-width: 800px;
    margin: 0 auto 3rem;
}

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

.activity-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
}

.activity-item-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.activity-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.activity-item-title {
    font-family: 'Sora', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--main-color);
    margin: 1.5rem 1.5rem 0.75rem;
}

.activity-item-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin: 0 1.5rem 1.5rem;
}

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

.feature-card {
    background: var(--background-color);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
    border-left: 3px solid var(--main-color);
}

.feature-card:hover {
    transform: translateX(4px);
}

.feature-icon {
    color: var(--main-dark);
    margin-bottom: 1.5rem;
}

.feature-title {
    font-family: 'Sora', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--main-color);
    margin-bottom: 1rem;
}

.feature-description {
    color: #666;
    line-height: 1.6;
}

/* Popular Group Activities Section */
.popular-group-activities {
    padding: 4rem 0;
    background: var(--background-color);
}

.popular-group-activities .section-title {
    font-family: 'Sora', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--main-dark);
    text-align: left;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

.activities-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.activity-highlight {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    border-left: 3px solid var(--main-color);
    transition: transform 0.3s ease;
}

.activity-highlight:hover {
    transform: translateX(4px);
}

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

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

.activity-highlight:hover .highlight-image {
    transform: scale(1.05);
}

.activity-highlight .activity-content {
    padding: 1.5rem;
}

.activity-name {
    font-family: 'Sora', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--main-color);
    margin-bottom: 0.75rem;
}

.activity-desc {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* How It Works Section */
.how-it-works-section {
    padding: 4rem 0;
    background: #fff;
}

.how-it-works-section .section-title {
    font-family: 'Sora', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--main-dark);
    text-align: left;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.step-item {
    text-align: center;
    padding: 2rem;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--button-color);
    color: var(--button-text-color);
    font-family: 'Sora', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.step-title {
    font-family: 'Sora', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--main-color);
    margin-bottom: 1rem;
}

.step-description {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Group CTA Section */
.group-cta-section {
    position: relative;
    padding: 6rem 0;
    color: #fff;
    overflow: hidden;
}

.group-cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cta-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.group-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(1, 12, 48, 0.9) 0%, rgba(39, 168, 247, 0.8) 100%);
    z-index: 2;
}

.group-cta-content {
    position: relative;
    z-index: 3;
}

.cta-text {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.group-cta-section .cta-title {
    font-family: 'Sora', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.group-cta-section .cta-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    text-align: center;
}

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

.group-cta-section .cta-button.primary {
    background: var(--warm-accent);
    color: #fff;
    padding: 1rem 2rem;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(43, 45, 47, 0.2);
}

.group-cta-section .cta-button.primary:hover {
    background: var(--button-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(43, 45, 47, 0.28);
}

.group-cta-section .cta-button.secondary {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: 2px solid white;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.group-cta-section .cta-button.secondary:hover {
    background: white !important;
    color: var(--main-dark) !important;
    transform: translateY(-2px);
}

/* Responsive Design for Group Tours */
@media (max-width: 1024px) {
    .group-feature-card {
        gap: 2rem;
    }
    
    .feature-content {
        padding: 2.5rem;
    }
    
    .feature-card-title {
        font-size: 1.6rem;
    }
    
    .activities-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .group-content-section,
    .popular-group-activities,
    .how-it-works-section {
        padding: 3rem 0;
    }
    
    .group-cta-section {
        padding: 4rem 0;
    }
    
    .group-intro .section-title,
    .popular-group-activities .section-title,
    .how-it-works-section .section-title,
    .group-cta-section .cta-title {
        font-size: 2rem;
    }
    
    .intro-text {
        font-size: 1.1rem;
    }
    
    .group-features-grid {
        margin-top: 2rem;
        gap: 2.5rem;
    }
    
    .group-feature-card {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .group-feature-card.reverse .feature-image,
    .group-feature-card.reverse .feature-content {
        order: 0;
    }
    
    .feature-image {
        min-height: 300px;
    }
    
    .feature-content {
        padding: 2rem;
    }
    
    .feature-card-title {
        font-size: 1.5rem;
    }
    
    .feature-content p {
        font-size: 1rem;
    }
    
    .group-activities-showcase {
        margin-top: 3rem;
        padding: 2.5rem 1.5rem;
    }
    
    .showcase-title {
        font-size: 2rem;
    }
    
    .showcase-intro {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .activities-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .activity-item-image {
        height: 200px;
    }
    
    .group-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .activities-showcase {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .group-cta-section .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .group-cta-section .cta-button.primary,
    .group-cta-section .cta-button.secondary {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .group-content-section,
    .popular-group-activities,
    .how-it-works-section {
        padding: 2rem 0;
    }
    
    .group-cta-section {
        padding: 3rem 0;
    }
    
    .feature-card,
    .step-item {
        padding: 1.5rem;
    }
    
    .group-intro .section-title,
    .popular-group-activities .section-title,
    .how-it-works-section .section-title,
    .group-cta-section .cta-title {
        font-size: 1.8rem;
    }
    
    .intro-text {
        font-size: 1rem;
    }
    
    .activities-showcase {
        gap: 1rem;
    }
    
    .activity-highlight .activity-content {
        padding: 1.25rem;
    }
}

/* Contact Page Styles */
.contact-page {
    background: var(--background-color);
}

/* Contact page hero: no image, compact, main-dark text */
.contact-hero {
    background: var(--surface-color);
    min-height: auto;
    height: auto;
    max-height: none;
    border-bottom: 1px solid var(--border-subtle);
}

.contact-hero .hero-overlay {
    display: none;
}

.contact-hero .hero-layout {
    min-height: auto;
    padding: 5rem 0 4rem;
}

.contact-hero .hero-text {
    color: var(--main-dark);
}

.contact-hero .hero-title,
.contact-hero .hero-subtitle {
    color: var(--main-dark);
    text-shadow: none;
}

.contact-hero .hero-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    opacity: 0.7;
    margin-top: 0.5rem;
}

/* Contact Content Section */
.contact-content-section {
    padding: 4rem 0;
    background: #fff;
}

.contact-content-section .section-title {
    font-family: 'Sora', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--main-dark);
    margin-bottom: 2rem;
    text-align: left;
    letter-spacing: -0.02em;
}

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

/* Contact Form Section */
.contact-form-section .section-title {
    font-family: 'Sora', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--main-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.form-intro {
    margin-top: 0;
}

/* Contact Info Section */
.contact-info-section .section-title {
    font-family: 'Sora', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--main-dark);
    margin-bottom: 2rem;
    text-align: left;
    letter-spacing: -0.02em;
}

.contact-methods {
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid var(--border-subtle);
    border-left: 3px solid var(--main-color);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.contact-method:hover {
    transform: translateX(4px);
    text-decoration: none;
}

.contact-method * {
    text-decoration: none;
}

.contact-method:hover * {
    text-decoration: none;
}

.contact-method:last-child {
    margin-bottom: 0;
}

.contact-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--warm-accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-details {
    flex: 1;
}

.contact-title {
    font-family: 'Sora', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--main-dark);
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.contact-value {
    font-size: 1.1rem;
    color: #4a5568;
    margin: 0;
    font-weight: 500;
    line-height: 1.4;
}

.contact-value a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-value a:hover {
    color: var(--main-dark);
}

/* Emergency Contact */
.emergency-contact {
    background: #f8f9fa;
    border: 1px solid var(--border-subtle);
    border-left: 3px solid var(--warm-accent);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.emergency-title {
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #6c757d;
    margin: 0 0 0.75rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.emergency-text {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0 0 1rem 0;
    line-height: 1.5;
}

.emergency-phone {
    display: inline-block;
    background: transparent;
    color: var(--main-color);
    padding: 0.5rem 1rem;
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--main-color);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.emergency-phone:hover {
    background: var(--main-color);
    color: white;
    transform: translateY(-1px);
}

/* Contact Page FAQ Section */
.contact-faq-section {
    padding: 80px 0;
    background: var(--background-color);
    position: relative;
}

.contact-faq-section::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 20px;
    width: 60px;
    height: 3px;
    background: var(--warm-accent);
    border-radius: 2px;
}

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

.contact-faq-section .section-title {
    text-align: left;
    font-size: 3rem;
    font-weight: 700;
    color: var(--main-dark);
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
    position: relative;
}

.contact-faq-section .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--warm-accent);
    margin-top: 1rem;
    border-radius: 2px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    border-left: 3px solid var(--main-color);
    position: relative;
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateX(4px);
}

.faq-question {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--main-dark);
    margin: 0 0 1rem 0;
    padding: 1.5rem 1.5rem 0 1.5rem;
    line-height: 1.4;
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--warm-accent);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--warm-accent);
    flex-shrink: 0;
    margin-left: 1rem;
    line-height: 1;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-question::after {
    content: '−';
}

.faq-answer {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin: 0;
    padding: 0 1.5rem 1.5rem 1.5rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                padding-top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    opacity: 1;
    padding-top: 0.5rem;
}

/* Interactive FAQ Enhancement */
.faq-item {
    cursor: pointer;
}

/* FAQ Icons */
.faq-question::before {
    content: '?';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--warm-accent);
    color: white;
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 600;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

/* Empty State Styling */
.faq-item .faq-question:contains("No FAQs Available") {
    color: #999;
    font-style: italic;
}

.faq-item .faq-answer:contains("Please add FAQ items") {
    color: #999;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-faq-section {
        padding: 60px 0;
    }
    
    .contact-faq-section .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq-question {
        font-size: 1.1rem;
        padding: 1.25rem 1.25rem 0 1.25rem;
    }
    
    .faq-answer {
        padding: 0 1.25rem 1.25rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .faq-question::before {
        width: 20px;
        height: 20px;
        font-size: 0.8rem;
        margin-right: 0.5rem;
    }
}

@media (max-width: 480px) {
    .contact-faq-section {
        padding: 40px 0;
    }
    
    .contact-faq-section .section-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .faq-grid {
        gap: 1rem;
    }
    
    .faq-question {
        font-size: 1rem;
        padding: 1rem 1rem 0 1rem;
    }
    
    .faq-answer {
        padding: 0 1rem 1rem 1rem;
        font-size: 0.9rem;
    }
    
    .faq-item {
        border-radius: 8px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-content-section {
        padding: 3rem 0;
    }
    
    .contact-content-section .section-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info-section .section-title {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .contact-methods {
        margin-bottom: 2rem;
    }
    
    .contact-method {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
    }
    
    .contact-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .contact-title {
        font-size: 1rem;
    }
    
    .contact-value {
        font-size: 1rem;
    }
    
    .emergency-contact {
        padding: 1.25rem;
        margin-top: 1.5rem;
    }
    
    .emergency-title {
        font-size: 0.95rem;
    }
    
    .emergency-text {
        font-size: 0.85rem;
    }
    
    .emergency-phone {
        padding: 0.5rem 1rem;
        font-size: 0.95rem;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .contact-content-section {
        padding: 2rem 0;
    }
    
    .contact-content-section .section-title {
        font-size: 1.75rem;
    }
    
    .contact-info-section .section-title {
        font-size: 1.2rem;
    }
    
    .contact-method {
        padding: 1rem;
        margin-bottom: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        align-self: center;
    }
    
    .contact-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .contact-details {
        text-align: center;
    }
    
    .contact-title {
        font-size: 0.95rem;
        margin-bottom: 0.25rem;
    }
    
    .contact-value {
        font-size: 0.95rem;
    }
    
    .emergency-contact {
        padding: 1rem;
        text-align: center;
    }
    
    .emergency-title {
        font-size: 0.9rem;
    }
    
    .emergency-text {
        font-size: 0.8rem;
    }
    
    .emergency-phone {
        padding: 0.45rem 0.875rem;
        font-size: 0.9rem;
    }
}

/* ============================================
   Where to Stay Page Styles
   ============================================ */
.where-to-stay-page {
    background: var(--background-color);
}

/* --- Intro Section --- */
.wts-intro-section {
    padding: 6rem 0;
    background: #fff;
}

.wts-intro-layout {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.wts-intro-text .section-title {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.wts-intro-body {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #475569;
    width: 100%;
    max-width: none;
}

.wts-intro-body p {
    margin-bottom: 1.25rem;
}

.wts-intro-body p:last-child {
    margin-bottom: 0;
}

.wts-intro-body strong {
    color: var(--main-dark);
    font-weight: 600;
}

/* Intro CTA Button */
.wts-intro-cta {
    margin-top: 0.5rem;
}

.wts-intro-button {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--warm-accent);
    color: #fff;
    padding: 1rem 2.25rem;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.wts-intro-button:hover {
    background: color-mix(in srgb, var(--warm-accent) 85%, black);
    transform: translateY(-2px);
}

.wts-intro-button svg {
    transition: transform 0.2s ease;
}

.wts-intro-button:hover svg {
    transform: translate(2px, -2px);
}

/* --- Features Section --- */
.wts-features-section {
    padding: 6rem 0;
    background: var(--background-color);
}

.wts-features-section .section-title {
    font-size: 2.8rem;
    margin-bottom: 3rem;
}

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

.wts-feature-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-subtle);
    border-left: 3px solid var(--main-color);
    transition: transform 0.3s ease, border-left-color 0.3s ease;
}

.wts-feature-card:hover {
    transform: translateX(4px);
    border-left-color: var(--warm-accent);
}

.wts-feature-icon {
    color: var(--warm-accent);
    margin-bottom: 1.25rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--warm-accent-soft);
    border-radius: 8px;
}

.wts-feature-title {
    font-family: 'Sora', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--main-dark);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.wts-feature-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: #64748b;
}

/* --- Additional Content Section --- */
.wts-content-section {
    padding: 4rem 0;
    background: #fff;
    border-top: 1px solid var(--border-subtle);
}

.wts-content-body {
    max-width: 720px;
    font-size: 1.1rem;
    line-height: 1.85;
    color: #475569;
}

.wts-content-body p {
    margin-bottom: 1.5rem;
}

.wts-content-body p:last-child {
    margin-bottom: 0;
}

.wts-content-body a {
    color: var(--warm-accent);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.wts-content-body a:hover {
    border-bottom-color: var(--warm-accent);
}

.wts-content-body strong {
    color: var(--main-dark);
    font-weight: 600;
}

/* --- CTA Section --- */
.wts-cta-section {
    position: relative;
    padding: 0;
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.wts-cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.wts-cta-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wts-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(43, 45, 47, 0.88) 0%, rgba(43, 45, 47, 0.7) 100%);
    z-index: 2;
}

.wts-cta-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 6rem 0;
}

.wts-cta-inner {
    max-width: 640px;
}

.wts-cta-title {
    font-family: 'Sora', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.wts-cta-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
}

.wts-cta-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.wts-cta-button.primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--warm-accent);
    color: #fff;
    padding: 1rem 2rem;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.wts-cta-button.primary:hover {
    background: color-mix(in srgb, var(--warm-accent) 85%, black);
    transform: translateY(-2px);
}

.wts-cta-button.primary svg {
    transition: transform 0.2s ease;
}

.wts-cta-button.primary:hover svg {
    transform: translate(2px, -2px);
}

.wts-cta-button.secondary {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: #fff;
    padding: 1rem 2rem;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.wts-cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

/* --- Where to Stay Responsive --- */
@media (max-width: 992px) {
    .wts-intro-text .section-title,
    .wts-features-section .section-title,
    .wts-cta-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .wts-intro-section,
    .wts-features-section {
        padding: 4rem 0;
    }

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

    .wts-intro-text .section-title,
    .wts-features-section .section-title,
    .wts-cta-title {
        font-size: 2rem;
    }

    .wts-cta-section {
        min-height: 400px;
    }

    .wts-cta-content {
        padding: 4rem 0;
    }

    .wts-cta-actions {
        flex-direction: column;
    }

    .wts-cta-button.primary,
    .wts-cta-button.secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .wts-intro-section,
    .wts-features-section {
        padding: 3rem 0;
    }

    .wts-intro-text .section-title,
    .wts-features-section .section-title,
    .wts-cta-title {
        font-size: 1.8rem;
    }

    .wts-feature-card {
        padding: 1.75rem;
    }

    .wts-cta-content {
        padding: 3rem 0;
    }
}

/* Single Activity Page Styles */
.single-activity-page {
    background: #fff;
}

/* Activity Hero Section */
.activity-hero {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.activity-hero .hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 2rem 0;
    justify-content: center;
}

.activity-hero__media {
    margin: 1rem 0;
}

/* Activity Book Now Button */
.activity-book-now {
    margin: 0 0 0 1rem;
}

/* Activity Overview Section */
.activity-overview {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

/* Activity Gallery Section */
.activity-gallery {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

/* Activity Booking Section */
.activity-booking {
    margin-top: 5rem;
    margin-bottom: 4rem;
}

.activity-booking-header {
    text-align: center;
}

.hero-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-meta-item svg {
    color: var(--main-dark);
}

.hero-cta {
    margin-top: 2rem;
}

/* Activity Content Section */
.activity-content-section {
    padding: 4rem 0;
    background: #fff;
}

.activity-content-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.activity-main-content {
    background: #fff;
}

.activity-description {
    margin-bottom: 3rem;
}

.activity-description h1,
.activity-description h2,
.activity-description h3,
.activity-description h4,
.activity-description h5,
.activity-description h6 {
    font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--main-dark);
    margin-bottom: 1rem;
}

.activity-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.activity-description ul,
.activity-description ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.activity-description li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 0.5rem;
}

/* Activity Details */
.activity-details {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.details-title {
    font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--main-color);
    margin-bottom: 1.5rem;
}

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

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.detail-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--button-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--button-text-color);
}

.detail-content {
    flex: 1;
}

.detail-title {
    font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--main-color);
    margin: 0 0 0.25rem 0;
}

.detail-value {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Activity Sections */
.activity-section {
    margin-bottom: 3rem;
}

.activity-section .section-title {
    font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--main-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--warm-accent);
}

.section-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.section-content p {
    margin-bottom: 1.5rem;
}

.section-content ul,
.section-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.section-content li {
    margin-bottom: 0.5rem;
}

/* Included/Not Included Grid */
.included-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.included-column,
.not-included-column {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
}

.included-title,
.not-included-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.included-title {
    color: #28a745;
}

.not-included-title {
    color: #dc3545;
}

.included-title svg {
    color: #28a745;
}

.not-included-title svg {
    color: #dc3545;
}

.included-content,
.not-included-content {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.included-content ul,
.not-included-content ul {
    margin: 0;
    padding-left: 1.5rem;
}

.included-content li,
.not-included-content li {
    margin-bottom: 0.5rem;
}

/* Activity Sidebar */
.activity-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Booking Widget */
.booking-widget {
    background: var(--main-color);
    color: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.booking-widget .widget-title {
    font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.booking-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.booking-button {
    display: inline-block;
    background: var(--warm-accent);
    color: #fff;
    padding: 1rem 2rem;
    font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(43, 45, 47, 0.2);
}

.booking-button:hover {
    background: var(--button-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(43, 45, 47, 0.28);
}

/* Quick Info Widget */
.quick-info-widget {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.quick-info-widget .widget-title {
    font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--main-dark);
    margin-bottom: 1.5rem;
}

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

.quick-info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
}

.quick-info-item:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 600;
    color: var(--main-dark);
}

.info-value {
    color: #666;
    text-align: right;
}

/* Contact Widget */
.contact-widget {
    background: white;
    border: 2px solid #e9ecef;
    padding: 2rem;
    border-radius: 8px;
}

.contact-widget .widget-title {
    font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--main-color);
    margin-bottom: 1rem;
}

.contact-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item svg {
    color: var(--main-dark);
    flex-shrink: 0;
}

.contact-item a {
    color: var(--main-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--main-dark);
}

/* Related Activities Section */
.related-activities-section {
    background: #f8f9fa;
    padding: 4rem 0;
}

.related-activities-section .section-title {
    font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--main-color);
    text-align: center;
    margin-bottom: 3rem;
}

.related-activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.related-activity-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.related-activity-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.related-activity-card:hover .related-activity-image img {
    transform: scale(1.05);
}

.related-activity-placeholder {
    width: 100%;
    height: 100%;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-weight: 500;
}

.related-activity-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.related-activity-title {
    font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.related-activity-title a {
    color: var(--main-color);
    text-decoration: none;
}

.related-activity-title a:hover {
    color: var(--main-dark);
}

.related-activity-excerpt {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1rem;
}

.related-activity-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.related-meta-item {
    font-size: 0.85rem;
    color: #666;
    background: #f8f9fa;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
}

.related-activity-btn {
    display: inline-block;
    background: var(--warm-accent);
    color: #fff;
    padding: 0.75rem 1.5rem;
    font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 4px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.related-activity-btn:hover {
    background: var(--button-hover);
    transform: translateY(-1px);
}

.browse-all-container {
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .activity-content-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .activity-sidebar {
        order: -1;
    }
    
    .details-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .activity-content-section {
        padding: 3rem 0;
    }
    
    .hero-meta {
        gap: 1rem;
    }
    
    .hero-meta-item {
        font-size: 0.8rem;
        padding: 0.5rem 0.75rem;
    }
    
    .activity-details {
        padding: 1.5rem;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .detail-item {
        padding: 0.75rem;
    }
    
    .included-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .booking-widget,
    .quick-info-widget,
    .contact-widget {
        padding: 1.5rem;
    }
    
    .related-activities-section {
        padding: 3rem 0;
    }
    
    .related-activities-section .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .related-activities-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-meta {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .hero-meta-item {
        font-size: 0.75rem;
        padding: 0.5rem;
    }
    
    .activity-content-section {
        padding: 2rem 0;
    }
    
    .activity-details {
        padding: 1rem;
    }
    
    .details-title {
        font-size: 1.25rem;
    }
    
    .activity-section .section-title {
        font-size: 1.5rem;
    }
    
    .booking-widget,
    .quick-info-widget,
    .contact-widget {
        padding: 1rem;
    }
    
    .booking-widget .widget-title {
        font-size: 1.25rem;
    }
    
    .quick-info-widget .widget-title,
    .contact-widget .widget-title {
        font-size: 1.1rem;
    }
    
    .related-activities-section .section-title {
        font-size: 1.75rem;
    }
    
    .related-activity-content {
        padding: 1rem;
    }
    
    .related-activity-title {
        font-size: 1.1rem;
    }
}

.activity-description li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.activity-short-description {
    margin: 30px 0;
}

.activity-short-description p {
    margin: 0;
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-color);
}

/* Responsive spacing for single activity widgets */
@media (max-width: 768px) {
    .activity-hero {
        margin-top: 1.5rem;
        margin-bottom: 2rem;
    }

    .activity-book-now {
        margin: 0 0 0 1rem;
    }

    .activity-overview {
        margin-top: 3rem;
        margin-bottom: 3rem;
    }
    
    .activity-gallery {
        margin-top: 3rem;
        margin-bottom: 3rem;
    }
    
    .activity-booking {
        margin-top: 3.5rem;
        margin-bottom: 3rem;
    }
}

@media (max-width: 480px) {
    .activity-hero {
        margin-top: 1rem;
        margin-bottom: 2rem;
    }

    .activity-book-now {
        margin: 0 0 0 1rem;
    }

    .activity-overview {
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
    
    .activity-gallery {
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
    
    .activity-booking {
        margin-top: 2.5rem;
        margin-bottom: 2rem;
    }
}

/* Utility Spacer Classes */
/* Use these to add controlled spacing between sections */

.spacer-xs {
    display: block;
    width: 100%;
    padding-top: 1rem;
    margin: 0;
    clear: both;
}

.spacer-xs::before {
    content: '';
    display: block;
}

.spacer-sm {
    display: block;
    width: 100%;
    padding-top: 2rem;
    margin: 0;
    clear: both;
}

.spacer-sm::before {
    content: '';
    display: block;
}

.spacer-md {
    display: block;
    width: 100%;
    padding-top: 3rem;
    margin: 0;
    clear: both;
}

.spacer-md::before {
    content: '';
    display: block;
}

.spacer-lg {
    display: block;
    width: 100%;
    padding-top: 4rem;
    margin: 0;
    clear: both;
}

.spacer-lg::before {
    content: '';
    display: block;
}

.spacer-xl {
    display: block;
    width: 100%;
    padding-top: 6rem;
    margin: 0;
    clear: both;
}

.spacer-xl::before {
    content: '';
    display: block;
}

.spacer-2xl {
    display: block;
    width: 100%;
    padding-top: 8rem;
    margin: 0;
    clear: both;
}

.spacer-2xl::before {
    content: '';
    display: block;
}

/* Responsive spacers - adjust on mobile */
@media (max-width: 768px) {
    .spacer-lg {
        padding-top: 3rem;
    }
    
    .spacer-xl {
        padding-top: 4rem;
    }
    
    .spacer-2xl {
        padding-top: 5rem;
    }
}

@media (max-width: 480px) {
    .spacer-md {
        padding-top: 2rem;
    }
    
    .spacer-lg {
        padding-top: 2.5rem;
    }
    
    .spacer-xl {
        padding-top: 3rem;
    }
    
    .spacer-2xl {
        padding-top: 4rem;
    }
}

/* Gutenberg Block Overrides */
.wp-block-button a {
    text-decoration: none;
}

/* ============================================
   Gallery Page
   ============================================ */
.gallery-page {
    background: var(--background-color);
}

.gallery-hero {
    padding: 5rem 0 4rem;
    background: #fff;
    border-bottom: 1px solid var(--border-subtle);
    text-align: center;
}

.gallery-hero .hero-title {
    color: var(--main-dark);
    text-shadow: none;
    margin: 0;
}

.gallery-content-section {
    padding: 4rem 0 2rem;
    background: #fff;
    border-bottom: 1px solid var(--border-subtle);
}

.gallery-content-body {
    max-width: 720px;
    text-align: left;
    font-size: 1.1rem;
    line-height: 1.85;
    color: #475569;
}

.gallery-content-body p {
    margin: 0 0 1.25rem;
}

.gallery-content-body p:last-child {
    margin-bottom: 0;
}

.gallery-content-body a {
    color: var(--warm-accent);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.gallery-content-body a:hover {
    border-bottom-color: var(--warm-accent);
}

.gallery-grid-section {
    padding: 4rem 0 6rem;
    background: var(--background-color);
}

/* Multi-column flow: items keep natural height (no shared row height / white gaps under shorter images). */
.gallery-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    column-count: 3;
    column-gap: 1.25rem;
    column-fill: balance;
}

.gallery-grid__item {
    display: inline-block;
    width: 100%;
    margin: 0 0 1.25rem;
    padding: 0;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    background: #fff;
    box-sizing: border-box;
    vertical-align: top;
    break-inside: avoid;
    page-break-inside: avoid;
    -webkit-column-break-inside: avoid;
}

.gallery-grid__img {
    display: block;
    width: 100%;
    height: auto;
}

.gallery-grid__link {
    display: block;
    color: inherit;
    text-decoration: none;
    outline-offset: 4px;
}

.gallery-grid__link:focus-visible {
    outline: 2px solid var(--warm-accent);
}

@media (max-width: 992px) {
    .gallery-grid {
        column-count: 2;
        column-gap: 1rem;
    }

    .gallery-grid__item {
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .gallery-hero {
        padding: 4rem 0 3rem;
    }

    .gallery-content-section {
        padding: 3rem 0 1.5rem;
    }

    .gallery-grid-section {
        padding: 3rem 0 4rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        column-count: 1;
        column-gap: 0;
    }

    .gallery-grid__item {
        margin-bottom: 1rem;
    }

    .gallery-grid__item:last-child {
        margin-bottom: 0;
    }
}
