@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

/* ==========================================
   CSS CUSTOM PROPERTIES
   ========================================== */
:root {
    --cream: #F4EFEA;
    --charcoal: #3A3A3A;
    --sage: #9CAF88;
    --olive: #7E8D65;
    --peach: #E6B8A2;
    --lime-accent: #A4BE1C;
    --white: #FFFFFF;
    --transition-smooth: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --transition-silk: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-elastic: cubic-bezier(0.68, -0.55, 0.27, 1.55);
    --glow-sage: rgba(156, 175, 136, 0.4);
    --glow-peach: rgba(230, 184, 162, 0.4);
    --glow-olive: rgba(126, 141, 101, 0.4);
}

/* ==========================================
   BASE & TYPOGRAPHY
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    background: var(--cream);
}

h1,
h2,
h3,
.font-serif {
    font-family: 'Cormorant Garamond', serif;
}

::selection {
    background: rgba(156, 175, 136, 0.3);
    color: var(--charcoal);
}

/* ==========================================
   PARTICLE CANVAS (behind everything)
   ========================================== */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.6;
}

/* ==========================================
   AURORA / AMBIENT GRADIENT BACKGROUND
   ========================================== */
.aurora-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.aurora-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(156, 175, 136, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(230, 184, 162, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 40% 80%, rgba(164, 190, 28, 0.04) 0%, transparent 50%);
    animation: auroraShift 20s ease-in-out infinite alternate;
}

.aurora-bg::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(ellipse at 60% 30%, rgba(126, 141, 101, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 70%, rgba(230, 184, 162, 0.05) 0%, transparent 50%);
    animation: auroraShift 25s ease-in-out infinite alternate-reverse;
}

@keyframes auroraShift {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(5%, -3%) rotate(2deg);
    }

    66% {
        transform: translate(-3%, 5%) rotate(-1deg);
    }

    100% {
        transform: translate(2%, -2%) rotate(1deg);
    }
}

/* ==========================================
   CUSTOM CURSOR GLOW (body-level)
   ========================================== */
body::before {
    content: '';
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(156, 175, 136, 0.1) 0%,
            rgba(230, 184, 162, 0.05) 30%,
            transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.4s ease;
    opacity: 0;
    mix-blend-mode: soft-light;
}

/* ==========================================
   NAVBAR ENHANCEMENTS
   ========================================== */
nav.fixed {
    transition: background-color 0.5s var(--transition-silk),
        box-shadow 0.5s var(--transition-silk),
        backdrop-filter 0.5s ease;
}

nav.fixed.scrolled {
    background-color: rgba(244, 239, 234, 0.85) !important;
    backdrop-filter: blur(25px) saturate(2);
    -webkit-backdrop-filter: blur(25px) saturate(2);
    box-shadow:
        0 4px 30px rgba(58, 58, 58, 0.08),
        0 1px 0 rgba(156, 175, 136, 0.15),
        inset 0 -1px 0 rgba(255, 255, 255, 0.5);
}

/* Header reduction & transition */
#mainNav .nav-container {
    padding-top: 1rem;
    padding-bottom: 1rem;
    transition: padding 0.5s var(--transition-silk);
}

#mainNav.scrolled .nav-container {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

#mainNav img {
    width: 6.5rem !important; /* w-26 */
    transition: width 0.5s var(--transition-silk);
}

#mainNav.scrolled img {
    width: 5.5rem !important; /* w-22 */
}

nav.fixed.scrolled a {
    color: var(--charcoal) !important;
}

nav.fixed.scrolled a:hover {
    color: var(--olive) !important;
}

/* FIX: Book Session button must always show white text, even on hover when scrolled */
nav.fixed .book-session-btn {
    color: var(--white) !important;
    position: relative;
    overflow: hidden;
}

nav.fixed .book-session-btn::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--sage), var(--olive), var(--sage));
    background-size: 200% 200%;
    border-radius: inherit;
    z-index: -1;
    animation: shimmerBorder 3s ease-in-out infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

