@import url('https://fonts.googleapis.com/css2?family=Baloo+Bhaijaan+2:wght@400;500;600;700;800&display=swap');

:root {
    --green-spa: #E9F3E2;
    --green-soft: #D4E8C5;
    --green-text: #3A5A2E;
    --pink-princess: #FAD7E6;
    --pink-soft: #F7C5D8;
    --pink-text: #9B4D6A;
    --purple-royal: #CFC1DE;
    --purple-soft: #E0D5EC;
    --purple-text: #5E4A6E;
    --blue-water: #CFECF5;
    --blue-soft: #B8E1F0;
    --blue-text: #3A6B7A;
    --yellow-warm: #FCF0A8;
    --yellow-soft: #F9E67A;
    --yellow-text: #8B7A2E;
    --white: #FFFFFF;
    --off-white: #FAFAF9;
    --text-dark: #3D3D3D;
    --text-body: #5A5A5A;
    --text-muted: #999999;

    --radius-sm: 16px;
    --radius-md: 24px;
    --radius-lg: 32px;
    --radius-xl: 48px;
    --radius-pill: 100px;

    --shadow-sm: 0 4px 20px rgba(0,0,0,0.04);
    --shadow-md: 0 10px 40px rgba(0,0,0,0.06);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.08);

    --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Baloo Bhaijaan 2', cursive;
    background: var(--white);
    color: var(--text-body);
    line-height: 1.8;
    overflow-x: hidden;
    direction: rtl;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4 { font-weight: 800; color: var(--text-dark); line-height: 1.25; }
h2 { font-size: 2.6rem; }

a { text-decoration: none; color: inherit; }

