/* Font Face Declaration */
@font-face {
    font-family: 'Puyita Tuscan';
    src: url('fonts/Puyita-Tuscan.woff2') format('woff2'),
         url('fonts/Puyita-Tuscan.woff') format('woff'),
         url('fonts/Puyita-Tuscan.ttf') format('truetype'),
         url('fonts/Puyita-Tuscan.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

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

:root {
    --primary-color: #4A70A9;
    --primary-dark: #3a5a87;
    --primary-light: #8FABD4;
    --secondary-color: #8FABD4;
    --accent-color: #8FABD4;
    --accent-light: #8FABD4;
    --text-dark: #000000;
    --text-light: #666;
    --text-lighter: #999;
    --bg-light: #EFECE3;
    --bg-white: #ffffff;
    --bg-overlay: rgba(255, 255, 255, 0.8);
    --border-color: #e5e5e5;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.16);
    --font-serif: 'Puyita Tuscan', serif;
    --font-sans: 'Puyita Tuscan', serif;
    --transition-fast: 0.2s ease;
    --transition-base: 0.25s ease;
    --transition-slow: 0.3s ease;
}

body {
    font-family: 'Puyita Tuscan', serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    box-sizing: border-box;
}

/* Prevent horizontal overflow */
html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

* {
    box-sizing: border-box;
}

@media (max-width: 1200px) {
    .container {
        padding: 0 32px;
    }
}

@media (max-width: 968px) {
    .container {
        padding: 0 28px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
}

@media (max-width: 375px) {
    .container {
        padding: 0 14px;
    }
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
    outline: 3px solid white;
    outline-offset: 2px;
    z-index: 10000;
}

/* Header Styles */
.header {
    background: transparent !important;
    border-bottom: 1px solid transparent !important;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    transition: all var(--transition-base);
}

/* Navbar with scroll opacity */
.header.scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.header .container {
    background: transparent !important;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    gap: 40px;
    background: transparent !important;
}

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

.nav-brand .logo {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 12px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.nav-brand .logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 24px;
    align-items: center;
    margin-left: auto;
    margin-right: 0;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color var(--transition-base);
    position: relative;
    padding: 8px 0;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width var(--transition-base);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

/* Increase navbar link size by 10% on desktop screens */
@media (min-width: 969px) {
    .nav-link {
        font-size: 16.5px;
    }
}

.dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 10px;
    margin-left: 5px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    min-width: 200px;
    box-shadow: var(--shadow-lg);
    border-radius: 12px;
    padding: 10px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all var(--transition-base);
    margin-top: 10px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s;
}

.dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.mobile-nav-brand {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 4px;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: all var(--transition-base);
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    background: transparent;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 40px;
    position: relative;
    overflow: visible;
    z-index: 1;
    margin: 0;
    margin-top: 0;
    top: 0;
}

.hero-video {
    position: absolute;
    top: -120px;
    left: 0;
    width: 100vw;
    height: calc(100vh + 120px);
    min-width: 100vw;
    min-height: calc(100vh + 120px);
    object-fit: cover;
    object-position: center;
    z-index: 0;
    display: block;
    opacity: 1;
    filter: none;
    -webkit-filter: none;
    margin-left: calc((100vw - 100%) / -2);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 1;
    display: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 1;
    display: none;
}

@keyframes gradientShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    margin-top: -80px;
}

.hero-title {
    font-family: 'Puyita Tuscan', serif;
    font-size: clamp(36px, 5vw, 72px);
    font-weight: normal;
    color: white;
    margin-bottom: 24px;
    line-height: 1.3;
    letter-spacing: -0.03em;
    animation: fadeInUp 0.8s ease-out;
    max-width: 100%;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-tagline {
    font-family: 'Puyita Tuscan', serif;
    font-size: clamp(18px, 2.2vw, 24px);
    font-weight: normal;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    line-height: 1.6;
    letter-spacing: 0.02em;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    font-style: italic;
}

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

.hero-cta {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.hero-cta .btn-primary {
    background: transparent;
    border: 3px solid white;
    color: white;
    padding: 18px 48px;
    font-size: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-cta .btn-primary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all var(--transition-base);
    border: none;
    cursor: pointer;
    font-family: var(--font-sans);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

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

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

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Section Styles */
section {
    padding: 100px 0;
}

@media (max-width: 968px) {
    section {
        padding: 80px 0;
    }
}

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

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 24px;
    text-transform: lowercase;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-description {
    text-align: center;
    font-size: clamp(18px, 2.5vw, 28px);
    color: var(--text-dark);
    margin-bottom: 16px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.section-subdescription {
    text-align: center;
    font-size: clamp(15px, 1.8vw, 18px);
    color: var(--text-light);
    max-width: 750px;
    margin: 0 auto 60px;
    line-height: 1.7;
}

/* Retreats Section */
.retreats-section {
    background: var(--bg-white);
    position: relative;
    z-index: 10;
}

.retreats-section .container {
    position: relative;
    z-index: 10;
}

.retreats-section .section-title,
.retreats-section .section-subdescription {
    position: relative;
    z-index: 10;
}

.category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 40px;
    margin-bottom: 40px;
    justify-content: center;
    align-items: center;
}

.category-filter {
    padding: 12px 24px;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: all var(--transition-base);
    font-family: var(--font-sans);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.category-filter::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.category-filter:hover::before {
    left: 100%;
}

.category-filter:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.category-filter.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.category-filter.active:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .category-filters {
        gap: 8px;
        margin-top: 30px;
        margin-bottom: 30px;
    }
    
    .category-filter {
        padding: 10px 18px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .category-filters {
        gap: 6px;
    }
    
    .category-filter {
        padding: 8px 14px;
        font-size: 12px;
    }
}

.retreats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

@media (max-width: 1200px) {
    .retreats-grid {
        gap: 32px;
    }
}

@media (max-width: 1024px) {
    .retreats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 640px) {
    .retreats-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-top: 40px;
    }
}

.retreat-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 1px solid rgba(0, 0, 0, 0.05);
    cursor: pointer;
    position: relative;
}

.retreat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.retreat-image {
    width: 100%;
    height: 320px;
    background: linear-gradient(135deg, #4A70A9 0%, #8FABD4 100%);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.retreat-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 112, 169, 0.3) 0%, rgba(143, 171, 212, 0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    opacity: 0.7;
}

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

.retreat-content {
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.retreat-date {
    font-size: clamp(16px, 1.5vw, 18px);
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 600;
    margin-bottom: 12px;
    display: inline-block;
    padding: 8px 16px;
    background: rgba(74, 112, 169, 0.1);
    border-radius: 6px;
}

.retreat-title {
    font-family: var(--font-serif);
    font-size: clamp(22px, 2.5vw, 28px);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.retreat-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-base);
    margin-top: 4px;
    font-size: 15px;
    position: relative;
    z-index: 1;
}

.retreat-link::after {
    content: '→';
    transition: transform var(--transition-base);
}

.retreat-link:hover::after {
    transform: translateX(4px);
}

.retreat-link:hover {
    color: var(--secondary-color);
}

/* Destinations Section */
.destinations-section {
    background: var(--bg-light);
    padding: 100px 0;
    position: relative;
}

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

.destination-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}

.destination-filter {
    padding: 12px 28px;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: all var(--transition-base);
    font-family: var(--font-sans);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.destination-filter::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.destination-filter:hover::before {
    left: 100%;
}

.destination-filter:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.destination-filter.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.destination-filter.active:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .destination-filters {
        gap: 8px;
        margin-bottom: 40px;
    }
    
    .destination-filter {
        padding: 10px 20px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .destination-filters {
        gap: 6px;
    }
    
    .destination-filter {
        padding: 8px 16px;
        font-size: 12px;
    }
}

.destinations-section .section-title {
    color: var(--text-dark);
    margin-bottom: 16px;
}

.destinations-section .section-subtitle {
    color: var(--text-light);
    font-size: clamp(16px, 1.8vw, 18px);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.destination-item {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.destination-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 112, 169, 0.05), transparent);
    transition: left 0.6s;
}

.destination-item:hover::before {
    left: 100%;
}

.destination-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.destination-icon {
    font-size: 48px;
    margin-bottom: 16px;
    line-height: 1;
    filter: grayscale(20%);
    transition: transform var(--transition-base);
}

.destination-item:hover .destination-icon {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.destination-name {
    font-family: var(--font-serif);
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.destination-location {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
    font-weight: 400;
}

.destination-item[hidden] {
    display: none !important;
}

@media (max-width: 900px) {
    .destinations-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 24px;
    }
    
    .destination-item {
        padding: 28px 20px;
    }
    
    .destination-icon {
        font-size: 40px;
    }
}

@media (max-width: 640px) {
    .destinations-section {
        padding: 80px 0;
    }
    
    .destinations-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 20px;
    }
    
    .destination-item {
        padding: 24px 16px;
    }
    
    .destination-icon {
        font-size: 36px;
        margin-bottom: 12px;
    }
    
    .destination-name {
        font-size: 16px;
        margin-bottom: 6px;
    }
    
    .destination-location {
        font-size: 13px;
    }
}

/* Testimonials Section */
.testimonials-section {
    background: var(--bg-light);
    padding: 100px 0;
    overflow: hidden;
    position: relative;
}

.testimonials-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 60px;
}

.testimonial-nav-btn {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 28px;
    font-weight: 300;
    color: var(--text-dark);
    cursor: pointer;
    z-index: 10;
    transition: all var(--transition-base);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    align-items: center;
    justify-content: center;
}

.testimonial-nav-btn:hover,
.testimonial-nav-btn:focus-visible {
    background: rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-50%) scale(1.05);
}

.testimonial-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.testimonial-prev {
    left: 8px;
}

.testimonial-next {
    right: 8px;
}

.testimonials-carousel {
    display: flex;
    gap: 32px;
    animation: slideRightToLeft 50s linear infinite;
}

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

.testimonial-card {
    flex: 0 0 calc(33.333% - 22px);
    min-width: 350px;
    background: var(--bg-white);
    border-radius: 16px;
    padding: 40px 32px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.testimonial-stars {
    color: var(--accent-color);
    font-size: 18px;
    letter-spacing: 2px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
}

.testimonial-stars .stars-full {
    letter-spacing: 2px;
}

.testimonial-stars .star-half {
    position: relative;
    display: inline-block;
    width: 1em;
    height: 1em;
    line-height: 1;
    vertical-align: baseline;
}

.testimonial-stars .star-half .star-filled {
    position: absolute;
    left: 0;
    top: 0;
    width: 1em;
    height: 1em;
    overflow: hidden;
    display: inline-block;
    color: var(--accent-color);
    clip-path: inset(0 50% 0 0);
    -webkit-clip-path: inset(0 50% 0 0);
    text-align: left;
}

.testimonial-stars .star-half .star-empty {
    position: absolute;
    left: 0;
    top: 0;
    width: 1em;
    height: 1em;
    color: var(--accent-color);
    opacity: 0.4;
    display: inline-block;
    clip-path: inset(0 0 0 50%);
    -webkit-clip-path: inset(0 0 0 50%);
    text-align: right;
}

.testimonial-text {
    font-size: clamp(15px, 1.5vw, 17px);
    color: var(--text-dark);
    line-height: 1.7;
    font-style: italic;
    flex: 1;
    margin: 0;
}

.testimonial-author {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.testimonial-name {
    font-weight: 600;
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.testimonial-location {
    font-size: 14px;
    color: var(--text-light);
}

@keyframes slideRightToLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 16px));
    }
}

@media (max-width: 1200px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 16px);
        min-width: 400px;
    }
}