nav.fixed .book-session-btn:hover::before {
    opacity: 1;
}

nav.fixed .book-session-btn:hover {
    color: var(--white) !important;
    background-color: var(--olive) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(126, 141, 101, 0.5), 0 0 20px rgba(156, 175, 136, 0.2);
}

nav.fixed.scrolled .book-session-btn {
    color: var(--white) !important;
    box-shadow: 0 4px 15px rgba(156, 175, 136, 0.3);
}

nav.fixed.scrolled .book-session-btn:hover {
    color: var(--white) !important;
    background-color: var(--olive) !important;
    box-shadow: 0 8px 30px rgba(126, 141, 101, 0.5), 0 0 20px rgba(156, 175, 136, 0.2);
    transform: translateY(-2px);
}

@keyframes shimmerBorder {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Nav link underline animation */
nav a .nav-underline {
    transform-origin: left;
    transition: transform 0.4s var(--transition-smooth);
}

/* Active nav glow */
nav a.active-nav {
    text-shadow: 0 0 20px rgba(156, 175, 136, 0.3);
}

/* Mobile menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 60;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--cream);
    transition: all 0.4s var(--transition-smooth);
    border-radius: 2px;
}

nav.fixed.scrolled .mobile-menu-btn span {
    background: var(--charcoal);
}

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

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

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

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
}

/* ==========================================
   HERO SECTION ENHANCEMENTS
   ========================================== */
.hero-section {
    position: relative;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--cream) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-overlay {
    background: linear-gradient(180deg,
            rgba(58, 58, 58, 0.25) 0%,
            rgba(58, 58, 58, 0.35) 30%,
            rgba(58, 58, 58, 0.55) 60%,
            rgba(58, 58, 58, 0.70) 100%) !important;
}

/* Hero floating orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(60px);
    z-index: 2;
    opacity: 0;
    animation: orbFloat 8s ease-in-out infinite, orbFadeIn 2s ease forwards;
}

.hero-orb-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(156, 175, 136, 0.25) 0%, transparent 70%);
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.hero-orb-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(230, 184, 162, 0.2) 0%, transparent 70%);
    bottom: 25%;
    left: 5%;
    animation-delay: 2s;
}

.hero-orb-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(164, 190, 28, 0.15) 0%, transparent 70%);
    top: 40%;
    left: 30%;
    animation-delay: 4s;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(30px, -20px) scale(1.1);
    }

    50% {
        transform: translate(-20px, 30px) scale(0.95);
    }

    75% {
        transform: translate(15px, -10px) scale(1.05);
    }
}

@keyframes orbFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Hero text entrance animations */
.hero-text-reveal {
    animation: heroTextUp 1.2s var(--transition-silk) forwards;
    opacity: 0;
}

@keyframes heroTextUp {
    from {
        opacity: 0;
        transform: translateY(60px);
        filter: blur(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.hero-text-reveal-delay-1 {
    animation-delay: 0.2s;
}

.hero-text-reveal-delay-2 {
    animation-delay: 0.5s;
}

.hero-text-reveal-delay-3 {
    animation-delay: 0.8s;
}

/* Floating badge animation */
.hero-badge {
    animation: floatBadge 6s ease-in-out infinite;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

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

/* CTA Button enhancements — magnetic + ripple effect */
.cta-primary {
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--transition-smooth);
    backface-visibility: hidden;
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(230, 184, 162, 0.4);
    transition: width 0.6s ease, height 0.6s ease, top 0.6s ease, left 0.6s ease;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.cta-primary:hover::before {
    width: 300%;
    height: 300%;
}

.cta-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 40px rgba(230, 184, 162, 0.4), 0 0 30px rgba(230, 184, 162, 0.15);
}

.cta-primary span,
.cta-primary {
    position: relative;
    z-index: 1;
}

.cta-outline {
    transition: all 0.5s var(--transition-smooth);
    position: relative;
    overflow: hidden;
    backface-visibility: hidden;
}

.cta-outline::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(244, 239, 234, 0);
    transition: background 0.4s ease;
    z-index: -1;
}

.cta-outline:hover::before {
    background: rgba(244, 239, 234, 0.12);
}

.cta-outline:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 40px rgba(244, 239, 234, 0.15), 0 0 30px rgba(244, 239, 234, 0.1);
    border-color: rgba(244, 239, 234, 0.9);
}

/* Scroll indicator pulse */
.scroll-indicator {
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.4;
        transform: translate(-50%, 0);
    }

    50% {
        opacity: 0.8;
        transform: translate(-50%, 5px);
    }
}

/* ==========================================
   PHILOSOPHY SECTION
   ========================================== */
.philosophy-section {
    position: relative;
    overflow: hidden;
}

.philosophy-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 1px solid rgba(156, 175, 136, 0.12);
    pointer-events: none;
    animation: morphCircle 20s ease-in-out infinite;
}

