/* ═══════════════════════════════════════════════════════════════
   STYLE.CSS — The Bride Story By Deepsikha
   Ultra Premium Luxury Bridal Beauty Parlour Design System
═══════════════════════════════════════════════════════════════ */

/* ─── Design Tokens ─────────────────────────────────────────── */
:root {
    /* Colors — Default Dark Gold Theme */
    --bg-primary: #080808;
    --bg-secondary: #111111;
    --bg-card: rgba(255, 255, 255, 0.04);
    --bg-card-hover: rgba(255, 255, 255, 0.07);
    --bg-glass: rgba(17, 17, 17, 0.7);
    --gold: #D4AF37;
    --gold-light: #E6C77D;
    --gold-pale: #F5E6B2;
    --gold-dark: #A8882A;
    --text-primary: #F8F4ED;
    --text-secondary: #C9B99A;
    --text-muted: #8A7A6A;
    --border-gold: rgba(212, 175, 55, 0.25);
    --border-glass: rgba(255, 255, 255, 0.08);
    --shadow-gold: 0 4px 30px rgba(212, 175, 55, 0.15);
    --shadow-deep: 0 20px 60px rgba(0, 0, 0, 0.6);

    /* Typography */
    --font-script: 'Great Vibes', cursive;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', sans-serif;
    --font-elegant: 'Cormorant Garamond', Georgia, serif;

    /* Spacing */
    --section-pad: 6rem 0;
    --container-max: 1280px;
    --gutter: 1.5rem;

    /* Radii */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 36px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-med: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.7s cubic-bezier(0.4, 0, 0.2, 1);

    /* Z-Index Layers */
    --z-splash: 9999;
    --z-modal: 9000;
    --z-header: 800;
    --z-float: 700;
    --z-above: 100;
    --z-normal: 1;
}

/* ─── Theme: Darker (near-black + bright gold) ──────────────── */
.theme-darker {
    --bg-primary: #030303;
    --bg-secondary: #0a0a0a;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.06);
    --gold: #FFD700;
    --gold-light: #FFF0A0;
    --text-primary: #FFFFFF;
    --text-secondary: #D4C4A0;
    --border-gold: rgba(255, 215, 0, 0.3);
    --shadow-gold: 0 4px 30px rgba(255, 215, 0, 0.2);
}

/* ─── Theme: Champagne (warm light cream + rose gold) ───────── */
.theme-champagne {
    --bg-primary: #FAF6F0;
    --bg-secondary: #F0EAE0;
    --bg-card: rgba(255, 255, 255, 0.7);
    --bg-card-hover: rgba(255, 255, 255, 0.9);
    --bg-glass: rgba(250, 246, 240, 0.85);
    --gold: #B8860B;
    --gold-light: #D4A820;
    --gold-pale: #8B6914;
    --text-primary: #2D1810;
    --text-secondary: #5C4A35;
    --text-muted: #9A8070;
    --border-gold: rgba(184, 134, 11, 0.3);
    --border-glass: rgba(0, 0, 0, 0.08);
    --shadow-gold: 0 4px 30px rgba(184, 134, 11, 0.2);
    --shadow-deep: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* ─── CSS Reset & Base ───────────────────────────────────────── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    transition: background-color var(--transition-slow), color var(--transition-slow);
    animation: pageIn 0.6s ease both;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: all var(--transition-fast);
}

ul {
    list-style: none;
}

/* ─── Utility Classes ─────────────────────────────────────────── */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.gold-text {
    color: var(--gold);
}

.gold-script {
    font-family: var(--font-script);
    color: var(--gold);
}

.serif-text {
    font-family: var(--font-serif);
}

.elegant-text {
    font-family: var(--font-elegant);
}

.section-pad {
    padding: var(--section-pad);
}

/* ─── Scrollbar ──────────────────────────────────────────────── */
::-webkit-scrollbar {
    width: 6px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}

/* ─── Selection ──────────────────────────────────────────────── */
::selection {
    background: var(--gold);
    color: var(--bg-primary);
}

/* ═══════════════════════════════════════════════════════════════
   SPLASH SCREEN
═══════════════════════════════════════════════════════════════ */
#splash-screen {
    position: fixed;
    inset: 0;
    z-index: var(--z-splash);
    background: radial-gradient(ellipse at center, #1a1200 0%, #080808 60%, #000 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#splash-screen.fade-out {
    animation: splashFadeOut 0.8s ease forwards;
    pointer-events: none;
}

.splash-canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.splash-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.splash-logo-ring {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: splashGlowPulse 2s ease-in-out infinite;
    position: relative;
}

.splash-logo-ring::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.4);
    animation: splashGlowPulse 2s ease-in-out infinite reverse;
}

