/* Philippines Wellness Retreats - Wellness Tourism Website Styles */
/* Спокійний і гармонійний дизайн для wellness туризму */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Crimson+Text:wght@400;600;700&display=swap');

/* CSS Variables - Wellness Theme */
:root {
    /* Primary Colors - Calm & Serene */
    --primary-lavender: #667eea;
    --primary-sage: #a8edea;
    --primary-rose: #fed6e3;
    --accent-peach: #ffecd2;
    --success-mint: #a8e6cf;

    /* Gradients for Wellness Feel */
    --gradient-wellness: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-calm: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    --gradient-peace: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    --gradient-nature: linear-gradient(135deg, #89f7fe 0%, #66a6ff 100%);
    --gradient-hero: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(168, 237, 234, 0.85) 50%, rgba(254, 214, 227, 0.9) 100%);

    /* Backgrounds */
    --bg-cream: #FDFCFB;
    --bg-light: #F8F9FA;
    --bg-card: #FFFFFF;
    --bg-soft: #F3F4F6;

    /* Text */
    --text-dark: #374151;
    --text-medium: #6B7280;
    --text-light: #9CA3AF;
    --text-white: #FFFFFF;

    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-heavy: 0 12px 40px rgba(0, 0, 0, 0.12);
    --shadow-wellness: 0 8px 25px rgba(102, 126, 234, 0.2);
    --shadow-peace: 0 8px 25px rgba(168, 237, 234, 0.25);

    /* Border Radius */
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;

    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    /* Sizes */
    --navbar-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Crimson Text', serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

h1 {
    font-size: clamp(3rem, 6vw, 5rem);
}

h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Utility Classes */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    letter-spacing: 0.25px;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.btn-wellness {
    background: var(--gradient-wellness);
    color: white;
    box-shadow: var(--shadow-wellness);
}

.btn-wellness:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.3);
}

.btn-outline-white {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary-lavender);
    transform: translateY(-3px);
    border-color: white;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(253, 252, 251, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--navbar-height);
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-logo {
    text-decoration: none;
}

.logo-text {
    font-family: 'Crimson Text', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-lavender);
}

.logo-accent {
    color: var(--primary-sage);
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-wellness);
    transition: var(--transition);
    transform: translateX(-50%);
}

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

.cta-nav {
    background: var(--gradient-wellness);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-wellness);
}

.cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.3);
}

.cta-nav::after {
    display: none;
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: var(--primary-lavender);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--gradient-hero),
        linear-gradient(45deg, #667eea, #a8edea);
    color: white;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="wellness" patternUnits="userSpaceOnUse" width="120" height="120"><text x="20" y="50" font-size="35">🧘‍♀️</text><text x="70" y="25" font-size="25">🌸</text><text x="40" y="85" font-size="30">🌿</text><text x="80" y="70" font-size="20">✨</text></pattern></defs><rect width="100%" height="100%" fill="url(%23wellness)" opacity="0.08"/></svg>') repeat;
    animation: peaceful 25s ease-in-out infinite;
}

@keyframes peaceful {

    0%,
    100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-15px) translateX(10px) rotate(0.5deg);
    }

    66% {
        transform: translateY(10px) translateX(-5px) rotate(-0.3deg);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.highlight-wellness {
    background: var(--gradient-peace);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-family: 'Inter', sans-serif;
}

.hero-description {
    font-size: 1.2rem;
    max-width: 650px;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.8;
    font-weight: 300;
}

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

.stat {
    text-align: center;
}

.stat-number {
    font-family: 'Crimson Text', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--accent-peach);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.85;
    margin-top: 0.5rem;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.hero-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 300;
}

.scroll-down {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: gentle-bounce 3s infinite;
}

@keyframes gentle-bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-8px);
    }

    60% {
        transform: translateX(-50%) translateY(-4px);
    }
}

.arrow-down {
    font-size: 1.5rem;
    margin-top: 0.5rem;
    opacity: 0.8;
}

/* Section Styling */
section {
    padding: 6rem 0;
}

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

.section-badge {
    display: inline-block;
    background: var(--gradient-wellness);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* Wellness Retreats Section */
.wellness-retreats {
    background: var(--bg-light);
}

.retreat-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.retreat-filter {
    background: white;
    border: 2px solid var(--primary-lavender);
    color: var(--primary-lavender);
    padding: 0.8rem 1.8rem;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    font-size: 0.95rem;
}

.retreat-filter.active,
.retreat-filter:hover {
    background: var(--gradient-wellness);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-wellness);
}

.retreats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
}

.retreat-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-slow);
    position: relative;
}

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