.philosophy-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    border: 1px solid rgba(230, 184, 162, 0.1);
    pointer-events: none;
    animation: morphCircle 25s ease-in-out infinite reverse;
}

@keyframes morphCircle {

    0%,
    100% {
        border-radius: 50%;
        transform: rotate(0deg) scale(1);
    }

    25% {
        border-radius: 40% 60% 55% 45%;
        transform: rotate(10deg) scale(1.1);
    }

    50% {
        border-radius: 55% 45% 40% 60%;
        transform: rotate(0deg) scale(1.05);
    }

    75% {
        border-radius: 60% 40% 45% 55%;
        transform: rotate(-10deg) scale(1.1);
    }
}

.philosophy-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--peach), var(--sage));
    margin: 0 auto 2rem;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.philosophy-divider::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: shimmerLine 3s ease-in-out infinite;
}

@keyframes shimmerLine {
    0% {
        left: -100%;
    }

    100% {
        left: 200%;
    }
}

/* Stat counter glow on reveal */
.stat-number {
    transition: all 0.6s var(--transition-smooth);
}

.stat-number.is-visible {
    text-shadow: 0 0 30px rgba(126, 141, 101, 0.2);
}

/* ==========================================
   ANIMATED GRADIENT BORDER WRAPPER
   ========================================== */
.gradient-border-wrapper {
    position: relative;
    border-radius: 1rem;
    padding: 2px;
    background: linear-gradient(135deg,
            var(--sage),
            var(--peach),
            var(--olive),
            var(--lime-accent),
            var(--sage));
    background-size: 300% 300%;
    animation: gradientBorderRotate 6s ease-in-out infinite;
}

.gradient-border-wrapper > * {
    border-radius: calc(1rem - 2px);
}

@keyframes gradientBorderRotate {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* ==========================================
   SERVICES SECTION ENHANCEMENTS
   ========================================== */
.service-card {
    will-change: transform;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.5s var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

/* Animated gradient stripe on left border */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg,
            var(--sage) 0%,
            var(--peach) 50%,
            var(--olive) 100%);
    background-size: 100% 200%;
    animation: borderGradientSlide 3s ease-in-out infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover::before {
    opacity: 1;
}

@keyframes borderGradientSlide {
    0%, 100% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 0% 100%;
    }
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(156, 175, 136, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.6s ease;
    transform: translate(30%, -30%);
}

.service-card:hover::after {
    transform: translate(10%, -10%) scale(2.5);
    opacity: 0.6;
}

.service-card:hover {
    box-shadow:
        0 25px 60px rgba(156, 175, 136, 0.15),
        0 10px 20px rgba(0, 0, 0, 0.04),
        0 0 0 1px rgba(156, 175, 136, 0.1);
    transform: translateY(-8px);
}

/* Icon container pulse */
.service-card .service-icon {
    transition: all 0.5s var(--transition-smooth);
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 8px 25px rgba(156, 175, 136, 0.2);
}

.services-section-title {
    position: relative;
    display: inline-block;
}

.services-section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--peach), var(--sage));
    border-radius: 2px;
}