.splash-logo {
    width: 130px;
    height: 130px;
    object-fit: contain;
    border-radius: 50%;
    animation: splashLogoReveal 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.6));
}

.splash-title {
    font-family: var(--font-script);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--gold);
    animation: splashTitleReveal 1.2s ease 0.8s both;
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.5);
    line-height: 1.1;
}

.splash-subtitle {
    font-family: var(--font-elegant);
    font-size: clamp(0.85rem, 2vw, 1.1rem);
    color: var(--gold-light);
    letter-spacing: 0.35em;
    text-transform: uppercase;
    animation: splashTitleReveal 1.2s ease 1.1s both;
}

.splash-progress {
    width: 120px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    overflow: hidden;
    margin-top: 1rem;
    animation: splashTitleReveal 0.5s ease 1.4s both;
}

.splash-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
    border-radius: 999px;
    transition: width 2s ease;
}

/* ═══════════════════════════════════════════════════════════════
   HEADER & NAVIGATION
═══════════════════════════════════════════════════════════════ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-header);
    background: var(--bg-glass);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border-glass);
    transition: all var(--transition-med);
}

.site-header.scrolled {
    background: rgba(8, 8, 8, 0.95);
    border-bottom-color: var(--border-gold);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.theme-champagne .site-header {
    background: rgba(250, 246, 240, 0.9);
    border-bottom-color: rgba(184, 134, 11, 0.2);
}

.header-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0.9rem var(--gutter);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    flex-shrink: 0;
}

.brand-logo-wrap {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(212, 175, 55, 0.15), transparent);
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all var(--transition-med);
}

.brand-logo-wrap:hover {
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    transform: rotate(5deg);
}

.brand-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 50%;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.1;
}

.brand-subtitle {
    font-family: var(--font-script);
    font-size: 1.1rem;
    color: var(--gold);
    line-height: 1;
}

.main-nav .nav-list {
    display: flex;
    gap: 0.5rem;
}

.nav-link {
    position: relative;
    padding: 0.5rem 1rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

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

.nav-link-underline {
    display: block;
    height: 1.5px;
    width: 0%;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    border-radius: 999px;
    transition: width var(--transition-med);
    font-style: normal;
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.theme-toggle-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-full);
    padding: 0.35rem 0.9rem;
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    letter-spacing: 0.05em;
    transition: all var(--transition-med);
    white-space: nowrap;
}

.theme-toggle-btn:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: var(--radius-sm);
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: all var(--transition-med);
}

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

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ─── Header Divider ────────────────────────────────────────── */
.header-divider {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 var(--gutter);
}

.divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation: dividerGlow 3s ease-in-out infinite;
}

.divider-diamond {
    color: var(--gold);
    font-size: 0.6rem;
    opacity: 0.8;
    flex-shrink: 0;
}

.divider-ornament {
    color: var(--gold);
    font-size: 0.75rem;
    opacity: 0.7;
    flex-shrink: 0;
    letter-spacing: 0.4em;
}

/* ─── Body padding for fixed header ────────────────────────── */
body {
    padding-top: 96px;
}

/* ─── Floating WhatsApp ─────────────────────────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: var(--z-float);
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.7rem;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    animation: whatsappBounce 3s ease-in-out infinite;
    transition: transform var(--transition-fast);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6);
}

.whatsapp-pulse {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.5);
    animation: whatsappPulse 2s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION TITLES — Reusable
═══════════════════════════════════════════════════════════════ */
.section-title-wrap {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
}

.section-eyebrow {
    font-family: var(--font-elegant);
    font-size: 0.9rem;
    font-style: italic;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 0.5rem;
    display: block;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.section-title-script {
    font-family: var(--font-script);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--gold);
    display: block;
    line-height: 1;
    margin-bottom: -0.3rem;
}

.section-title-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin: 1rem 0;
}

.section-title-ornament .ornament-line {
    height: 1px;
    width: 80px;
    background: linear-gradient(90deg, transparent, var(--gold));
    animation: titleLineExpand 1s ease both;
    transform-origin: left;
}

.section-title-ornament .ornament-line:last-child {
    background: linear-gradient(90deg, var(--gold), transparent);
    transform-origin: right;
}

.section-title-ornament span {
    color: var(--gold);
    font-size: 0.8rem;
}

.section-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-family: var(--font-elegant);
    font-style: italic;
}

/* ═══════════════════════════════════════════════════════════════
   CREATIVE SECTION DIVIDERS
═══════════════════════════════════════════════════════════════ */
.section-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem var(--gutter);
    max-width: var(--container-max);
    margin: 0 auto;
}

.section-divider .divider-line {
    animation: dividerGlow 3s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════════════════════ */
.hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: var(--bg-primary);
}