/* ==================== TEXT GRADIENTS ==================== */
.text-grad-green {
    background: linear-gradient(135deg, #3A5A2E, #6B9E52);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.text-grad-pink {
    background: linear-gradient(135deg, #9B4D6A, #D47E96);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.text-grad-purple {
    background: linear-gradient(135deg, #5E4A6E, #8B6F9E);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.text-grad-blue {
    background: linear-gradient(135deg, #3A6B7A, #5FA3B5);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ==================== LAYOUT ==================== */
.section { padding: 120px 5%; position: relative; overflow: hidden; }
.container { max-width: 1280px; margin: 0 auto; }
.text-center { text-align: center; }

.section-header { margin-bottom: 80px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.section-header .badge { margin-bottom: 20px; width: fit-content; }
.section-header h2 { font-size: 3rem; margin-bottom: 10px; }
.section-header p { color: var(--text-muted); font-size: 1.15rem; margin-top: 15px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ==================== BADGE ==================== */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: var(--radius-pill);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}
.badge-pink { background: var(--pink-princess); color: var(--pink-text); }
.badge-green { background: var(--green-spa); color: var(--green-text); }
.badge-blue { background: var(--blue-water); color: var(--blue-text); }
.badge-purple { background: var(--purple-royal); color: var(--purple-text); }

.badge i { font-size: 0.75rem; }

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 32px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); }

.btn-green { background: var(--green-text); color: white; }
.btn-green:hover { background: #4A7240; }

.btn-pink { background: var(--pink-text); color: white; }
.btn-pink:hover { background: #AD5D7C; }

.btn-outline { background: rgba(255,255,255,0.85); color: var(--text-dark); border: 1.5px solid rgba(0,0,0,0.06); }

.btn-ghost { background: transparent; color: var(--text-dark); border: 1.5px solid rgba(0,0,0,0.1); }
.btn-ghost:hover { border-color: var(--pink-text); color: var(--pink-text); }

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

/* ==================== HEADER ==================== */
.header {
    position: fixed;
    top: 12px;
    left: 5%;
    right: 5%;
    width: 90%;
    z-index: 1000;
    padding: 12px 30px;
    border-radius: var(--radius-pill);
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255,255,255,0.6);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.header.scrolled {
    top: 0; left: 0; right: 0; width: 100%;
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    padding: 10px 40px;
}

.nav { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: baseline; gap: 10px; }
.logo-text { font-size: 1.8rem; font-weight: 800; color: var(--pink-text); }
.logo-sub { font-size: 0.65rem; font-weight: 600; color: var(--green-text); letter-spacing: 2.5px; opacity: 0.6; }

.nav-links { display: flex; gap: 22px; list-style: none; align-items: center; }
.nav-links a { font-weight: 700; font-size: 0.88rem; color: var(--text-dark); transition: color 0.3s; }
.nav-links a:hover { color: var(--pink-text); }

.mobile-toggle { display: none; background: none; border: none; font-size: 1.6rem; color: var(--text-dark); cursor: pointer; padding: 5px; }

/* ==================== HERO ==================== */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        radial-gradient(ellipse at 90% 15%, rgba(250,215,230,0.4) 0%, transparent 45%),
        radial-gradient(ellipse at 10% 80%, rgba(233,243,226,0.4) 0%, transparent 45%),
        radial-gradient(ellipse at 40% 50%, rgba(255,255,255,1) 0%, #fdfcfb 100%);
    position: relative;
}

.hero-content { text-align: center; position: relative; z-index: 1; padding: 40px 20px; }
.hero-title { font-size: 4.5rem; margin-bottom: 20px; font-weight: 800; }
.hero-subtitle { font-size: 1.35rem; color: var(--text-muted); margin: 0 auto 45px; max-width: 620px; line-height: 1.8; }
.hero-btns { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

.hero-decor { position: absolute; pointer-events: none; }
.hero-decor-1 { right: 8%; top: 15%; font-size: 4rem; color: var(--green-soft); opacity: 0.35; }
.hero-decor-2 { left: 8%; top: 60%; font-size: 3.5rem; color: var(--pink-soft); opacity: 0.35; }
.hero-decor-3 { right: 50%; bottom: 5%; font-size: 2rem; color: var(--yellow-soft); opacity: 0.3; }

@keyframes gentle-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(3deg); }
}
.float { animation: gentle-float 6s ease-in-out infinite; }
.float-delay { animation-delay: 2s; }
.float-delay-2 { animation-delay: 4s; }

/* ==================== STATS ==================== */
.stats {
    background: linear-gradient(160deg, #EAE2F0 0%, #DED2EB 30%, #E8E2F2 60%, #D6E8F2 100%);
    padding: 50px 5%;
    border-radius: var(--radius-xl);
    margin: -30px 5% 0;
    position: relative;
    z-index: 2;
    color: var(--text-dark);
}
.stats::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(250,215,230,0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(233,243,226,0.15) 0%, transparent 50%);
    pointer-events: none;
}
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; text-align: center; max-width: 700px; margin: 0 auto; position: relative; z-index: 1; }
.stat-item { padding: 10px; }
.stat-icon { font-size: 1.5rem; margin-bottom: 8px; opacity: 0.5; color: var(--purple-text); }
.stat-number { font-size: 2.8rem; font-weight: 800; display: block; background: linear-gradient(135deg, var(--green-text), var(--pink-text)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { font-size: 0.95rem; opacity: 0.7; margin-top: 5px; display: block; color: var(--text-body); }

/* ==================== WHY US CARDS ==================== */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }

.why-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
}
.why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    opacity: 0;
    transition: opacity 0.4s;
}
.why-card:nth-child(1)::before { background: linear-gradient(90deg, var(--green-text), #6B9E52); }
.why-card:nth-child(2)::before { background: linear-gradient(90deg, var(--pink-text), #D47E96); }
.why-card:nth-child(3)::before { background: linear-gradient(90deg, var(--blue-text), #5FA3B5); }
.why-card:nth-child(4)::before { background: linear-gradient(90deg, var(--purple-text), #8B6F9E); }
.why-card:nth-child(5)::before { background: linear-gradient(90deg, var(--yellow-text), #B5A050); }
.why-card:nth-child(6)::before { background: linear-gradient(90deg, #6B9E52, var(--green-text)); }
.why-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.why-card:hover::before { opacity: 1; }

.why-card-icon {
    width: 72px; height: 72px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    font-size: 1.8rem;
    transition: transform 0.4s;
}
.why-card:hover .why-card-icon { transform: scale(1.1) rotate(-5deg); }
.why-card-icon-green { background: linear-gradient(135deg, var(--green-spa), #d4e8c5); color: var(--green-text); }
.why-card-icon-pink { background: linear-gradient(135deg, var(--pink-princess), #f7c5d8); color: var(--pink-text); }
.why-card-icon-blue { background: linear-gradient(135deg, var(--blue-water), #b8e1f0); color: var(--blue-text); }
.why-card-icon-purple { background: linear-gradient(135deg, var(--purple-royal), #ddd0ea); color: var(--purple-text); }
.why-card-icon-yellow { background: linear-gradient(135deg, var(--yellow-warm), #f9e67a); color: var(--yellow-text); }
.why-card-icon-green2 { background: linear-gradient(135deg, #f0f7e8, #d4e8c5); color: var(--green-text); }

.why-card h3 { font-size: 1.2rem; margin-bottom: 12px; font-weight: 700; }
.why-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.8; }

/* ==================== SERVICE DETAIL ==================== */
.service-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-bottom: 100px; }
.service-detail:last-child { margin-bottom: 0; }
.service-detail.reverse { direction: ltr; }
.service-detail.reverse .service-detail-text { direction: rtl; }

.service-detail-visual {
    border-radius: var(--radius-lg);
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    position: relative;
    overflow: hidden;
}
.service-detail-visual img.service-visual-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.service-detail-visual img.service-visual-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.service-detail-visual .visual-badge {
    position: absolute; bottom: 30px; right: 30px;
    background: rgba(255,255,255,0.9); padding: 8px 20px; border-radius: var(--radius-pill);
    font-size: 0.85rem; font-weight: 700;
}

.service-detail-text h2 { font-size: 2.4rem; }
.service-detail-text .lead { font-size: 1.2rem; color: var(--text-muted); margin: 15px 0 25px; line-height: 1.8; }
.service-detail-text p { color: var(--text-body); font-size: 1rem; margin-bottom: 15px; line-height: 1.9; }

.service-features { list-style: none; margin: 25px 0; }
.service-features li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; font-size: 1rem; color: var(--text-body); }
.service-features li i { font-size: 1.1rem; margin-top: 3px; flex-shrink: 0; }

/* ==================== GALLERY ==================== */
.gallery-scroll {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.gallery-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
}
.gallery-card:hover { transform: scale(1.03); box-shadow: var(--shadow-md); }
.gallery-card.large { grid-row: span 2; aspect-ratio: auto; }

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}
.gallery-card:hover .gallery-img { transform: scale(1.08); }

.gallery-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 40px 25px 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.2));
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    opacity: 0;
    transition: opacity 0.4s;
}
.gallery-card:hover .gallery-caption { opacity: 1; }

.gallery-more {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 20px;
}

/* ==================== BLOG ==================== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

.blog-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
    display: block;
    color: inherit;
}
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }

.blog-card-img {
    height: 200px;
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem;
}
.blog-card-body { padding: 25px 24px; }
.blog-card-tag {
    display: inline-block;
    padding: 5px 14px;
    border-radius: var(--radius-pill);
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.blog-card-body h3 { font-size: 1.25rem; margin-bottom: 10px; }
.blog-card-body p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.8; margin-bottom: 18px; }
.blog-card-date { font-size: 0.8rem; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }

/* ==================== FAQ ==================== */
.faq-grid-custom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 20px;
}
.faq-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition);
}
.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.faq-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--pink-text);
}
.faq-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ==================== PRODUCTS SECTION FIX ==================== */
.products-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}
.products-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.product-feat-card {
    background: white;
    padding: 25px;
    border-radius: 20px;
    display: flex;
    gap: 20px;
    align-items: center;
    box-shadow: var(--shadow-sm);
    transition: 0.3s;
}
.product-feat-card:hover { transform: translateX(-8px); }
.product-feat-icon {
    width: 60px; height: 60px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; flex-shrink: 0;
}


/* ==================== BOOKING ==================== */
.booking {
    background: linear-gradient(180deg, #fdfcf9 0%, var(--white) 40%, #faf9f6 100%);
}
.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.booking-text h2 { font-size: 3.5rem; }
.booking-text p { font-size: 1.15rem; color: var(--text-muted); margin-top: 20px; line-height: 1.8; }

.booking-perks { display: flex; gap: 25px; margin-top: 35px; flex-wrap: wrap; }
.booking-perk { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 0.95rem; }

.booking-form {
    background: white;
    padding: 40px 35px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    display: flex; flex-direction: column; gap: 14px;
    border: 1px solid rgba(0,0,0,0.04);
}
.booking-form input,
.booking-form select {
    padding: 15px 18px;
    border: 1.5px solid #e8e8e8;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    background: #fafafa;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.booking-form input:focus,
.booking-form select:focus {
    border-color: var(--pink-text);
    box-shadow: 0 0 0 3px rgba(155,77,106,0.06);
    background: white;
}
.booking-form select { color: var(--text-muted); }
.booking-form select option:not(:first-child) { color: var(--text-dark); }

/* ==================== ABOUT US ==================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 1 / 1;
    max-width: 500px;
    margin: 0 auto;
}
.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.about-text {
    background: white;
    padding: 40px 35px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.04);
}
.about-text p {
    font-size: 1.05rem;
    color: var(--text-body);
    line-height: 2;
    margin-bottom: 18px;
    padding-right: 18px;
    border-right: 3px solid var(--pink-soft);
    position: relative;
}
.about-text p:last-child { margin-bottom: 0; }

/* ==================== PRODUCTS ==================== */
.products-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.products-showcase {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 1 / 1;
}
.products-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.products-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.products-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.product-feat-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 28px 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
    display: flex;
    align-items: center;
    gap: 18px;
    transition: var(--transition);
}
.product-feat-card:hover {
    transform: translateX(-6px);
    box-shadow: var(--shadow-md);
}
.product-feat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}
.product-feat-card:nth-child(1) .product-feat-icon {
    background: linear-gradient(135deg, var(--green-spa), #d4e8c5);
    color: var(--green-text);
}
.product-feat-card:nth-child(2) .product-feat-icon {
    background: linear-gradient(135deg, var(--pink-princess), #f7c5d8);
    color: var(--pink-text);
}
.product-feat-card:nth-child(3) .product-feat-icon {
    background: linear-gradient(135deg, var(--blue-water), #b8e1f0);
    color: var(--blue-text);
}
.product-feat-card h3 {
    font-size: 1.15rem;
    margin-bottom: 4px;
    color: var(--text-dark);
}
.product-feat-card p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* ==================== FOOTER ==================== */
.footer {
    background: #F5F2F0;
    color: var(--text-body);
    padding: 70px 5% 25px;
    position: relative;
    border-top: 1px solid rgba(0,0,0,0.04);
}
.footer::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--pink-text), var(--green-text), var(--purple-text));
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }
.footer-brand .logo-text { font-size: 1.8rem; color: var(--pink-text); display: block; margin-bottom: 12px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.8; margin-bottom: 20px; color: var(--text-body); }

.social-links { display: flex; gap: 12px; }
.social-links a {
    width: 42px; height: 42px; border-radius: 50%;
    background: rgba(0,0,0,0.04);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted); font-size: 1rem;
    transition: var(--transition);
}
.social-links a:hover { background: var(--pink-text); color: white; transform: translateY(-4px); }

.footer-links h4, .footer-contact h4 { color: var(--text-dark); margin-bottom: 18px; font-size: 1.1rem; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--text-muted); font-size: 0.9rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--pink-text); }

.footer-contact p { margin-bottom: 12px; font-size: 0.9rem; display: flex; align-items: center; gap: 10px; color: var(--text-body); }
.footer-contact i { color: var(--pink-text); font-size: 0.85rem; width: 18px; text-align: center; }

.footer-bottom {
    border-top: 1px solid rgba(0,0,0,0.06);
    padding-top: 25px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==================== SCROLL TO TOP ==================== */
.scroll-top {
    position: fixed; bottom: 30px; left: 30px; z-index: 999;
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--pink-text); color: white; border: none;
    cursor: pointer; font-size: 1rem;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0; visibility: hidden; transform: translateY(20px);
    transition: var(--transition);
}
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--green-text); transform: translateY(-5px); }

/* ==================== REVEAL ANIMATIONS ==================== */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    filter: blur(4px);
    transition: all 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    filter: blur(4px);
    transition: all 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.reveal-left.active { opacity: 1; transform: translateX(0); filter: blur(0); }

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    filter: blur(4px);
    transition: all 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.reveal-right.active { opacity: 1; transform: translateX(0); filter: blur(0); }

.reveal-scale {
    opacity: 0;
    transform: scale(0.88);
    filter: blur(4px);
    transition: all 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.reveal-scale.active { opacity: 1; transform: scale(1); filter: blur(0); }

/* ==================== CINEMATIC TEXT ==================== */
.cinematic-text {
    display: block;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 10px;
}

.cinematic-text .word-anim {
    display: inline-block;
    opacity: 0;
    transform: translateY(15px);
    filter: blur(8px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    white-space: nowrap; /* Prevents words from breaking internally */
    margin: 0 4px; /* Balanced spacing */
}

.cinematic-text.animate .word-anim {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.why-grid .reveal:nth-child(1) { transition-delay: 0.05s; }
.why-grid .reveal:nth-child(2) { transition-delay: 0.12s; }
.why-grid .reveal:nth-child(3) { transition-delay: 0.19s; }
.why-grid .reveal:nth-child(4) { transition-delay: 0.26s; }
.why-grid .reveal:nth-child(5) { transition-delay: 0.33s; }

.faq-grid .reveal:nth-child(1) { transition-delay: 0.05s; }
.faq-grid .reveal:nth-child(2) { transition-delay: 0.12s; }
.faq-grid .reveal:nth-child(3) { transition-delay: 0.19s; }
.faq-grid .reveal:nth-child(4) { transition-delay: 0.26s; }
.faq-grid .reveal:nth-child(5) { transition-delay: 0.33s; }
.faq-grid .reveal:nth-child(6) { transition-delay: 0.40s; }

.blog-grid .reveal:nth-child(1) { transition-delay: 0.05s; }
.blog-grid .reveal:nth-child(2) { transition-delay: 0.15s; }
.blog-grid .reveal:nth-child(3) { transition-delay: 0.25s; }

.gallery-scroll .gallery-card:nth-child(1) { transition-delay: 0.04s; }
.gallery-scroll .gallery-card:nth-child(2) { transition-delay: 0.10s; }
.gallery-scroll .gallery-card:nth-child(3) { transition-delay: 0.16s; }
.gallery-scroll .gallery-card:nth-child(4) { transition-delay: 0.22s; }
.gallery-scroll .gallery-card:nth-child(5) { transition-delay: 0.28s; }
.gallery-scroll .gallery-card:nth-child(6) { transition-delay: 0.34s; }

/* ==================== PARTICLES ==================== */
.hero-particle {
    position: absolute;
    pointer-events: none;
    user-select: none;
    animation: particle-float linear infinite;
    z-index: 0;
}
@keyframes particle-float {
    0%   { transform: translateY(0px) rotate(0deg) scale(1); opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 1; }
    100% { transform: translateY(-120px) rotate(360deg) scale(0.6); opacity: 0; }
}

/* ==================== LIGHTBOX ==================== */
.lightbox-overlay {
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(30, 15, 25, 0.88);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.4s ease;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 20px;
}
.lightbox-overlay.active { opacity: 1; }
.lightbox-inner {
    position: relative; max-width: 820px; width: 100%;
    transform: scale(0.88); transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    text-align: center;
}
.lightbox-overlay.active .lightbox-inner { transform: scale(1); }
.lightbox-inner img {
    width: 100%; border-radius: 20px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
    display: block;
}
.lightbox-inner p {
    color: rgba(255,255,255,0.8); margin-top: 14px;
    font-size: 1rem; font-weight: 600;
}
.lightbox-close {
    position: absolute; top: -18px; left: -18px;
    width: 44px; height: 44px; border-radius: 50%;
    background: white; color: var(--text-dark);
    border: none; cursor: pointer; font-size: 1rem;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: all 0.3s;
}
.lightbox-close:hover { background: var(--pink-text); color: white; transform: scale(1.15); }

/* ==================== HERO CENTERING FIX ==================== */
.hero-content {
    text-align: center !important;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-title {
    text-align: center;
    width: 100%;
}

/* ==================== ENHANCED CARD GLOW ==================== */
.why-card {
    perspective: 800px;
    transform-style: preserve-3d;
}
.why-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(155,77,106,0.06) 0%, transparent 65%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}
.why-card:hover::after { opacity: 1; }

/* ==================== SERVICE VISUAL SHINE ==================== */
.service-detail-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 50%, rgba(0,0,0,0.08) 100%);
    pointer-events: none;
    border-radius: inherit;
}

/* ==================== SECTION HEADER UNDERLINE ==================== */
.section-header h2 {
    position: relative;
    display: inline-block;
}
.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
    width: 60px;
    height: 4px;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--pink-text), var(--purple-text));
    opacity: 0.5;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1100px) {
    .hero-title { font-size: 3.5rem; }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .service-detail { grid-template-columns: 1fr; gap: 40px; }
    .service-detail-visual { height: 300px; }
    .gallery-scroll { grid-template-columns: 1fr 1fr; }
    .gallery-card.large { grid-row: span 1; }
    .blog-grid { grid-template-columns: 1fr 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-image { max-width: 320px; margin: 0 auto; }
    .faq-grid { grid-template-columns: 1fr 1fr; }
    .products-wrapper { grid-template-columns: 1fr; gap: 35px; }
    .products-showcase { max-width: 500px; margin: 0 auto; }
    .booking-wrapper { grid-template-columns: 1fr; }
    .booking-text h2 { font-size: 2.6rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .section { padding: 90px 5%; }
    .section-header h2 { font-size: 2.2rem; }

    .nav-links { display: none; }
    .mobile-toggle { display: block; }
    .nav-links.open {
        display: flex; flex-direction: column;
        position: absolute; top: 100%; left: 0; right: 0;
        background: white; border-radius: var(--radius-md);
        padding: 25px; margin-top: 15px;
        box-shadow: var(--shadow-lg); gap: 18px;
    }

    .hero { min-height: 80vh; }
    .hero-title { font-size: 2.6rem; }

    .stats-grid { grid-template-columns: 1fr 1fr; gap: 25px; }
    .stat-number { font-size: 2.5rem; }

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

    .service-detail-text h2 { font-size: 1.8rem; }
    .service-detail-visual { height: 240px; font-size: 4rem; }

    .gallery-scroll { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }

    .booking-text h2 { font-size: 2rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 35px; }
}