/* ==========================================
   METHOD/PROCESS SECTION ENHANCEMENTS
   ========================================== */
.method-step {
    position: relative;
}

.method-step .step-number {
    position: relative;
    z-index: 2;
    transition: all 0.5s var(--transition-smooth);
}

.method-step:hover .step-number {
    transform: scale(1.25) translateY(-5px);
    box-shadow: 0 12px 35px rgba(156, 175, 136, 0.6), 0 0 20px rgba(156, 175, 136, 0.3);
}

.method-step h3 {
    transition: all 0.4s ease;
}

.method-step:hover h3 {
    color: var(--sage) !important;
    text-shadow: 0 0 20px rgba(156, 175, 136, 0.2);
}

.method-step .step-description {
    opacity: 1;
    margin-top: 0;
}

/* Animated connecting line for method steps */
.method-connecting-line {
    position: absolute;
    top: 28px;
    left: 5%;
    width: 90%;
    height: 2px;
    background: linear-gradient(90deg,
            rgba(156, 175, 136, 0.1) 0%,
            rgba(156, 175, 136, 0.4) 50%,
            rgba(156, 175, 136, 0.1) 100%);
    z-index: 0;
}

/* Animated pulse dot on the connecting line */
.method-connecting-line::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--sage);
    border-radius: 50%;
    top: -3px;
    animation: travelDot 4s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(156, 175, 136, 0.6), 0 0 30px rgba(156, 175, 136, 0.3);
}

@keyframes travelDot {
    0% {
        left: 0%;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        left: 100%;
        opacity: 0;
    }
}

/* ==========================================
   TESTIMONIALS ENHANCEMENTS
   ========================================== */
.snap-x {
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.snap-center {
    scroll-snap-align: center;
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.testimonial-card {
    position: relative;
    transition: all 0.5s var(--transition-smooth);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--peach), var(--sage), var(--olive));
    background-size: 200% 100%;
    transform: scaleX(0);
    transition: transform 0.5s ease;
    border-radius: 0 0 4px 4px;
    animation: gradientSlide 3s ease-in-out infinite;
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(156, 175, 136, 0.1);
}

/* Quote mark animation */
.testimonial-card .quote-icon {
    transition: all 0.5s var(--transition-smooth);
}

.testimonial-card:hover .quote-icon {
    transform: scale(1.3) rotate(-8deg);
    opacity: 0.7;
    filter: drop-shadow(0 4px 8px rgba(230, 184, 162, 0.3));
}

/* ==========================================
   INSIGHTS/BLOG SECTION ENHANCEMENTS
   ========================================== */
.blog-preview-card {
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--transition-smooth);
}

.blog-preview-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(156, 175, 136, 0.07) 0%, rgba(230, 184, 162, 0.07) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.blog-preview-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.7s ease;
}

.blog-preview-card:hover::after {
    left: 150%;
}

.blog-preview-card:hover::before {
    opacity: 1;
}

.blog-preview-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(156, 175, 136, 0.1);
}

/* ==========================================
   FOOTER ENHANCEMENTS
   ========================================== */
.footer-gradient {
    background: linear-gradient(180deg, var(--charcoal) 0%, #2a2a2a 100%);
    position: relative;
    overflow: hidden;
}

.footer-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--sage) 50%, transparent 100%);
    opacity: 0.4;
}

.footer-link {
    position: relative;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--sage), var(--peach));
    transition: width 0.4s var(--transition-smooth);
}

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

.footer-link:hover {
    color: var(--sage) !important;
    transform: translateX(6px);
}