.hero-banner-wrap {
    position: relative;
    aspect-ratio: 16/9;
    max-height: calc(100vh - 100px);
    overflow: hidden;
}

.hero-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    animation: heroKenBurns 15s ease-in-out infinite;
    transform-origin: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(8, 8, 8, 0.75) 0%,
            rgba(8, 8, 8, 0.4) 50%,
            rgba(8, 8, 8, 0.65) 100%);
    display: flex;
    align-items: center;
    padding: 0 8%;
}

.hero-content {
    max-width: 640px;
    animation: fadeUp 1.2s ease 0.3s both;
}

.hero-eyebrow {
    font-family: var(--font-elegant);
    font-style: italic;
    font-size: clamp(0.85rem, 1.5vw, 1.05rem);
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 0.75rem;
    display: block;
}

.hero-title-script {
    font-family: var(--font-script);
    font-size: clamp(3rem, 7vw, 6rem);
    color: var(--gold);
    line-height: 1;
    display: block;
    text-shadow: 0 0 60px rgba(212, 175, 55, 0.4);
    margin-bottom: -0.5rem;
}

.hero-title-main {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.hero-desc {
    font-size: clamp(0.9rem, 1.5vw, 1.05rem);
    color: rgba(248, 244, 237, 0.85);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-family: var(--font-elegant);
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ─── Swiper Hero Override ──────────────────────────────────── */
.hero-swiper {
    aspect-ratio: 16/9;
    max-height: calc(100vh - 100px);
}

.hero-swiper .swiper-slide {
    position: relative;
    overflow: hidden;
}

.hero-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero-swiper .swiper-pagination-bullet {
    background: var(--gold);
    opacity: 0.5;
    width: 10px;
    height: 10px;
}

.hero-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    width: 28px;
    border-radius: 5px;
}

.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
    color: var(--gold);
}

.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after {
    font-size: 1.2rem;
}

/* ─── Scroll Indicator ──────────────────────────────────────── */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(212, 175, 55, 0.7);
}

.scroll-indicator i {
    color: var(--gold);
    font-size: 1.2rem;
}

/* ═══════════════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-med);
    text-decoration: none;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: skewX(-15deg);
    transition: left var(--transition-slow);
}

.btn:hover::before {
    left: 180%;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    background-size: 200% 200%;
    color: var(--bg-primary);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    animation: btnShimmer 4s ease-in-out infinite;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
}

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

.btn-outline-gold:hover {
    background: rgba(212, 175, 55, 0.12);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    font-size: 0.8rem;
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-full);
    gap: 0.4rem;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.55);
}

.btn-shimmer {
    background: linear-gradient(270deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold), var(--gold-dark));
    background-size: 300% 100%;
    color: var(--bg-primary);
    animation: btnShimmer 3s ease-in-out infinite;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    font-size: 0.9rem;
    padding: 0.85rem 2rem;
}

.btn-shimmer:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(212, 175, 55, 0.65);
}

/* ═══════════════════════════════════════════════════════════════
   GLASSMORPHISM CARDS
═══════════════════════════════════════════════════════════════ */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    transition: all var(--transition-med);
    overflow: hidden;
    position: relative;
}

.glass-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    border: 1px solid transparent;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), transparent 60%, rgba(212, 175, 55, 0.05)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    pointer-events: none;
    transition: opacity var(--transition-med);
    opacity: 0;
}

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

.glass-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-gold);
    transform: translateY(-6px);
    box-shadow: var(--shadow-gold), var(--shadow-deep);
}

/* ═══════════════════════════════════════════════════════════════
   PACKAGE CARDS (Section 2)
═══════════════════════════════════════════════════════════════ */
#packages {
    padding: var(--section-pad);
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
    position: relative;
}

#packages::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.packages-container {
    position: relative;
    z-index: 1;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-bottom: 4rem;
}

.package-card {
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.package-card.featured {
    border-color: var(--gold) !important;
    transform: scale(1.03);
}

.package-card.featured::after {
    content: 'Most Popular';
    position: absolute;
    top: 1.25rem;
    right: -2.5rem;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--bg-primary);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 3rem;
    transform: rotate(35deg);
    white-space: nowrap;
}

.package-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.package-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.8s ease;
}

.package-card:hover .package-img-wrap img {
    transform: scale(1.07);
}

.package-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 8, 8, 0.95) 0%, rgba(8, 8, 8, 0.3) 50%, transparent 100%);
}

.package-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--bg-primary);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-full);
}

.package-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.package-name {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
}

.package-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.package-price .currency {
    font-size: 1.1rem;
    color: var(--gold);
    font-weight: 600;
}

