/* --- Variables --- */
:root {
    --deep-purple: #160830;
    --royal-purple: #2a0f5e;
    --mid-purple: #4a1a9e;
    --accent-purple: #7b2ff7;
    --gold: #D4AF37;
    --gold-light: #f5d060;
    --gold-dim: rgba(212, 175, 55, 0.15);
    --lavender: #d4c8ff;
    --soft-white: #f5f0ff;
    --glass-bg: rgba(120, 60, 255, 0.08);
    --glass-border: rgba(212, 175, 55, 0.3);
    --glass-border-purple: rgba(180, 120, 255, 0.3);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* --- Base Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--deep-purple);
    color: var(--soft-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Vivid animated background */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background:
        radial-gradient(ellipse at 15% 0%,   rgb(124, 47, 247) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 10%,  rgba(212, 175, 55, 0.12) 0%, transparent 45%),
        radial-gradient(ellipse at 50% 100%, rgba(90, 20, 200, 0.5)   0%, transparent 60%),
        radial-gradient(ellipse at 0%  60%,  rgba(160, 40, 255, 0.2)  0%, transparent 45%),
        radial-gradient(ellipse at 100% 50%, rgba(99, 0, 220, 0.815)  0%, transparent 45%);
    pointer-events: none;
    z-index: 0;
    animation: bgShift 3s ease-in-out infinite alternate;
}

@keyframes bgShift {
    0%   { opacity: 1; }
    100% { opacity: 0.75; filter: hue-rotate(15deg) brightness(1.1); }
}

body::after {
    content: '';
    position: fixed;
    top: -300px; right: -300px;
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(124, 47, 247, 0.151) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: orbFloat 22s ease-in-out infinite;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%       { transform: translate(-100px, 100px) scale(1.15); }
}

/* --- Navbar --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 8%;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: transparent;
    border-bottom: 1px solid rgba(180, 120, 255, 0.2);
    box-shadow: 0 4px 40px rgba(90, 20, 200, 0.2);

}
.navbar::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    /* background: rgba(65, 31, 143, 0.548); */
    background: rgba(50, 4, 99, 0.479);

    /* background: linear-gradient(160deg, rgba(22, 8, 48, 0.7) 0%, rgba(74, 26, 158, 0.6) 40%, rgba(22, 8, 48, 0.85) 50%),;*/
    backdrop-filter: blur(10px) saturate(100%);
    -webkit-backdrop-filter: blur(15px) saturate(100%);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li { margin-left: 25px; }

.nav-links a {
    text-decoration: none;
    color: var(--lavender);
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0; height: 2px;
    bottom: 0; left: 0;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.cta-nav {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--deep-purple) !important;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35);
    transition: all 0.3s ease !important;
}
.cta-nav:hover {
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.6) !important;
    transform: translateY(-2px) !important;
}
.cta-nav::after { display: none !important; }