.social-icon {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(244, 239, 234, 0.2);
    transition: all 0.4s var(--transition-smooth);
    position: relative;
}

.social-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sage), var(--peach));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease, transform 0.4s ease;
    transform: scale(0.8);
}

.social-icon:hover::before {
    opacity: 0.3;
    transform: scale(1);
}

.social-icon:hover {
    background: var(--sage);
    border-color: var(--sage);
    transform: translateY(-5px) rotate(8deg);
    box-shadow: 0 10px 25px rgba(156, 175, 136, 0.5), 0 0 15px rgba(156, 175, 136, 0.2);
}

/* ==========================================
   SCROLL REVEAL ANIMATIONS (Enhanced)
   ========================================== */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s var(--transition-silk), transform 1s var(--transition-silk), filter 1s ease;
    will-change: opacity, transform;
    filter: blur(5px);
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: opacity 1s var(--transition-silk), transform 1s var(--transition-silk), filter 1s ease;
    will-change: opacity, transform;
    filter: blur(5px);
}

.reveal-left.is-visible {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(80px);
    transition: opacity 1s var(--transition-silk), transform 1s var(--transition-silk), filter 1s ease;
    will-change: opacity, transform;
    filter: blur(5px);
}

.reveal-right.is-visible {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
}

/* Scale reveal */
.reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.8s var(--transition-silk), transform 0.8s var(--transition-smooth), filter 0.8s ease;
    will-change: opacity, transform;
    filter: blur(5px);
}

.reveal-scale.is-visible {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
}

/* Stagger delays */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

.delay-500 {
    transition-delay: 0.5s;
}

.delay-600 {
    transition-delay: 0.6s;
}

.delay-700 {
    transition-delay: 0.7s;
}

.delay-800 {
    transition-delay: 0.8s;
}

.fade-in {
    animation: fadeIn 1.2s var(--transition-silk);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

/* ==========================================
   SECTION DIVIDERS (organic shapes)
   ========================================== */
.section-divider-wave {
    position: relative;
}

.section-divider-wave::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--cream);
    clip-path: ellipse(55% 100% at 50% 100%);
}

/* ==========================================
   SUBTLE PATTERNS & TEXTURES
   ========================================== */
.texture-dots {
    background-image: radial-gradient(circle, rgba(156, 175, 136, 0.06) 1px, transparent 1px);
    background-size: 30px 30px;
}

.texture-lines {
    background-image: repeating-linear-gradient(-45deg,
            transparent,
            transparent 20px,
            rgba(156, 175, 136, 0.03) 20px,
            rgba(156, 175, 136, 0.03) 21px);
}

/* ==========================================
   BACK TO TOP BUTTON
   ========================================== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--sage);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.5s var(--transition-smooth);
    z-index: 90;
    border: none;
    box-shadow: 0 4px 15px rgba(156, 175, 136, 0.3);
}



.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--olive);
    transform: translateY(-6px) scale(1.15);
    box-shadow: 0 14px 35px rgba(126, 141, 101, 0.6), 0 0 20px rgba(156, 175, 136, 0.3);
}

/* ==========================================
   LOADING ANIMATION (Spectacular)
   ========================================== */
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--charcoal);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 1s ease, visibility 1s ease;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
}

/* Loader ring */
.loader-ring {
    position: relative;
    width: 80px;
    height: 80px;
}

.loader-ring::before,
.loader-ring::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid transparent;
}

.loader-ring::before {
    border-top-color: var(--sage);
    border-right-color: var(--sage);
    animation: loaderSpin 1.2s ease-in-out infinite;
}

.loader-ring::after {
    border-bottom-color: var(--peach);
    border-left-color: var(--peach);
    animation: loaderSpin 1.2s ease-in-out infinite reverse;
    inset: 8px;
}

@keyframes loaderSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.loader-text {
    margin-top: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--cream);
    letter-spacing: 0.3em;
    opacity: 0;
    animation: loaderTextFade 1.5s ease-in-out infinite;
}