.package-price .amount {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.package-price .period {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-left: 0.25rem;
}

.package-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}

.package-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.package-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.package-features li i {
    color: var(--gold);
    font-size: 0.7rem;
    margin-top: 0.35rem;
    flex-shrink: 0;
}

.package-cta {
    margin-top: auto;
    padding-top: 0.75rem;
}

/* ─── Sub-section heading ────────────────────────────────────── */
.sub-section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.sub-section-title::after {
    content: '';
    display: block;
    height: 2px;
    width: 60%;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin-top: 0.3rem;
    border-radius: 2px;
}

.sub-section-wrap {
    margin-bottom: 1rem;
}

/* ═══════════════════════════════════════════════════════════════
   ADD-ON SERVICES (Section 3)
═══════════════════════════════════════════════════════════════ */
#addons {
    padding: var(--section-pad);
    overflow: hidden;
    background: var(--bg-secondary);
    position: relative;
}

#addons::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(212, 175, 55, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.addons-track-wrap {
    position: relative;
    overflow: hidden;
    padding: 1rem 0;
}

.addons-track-wrap::before,
.addons-track-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.addons-track-wrap::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg-secondary), transparent);
}

.addons-track-wrap::after {
    right: 0;
    background: linear-gradient(-90deg, var(--bg-secondary), transparent);
}

.addons-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: marqueeScroll 30s linear infinite;
}

.addons-track:hover {
    animation-play-state: paused;
}

.addon-card {
    flex-shrink: 0;
    width: 220px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    transition: all var(--transition-med);
    cursor: pointer;
}

.addon-card:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold);
}

.addon-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.addon-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.6s ease;
}

.addon-card:hover .addon-img-wrap img {
    transform: scale(1.1);
}

.addon-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 8, 8, 0.7) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition-med);
}

.addon-card:hover .addon-img-overlay {
    opacity: 1;
}

.addon-name {
    padding: 0.8rem 1rem;
    font-family: var(--font-serif);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    border-top: 1px solid var(--border-gold);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), transparent);
    transition: color var(--transition-fast);
}

.addon-card:hover .addon-name {
    color: var(--gold);
}

/* ═══════════════════════════════════════════════════════════════
   BRIDE STORY GALLERY (Section 4)
═══════════════════════════════════════════════════════════════ */
#gallery {
    padding: var(--section-pad);
    background: var(--bg-primary);
    position: relative;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    cursor: pointer;
    aspect-ratio: 3/4;
    border: 1px solid var(--border-glass);
    transition: all var(--transition-med);
}

.gallery-item:hover {
    border-color: var(--border-gold);
    box-shadow: var(--shadow-gold);
    transform: scale(1.02);
    z-index: 2;
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.7s ease;
    display: block;
}

.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.08);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 8, 8, 0.85) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition-med);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1rem;
    gap: 0.4rem;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay .item-title {
    font-family: var(--font-serif);
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 600;
    animation: overlayReveal 0.3s ease;
}

.gallery-item-overlay .item-type {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
}

.gallery-item-overlay .item-open-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
    transition: transform var(--transition-med);
    backdrop-filter: blur(4px);
}

.gallery-item:hover .item-open-icon {
    transform: translate(-50%, -50%) scale(1);
}

.gallery-video-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: rgba(212, 175, 55, 0.9);
    color: var(--bg-primary);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 0.25rem 0.6rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* ═══════════════════════════════════════════════════════════════
   TESTIMONIALS (Section 5)
═══════════════════════════════════════════════════════════════ */
#testimonials {
    padding: var(--section-pad);
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    position: relative;
    overflow: hidden;
}

#testimonials::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
}

.testimonial-quote-icon {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    font-size: 2.5rem;
    color: rgba(212, 175, 55, 0.08);
    font-family: var(--font-serif);
    line-height: 1;
    user-select: none;
}

.testimonial-stars {
    display: flex;
    gap: 0.2rem;
}

.testimonial-stars i {
    color: var(--gold);
    font-size: 0.9rem;
    animation: starPop 0.5s ease both;
}

.testimonial-stars i:nth-child(2) {
    animation-delay: 0.08s;
}

.testimonial-stars i:nth-child(3) {
    animation-delay: 0.16s;
}

.testimonial-stars i:nth-child(4) {
    animation-delay: 0.24s;
}

.testimonial-stars i:nth-child(5) {
    animation-delay: 0.32s;
}

.testimonial-text {
    font-family: var(--font-elegant);
    font-style: italic;
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.75;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-glass);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-gold);
}

.testimonial-avatar-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--bg-primary);
    font-weight: 700;
    flex-shrink: 0;
    border: 2px solid var(--gold);
}