/* --- Hero --- */
.hero {
    min-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background:
        linear-gradient(160deg, rgba(22, 8, 48, 0.7) 0%, rgba(74, 26, 158, 0.6) 40%, rgba(22, 8, 48, 0.85) 100%),
        url('images/sky.webp');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 50% 40%, rgba(123, 47, 247, 0.35) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -62%);
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(123, 47, 247, 0.25) 0%, rgba(212, 175, 55, 0.08) 50%, transparent 70%);
    border-radius: 50%;
    animation: heroGlow 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes heroGlow {
    0%, 100% { transform: translate(-50%, -62%) scale(1); opacity: 0.7; }
    50%       { transform: translate(-50%, -62%) scale(1.3); opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.8rem;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 40%, #fff8dc 70%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    letter-spacing: 0.06em;
    background-size: 300% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero h3 {
    font-size: 1.2rem;
    color: rgba(212, 200, 255, 0.9);
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.hero p {
    font-size: 1.1rem;
    color: rgba(212, 200, 255, 0.75);
    max-width: 520px;
    margin: 0 auto 38px;
    font-style: italic;
}

.hero-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.trishul-icon {
    height: 160px;
    width: auto;
    animation: pulse 2.5s ease-in-out infinite;
    filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.6)) drop-shadow(0 0 60px rgba(123, 47, 247, 0.4));
}

@keyframes pulse {
    0%, 100% { transform: scale(1);    filter: drop-shadow(0 0 20px rgba(212,175,55,0.5)) drop-shadow(0 0 40px rgba(123,47,247,0.3)); }
    50%       { transform: scale(1.07); filter: drop-shadow(0 0 40px rgba(212,175,55,0.8)) drop-shadow(0 0 80px rgba(123,47,247,0.5)); }
}

/* floating particles */
/* .hero-particles {
    position: absolute; width: 100%; height: 100%;
    top: 0; left: 0;
    pointer-events: none; overflow: hidden; z-index: 0;
}

.particle {
    position: absolute;
    width: 3px; height: 3px;
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat linear infinite;
}

.particle:nth-child(odd)  { background: var(--gold); }
.particle:nth-child(even) { background: rgba(180,140,255,0.8); }

@keyframes particleFloat {
    0%   { opacity: 0; transform: translateY(0) scale(0); }
    10%  { opacity: 0.8; }
    90%  { opacity: 0.3; }
    100% { opacity: 0; transform: translateY(-100vh) scale(1.5); }
} */

.hero-particles {
    position: absolute; width: 100%; height: 100%;
    top: 0; left: 0;
    pointer-events: none; overflow: hidden; z-index: 0;
}

.particle {
    position: absolute;
    width: 3px; height: 3px;
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 12s linear infinite;
}

.particle:nth-child(odd)  { background: var(--gold);
    box-shadow: 0 0 8px var(--gold); }
.particle:nth-child(even) { background: rgba(180,140,255,0.8);
    box-shadow: 0 0 8px rgba(180,140,255,0.9); }

@keyframes particleFloat {
    0%   { opacity: 0; transform: translateY(0) scale(0.5); }
    10%  { opacity: 1; }
    90%  { opacity: 0.8; }
    100% { opacity: 0; transform: translateY(-100vh) scale(1.8); }
}


/* --- Page Header (non-hero pages) --- */
.page-header {
    padding: 90px 10% 60px;
    text-align: center;
    position: relative;
    background:
        radial-gradient(ellipse at 50% 0%,   rgba(123, 47, 247, 0.5) 0%, transparent 65%),
        radial-gradient(ellipse at 20% 100%,  rgba(74, 26, 158, 0.3)  0%, transparent 50%);
    overflow: hidden;
    z-index: 1;
}

.page-header::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.4;
    animation: starMove 80s linear infinite;
    pointer-events: none;
}

/* --- About Hero --- */
.about-hero {
    position: relative;
    padding: 100px 10% 60px;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(123, 47, 247, 0.55) 0%, transparent 65%),
        radial-gradient(ellipse at center, rgba(42, 15, 94, 0.9) 0%, var(--deep-purple) 100%);
    overflow: hidden;
    text-align: center;
    z-index: 1;
}

.stars-overlay {
    position: absolute; top: 0; left: 0; width: 200%; height: 200%;
    background-image: radial-gradient(rgba(255,255,255,0.15) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.5;
    animation: starMove 120s linear infinite;
    z-index: 0;
}

@keyframes starMove {
    from { transform: translate(0, 0); }
    to   { transform: translate(-60px, -60px); }
}

/* --- Sections --- */
.section {
    padding: 90px 10%;
    position: relative;
    z-index: 1;
}

.light-bg {
    background: linear-gradient(180deg,
        rgba(74, 26, 158, 0.22) 0%,
        rgba(42, 15, 94, 0.18) 100%);
}

/* --- Typography --- */
.section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    background: linear-gradient(135deg, var(--gold-light), var(--gold), #fff8dc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.section-title::after {
    content: '';
    display: block;
    width: 90px; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 14px auto 20px;
    border-radius: 2px;
}

.title-gold {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    background: linear-gradient(135deg, var(--gold-light), var(--gold), #fff8dc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.subtitle {
    color: var(--lavender);
    font-weight: 300;
    font-size: 1.1rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.section-intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: var(--lavender);
    font-size: 1.05rem;
    line-height: 1.85;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* --- Dividers --- */
.divine-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: var(--gold);
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.divine-divider span {
    width: 80px; height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    display: block;
}

.ornament-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 0 auto 50px;
    max-width: 400px;
    position: relative;
    z-index: 1;
}

.ornament-divider::before,
.ornament-divider::after {
    content: '';
    flex: 1; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.6));
}

.ornament-divider::after {
    background: linear-gradient(90deg, rgba(212,175,55,0.6), transparent);
}

.ornament-divider i { color: var(--gold); font-size: 1.2rem; }

/* --- Grid & Cards --- */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card,
.product-card {
    background: rgba(123, 47, 247, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    padding: 40px 30px;
    border-radius: 22px;
    border: 1px solid rgba(180, 120, 255, 0.2);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.06);
}

.card::before,
.product-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.7), transparent);
}

.card::after,
.product-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%; transform: translateX(-50%);
    width: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transition: width 0.4s ease;
}