@keyframes loaderTextFade {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

/* Legacy loader dots (kept for compatibility) */
.loader-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--sage);
    margin: 0 6px;
    animation: loaderPulse 1.4s ease-in-out infinite;
}

.loader-dot:nth-child(2) {
    animation-delay: 0.2s;
    background: var(--olive);
}

.loader-dot:nth-child(3) {
    animation-delay: 0.4s;
    background: var(--peach);
}

@keyframes loaderPulse {

    0%,
    100% {
        transform: scale(0.6) translateY(0);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.2) translateY(-8px);
        opacity: 1;
    }
}

/* ==========================================
   SMOOTH TEXT GRADIENT FOR SPECIAL ELEMENTS
   ========================================== */
.text-gradient {
    background: linear-gradient(135deg, var(--sage) 0%, var(--lime-accent) 50%, var(--olive) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Animated Text gradient */
.text-gradient-animated {
    background: linear-gradient(135deg,
            var(--sage) 0%,
            var(--lime-accent) 25%,
            var(--peach) 50%,
            var(--olive) 75%,
            var(--sage) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGradientShift 5s ease-in-out infinite;
}

@keyframes textGradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Text shimmer effect for hero heading */
.text-shimmer {
    position: relative;
    overflow: hidden;
}

.text-shimmer::after {
    content: '';
    position: absolute;
    top: 0;
    left: -200%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    animation: textShimmer 5s ease-in-out infinite;
}

@keyframes textShimmer {
    0% {
        left: -200%;
    }

    30% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

/* ==========================================
   PARALLAX-LIKE DECORATION ELEMENTS
   ========================================== */
.floating-decoration {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.06;
    animation: floatSlow 20s ease-in-out infinite;
}

@keyframes floatSlow {

    0%,
    100% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(10px, -15px);
    }

    50% {
        transform: translate(-8px, 10px);
    }

    75% {
        transform: translate(15px, 5px);
    }
}

/* Morphing blob decorations */
.morphing-blob {
    position: absolute;
    pointer-events: none;
    filter: blur(40px);
    opacity: 0.07;
    animation: morphBlob 15s ease-in-out infinite;
}

@keyframes morphBlob {

    0%,
    100% {
        border-radius: 40% 60% 55% 45% / 55% 40% 60% 45%;
        transform: rotate(0deg) scale(1);
    }

    25% {
        border-radius: 55% 45% 40% 60% / 40% 60% 45% 55%;
        transform: rotate(90deg) scale(1.1);
    }

    50% {
        border-radius: 45% 55% 60% 40% / 60% 45% 55% 40%;
        transform: rotate(180deg) scale(0.95);
    }

    75% {
        border-radius: 60% 40% 45% 55% / 45% 55% 40% 60%;
        transform: rotate(270deg) scale(1.05);
    }
}

/* ==========================================
   GLASSMORPHISM CARDS
   ========================================== */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.5s var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.glass-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg at 50% 50%,
            transparent 0%,
            rgba(156, 175, 136, 0.03) 10%,
            transparent 20%);
    animation: glassRotate 10s linear infinite;
    pointer-events: none;
}

@keyframes glassRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(156, 175, 136, 0.15);
    transform: translateY(-6px);
}

/* ==========================================
   SECTION TRANSITION OVERLAPS  
   ========================================== */
.section-overlap-top {
    margin-top: -40px;
    position: relative;
    z-index: 2;
}

/* ==========================================
   FANCY INPUT FOCUS STYLES (all pages)
   ========================================== */
input:focus,
textarea:focus {
    border-color: var(--sage) !important;
    box-shadow: 0 0 0 3px rgba(156, 175, 136, 0.15),
        0 4px 15px rgba(156, 175, 136, 0.1),
        0 0 20px rgba(156, 175, 136, 0.05) !important;
    outline: none;
    transition: all 0.3s var(--transition-smooth);
}