.testimonial-author-info .name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.testimonial-author-info .location {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.testimonial-cta-wrap {
    text-align: center;
}

/* ─── Testimonial Modal ──────────────────────────────────────── */
.modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    /* NO animation here — the animation was running on page-load causing
       the backdrop-filter to permanently blur the entire page */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

/* Blur overlay lives on a pseudo-element so it NEVER affects child content */
.modal-backdrop::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(8, 8, 8, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: -1;
}

.modal-backdrop.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.modal-backdrop.open::before {
    opacity: 1;
}

.modal-box {
    background: var(--bg-secondary);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    max-width: 520px;
    width: 100%;
    position: relative;
    z-index: 1;
    /* sits above the ::before blur layer */
    box-shadow: var(--shadow-gold), var(--shadow-deep);
    /* NO animation on base — only animate when the modal is opened */
    transform: scale(0.88) translateY(24px);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
        opacity 0.35s ease;
    overflow-y: auto;
    max-height: 90vh;
}

.modal-backdrop.open .modal-box {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    cursor: pointer;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.modal-close:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: rotate(90deg);
}

.modal-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    outline: none;
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-stars-select {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 0.5rem;
}

.form-stars-select i {
    font-size: 1.4rem;
    color: var(--gold);
    cursor: default;
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT SECTION (Section 6)
═══════════════════════════════════════════════════════════════ */
#contact {
    padding: var(--section-pad);
    background: var(--bg-secondary);
    position: relative;
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 3rem;
    align-items: start;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.contact-card {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-glass);
    background: var(--bg-card);
    transition: all var(--transition-med);
}

.contact-card:hover {
    border-color: var(--border-gold);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.contact-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
}

.contact-card-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
}

.contact-card-value {
    font-size: 0.9rem;
    color: var(--text-primary);
    line-height: 1.5;
    font-weight: 500;
}

.contact-card-value a {
    color: inherit;
    transition: color var(--transition-fast);
}

.contact-card-value a:hover {
    color: var(--gold);
}

/* Social Icons Row */
.contact-social-row {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.contact-social-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    transition: all var(--transition-med);
}

.contact-social-icon:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

/* Map */
.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-gold);
    box-shadow: var(--shadow-gold);
    height: 100%;
    min-height: 420px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    display: block;
    min-height: 420px;
    filter: saturate(0.85) contrast(1.05);
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
.site-footer {
    background: var(--bg-primary);
    padding-top: 4rem;
    position: relative;
}

.footer-top-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0 var(--gutter);
    margin-bottom: 4rem;
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 0.9fr 1.1fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-heading {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.6rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.footer-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 50%;
    border: 1px solid var(--border-gold);
    margin-bottom: 0.75rem;
}

.footer-brand-title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--text-primary);
    line-height: 1.1;
}

.footer-brand-subtitle {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.footer-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.footer-divider-thin {
    height: 1px;
    background: linear-gradient(90deg, var(--border-gold), transparent);
    margin: 1rem 0;
}

.footer-social {
    display: flex;
    gap: 0.6rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: all var(--transition-med);
}

.social-icon:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.footer-contact-list li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.footer-contact-list li i {
    color: var(--gold);
    font-size: 0.85rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
    width: 14px;
}

.footer-contact-list li a:hover {
    color: var(--gold);
}

.footer-quick-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-quick-links li a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
    padding: 0.25rem 0;
}

.footer-quick-links li a i {
    font-size: 0.6rem;
    color: var(--gold);
    transition: transform var(--transition-fast);
}

.footer-quick-links li a:hover {
    color: var(--gold);
    padding-left: 0.25rem;
}

.footer-quick-links li a:hover i {
    transform: translateX(3px);
}

.footer-admin-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.btn-admin-login {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 0.75rem 1.25rem;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    transition: all var(--transition-med);
    width: fit-content;
}

.btn-admin-login:hover {
    background: rgba(212, 175, 55, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.25);
}

.btn-admin-login .fa-arrow-right {
    margin-left: auto;
    font-size: 0.75rem;
    transition: transform var(--transition-fast);
}

.btn-admin-login:hover .fa-arrow-right {
    transform: translateX(4px);
}

.footer-ig-handle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.footer-ig-handle a:hover {
    color: var(--gold);
}

.footer-bottom {
    margin-top: 0;
    padding: 1.5rem 0;
}