.card:hover::after,
.product-card:hover::after { width: 75%; }

.card:hover,
.product-card:hover {
    border-color: rgba(212, 175, 55, 0.45);
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.4), 0 0 50px rgba(123,47,247,0.15);
    background: rgba(123, 47, 247, 0.13);
}

.card-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
    filter: drop-shadow(0 0 12px rgba(212,175,55,0.45));
    transition: filter 0.3s;
    display: block;
}

.card:hover .card-icon { filter: drop-shadow(0 0 22px rgba(212,175,55,0.75)); }

.card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--soft-white);
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.card p {
    color: var(--lavender);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 18px;
}

/* product card specific */
.prod-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid rgba(180, 120, 255, 0.2);
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.product-card:hover .prod-img { transform: scale(1.03); }

.product-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--soft-white);
    margin-bottom: 10px;
}

.product-card .description {
    font-size: 0.9rem;
    color: var(--lavender);
    line-height: 1.7;
    margin-bottom: 18px;
    opacity: 0.85;
}

/* --- Glass Card --- */
.glass-card {
    /* background: rgba(123, 47, 247, 0.08); */
    background: rgba(247, 47, 47, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(180, 120, 255, 0.2);
    border-radius: 24px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.06);
}

/* --- Stat Strip --- */
.stat-strip {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    background: rgba(123, 47, 247, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(180, 120, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.06);
    margin: 60px 0;
}

.stat-item {
    flex: 1; min-width: 150px;
    padding: 38px 25px;
    text-align: center;
    border-right: 1px solid rgba(180, 120, 255, 0.15);
    transition: background 0.3s;
}

.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(212,175,55,0.06); }

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.82rem;
    color: var(--lavender);
    letter-spacing: 0.07em;
    text-transform: uppercase;
    opacity: 0.8;
}

/* --- Service Content --- */
.service-content {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
    padding: 50px;
    border-radius: 24px;
    background: rgba(123, 47, 247, 0.07);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(180, 120, 255, 0.18);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.service-content::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.5), transparent);
}

.service-content:hover {
    border-color: rgba(212,175,55,0.3);
    box-shadow: 0 25px 70px rgba(0,0,0,0.4), 0 0 40px rgba(123,47,247,0.1);
}

.service-content.reverse { flex-direction: row-reverse; }

.service-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.service-content p { color: var(--lavender); line-height: 1.8; margin-bottom: 20px; opacity: 0.9; }

.service-content ul { list-style: none; margin-bottom: 25px; }

.service-content ul li {
    color: var(--lavender);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-content ul li i { color: var(--gold); font-size: 0.9rem; }

.service-img {
    width: 45%;
    border-radius: 20px;
    border: 1px solid rgba(180, 120, 255, 0.25);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(123,47,247,0.15);
    flex-shrink: 0;
}

/* --- Benefits --- */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.benefit-card {
    background: rgba(123, 47, 247, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 38px 28px;
    border-radius: 20px;
    border: 1px solid rgba(180, 120, 255, 0.18);
    border-bottom: 3px solid var(--gold);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.benefit-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.6), transparent);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 30px rgba(123,47,247,0.15);
    border-color: rgba(212,175,55,0.4);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 15px;
    display: block;
    filter: drop-shadow(0 0 10px rgba(212,175,55,0.5));
}

.benefit-card h4 { margin-bottom: 10px; color: var(--gold-light); font-size: 1.05rem; }
.benefit-card p  { color: var(--lavender); font-size: 0.9rem; line-height: 1.7; opacity: 0.85; }

/* --- About --- */
.about-header.centered { text-align: center; margin-bottom: 40px; }

.about-flex-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.solo-photo {
    width: 300px; height: auto;
    border-radius: 22px;
    border: 2px solid rgba(180,120,255,0.3);
    margin-bottom: 20px;
    box-shadow: 0 0 50px rgba(123,47,247,0.3), 0 0 25px rgba(212,175,55,0.15), 0 20px 60px rgba(0,0,0,0.6);
    transition: all 0.4s ease;
}

.solo-photo:hover {
    box-shadow: 0 0 70px rgba(123,47,247,0.45), 0 0 35px rgba(212,175,55,0.25), 0 25px 70px rgba(0,0,0,0.7);
    transform: translateY(-5px);
}

.about-text-centered p  { margin-bottom: 20px; font-size: 1.05rem; color: var(--lavender); line-height: 1.85; opacity: 0.9; }
.about-text-centered strong { color: var(--gold-light); }

.img-caption {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 30px;
    font-style: italic;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
}