input,
textarea {
    transition: border-color 0.3s ease, box-shadow 0.4s ease;
}

/* ==========================================
   PREMIUM BUTTONS (all pages)
   ========================================== */
.btn-premium {
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--transition-smooth);
    z-index: 1;
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(126, 141, 101, 0.3);
    transition: width 0.6s ease, height 0.6s ease;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.btn-premium:hover::before {
    width: 300%;
    height: 300%;
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(156, 175, 136, 0.3), 0 0 15px rgba(156, 175, 136, 0.1);
}

/* ==========================================
   BOOKING PAGE — Spotlight Cards (preserved)
   ========================================== */
/* These are defined inline in booking.html — do not override */

/* ==========================================
   SUB-PAGE NAV ENHANCEMENTS 
   ========================================== */
.sub-page-nav {
    transition: all 0.4s ease;
}

.sub-page-nav .nav-container {
    padding-top: 0.75rem !important; /* py-3 */
    padding-bottom: 0.75rem !important;
}

.sub-page-nav img {
    width: 5rem !important; /* w-20 */
}

.sub-page-nav .back-link {
    transition: all 0.3s var(--transition-smooth);
}

.sub-page-nav .back-link:hover {
    color: var(--olive);
    transform: translateX(-4px);
}

.sub-page-nav .back-link i {
    transition: transform 0.3s var(--transition-smooth);
}

.sub-page-nav .back-link:hover i {
    transform: translateX(-4px);
}

/* ==========================================
   CHECKOUT PAGE ENHANCEMENTS
   ========================================== */
.checkout-summary-card {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.checkout-summary-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg,
            transparent 0%,
            rgba(156, 175, 136, 0.03) 10%,
            transparent 20%);
    animation: rotateGradient 8s linear infinite;
    pointer-events: none;
}

@keyframes rotateGradient {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ==========================================
   SUCCESS PAGE ENHANCEMENTS
   ========================================== */
.success-check {
    animation: successPop 0.8s var(--transition-smooth);
}

@keyframes successPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1.2);
    }

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

.success-rings {
    position: relative;
}

.success-rings::before,
.success-rings::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(156, 175, 136, 0.2);
    animation: ringPulse 2s ease-out infinite;
}

.success-rings::after {
    inset: -16px;
    animation-delay: 0.5s;
}

@keyframes ringPulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* ==========================================
   BLOG PAGE ENHANCEMENTS
   ========================================== */
.blog-container {
    position: relative;
    overflow: hidden;
}

.blog-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--sage), var(--peach), var(--olive), var(--sage));
    background-size: 300% 100%;
    animation: gradientSlide 4s ease-in-out infinite;
    border-radius: 2px 2px 0 0;
}

@keyframes gradientSlide {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* ==========================================
   SECTION LABEL DECORATIONS
   ========================================== */
.section-label {
    position: relative;
    display: inline-block;
}

.section-label::before,
.section-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--sage));
}

.section-label::before {
    right: calc(100% + 12px);
    background: linear-gradient(90deg, transparent, var(--sage));
}

.section-label::after {
    left: calc(100% + 12px);
    background: linear-gradient(90deg, var(--sage), transparent);
}

/* ==========================================
   RIPPLE CLICK EFFECT
   ========================================== */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(156, 175, 136, 0.3);
    transform: scale(0);
    animation: rippleEffect 0.6s ease-out forwards;
    pointer-events: none;
}

@keyframes rippleEffect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ==========================================
   SMOOTH HORIZONTAL RULE WITH GLOW
   ========================================== */
.glow-divider {
    height: 1px;
    border: none;
    background: linear-gradient(90deg,
            transparent 0%,
            var(--sage) 20%,
            var(--peach) 50%,
            var(--sage) 80%,
            transparent 100%);
    opacity: 0.3;
    position: relative;
}