.footer-bottom-divider {
    padding: 0 var(--gutter);
    max-width: var(--container-max);
    margin: 0 auto 1.5rem;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-copyright,
.footer-dev-credit {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.dev-link {
    color: var(--gold-light);
    font-weight: 600;
    transition: color var(--transition-fast);
}

.dev-link:hover {
    color: var(--gold);
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════════════════════════ */
.about-hero {
    padding: 5rem 0 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.about-philosophy {
    padding: var(--section-pad);
    position: relative;
}

.about-content-wrap {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 4rem;
    align-items: start;
}

.about-images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    position: sticky;
    top: 120px;
}

.about-img-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-glass);
    aspect-ratio: 3/4;
    transition: all var(--transition-med);
}

.about-img-card:hover {
    border-color: var(--border-gold);
    transform: scale(1.02);
    box-shadow: var(--shadow-gold);
}

.about-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.about-img-card:nth-child(odd) {
    margin-top: 1.5rem;
}

.about-text-body p {
    font-family: var(--font-elegant);
    font-size: 1.05rem;
    line-height: 1.95;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

.about-text-highlight {
    border-left: 3px solid var(--gold);
    padding-left: 1.25rem;
    font-family: var(--font-elegant);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--text-primary);
    line-height: 1.85;
    margin: 2rem 0;
}

/* Philosophy Cards */
.philosophy-section {
    padding: var(--section-pad);
    background: var(--bg-secondary);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.philosophy-card {
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.philosophy-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--gold);
    margin: 0 auto;
    transition: all var(--transition-med);
}

.philosophy-card:hover .philosophy-icon {
    background: rgba(212, 175, 55, 0.25);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
    transform: scale(1.1) rotate(5deg);
}

.philosophy-title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
}

.philosophy-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-family: var(--font-elegant);
}

/* Meet the Artist */
.meet-artist-section {
    padding: var(--section-pad);
    position: relative;
}

.meet-artist-inner {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.artist-img-wrap {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 3/4;
    border: 2px solid var(--border-gold);
    box-shadow: var(--shadow-gold);
}

.artist-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.artist-img-frame {
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: calc(var(--radius-xl) - 6px);
    pointer-events: none;
}

.artist-info-card {
    padding: 2.5rem;
    border-radius: var(--radius-xl);
}

.artist-name-script {
    font-family: var(--font-script);
    font-size: clamp(2.5rem, 4vw, 4rem);
    color: var(--gold);
    line-height: 1;
    display: block;
}

.artist-name-full {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.artist-title-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-full);
    padding: 0.3rem 0.9rem;
    font-size: 0.78rem;
    color: var(--gold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.artist-bio {
    font-family: var(--font-elegant);
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.artist-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
    margin-bottom: 1.5rem;
}

.artist-stat {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.artist-stat-number {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.artist-stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════════
   SPARKLES (floating decorative elements)
═══════════════════════════════════════════════════════════════ */
.sparkle {
    position: absolute;
    pointer-events: none;
    user-select: none;
    color: var(--gold);
    font-size: inherit;
    animation: sparkleTwinkle var(--duration, 3s) ease-in-out var(--delay, 0s) infinite;
    opacity: 0;
}

/* ═══════════════════════════════════════════════════════════════
   IMAGE UPLOAD WIDGET (Testimonial Form)
═══════════════════════════════════════════════════════════════ */
.img-upload-area {
    position: relative;
    border-radius: var(--radius-md);
    border: 2px dashed var(--border-gold);
    background: rgba(212, 175, 55, 0.03);
    transition: all var(--transition-med);
    min-height: 110px;
    overflow: hidden;
}

.img-upload-area:hover,
.img-upload-area.drag-over {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.07);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

.img-upload-area.drag-over {
    transform: scale(1.01);
}

/* Hidden file input — the label acts as the click target */
.img-upload-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
}

/* Upload prompt (visible before image selected) */
.img-upload-prompt {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 1.25rem;
    cursor: pointer;
    min-height: 110px;
    z-index: 1;
    position: relative;
}

.img-upload-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
    transition: all var(--transition-med);
}

.img-upload-area:hover .img-upload-icon {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.1);
}

.img-upload-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold-light);
}

.img-upload-hint {
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* Preview wrapper (visible after image selected) */
.img-preview-wrap {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 1rem;
    position: relative;
    z-index: 3;
}

.img-preview-thumb {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-md);
    object-fit: cover;
    border: 2px solid var(--gold);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
    flex-shrink: 0;
}

.img-preview-label {
    font-size: 0.78rem;
    color: var(--text-secondary);
    word-break: break-all;
    flex: 1;
}

.img-remove-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 80, 80, 0.15);
    border: 1px solid rgba(255, 80, 80, 0.4);
    color: #ff6060;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.75rem;
    transition: all var(--transition-fast);
    flex-shrink: 0;
    margin-left: auto;
}