/* --- Gallery --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 50px;
}

.gallery-item {
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    transition: 0.4s;
}

.gallery-item::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 55%, rgba(123,47,247,0.4) 100%);
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 14px;
}

.gallery-item:hover::after { opacity: 1; }

.gallery-item img {
    width: 100%; height: 300px;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid rgba(180,120,255,0.2);
    transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.06); }
.gallery-item p { margin-top: 10px; font-size: 0.88rem; color: var(--gold); letter-spacing: 0.03em; }

.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 20px rgba(123,47,247,0.2);
}

/* --- Reviews --- */
.reviews-list.section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    align-items: start;
}

.review-box {
    background: rgba(123, 47, 247, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    padding: 35px;
    border-radius: 18px;
    border: 1px solid rgba(180,120,255,0.2);
    border-left: 4px solid var(--gold);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.review-box::before {
    content: '"';
    position: absolute;
    top: -15px; right: 20px;
    font-size: 8rem;
    font-family: 'Playfair Display', serif;
    color: rgba(212,175,55,0.07);
    line-height: 1;
    pointer-events: none;
}

.review-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 50px rgba(0,0,0,0.4), 0 0 25px rgba(123,47,247,0.15);
    border-left-color: var(--gold-light);
}

.review-box p  { color: var(--lavender); line-height: 1.8; margin-bottom: 18px; font-style: italic; opacity: 0.9; }
.review-box h4 { color: var(--gold); font-weight: 600; font-size: 0.95rem; line-height: 1.6; }
.review-box h4 i { color: var(--lavender); margin-right: 5px; opacity: 0.7; }

/* --- Video Reviews --- */
.video-review {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 30px 20px !important;
}

.video-review video,
.video-review iframe {
    width: 100%;
    max-width: 280px;
    aspect-ratio: 9 / 16;
    border-radius: 20px;
    border: 1px solid rgba(180,120,255,0.25);
    box-shadow: 0 15px 50px rgba(0,0,0,0.5), 0 0 30px rgba(123,47,247,0.2);
    background: #000;
    transition: all 0.3s ease;
}

.video-review video:hover,
.video-review iframe:hover {
    box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 45px rgba(123,47,247,0.35);
    transform: translateY(-4px);
}

.video-review h4 { color: var(--gold); font-weight: 600; text-align: center; line-height: 1.7; }

/* --- Contact --- */
.contact-container {
    max-width: 700px;
    margin: 0 auto;
}

.contact-info {
    background: rgba(247, 47, 47, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(180,120,255,0.2);
    border-radius: 24px;
    padding: 55px 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.06);
}

.contact-info::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 196, 0, 0.6), transparent);
}

.contact-info::after {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(123,47,247,0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
}

.contact-info p {
    color: var(--lavender);
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 1rem;
    line-height: 1.7;
}

.contact-info p i {
    color: var(--gold);
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 6px rgba(212,175,55,0.4));
}

.contact-info a { color: var(--lavender); text-decoration: none; transition: color 0.3s; }
.contact-info a:hover { color: var(--gold-light); }

.contact-info .address {
    border-top: 1px solid rgba(180,120,255,0.15);
    padding-top: 20px;
    margin-top: 10px;
}


/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 13px 32px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--deep-purple);
    font-weight: 700;
    border-radius: 30px;
    margin-top: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    letter-spacing: 0.03em;
    box-shadow: 0 4px 20px rgba(212,175,55,0.35);
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before { left: 100%; }

.btn:hover {
    box-shadow: 0 8px 35px rgba(212,175,55,0.55);
    transform: translateY(-3px) scale(1.03);
}

.btn-outline {
    background: rgba(123, 47, 247, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(212,175,55,0.4);
    color: var(--gold) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    font-weight: 600;
}

.btn-outline:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--deep-purple) !important;
    border-color: transparent;
}

/* --- Text Links --- */
.text-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: all 0.3s;
}

.text-link::after { content: ' →'; }
.text-link:hover  { color: var(--gold-light); }

/* --- Mandala --- */
.mandala-rotate {
    display: inline-block;
    margin-bottom: 20px;
    height: 140px; width: auto;
    transform-style: preserve-3d;
    animation: slowRotate 3s linear infinite;
    filter: drop-shadow(0 0 25px rgba(212,175,55,0.55)) drop-shadow(0 0 60px rgba(123,47,247,0.4));
    position: relative; z-index: 1;
}

@keyframes slowRotate {
    from { transform: rotateY(0deg); }
    to   { transform: rotateY(360deg); }
}

.photo-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 130%; height: 130%;
    background: radial-gradient(circle, rgba(123,47,247,0.2) 0%, rgba(212,175,55,0.08) 50%, transparent 70%);
    z-index: -1;
    animation: breathe 4s ease-in-out infinite;
}