.retreat-card.featured {
    border: 3px solid var(--primary-sage);
    transform: translateY(-5px);
}

.retreat-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    background-size: cover;
    background-position: center;
}

.level-badge,
.featured-tag {
    position: absolute;
    top: 1rem;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.level-badge {
    right: 1rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
}

.level-badge.beginner {
    background: rgba(168, 230, 207, 0.95);
    color: var(--text-dark);
}

.level-badge.intermediate {
    background: rgba(255, 236, 210, 0.95);
    color: var(--text-dark);
}

.level-badge.advanced {
    background: rgba(255, 159, 158, 0.95);
    color: white;
}

.level-badge.luxury {
    background: rgba(210, 153, 194, 0.95);
    color: white;
}

.featured-tag {
    left: 1rem;
    background: var(--primary-sage);
    color: var(--text-dark);
    animation: gentle-pulse 2s infinite;
}

@keyframes gentle-pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }

    100% {
        transform: scale(1);
    }
}

.retreat-content {
    padding: 2rem;
}

.retreat-title {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.retreat-location {
    color: var(--text-medium);
    margin-bottom: 1.2rem;
    font-weight: 500;
}

.retreat-description {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.retreat-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 2rem;
}

.feature {
    background: var(--bg-light);
    color: var(--text-dark);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.retreat-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-info {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
}

.price-label {
    color: var(--text-medium);
    font-size: 0.9rem;
}

.price-amount {
    font-family: 'Crimson Text', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--primary-lavender);
}

.price-per {
    color: var(--text-medium);
    font-size: 0.9rem;
}

/* Healing Treatments Section */
.healing-treatments {
    background: white;
}

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

.treatment-card {
    text-align: center;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    background: var(--bg-light);
    transition: var(--transition);
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.treatment-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    background: white;
}

.treatment-image {
    height: 180px;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 2rem;
}

.treatment-content h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.treatment-content p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.activities-count {
    background: var(--gradient-wellness);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-block;
}

/* Wellness Destinations Section */
.wellness-destinations {
    background: var(--bg-light);
}

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

.destination-card {
    text-align: center;
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: white;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
}

.destination-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.destination-image {
    height: 160px;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.destination-content h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.destination-content p {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-weight: 300;
}

.activities-count {
    background: var(--gradient-calm);
    color: var(--text-dark);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials {
    background: white;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 1px solid rgba(168, 237, 234, 0.2);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    background: white;
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-style: italic;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 300;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.author-avatar {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
}

.author-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.author-activity {
    font-size: 0.9rem;
    color: var(--text-medium);
    font-weight: 300;
}

/* CTA Booking Section */
.cta-booking {
    background: var(--gradient-calm);
    color: var(--text-dark);
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cta-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.cta-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-medium);
    font-weight: 300;
}

.cta-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.booking-form-container {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
}

.booking-form-container h3 {
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-dark);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    padding: 1.2rem;
    border: 2px solid rgba(102, 126, 234, 0.15);
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    background: white;
    color: var(--text-dark);
    transition: var(--transition);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--primary-lavender);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.booking-form textarea {
    resize: vertical;
    min-height: 100px;
}

/* Contact Section */
.contact {
    background: var(--bg-light);
}

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

.contact-card {
    background: white;
    padding: 2.5rem;
    text-align: center;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-card h3 {
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.contact-card p {
    color: var(--text-medium);
    margin-bottom: 0.4rem;
    font-weight: 300;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--text-light);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: var(--primary-sage);
    margin-bottom: 1.5rem;
    font-family: 'Crimson Text', serif;
}

.footer-section p {
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.footer-certifications {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.footer-certifications span {
    background: rgba(168, 237, 234, 0.15);
    color: var(--primary-sage);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

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

.footer-section li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 300;
}

.footer-section a:hover {
    color: var(--primary-sage);
}

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

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--text-light);
    font-size: 1.5rem;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary-sage);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg-cream);
        flex-direction: column;
        justify-content: center;
        transition: var(--transition);
        z-index: 1000;
    }

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

    .hamburger {
        display: flex;
    }

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

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .cta-benefits {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

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

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

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

    .testimonials-slider {
        grid-template-columns: 1fr;
    }

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

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

    .hero-content {
        padding: 0 1rem;
    }

    section {
        padding: 4rem 0;
    }

    .retreat-card,
    .treatment-card,
    .destination-card,
    .testimonial-card,
    .contact-card {
        padding: 1.5rem;
    }

    .booking-form-container {
        padding: 2rem;
    }
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(40px);
    transition: var(--transition-slow);
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth scroll offset for fixed navbar */
html {
    scroll-padding-top: calc(var(--navbar-height) + 2rem);
}