.glow-divider::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: inherit;
    filter: blur(4px);
    opacity: 0.5;
}

/* ==========================================
   CTA BANNER SECTION ENHANCEMENTS
   ========================================== */
.cta-banner-section {
    position: relative;
}

.cta-banner-section .morphing-blob-1 {
    width: 500px;
    height: 500px;
    background: var(--sage);
    top: -150px;
    right: -100px;
}

.cta-banner-section .morphing-blob-2 {
    width: 400px;
    height: 400px;
    background: var(--peach);
    bottom: -100px;
    left: -80px;
    animation-delay: 5s;
}

/* ==========================================
   RESPONSIVE ADJUSTMENTS
   ========================================== */
@media (max-width: 768px) {
    .method-step .step-description {
        max-height: none;
        opacity: 1;
        margin-top: 0.5rem;
    }

    .back-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 42px;
        height: 42px;
    }

    .hero-text-reveal {
        animation-duration: 0.8s;
    }

    .aurora-bg,
    #particleCanvas {
        display: none;
    }

    .hero-orb {
        display: none;
    }
}

/* ==========================================
   PRINT STYLES
   ========================================== */
@media print {

    nav,
    .back-to-top,
    .page-loader,
    .aurora-bg,
    #particleCanvas {
        display: none !important;
    }

    .reveal-on-scroll,
    .reveal-left,
    .reveal-right,
    .reveal-scale {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
    }
}

/* ==========================================
   SMOOTH PAGE TRANSITIONS
   ========================================== */
.page-enter {
    animation: pageEnter 0.6s var(--transition-silk) forwards;
}

@keyframes pageEnter {
    from {
        opacity: 0;
        transform: translateY(20px);
        filter: blur(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

/* ==========================================
   FORM SECTION ANIMATIONS (success page)
   ========================================== */
.form-section {
    transition: all 0.4s ease;
}

.form-section:focus-within {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(156, 175, 136, 0.08);
}

/* Label animation on focus */
.form-label {
    transition: all 0.3s ease;
}

.form-section:focus-within .form-label {
    color: var(--olive);
}

/* ==========================================
   HOVER GLOW ON SECTION TITLES
   ========================================== */
h2:hover {
    text-shadow: 0 0 30px rgba(156, 175, 136, 0.1);
    transition: text-shadow 0.5s ease;
}

/* ==========================================
   SMOOTH SCROLLBAR STYLING
   ========================================== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--sage), var(--olive));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--olive), var(--sage));
}

/* ==========================================
   PREMIUM ENHANCEMENTS: NOISE, CURSOR, MARQUEE, LIQUID TEXT
   ========================================== */

/* Cinematic Noise Overlay */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.04;
    background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
    mix-blend-mode: overlay;
}


/* Liquid Text Effect */
.liquid-text {
    background: linear-gradient(
        135deg, 
        var(--lime-accent) 0%, 
        var(--sage) 30%, 
        var(--peach) 60%, 
        var(--olive) 100%
    );
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: liquidFlow 8s ease infinite;
    display: inline-block;
}

@keyframes liquidFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Infinite Scrolling Marquee */
.marquee-container {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.marquee-content {
    display: flex;
    width: max-content;
    animation: marqueeScroll 25s linear infinite;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==========================================
   PHASE 2: DARK MODE, TRANSITIONS, SCROLL PROGRESS
   ========================================== */



/* Page Transition Overlay */
.page-transition-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--sage);
    z-index: 100000;
    transform: translateY(-100%);
    pointer-events: none;
    transition: transform 0.8s cubic-bezier(0.85, 0, 0.15, 1);
}

.page-transition-panel.active {
    transform: translateY(0%);
    pointer-events: all;
}

.page-transition-panel.is-leaving {
    transform: translateY(100%);
}

/* Magnetic Text Links */
.magnetic-text {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translate(var(--magnetic-x, 0px), var(--magnetic-y, 0px));
}