.img-remove-btn:hover {
    background: rgba(255, 80, 80, 0.3);
    transform: scale(1.15);
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE DESIGN
═══════════════════════════════════════════════════════════════ */

/* ─── Packages grid: single column on small tablet/mobile ──── */
@media (max-width: 1100px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .package-card.featured {
        transform: scale(1);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

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

    .contact-map {
        min-height: 320px;
    }

    .about-content-wrap {
        grid-template-columns: 1fr;
    }

    .about-images-grid {
        position: static;
        grid-template-columns: repeat(4, 1fr);
    }

    .about-img-card:nth-child(odd) {
        margin-top: 0;
    }

    .meet-artist-inner {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .artist-img-wrap {
        aspect-ratio: 1/1;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

@media (max-width: 768px) {
    body {
        padding-top: 80px;
    }

    :root {
        --section-pad: 3.5rem 0;
    }

    /* ── Mobile Nav ── */
    .main-nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(8, 8, 8, 0.97);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border-gold);
        padding: 1.5rem var(--gutter);
        transform: translateY(-110%);
        opacity: 0;
        transition: all var(--transition-med);
        z-index: var(--z-header);
    }

    .main-nav.open {
        transform: translateY(0);
        opacity: 1;
    }

    .main-nav .nav-list {
        flex-direction: column;
        gap: 0.25rem;
    }

    .nav-link {
        padding: 0.9rem 0.75rem;
        font-size: 1rem;
        align-items: flex-start;
    }

    .nav-toggle {
        display: flex;
    }

    .theme-label {
        display: none;
    }

    /* ── Package cards: full-width on mobile ── */
    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Package image: shorten to square-ish on mobile for usability */
    .package-img-wrap {
        aspect-ratio: 4/3;
    }

    .package-img-wrap img {
        object-position: center 20%;
    }

    /* ── Gallery: 2 per row ── */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }

    .gallery-item {
        aspect-ratio: 3/4;
    }

    /* ── Testimonials ── */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    /* ── Footer ── */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    /* ── Philosophy ── */
    .philosophy-grid {
        grid-template-columns: 1fr;
    }

    /* ── Hero ── */
    .hero-banner-wrap {
        aspect-ratio: unset;
        min-height: 75vw;
    }

    .hero-banner-img {
        object-position: center top;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-title-script {
        font-size: clamp(2rem, 12vw, 3.5rem);
    }

    .hero-title-main {
        font-size: clamp(1.3rem, 5vw, 2rem);
    }

    .hero-desc {
        font-size: 0.88rem;
    }

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

    .hero-overlay {
        padding: 0 5%;
    }

    /* ── About ── */
    .about-images-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .artist-info-card {
        padding: 1.5rem;
    }

    /* ── Contact ── */
    .contact-cards-grid {
        grid-template-columns: 1fr;
    }

    .contact-social-row {
        justify-content: center;
    }

    .contact-map {
        min-height: 280px;
    }

    .contact-map iframe {
        min-height: 280px;
    }

    /* ── Modals ── */
    .modal-box {
        padding: 1.5rem;
        border-radius: var(--radius-lg);
    }

    .modal-title {
        font-size: 1.25rem;
    }

    /* ── Image upload widget on mobile ── */
    .img-preview-thumb {
        width: 56px;
        height: 56px;
    }

    .img-upload-prompt {
        min-height: 90px;
    }

    /* ── Add-on cards ── */
    .addon-card {
        width: 170px;
    }

    /* ── Meet Artist ── */
    .meet-artist-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {

    /* ── Package image: even shorter on very small screens ── */
    .package-img-wrap {
        aspect-ratio: 3/2;
    }

    /* ── Gallery: 2-col tight ── */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.4rem;
    }

    .gallery-item {
        aspect-ratio: 1/1;
        border-radius: var(--radius-sm);
    }

    /* ── About images: 2-col ── */
    .about-images-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* ── Footer ── */
    .footer-grid {
        gap: 1.5rem;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    /* ── Hero overlay text ── */
    .hero-eyebrow {
        letter-spacing: 0.2em;
        font-size: 0.75rem;
    }

    .scroll-indicator {
        display: none;
    }

    /* ── Contact ── */
    .contact-card {
        padding: 1rem;
    }

    /* ── Buttons ── */
    .btn {
        font-size: 0.8rem;
        padding: 0.65rem 1.25rem;
    }

    .btn-shimmer {
        font-size: 0.82rem;
        padding: 0.75rem 1.5rem;
    }
}


/* ═══════════════════════════════════════════════════════════════
   LIGHTGALLERY CUSTOM OVERRIDES
   Force LG container to always render above ALL site layers
   (header z:10000, modal z:9000, splash z:9999)
═══════════════════════════════════════════════════════════════ */

/* The LG outer container and backdrop must sit above everything */
#lg-container-1,
.lg-container {
    z-index: 99999 !important;
}

.lg-backdrop {
    z-index: 99998 !important;
    background: rgba(4, 4, 4, 0.97) !important;
}

.lg-outer {
    z-index: 99999 !important;
}

/* Navigation arrows */
.lg-toolbar,
.lg-actions {
    background: transparent !important;
}

.lg-next,
.lg-prev {
    background: rgba(212, 175, 55, 0.15) !important;
    border: 1px solid rgba(212, 175, 55, 0.35) !important;
    border-radius: 50% !important;
    color: var(--gold) !important;
    width: 48px !important;
    height: 48px !important;
}

.lg-next:hover,
.lg-prev:hover {
    background: rgba(212, 175, 55, 0.35) !important;
}

/* Toolbar close button */
.lg-toolbar .lg-close {
    color: var(--gold) !important;
}

.lg-toolbar .lg-close:hover {
    background: rgba(212, 175, 55, 0.2) !important;
}

/* Caption styling */
.lg-sub-html {
    background: linear-gradient(transparent, rgba(8, 8, 8, 0.9)) !important;
    padding: 1.5rem 2rem !important;
}

.lg-caption {
    font-family: var(--font-serif);
    color: var(--gold-light);
    font-size: 0.95rem;
    letter-spacing: 0.05em;
}

/* Thumbnail strip */
.lg-outer .lg-thumb-item.active,
.lg-outer .lg-thumb-item:hover {
    border-color: var(--gold) !important;
}

/* Counter */
.lg-counter {
    color: var(--text-secondary) !important;
}


/* ═══════════════════════════════════════════════════════════════
   PRINT & ACCESSIBILITY
═══════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

@media print {

    .site-header,
    .whatsapp-float,
    #splash-screen,
    .site-footer {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
        padding-top: 0;
    }
}

/* ═══════════════════════════════════════════════════════════════
   INLINE GALLERY PREVIEW & TESTIMONIAL FORM
   (Fixes popup/modal display and locking issues)
═══════════════════════════════════════════════════════════════ */

/* ─── Inline Gallery Preview Box ─── */
.gallery-inline-preview-wrap {
    margin-bottom: 2.5rem;
    width: 100%;
}

.gallery-preview-box {
    position: relative;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    box-shadow: var(--shadow-gold), var(--shadow-deep);
    border-radius: var(--radius-lg);
}

.preview-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    cursor: pointer;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
    z-index: 10;
}

.preview-close-btn:hover {
    background: rgba(212, 175, 55, 0.25);
    transform: rotate(90deg);
}

.preview-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 2rem;
}

.preview-nav-btn {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    cursor: pointer;
    font-size: 1.1rem;
    transition: all var(--transition-med);
    flex-shrink: 0;
}

.preview-nav-btn:hover {
    background: rgba(212, 175, 55, 0.25);
    transform: scale(1.05);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.35);
}

.preview-image-wrap {
    position: relative;
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.preview-image-wrap img {
    max-height: 550px;
    max-width: 100%;
    object-fit: contain;
    border-radius: var(--radius-md);
    border: 1px solid rgba(212, 175, 55, 0.25);
    transition: opacity 0.15s ease-in-out;
}

.preview-caption {
    margin-top: 1.25rem;
    text-align: center;
}

#gallery-preview-title {
    font-family: var(--font-serif);
    color: var(--gold-light);
    font-size: 1.15rem;
    letter-spacing: 0.05em;
    font-weight: 500;
}

/* ─── Testimonial Inline Form ─── */
.testimonial-inline-form-wrap {
    width: 100%;
    max-width: 600px;
    margin: 3rem auto 0 auto;
}

.testimonial-inline-box {
    position: relative;
    padding: 2.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    box-shadow: var(--shadow-gold), var(--shadow-deep);
    border-radius: var(--radius-xl);
}

.testimonial-inline-box .modal-title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    text-align: center;
}

.testimonial-inline-box .modal-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    text-align: center;
}

.testimonial-inline-box .modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    cursor: pointer;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.testimonial-inline-box .modal-close:hover {
    background: rgba(212, 175, 55, 0.25);
    transform: rotate(90deg);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .preview-content {
        flex-direction: column;
        gap: 1.5rem;
        position: relative;
        padding-bottom: 4rem;
    }
    
    .preview-image-wrap {
        order: 1;
    }

    .preview-nav-btn {
        width: 44px;
        height: 44px;
        position: absolute;
        bottom: 0;
    }
    
    .preview-nav-btn.prev {
        left: 20%;
    }
    
    .preview-nav-btn.next {
        right: 20%;
    }

    .testimonial-inline-box {
        padding: 1.75rem;
    }
}