@media (max-width: 900px) {
    .testimonial-card {
        flex: 0 0 calc(80% - 16px);
        min-width: 320px;
    }
    
    .testimonials-carousel {
        animation-duration: 55s;
    }
}

@media (max-width: 640px) {
    .testimonials-wrapper {
        overflow: hidden;
        position: relative;
    }
    
    .testimonial-nav-btn {
        display: flex;
    }
    
    .testimonials-carousel {
        gap: 0;
        animation: none;
        justify-content: flex-start;
        flex-direction: row;
        position: relative;
        min-height: 350px;
    }
    
    .testimonial-card {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        padding: 32px 24px;
        opacity: 0;
        visibility: hidden;
        transform: translateX(30px) translateY(0);
        transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s;
        pointer-events: none;
        margin: 0;
    }
    
    .testimonial-card.active {
        opacity: 1;
        visibility: visible;
        transform: translateX(0) translateY(0);
        pointer-events: auto;
    }
    
    .testimonial-card.slide-in-right {
        visibility: visible;
        pointer-events: auto;
        animation: fadeInFromRight 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }
    
    .testimonial-card.slide-in-left {
        visibility: visible;
        pointer-events: auto;
        animation: fadeInFromLeft 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }
    
    .testimonial-card.slide-out-left {
        animation: fadeOutToLeft 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }
    
    .testimonial-card.slide-out-right {
        animation: fadeOutToRight 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }
    
    .testimonial-text {
        font-size: 15px;
    }
}

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

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

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

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

/* Newsletter Section */
.newsletter-section {
    background: var(--bg-light);
    text-align: center;
    padding: 100px 0;
}

.newsletter-description {
    font-size: clamp(15px, 1.8vw, 18px);
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 16px;
    max-width: 560px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-input {
    flex: 1;
    min-width: 250px;
    padding: 14px 20px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: var(--font-sans);
    transition: all var(--transition-base);
    background: var(--bg-white);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(74, 112, 169, 0.1);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--text-dark) 0%, #2a2a2a 100%);
    color: white;
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: 60px;
    column-gap: 60px;
    row-gap: 0;
    margin-bottom: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    align-items: start;
}