@keyframes breathe {
    0%, 100% { transform: translate(-50%,-50%) scale(1);    opacity: 0.5; }
    50%       { transform: translate(-50%,-50%) scale(1.12); opacity: 1; }
}

/* --- Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: 0.85s all cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal.active { opacity: 1; transform: translateY(0); }

/* --- Footer --- */
footer {
    text-align: center;
    padding: 60px 10%;
    position: relative;
    z-index: 1;

    /* Glass effect */
    background: rgba(33, 8, 48, 0.788);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);

    /* Glass borders */
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);

    /* Subtle inner glow */
    box-shadow:
        0 -4px 30px rgba(0, 0, 0, 0.363),
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        inset 0 -1px 0 rgba(255, 255, 255, 0.03);
}

footer::before {
    content: '';
    position: absolute;
    top: 0; left: 50%; transform: translateX(-50%);
    width: 220px; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.6), transparent);
}

footer p { color: var(--lavender); margin-bottom: 20px; font-size: 0.88rem; opacity: 0.7; }

.socials a  { display: inline-block; margin: 0 12px; transition: all 0.3s; }
.socials i  { font-size: 1.6rem; color: var(--gold); transition: all 0.3s; }
.socials a:hover i {
    color: var(--gold-light);
    filter: drop-shadow(0 0 12px rgba(212,175,55,0.7));
    transform: scale(1.2) translateY(-2px);
}

/* --- Logo --- */
.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s;
}

.logo-link:hover { transform: scale(1.03); }

.logo-img {
    width: 70px; height: auto;
    filter: drop-shadow(0 0 10px rgba(123,47,247,0.4)) drop-shadow(0 0 5px rgba(212,175,55,0.3));
    transition: filter 0.3s;
}

.logo-link:hover .logo-img {
    filter: drop-shadow(0 0 18px rgba(123,47,247,0.6)) drop-shadow(0 0 10px rgba(212,175,55,0.5));
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Menu Toggle --- */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--gold);
    cursor: pointer;
    padding: 5px;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .menu-toggle { display: block; }

    .nav-links {
        position: fixed;        /* ← fixed instead of absolute, breaks out of navbar stacking */
        top: 75px;              /* ← adjust to match your navbar height */
        left: 0;
        width: 100%;
        flex-direction: column;
        display: none;
        padding: 20px 0;

        /* Glass effect — now works because it's outside navbar's stacking context */
        background: rgba(50, 4, 99, 0.705);
        -webkit-backdrop-filter: blur(5px) saturate(100%);
        backdrop-filter: blur(5px) saturate(100%);
        transform: translateZ(0);           /* ← force own compositing layer */
        will-change: backdrop-filter;       /* ← tells browser to prep GPU layer */
        isolation: isolate;

        /* Glass borders */
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);

        box-shadow:
            0 8px 32px rgba(0, 0, 0, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.1),
            inset 0 -1px 0 rgba(255, 255, 255, 0.03);
    }

    .nav-links li { margin: 12px 0; text-align: center; }
    .nav-links.active { display: flex; }

    .hero { height: auto; padding: 100px 20px 80px; }
    .hero h1 { font-size: 2.6rem; }
    .hero h3 { font-size: 1rem; }
    .hero p  { font-size: 0.95rem; }
    .hero-btns { flex-direction: column; align-items: center; gap: 12px; }
    .trishul-icon { height: 110px; }

    .section { padding: 60px 6%; }
    .section-title { font-size: 2.1rem; }
    .grid { grid-template-columns: 1fr; }

    .service-content,
    .service-content.reverse { flex-direction: column; padding: 28px 20px; gap: 28px; }
    .service-img { width: 100%; }

    .gallery-grid { grid-template-columns: 1fr; }

    .stat-strip { flex-direction: column; }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(180,120,255,0.15); }
    .stat-item:last-child { border-bottom: none; }

    .reviews-list.section { grid-template-columns: 1fr; }

    .contact-info { padding: 35px 25px; }
    .title-gold { font-size: 1.7rem; }
}

@media (max-width: 468px) {
    .logo-img  { width: 50px; }
    .logo-text { font-size: 1.2rem; }
    .hero h1   { font-size: 2rem; }
    .navbar {
        padding: 18px 5%;  /* ← was 8%, less padding = more room */
    }
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--deep-purple); }
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--accent-purple), rgba(212,175,55,0.5));
    border-radius: 3px;
}

/* Selection */
::selection { background: rgba(123,47,247,0.35); color: var(--gold-light); }