@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        column-gap: 40px;
        row-gap: 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        column-gap: 0;
        row-gap: 32px;
    }

    .footer-brand .logo {
        font-size: 18px;
    }

    .footer-brand .logo img {
        height: 32px;
    }
    
    .footer-title {
        font-size: 18px;
    }
    
    .footer-link,
    .footer-links a {
        font-size: 14px;
    }
    
    .footer {
        padding: 50px 0 24px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        gap: 28px;
        row-gap: 28px;
    }
    
    .footer-brand .logo {
        font-size: 16px;
    }
    
    .footer-brand .logo img {
        height: 30px;
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.footer-brand .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: white;
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.footer-brand .logo img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.footer-brand .logo span {
    color: white;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
    margin-top: 8px;
}

.footer-brand .footer-tagline {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-weight: 500;
    font-style: italic;
    line-height: 1.5;
    margin-top: 12px;
    margin-bottom: 8px;
}

.footer-section {
    margin-bottom: 0;
    width: 100%;
}

.footer-section:empty {
    display: none;
}

.footer-title {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-link:hover {
    color: white;
}

.footer-links {
    list-style: none;
}

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

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

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    text-align: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

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

.footer-social .social-link {
    color: rgba(255, 255, 255, 0.8);
}

.footer-social .social-link:hover {
    color: white;
}

.footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

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

.footer-copyright a:hover {
    color: white;
    text-decoration: underline;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease-out;
}

.modal.active {
    display: flex;
}

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

.modal-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.discovery-modal-content {
    max-width: 450px;
    padding: 0;
    overflow: hidden;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(-30px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 24px;
    color: var(--text-dark);
    cursor: pointer;
    line-height: 1;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.modal-close:hover {
    background: var(--primary-color);
    color: white;
    transform: rotate(90deg);
    box-shadow: 0 4px 12px rgba(74, 112, 169, 0.3);
}

.discovery-modal-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    padding: 35px 30px 30px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.discovery-modal-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.discovery-icon {
    font-size: 40px;
    margin-bottom: 16px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.discovery-title {
    font-family: var(--font-serif);
    font-size: clamp(22px, 3.5vw, 28px);
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    line-height: 1.3;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.discovery-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0;
    font-weight: 400;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.discovery-modal-body {
    padding: 30px;
}

.discovery-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.form-group input[type="email"] {
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 16px;
    font-family: var(--font-sans);
    transition: all var(--transition-base);
    background: var(--bg-white);
    width: 100%;
}

.form-group input::placeholder {
    color: var(--text-lighter);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(74, 112, 169, 0.1);
    transform: translateY(-1px);
}

.form-group input.error {
    border-color: #e74c3c;
    box-shadow: 0 0 0 4px rgba(231, 76, 60, 0.1);
}

.form-group input.error:focus {
    border-color: #e74c3c;
    box-shadow: 0 0 0 4px rgba(231, 76, 60, 0.15);
}

.error-message {
    display: block;
    color: #e74c3c;
    font-size: 12px;
    margin-top: 4px;
    min-height: 18px;
    opacity: 0;
    transform: translateY(-3px);
    transition: all var(--transition-base);
    line-height: 1.3;
}

.error-message.show {
    opacity: 1;
    transform: translateY(0);
}

.btn-discovery {
    width: 100%;
    padding: 14px 32px;
    font-size: 16px;
    margin-top: 4px;
}

.discovery-note {
    margin-top: 12px;
    font-size: 12px;
    color: var(--text-light);
    text-align: center;
    line-height: 1.5;
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: white;
    padding: 20px 24px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    z-index: 3000;
    max-width: 500px;
    width: 90%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(74, 112, 169, 0.1);
}

.toast.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.toast.error {
    border-color: rgba(231, 76, 60, 0.3);
    background: #fff5f5;
}

.toast-content {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.toast-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    flex-shrink: 0;
    animation: checkmark 0.5s ease-out;
}

@keyframes checkmark {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.toast-message {
    flex: 1;
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.6;
    padding-top: 4px;
}

@media (max-width: 640px) {
    .toast {
        bottom: 20px;
        padding: 16px 20px;
        max-width: calc(100% - 40px);
    }

    .toast-icon {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }

    .toast-message {
        font-size: 14px;
    }
}

/* Accessibility - Focus Indicators */
*:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
    border-radius: 4px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

.skip-link:focus {
    top: 0;
    outline: 3px solid white;
    outline-offset: 2px;
}

/* Search Functionality */
.nav-search {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    margin-left: 24px;
}

.search-input {
    padding: 10px 40px 10px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    font-family: var(--font-sans);
    min-width: 250px;
    transition: all var(--transition-base);
    background: var(--bg-white);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(74, 112, 169, 0.1);
}

/* Hide native browser search cancel buttons */
.search-input::-webkit-search-cancel-button {
    -webkit-appearance: none;
    appearance: none;
    display: none;
}

.search-input::-ms-clear {
    display: none;
}

.search-button {
    position: absolute;
    right: 8px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-light);
    font-size: 18px;
    padding: 4px;
    display: none;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    min-height: 24px;
    border-radius: 4px;
    transition: all var(--transition-base);
}

.search-input:not(:placeholder-shown) + .search-button {
    display: flex;
}

.search-button:hover,
.search-button:focus-visible {
    background: var(--bg-light);
    color: var(--primary-color);
}

.search-results-message {
    text-align: center;
    margin-top: 24px;
    font-size: 16px;
    color: var(--text-light);
    min-height: 24px;
}

.empty-retreats-message {
    margin-top: 48px;
    margin-bottom: 48px;
    padding: 48px 24px;
    background: linear-gradient(135deg, rgba(139, 126, 104, 0.05) 0%, rgba(139, 126, 104, 0.02) 100%);
    border-radius: 16px;
    border: 1px solid rgba(139, 126, 104, 0.15);
    min-height: auto;
}

.empty-retreats-content {
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.6s ease-out;
}

.empty-retreats-icon {
    font-size: 48px;
    margin-bottom: 20px;
    animation: gentlePulse 2s ease-in-out infinite;
}

.empty-retreats-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.empty-retreats-description {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 32px;
}

.btn-special-contact {
    font-size: 16px;
    padding: 14px 32px;
    box-shadow: 0 4px 12px rgba(139, 126, 104, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-special-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 126, 104, 0.3);
}

.btn-special-contact::before {
    background: rgba(255, 255, 255, 0.2);
}

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

@keyframes gentlePulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

.retreat-card[hidden] {
    display: none !important;
}

@media (max-width: 1024px) {
    .nav-search {
        margin-left: 0;
        margin-top: 16px;
    }
    
    .search-input {
        min-width: 200px;
    }
}

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

/* FAQ Section */
.faq-section {
    background: var(--bg-white);
}

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

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

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

.faq-question {
    width: 100%;
    padding: 24px 0;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-sans);
    font-size: clamp(16px, 1.8vw, 18px);
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: color var(--transition-base);
    min-height: 44px;
}

.faq-question:hover,
.faq-question:focus-visible {
    color: var(--primary-color);
    outline: none;
}

.faq-question[aria-expanded="true"] {
    color: var(--primary-color);
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: var(--primary-color);
    transition: transform var(--transition-base);
    flex-shrink: 0;
    min-width: 24px;
    text-align: center;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding var(--transition-base);
    padding: 0 0;
}

.faq-answer[aria-hidden="false"] {
    max-height: 2000px;
    padding: 0 0 24px 0;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
    font-size: clamp(15px, 1.6vw, 16px);
}

.faq-answer ul {
    color: var(--text-light);
    margin: 12px 0;
    padding-left: 20px;
    font-size: clamp(15px, 1.6vw, 16px);
}

.faq-answer li {
    color: var(--text-light);
    line-height: 1.7;
    margin: 6px 0;
}

.faq-cta {
    text-align: center;
    margin-top: 50px;
}

/* Gallery Section */
.gallery-section {
    background: var(--bg-light);
    padding: 60px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

/* Instagram Gallery Grid */
.instagram-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 60px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    padding: 0;
    scroll-behavior: smooth;
}

/* Home page Instagram gallery - 3 columns on desktop */
.home-instagram-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.instagram-gallery-grid blockquote.instagram-media {
    background: var(--bg-white);
    border: 0;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin: 0 !important;
    min-width: 326px;
    padding: 0 !important;
    width: 100% !important;
    max-width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    scroll-margin-top: 100px;
    overflow: hidden !important;
    position: relative;
}

/* Hide the profile/view button at the bottom of Instagram embeds using overlay */
.instagram-gallery-grid blockquote.instagram-media::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: var(--bg-white);
    z-index: 1000;
    pointer-events: none;
    border-radius: 0 0 12px 12px;
}

/* Additional overlay class for JavaScript-added overlay */
.instagram-profile-button-overlay {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 70px !important;
    background: var(--bg-white) !important;
    z-index: 1000 !important;
    pointer-events: none !important;
    border-radius: 0 0 12px 12px !important;
}

/* Ensure iframe doesn't overflow */
.instagram-gallery-grid blockquote.instagram-media iframe {
    display: block;
    width: 100% !important;
    border: none !important;
}

/* Clip any content that extends beyond the overlay */
.instagram-gallery-grid blockquote.instagram-media > div {
    overflow: hidden !important;
    position: relative;
}

.instagram-gallery-grid blockquote.instagram-media:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 4px;
}

/* Hide header, hovercard, feedback, and footer elements within Instagram reel embeds */
.instagram-gallery-grid blockquote.instagram-media .header,
.instagram-gallery-grid blockquote.instagram-media .hovercard,
.instagram-gallery-grid blockquote.instagram-media .feedback,
.instagram-gallery-grid blockquote.instagram-media .footer,
.home-instagram-gallery blockquote.instagram-media .header,
.home-instagram-gallery blockquote.instagram-media .hovercard,
.home-instagram-gallery blockquote.instagram-media .feedback,
.home-instagram-gallery blockquote.instagram-media .footer {
    display: none !important;
}

/* Smooth scroll for autoplay */
html {
    scroll-behavior: smooth;
}

.gallery-section {
    scroll-behavior: smooth;
}

@media (max-width: 1024px) {
    .instagram-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    /* Home Instagram gallery - 2 columns on tablet */
    .home-instagram-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    /* Show only 4 Instagram posts on tablet for home page gallery */
    .home-instagram-gallery blockquote.instagram-media:nth-child(n+5) {
        display: none;
    }
}

@media (max-width: 768px) {
    .instagram-gallery-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 40px;
        padding: 0 20px;
    }
    
    /* Home Instagram gallery - 1 column on mobile */
    .home-instagram-gallery {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 20px;
    }
    
    /* Show only 3 Instagram reels on mobile for home page gallery */
    .home-instagram-gallery blockquote.instagram-media:nth-child(n+4) {
        display: none !important;
    }
    
    .instagram-gallery-grid blockquote.instagram-media {
        min-width: 100%;
        width: 100% !important;
    }
    
    .home-instagram-gallery blockquote.instagram-media {
        min-width: 100%;
        width: 100% !important;
    }
    
    .gallery-section {
        padding: 40px 0;
    }
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 640px) {
    /* Home Instagram gallery - 1 column on small mobile */
    .home-instagram-gallery {
        grid-template-columns: 1fr !important;
        gap: 24px;
        padding: 0 20px;
    }
    
    /* Show only 3 Instagram reels on small mobile */
    .home-instagram-gallery blockquote.instagram-media:nth-child(n+4) {
        display: none !important;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-top: 40px;
    }
}

.gallery-item {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: transform var(--transition-base);
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: var(--bg-white);
}

.gallery-item:hover,
.gallery-item:focus-visible {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    outline: none;
}

.gallery-item picture {
    width: 100%;
    height: 100%;
    display: block;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    content-visibility: auto;
    contain-intrinsic-size: 600px 400px;
}

.gallery-item:hover .gallery-image,
.gallery-item:focus .gallery-image {
    transform: scale(1.05);
}


.gallery-cta {
    text-align: center;
    margin-top: 50px;
}

/* Gallery Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox.active {
    display: flex;
}

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

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: white;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 24px;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    min-width: 44px;
    min-height: 44px;
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
    background: var(--primary-color);
    color: white;
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 20px;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    min-width: 44px;
    min-height: 44px;
}

.lightbox-nav:hover,
.lightbox-nav:focus-visible {
    background: var(--primary-color);
    color: white;
}

.lightbox-prev {
    left: -60px;
}

.lightbox-next {
    right: -60px;
}

@media (max-width: 768px) {
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
    }
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: normal;
    font-size: 14px;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 3px;
    cursor: pointer;
}

.modal-note {
    margin-top: 20px;
    font-size: 13px;
    color: var(--text-light);
    text-align: center;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-brand .logo img {
        height: 32px;
    }
    
    .nav-brand .logo {
        font-size: 28px;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: var(--bg-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 0;
        box-shadow: var(--shadow-xl);
        transition: left var(--transition-base);
        z-index: 999;
        gap: 0;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        margin: 0;
        overflow-y: auto;
    }

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

    .mobile-nav-brand {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 24px 40px;
        border-bottom: 1px solid var(--border-color);
        width: 100%;
        background: var(--bg-white);
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .mobile-nav-brand .logo {
        font-family: var(--font-serif);
        font-size: 20px;
        font-weight: 700;
        color: var(--primary-color);
        text-decoration: none;
        letter-spacing: -0.02em;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .mobile-nav-brand .logo img {
        height: 32px;
        width: auto;
        object-fit: contain;
    }

    .mobile-nav-brand .logo span {
        font-size: 18px;
    }

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

    .nav-menu > li:not(.mobile-nav-brand) {
        border-bottom: 1px solid var(--border-color);
    }

    .nav-link {
        display: block;
        padding: 15px 40px;
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin: 0;
        padding: 0;
        background: var(--bg-light);
    }

    .dropdown-menu a {
        padding: 12px 40px 12px 60px;
    }

    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .hero {
        min-height: 100vh;
        height: 100vh;
        padding: 60px 20px;
    }

    .hero-title {
        margin-bottom: 40px;
    }

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

    .empty-retreats-message {
        margin-top: 32px;
        margin-bottom: 32px;
        padding: 32px 20px;
    }

    .empty-retreats-icon {
        font-size: 40px;
        margin-bottom: 16px;
    }

    .empty-retreats-title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .empty-retreats-description {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .btn-special-contact {
        font-size: 15px;
        padding: 12px 28px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-input {
        width: 100%;
    }

    .footer-bottom {
        text-align: center;
    }
}

/* Responsive Design Enhancements */
@media (min-width: 1400px) {
    .container {
        max-width: 1600px;
        padding: 0 60px;
    }
    
    .retreats-grid,
    .gallery-grid {
        gap: 56px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .container {
        padding: 0 32px;
    }
    
    .retreats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .consultations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
    
    .hero {
        min-height: 100vh;
        height: 100vh;
    }
    
    section {
        padding: 80px 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: clamp(36px, 9vw, 42px);
        margin-bottom: 16px;
        line-height: 1.2;
    }

    .hero-tagline {
        font-size: clamp(16px, 4vw, 18px);
        margin-bottom: 32px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 12px;
    }

    .btn {
        width: 100%;
        text-align: center;
        min-height: 44px;
        min-width: 44px;
        font-size: 15px;
    }

    section {
        padding: 50px 0;
    }

    .section-title {
        font-size: clamp(24px, 6vw, 28px);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }

    /* Modal responsive */
    .discovery-modal-content {
        max-width: 90%;
    }

    .discovery-modal-header {
        padding: 30px 20px 24px;
    }

    .discovery-icon {
        font-size: 36px;
        margin-bottom: 12px;
    }

    .discovery-title {
        font-size: 22px;
    }

    .discovery-subtitle {
        font-size: 14px;
    }

    .discovery-modal-body {
        padding: 24px 20px;
    }

    .modal-content {
        padding: 0;
        border-radius: 16px;
        max-height: 95vh;
    }

    .modal-close {
        top: 16px;
        right: 16px;
        width: 44px;
        height: 44px;
        font-size: 20px;
        min-width: 44px;
        min-height: 44px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    /* Show only 3 images on mobile for home page gallery */
    .home-gallery .gallery-item:nth-child(n+4) {
        display: none;
    }
    
    /* Show only 3 Instagram posts on mobile for home page gallery */
    .home-instagram-gallery blockquote.instagram-media:nth-child(n+4) {
        display: none;
    }
    
    .retreat-image {
        height: 280px;
    }
    
    .retreat-content {
        padding: 28px 24px;
    }
    
    .faq-question {
        padding: 20px 0;
        font-size: 16px;
    }
    
    .mobile-menu-toggle {
        min-width: 44px;
        min-height: 44px;
    }
}

/* iPhone and small mobile devices */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .hero {
        min-height: 50vh;
        padding: 40px 16px;
    }
    
    .retreats-grid {
        gap: 24px;
    }
    
    .hero-title {
        font-size: clamp(32px, 8vw, 42px);
    }
    
    .hero-tagline {
        font-size: clamp(16px, 4vw, 18px);
    }
    
    .section-title {
        font-size: clamp(24px, 6vw, 28px);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .contact-form-wrapper {
        padding: 24px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .consultations-grid {
        gap: 20px;
    }
    
    .consultation-card {
        padding: 28px 20px;
    }
    
    .retreat-content {
        padding: 28px 24px;
    }
    
    .footer-content {
        gap: 32px;
    }
}

/* iPhone 6/7/8 (375px) and iPhone X/11/12 (414px) */
@media (max-width: 414px) {
    .hero-title {
        font-size: clamp(30px, 7.5vw, 40px);
        line-height: 1.2;
    }
    
    .hero-tagline {
        font-size: clamp(15px, 3.8vw, 17px);
    }
    
    .section-title {
        font-size: clamp(22px, 5.5vw, 26px);
    }
    
    .retreat-title {
        font-size: clamp(20px, 5vw, 24px);
    }
    
    .consultation-title {
        font-size: clamp(18px, 4.5vw, 22px);
    }
    
    .btn {
        font-size: 14px;
        padding: 12px 24px;
    }
    
    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 16px;
        right: 16px;
        min-width: 56px;
        min-height: 56px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 375px) {
    .container {
        padding: 0 14px;
    }
    
    .hero {
        padding: 35px 14px;
    }
    
    .section-title {
        font-size: clamp(20px, 5.3vw, 24px);
    }
    
    .retreat-content {
        padding: 24px 20px;
    }
    
    .consultation-card {
        padding: 24px 18px;
    }
    
    .contact-form-wrapper {
        padding: 20px 16px;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 12px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-tagline {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 24px;
    }
}

/* Touch target improvements */
button,
a.btn,
input[type="submit"],
input[type="button"],
a.nav-link {
    min-height: 44px;
    min-width: 44px;
}

@media (pointer: fine) {
    button:hover,
    a.btn:hover {
        min-height: 44px;
        min-width: 44px;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: rgba(37, 211, 102, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: all var(--transition-base);
    text-decoration: none;
    animation: pulse-whatsapp 2s ease-in-out infinite;
    min-width: 60px;
    min-height: 60px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
    background: rgba(37, 211, 102, 0.35);
    border-color: rgba(37, 211, 102, 0.5);
}

.whatsapp-float:focus-visible {
    outline: 3px solid #25D366;
    outline-offset: 4px;
    transform: scale(1.05);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: white;
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.5);
    }
}

@media (max-width: 640px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
        min-width: 56px;
        min-height: 56px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

/* Page-Specific Styles */

/* About Page */
.about-hero,
.faq-hero,
.gallery-hero,
.contact-hero,
.retreat-detail-hero {
    background: linear-gradient(135deg, #4A70A9 0%, #3a5a87 50%, #8FABD4 100%);
    color: white;
    text-align: center;
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    opacity: 0.6;
}

.about-hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
    display: inline-block;
    font-size: clamp(13px, 1.2vw, 15px);
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    padding: 8px 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.hero-divider {
    width: 80px;
    height: 2px;
    background: rgba(255, 255, 255, 0.4);
    margin: 40px auto 0;
    position: relative;
}

.hero-divider::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
}

.page-title {
    font-family: var(--font-serif);
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 700;
    color: white;
    margin-bottom: 28px;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.page-subtitle {
    font-size: clamp(18px, 2.2vw, 26px);
    color: rgba(255, 255, 255, 0.95);
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 300;
    letter-spacing: 0.01em;
}

.about-section {
    padding: 100px 0;
}

.about-intro {
    background: var(--bg-white);
    padding: 120px 0;
    position: relative;
}

.about-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-color), transparent);
}

.about-intro-content {
    display: grid;
    gap: 60px;
}

.intro-quote-wrapper {
    text-align: center;
    padding: 40px 0;
    position: relative;
}

.intro-quote-wrapper::before,
.intro-quote-wrapper::after {
    content: '"';
    font-family: var(--font-serif);
    font-size: 80px;
    color: var(--primary-light);
    opacity: 0.2;
    position: absolute;
    line-height: 1;
}

.intro-quote-wrapper::before {
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.intro-quote-wrapper::after {
    display: none;
}

.intro-main-text {
    max-width: 900px;
    margin: 0 auto;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text {
    font-size: clamp(17px, 1.9vw, 19px);
    color: var(--text-dark);
    line-height: 1.85;
    margin-bottom: 28px;
}

.about-text-large {
    font-size: clamp(19px, 2.1vw, 22px);
    line-height: 1.8;
    color: var(--text-dark);
    font-weight: 400;
}

.about-text-emphasis {
    font-size: clamp(20px, 2.2vw, 24px);
    font-weight: 500;
    font-style: italic;
    color: var(--primary-color);
    text-align: center;
    margin: 50px auto;
    max-width: 750px;
    line-height: 1.7;
    padding: 30px 0;
    position: relative;
}

.about-text-emphasis::before,
.about-text-emphasis::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: var(--primary-light);
    opacity: 0.5;
}

.about-text-emphasis::before {
    top: 0;
}

.about-text-emphasis::after {
    bottom: 0;
}

.about-why {
    background: linear-gradient(to bottom, var(--bg-white) 0%, var(--bg-light) 100%);
    padding: 120px 0;
}

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

.section-badge {
    display: inline-block;
    font-size: clamp(12px, 1.1vw, 14px);
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 16px;
    padding: 6px 16px;
    border: 1px solid var(--primary-light);
    border-radius: 50px;
    background: rgba(74, 112, 169, 0.05);
}

.about-section .section-title {
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: clamp(28px, 3.5vw, 42px);
}

.section-subtitle {
    font-size: clamp(18px, 2vw, 22px);
    color: var(--text-light);
    font-style: italic;
    font-weight: 400;
    margin-top: 16px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.about-values {
    background: var(--bg-light);
    padding: 120px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.values-grid-why {
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.value-card {
    background: var(--bg-white);
    padding: 40px 36px;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: all var(--transition-base);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--primary-light));
    transform: scaleY(0);
    transition: transform var(--transition-base);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: rgba(74, 112, 169, 0.1);
}

.value-card:hover::before {
    transform: scaleY(1);
}

.value-icon {
    font-size: 36px;
    margin-bottom: 20px;
    display: block;
    line-height: 1;
}

.value-title {
    font-family: var(--font-serif);
    font-size: clamp(20px, 2.2vw, 24px);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 16px;
    line-height: 1.3;
}

.value-text {
    color: var(--text-light);
    line-height: 1.75;
    font-size: clamp(15px, 1.6vw, 16px);
}

.about-mission {
    background: var(--bg-white);
    padding: 120px 0;
}

.mission-content {
    max-width: 850px;
}

.mission-statement {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--border-color);
}

.mission-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.about-text-intro {
    font-size: clamp(17px, 1.9vw, 19px);
    font-weight: 500;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.about-text-highlight {
    font-size: clamp(22px, 2.5vw, 28px);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0;
    line-height: 1.4;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-story {
    background: linear-gradient(to bottom, var(--bg-light) 0%, var(--bg-white) 100%);
    padding: 120px 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 80px;
    align-items: start;
    margin-top: 60px;
}

.story-text {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.story-opening {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.story-body {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.story-text p {
    font-size: clamp(17px, 1.9vw, 19px);
    color: var(--text-dark);
    line-height: 1.85;
    margin: 0;
}

.story-intro {
    font-size: clamp(17px, 1.9vw, 19px);
    color: var(--text-dark);
    margin-bottom: 20px !important;
}

.story-quote {
    font-size: clamp(20px, 2.2vw, 24px);
    font-weight: 500;
    font-style: italic;
    color: var(--primary-color);
    line-height: 1.7;
    padding: 24px 0 24px 32px;
    border-left: 4px solid var(--primary-light);
    margin: 0 !important;
    background: rgba(74, 112, 169, 0.03);
    border-radius: 0 8px 8px 0;
}

.story-closing {
    margin-top: 40px;
    padding-top: 40px;
    position: relative;
}

.story-closing-divider {
    width: 60px;
    height: 2px;
    background: var(--primary-light);
    margin-bottom: 32px;
    position: relative;
}

.story-closing-divider::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
}

.story-closing-bold {
    font-weight: 600;
    font-size: clamp(18px, 2vw, 20px);
    color: var(--text-dark);
    margin-bottom: 12px !important;
}

.story-closing-italic {
    font-weight: 500;
    font-style: italic;
    font-size: clamp(18px, 2vw, 20px);
    color: var(--primary-color);
    margin: 0 !important;
}

.story-image {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    position: sticky;
    top: 120px;
}

.story-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(143, 171, 212, 0.3) 0%, rgba(74, 112, 169, 0.4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.story-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(74, 112, 169, 0.4) 0%, rgba(143, 171, 212, 0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity var(--transition-base);
}

.story-image-text {
    font-family: var(--font-serif);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    line-height: 1.3;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.about-team {
    background: var(--bg-white);
    padding: 120px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    align-items: stretch;
}

.team-card {
    background: var(--bg-light);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all var(--transition-base);
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(74, 112, 169, 0.15);
}

.team-image-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(143, 171, 212, 0.2) 0%, rgba(74, 112, 169, 0.3) 100%);
    position: relative;
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

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

.team-info {
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

.team-name {
    font-family: var(--font-serif);
    font-size: clamp(24px, 2.5vw, 32px);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
    line-height: 1.3;
}

.team-role {
    font-size: clamp(14px, 1.5vw, 16px);
    font-weight: 500;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 32px;
    color: var(--primary-color);
    opacity: 0.8;
}

.team-bio {
    display: flex;
    flex-direction: column;
    position: relative;
    flex: 1;
    min-height: 0;
}

.team-bio-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
    min-height: 0;
    overflow: hidden;
    position: relative;
}

.team-bio:not(.expanded) .team-bio-content {
    max-height: calc(17px * 1.75 * 6); /* 6 lines: font-size * line-height * 6 lines */
    overflow: hidden;
    position: relative;
}

@media (max-width: 968px) {
    .team-bio:not(.expanded) .team-bio-content {
        max-height: calc(16px * 1.75 * 6);
    }
}

@media (max-width: 640px) {
    .team-bio:not(.expanded) .team-bio-content {
        max-height: calc(15px * 1.75 * 6);
    }
}

.team-bio:not(.expanded) .team-bio-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to bottom, rgba(239, 236, 227, 0), rgba(239, 236, 227, 1));
    pointer-events: none;
}

.team-bio.expanded .team-bio-content {
    max-height: none;
}

.team-bio.expanded .team-bio-content::after {
    display: none;
}

.team-bio-content p {
    font-size: clamp(15px, 1.6vw, 17px);
    color: var(--text-dark);
    line-height: 1.75;
    margin: 0;
}

.team-bio-expanded {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.6s ease-out, opacity 0.4s ease-out 0.1s, margin-top 0.4s ease-out;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.team-bio.expanded .team-bio-expanded {
    max-height: 3000px;
    opacity: 1;
    margin-top: 20px;
}

.team-bio-expanded p {
    font-size: clamp(15px, 1.6vw, 17px);
    color: var(--text-dark);
    line-height: 1.75;
    margin: 0;
}

.team-read-more {
    margin-top: auto;
    padding: 24px 24px 0 0;
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: clamp(15px, 1.6vw, 17px);
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    transition: color var(--transition-base);
    align-self: flex-start;
    position: relative;
}

.team-read-more:hover {
    color: var(--primary-dark);
}

.team-read-more::after {
    content: '↓';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: transform var(--transition-base);
    font-size: 14px;
}

.team-bio.expanded .team-read-more::after {
    transform: translateY(-50%) rotate(180deg);
}

.about-team {
    background: var(--bg-white);
    padding: 120px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    align-items: stretch;
}

.team-card {
    background: var(--bg-light);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all var(--transition-base);
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(74, 112, 169, 0.15);
}

.team-image-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(143, 171, 212, 0.2) 0%, rgba(74, 112, 169, 0.3) 100%);
    position: relative;
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

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

.team-info {
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

.team-name {
    font-family: var(--font-serif);
    font-size: clamp(24px, 2.5vw, 32px);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
    line-height: 1.3;
}

.team-role {
    font-size: clamp(14px, 1.5vw, 16px);
    font-weight: 500;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 32px;
    color: var(--primary-color);
    opacity: 0.8;
}

.team-bio {
    display: flex;
    flex-direction: column;
    position: relative;
    flex: 1;
    min-height: 0;
}

.team-bio-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
    min-height: 0;
    overflow: hidden;
    position: relative;
}

.team-bio:not(.expanded) .team-bio-content {
    max-height: calc(17px * 1.75 * 6); /* 6 lines: font-size * line-height * 6 lines */
    overflow: hidden;
    position: relative;
}

@media (max-width: 968px) {
    .team-bio:not(.expanded) .team-bio-content {
        max-height: calc(16px * 1.75 * 6);
    }
}

@media (max-width: 640px) {
    .team-bio:not(.expanded) .team-bio-content {
        max-height: calc(15px * 1.75 * 6);
    }
}

.team-bio:not(.expanded) .team-bio-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to bottom, rgba(239, 236, 227, 0), rgba(239, 236, 227, 1));
    pointer-events: none;
}

.team-bio.expanded .team-bio-content {
    max-height: none;
}

.team-bio.expanded .team-bio-content::after {
    display: none;
}

.team-bio-content p {
    font-size: clamp(15px, 1.6vw, 17px);
    color: var(--text-dark);
    line-height: 1.75;
    margin: 0;
}

.team-bio-expanded {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.6s ease-out, opacity 0.4s ease-out 0.1s, margin-top 0.4s ease-out;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.team-bio.expanded .team-bio-expanded {
    max-height: 3000px;
    opacity: 1;
    margin-top: 20px;
}

.team-bio-expanded p {
    font-size: clamp(15px, 1.6vw, 17px);
    color: var(--text-dark);
    line-height: 1.75;
    margin: 0;
}

.team-read-more {
    margin-top: auto;
    padding: 24px 24px 0 0;
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: clamp(15px, 1.6vw, 17px);
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    transition: color var(--transition-base);
    align-self: flex-start;
    position: relative;
}

.team-read-more:hover {
    color: var(--primary-dark);
}

.team-read-more::after {
    content: '↓';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: transform var(--transition-base);
    font-size: 14px;
}

.team-bio.expanded .team-read-more::after {
    transform: translateY(-50%) rotate(180deg);
}

.about-cta-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    text-align: center;
    padding: 120px 0;
}

.cta-description {
    font-size: clamp(17px, 2vw, 20px);
    color: var(--text-light);
    margin-bottom: 48px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

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

@media (max-width: 968px) {
    .about-section {
        padding: 80px 0;
    }
    
    .about-intro,
    .about-why,
    .about-mission,
    .about-story,
    .about-values,
    .about-team {
        padding: 80px 0;
    }
    
    .about-intro-content {
        gap: 50px;
    }
    
    .intro-quote-wrapper {
        padding: 30px 0;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .story-image {
        position: relative;
        top: 0;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .team-info {
        padding: 36px 32px;
    }
    
    .story-opening {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }
    
    .story-body {
        margin-bottom: 30px;
    }
    
    .mission-statement {
        margin-bottom: 40px;
        padding-bottom: 40px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    
    .values-grid-why {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 640px) {
    .about-hero {
        padding: 100px 0 80px;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 6px 16px;
    }
    
    .hero-divider {
        width: 60px;
        margin-top: 30px;
    }
    
    .about-section {
        padding: 60px 0;
    }
    
    .about-intro,
    .about-why,
    .about-mission,
    .about-story,
    .about-values,
    .about-team {
        padding: 60px 0;
    }
    
    .about-intro-content {
        gap: 40px;
    }
    
    .intro-quote-wrapper {
        padding: 20px 0;
    }
    
    .intro-quote-wrapper::before {
        font-size: 60px;
    }
    
    .about-text-emphasis {
        padding: 24px 0;
    }
    
    .value-card {
        padding: 32px 28px;
    }
    
    .story-quote {
        padding: 20px 0 20px 24px;
        border-left-width: 3px;
        font-size: clamp(18px, 2vw, 20px);
    }
    
    .story-opening {
        margin-bottom: 24px;
        padding-bottom: 24px;
    }
    
    .story-body {
        margin-bottom: 24px;
        gap: 20px;
    }
    
    .story-closing {
        margin-top: 32px;
        padding-top: 32px;
    }
    
    .mission-statement {
        margin-bottom: 32px;
        padding-bottom: 32px;
    }
    
    .values-grid-why {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    
    .team-grid {
        gap: 40px;
    }
    
    .team-info {
        padding: 32px 28px;
    }
    
    .team-bio-content {
        gap: 16px;
    }
    
    .team-bio-expanded {
        gap: 16px;
    }
    
    .team-bio.expanded .team-bio-expanded {
        margin-top: 16px;
    }
    
    .team-read-more {
        margin-top: auto;
        padding-top: 20px;
        font-size: clamp(14px, 1.5vw, 16px);
    }
}

/* Contact Page */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin-top: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item {
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-color);
}

.contact-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-item-title {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 16px;
    transition: color var(--transition-base);
}

.contact-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.contact-text {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 15px;
    margin: 0;
}

.contact-form-wrapper {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
}

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

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

@media (max-width: 640px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

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

.contact-form label {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 13px;
    margin-bottom: 0;
}

.label-optional {
    font-weight: 400;
    color: var(--text-light);
    font-size: 12px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: var(--font-sans);
    transition: all var(--transition-base);
    background: var(--bg-white);
    width: 100%;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
}

@media (max-width: 640px) {
    .contact-form input,
    .contact-form textarea,
    .contact-form select {
        font-size: 16px;
        padding: 12px 14px;
        min-height: 44px;
    }
}

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

.contact-form select:focus {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234A70A9' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
}

.contact-form select optgroup {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 14px;
    padding: 8px 0;
}

.contact-form select option {
    font-weight: 400;
    color: var(--text-dark);
    padding: 8px 16px;
}


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

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(74, 112, 169, 0.08);
}

.contact-form input.error,
.contact-form textarea.error,
.contact-form select.error {
    border-color: #e74c3c;
}

.contact-form input.error:focus,
.contact-form textarea.error:focus,
.contact-form select.error:focus {
    border-color: #e74c3c;
    box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.1);
}

.contact-form-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.contact-form-buttons .btn {
    flex: 1;
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 15px;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    border: none;
}

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:focus-visible {
    outline: 3px solid #25D366;
    outline-offset: 2px;
}

.btn-email {
    background: var(--primary-color);
    color: white;
    border: none;
}

.btn-email:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-email:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

.btn-whatsapp svg,
.btn-email svg {
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .contact-form-buttons {
        flex-direction: column;
    }
    
    .contact-form-buttons .btn {
        width: 100%;
        min-width: 100%;
    }
}

.map-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--border-color) 0%, var(--bg-white) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 18px;
    margin-top: 40px;
}

/* Gallery Page */
.gallery-filters-section {
    background: var(--bg-white);
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
}

.gallery-filters {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: all var(--transition-base);
    min-height: 44px;
}

.filter-btn:hover,
.filter-btn:focus-visible {
    border-color: var(--primary-color);
    color: var(--primary-color);
    outline: none;
}

.filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Retreat Detail Page */
.retreat-detail-hero {
    text-align: left;
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
}

.retreat-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.4;
    z-index: 0;
}

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

.retreat-detail-title {
    font-family: var(--font-serif);
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 700;
    color: white;
    margin: 16px 0 24px;
    line-height: 1.2;
}

.retreat-subtitle {
    font-size: clamp(18px, 2.2vw, 24px);
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    max-width: 800px;
}

.retreat-carousel-section {
    background: var(--bg-white);
    padding: 60px 0;
}

.retreat-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.carousel-track {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.carousel-slide {
    content-visibility: auto;
    contain-intrinsic-size: 1400px 800px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
    position: relative;
}

.carousel-slide picture {
    width: 100%;
    height: 100%;
    display: block;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    content-visibility: auto;
    contain-intrinsic-size: 1400px 800px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    color: var(--text-dark);
    cursor: pointer;
    z-index: 10;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    min-height: 50px;
}

.carousel-btn:hover,
.carousel-btn:focus-visible {
    background: var(--primary-color);
    color: white;
    outline: none;
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    transition: all var(--transition-base);
    padding: 0;
    min-width: 12px;
    min-height: 12px;
}

.indicator.active {
    background: white;
}

.indicator:hover,
.indicator:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.retreat-details-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.retreat-details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-top: 50px;
}

.retreat-description {
    font-size: clamp(18px, 2vw, 22px);
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 24px;
}

.inclusions-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    column-gap: 40px;
}

.inclusions-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.6;
    break-inside: avoid;
}

.inclusions-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
}

/* Style for h4 headings within retreat descriptions */
#retreat-description h4 {
    font-size: clamp(20px, 2.2vw, 24px) !important;
}

@media (max-width: 768px) {
    .inclusions-list {
        grid-template-columns: 1fr;
        column-gap: 0;
    }
    
    .retreat-description {
        font-size: clamp(17px, 2vw, 20px);
    }
    
    #retreat-description h4 {
        font-size: clamp(18px, 2vw, 22px) !important;
    }
    
    .retreat-date {
        font-size: clamp(14px, 1.5vw, 16px);
        padding: 6px 12px;
    }
    
    .retreat-dates-highlight {
        padding: 20px 16px !important;
    }
    
    .retreat-dates-highlight h3 {
        font-size: 16px !important;
    }
    
    #highlight-start-date,
    #highlight-end-date {
        font-size: 20px !important;
    }
    
    .booking-dates {
        padding: 12px !important;
    }
    
    #booking-start-date,
    #booking-end-date {
        font-size: 16px !important;
    }
}

.itinerary-list {
    margin-top: 30px;
}

.itinerary-day {
    padding: 24px;
    background: var(--bg-light);
    border-radius: 12px;
    margin-bottom: 20px;
}

.day-title {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.itinerary-day p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
    font-size: 15px;
}

.retreat-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.booking-card {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.booking-price {
    margin-bottom: 30px;
}

.price-amount {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.price-period {
    font-size: 14px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.booking-details {
    margin-bottom: 30px;
    text-align: left;
}

.booking-detail {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.booking-detail:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 600;
    color: var(--text-dark);
}

.detail-value {
    color: var(--text-light);
}

.btn-booking {
    width: 100%;
    margin-bottom: 16px;
}

.booking-note {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

.related-retreats-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.faq-cta-text {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 24px;
}

@media (max-width: 968px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .contact-form-wrapper {
        padding: 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .contact-form {
        gap: 14px;
    }
    
    .retreat-details-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .retreat-sidebar {
        position: static;
    }
}

/* Retreats Page Header */
.retreats-page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    padding: 120px 0 80px;
    text-align: center;
    color: white;
}

.retreats-page-header .page-title {
    color: white;
    margin-bottom: 20px;
}

.retreats-page-header .page-subtitle {
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin: 0 auto;
}

/* Retreat Excerpt */
.retreat-excerpt {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    margin: 16px 0 24px;
}

/* Consultations Section */
.consultations-section {
    background: var(--bg-white);
    padding: 100px 0;
    position: relative;
}

.consultation-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 40px;
    margin-bottom: 40px;
    justify-content: center;
    align-items: center;
}

.consultation-filter {
    padding: 12px 24px;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: all var(--transition-base);
    font-family: var(--font-sans);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.consultation-filter::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.consultation-filter:hover::before {
    left: 100%;
}

.consultation-filter:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.consultation-filter.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.consultation-filter.active:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .consultation-filters {
        gap: 8px;
        margin-top: 30px;
        margin-bottom: 30px;
    }
    
    .consultation-filter {
        padding: 10px 18px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .consultation-filters {
        gap: 6px;
    }
    
    .consultation-filter {
        padding: 8px 14px;
        font-size: 12px;
    }
}

.consultations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 900px) {
    .consultations-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .consultations-grid {
        max-width: 100%;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

.consultation-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 40px 32px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 320px;
}

.consultation-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: rgba(74, 112, 169, 0.2);
}

.consultation-card[hidden] {
    display: none !important;
}

.consultation-icon {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1;
    filter: grayscale(0%);
    transition: transform var(--transition-base);
}

.consultation-card:hover .consultation-icon {
    transform: scale(1.05);
}

.consultation-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    flex: 1;
}

.consultation-title {
    font-family: var(--font-serif);
    font-size: clamp(20px, 2.2vw, 24px);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.consultation-format {
    font-size: clamp(13px, 1.2vw, 14px);
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 8px;
    padding: 6px 12px;
    background: rgba(74, 112, 169, 0.1);
    border-radius: 20px;
    display: inline-block;
    align-self: center;
}

.consultation-description {
    font-size: clamp(14px, 1.5vw, 16px);
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.consultation-btn {
    margin-top: auto;
    width: 100%;
    justify-content: center;
}

@media (max-width: 640px) {
    .consultations-section {
        padding: 60px 0;
    }
    
    .consultations-grid {
        gap: 20px;
        margin-top: 40px;
    }
    
    .consultation-card {
        padding: 32px 24px;
        min-height: 280px;
    }

    .consultation-icon {
        font-size: 40px;
        margin-bottom: 16px;
    }
    
    .consultation-title {
        font-size: clamp(18px, 4.5vw, 22px);
    }
    
    .consultation-description {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .consultation-card {
        padding: 28px 20px;
        min-height: auto;
    }
    
    .consultation-icon {
        font-size: 36px;
        margin-bottom: 14px;
    }
}


