/* ============================================================
   Real Love Spell Caster Shirine — Main Stylesheet
   ============================================================ */
:root {
    --bg: #090614;
    --bg2: #120C26;
    --bg3: #0E0A1F;
    --primary: #8B5CF6;
    --primary-light: #A78BFA;
    --primary-dark: #6D28D9;
    --gold: #F59E0B;
    --gold-light: #FCD34D;
    --gold-deep: #B45309;
    --accent: #C4B5FD;
    --magenta: #EC4899;
    --teal: #14B8A6;
    --text: #F1F5F9;
    --text-muted: #94A3B8;
    --white: #FFFFFF;
    --danger: #EF4444;
    --success: #22C55E;
    --card-bg: rgba(18, 12, 38, 0.85);
    --border: rgba(196, 181, 253, 0.18);
    --font-heading: 'Cinzel', serif;
    --font-body: 'Raleway', sans-serif;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 32px rgba(139, 92, 246, 0.3);
    --shadow-gold: 0 4px 24px rgba(245, 158, 11, 0.35);
    --transition: 0.3s ease;
}

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

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

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: color var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; font-family: var(--font-body); }
input, textarea, select { font-family: var(--font-body); }

/* ── Utilities ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section-padding { padding: 100px 0; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.flex { display: flex; }
.grid { display: grid; }

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 0.35rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 1rem;
}
.section-title span { color: var(--gold); }
.section-subtitle { color: var(--text-muted); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

/* ── Buttons ── */
.btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.85rem 2rem; border-radius: 50px; font-weight: 600;
    font-size: 0.95rem; transition: all var(--transition); cursor: pointer;
    font-family: var(--font-body); letter-spacing: 0.02em;
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white); box-shadow: var(--shadow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(124,58,237,0.45); color: var(--white); }
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #1a0a00; box-shadow: var(--shadow-gold);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(212,175,55,0.5); }
.btn-outline {
    background: transparent; color: var(--white);
    border: 2px solid rgba(255,255,255,0.35);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); background: rgba(212,175,55,0.08); }

/* ── Navbar ── */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 1.25rem 0; transition: all var(--transition);
    background: transparent;
}
.navbar.scrolled {
    background: rgba(15, 10, 30, 0.95);
    backdrop-filter: blur(12px);
    padding: 0.75rem 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.4);
    border-bottom: 1px solid var(--border);
}
.nav-container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo {
    display: flex; align-items: center; gap: 0.6rem;
    font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700;
    color: var(--white);
}
.nav-logo .logo-text { background: linear-gradient(135deg, var(--gold), var(--gold-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.nav-links { display: flex; align-items: center; gap: 0.5rem; }
.nav-links a {
    padding: 0.5rem 0.85rem; border-radius: var(--radius); font-size: 0.9rem; font-weight: 500;
    color: rgba(255,255,255,0.8); transition: all var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); background: rgba(212,175,55,0.1); }
.nav-links a.nav-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white) !important; padding: 0.6rem 1.4rem;
    box-shadow: var(--shadow);
}
.nav-links a.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(124,58,237,0.5); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--transition); display: block; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Hero Section ── */
.hero {
    min-height: 100vh; position: relative; display: flex; align-items: center;
    overflow: hidden; background: var(--bg);
}
.hero-bg-img {
    position: absolute; inset: 0; z-index: 0;
    background-image: url('../images/hero-portrait.png');
    background-size: cover; background-position: center; background-repeat: no-repeat;
    filter: brightness(0.15) saturate(1.5);
}
#starfield { position: absolute; inset: 0; z-index: 0; }
.hero-content { position: relative; z-index: 2; text-align: center; padding: 6rem 0 4rem; width: 100%; }

/* ── Hero Two-Column Layout ── */
.hero-two-col {
    position: relative; z-index: 2;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 3rem; align-items: center;
    min-height: 100vh; padding: 7rem 0 4rem;
}
.hero-text-col { text-align: left; }
.hero-text-col .hero-badge { justify-content: flex-start; }
.hero-text-col .hero-title { text-align: left; }
.hero-text-col .hero-subtitle { margin: 0 0 2.5rem; text-align: left; }
.hero-text-col .hero-btns { justify-content: flex-start; }
.hero-text-col .hero-trust { justify-content: flex-start; }

/* Hero Image Column */
.hero-img-col { display: flex; justify-content: center; align-items: center; }
.hero-portrait-wrap {
    position: relative; width: 420px; max-width: 100%;
}
.hero-portrait-glow {
    position: absolute; inset: -30px; border-radius: 50%;
    background: radial-gradient(circle, rgba(139,92,246,0.45) 0%, rgba(245,158,11,0.15) 50%, transparent 70%);
    filter: blur(30px); animation: pulse-glow 4s ease-in-out infinite;
}
.hero-portrait {
    width: 100%; height: 540px; object-fit: cover; object-position: top center;
    border-radius: 220px 220px 160px 160px;
    border: 3px solid rgba(196,181,253,0.35);
    box-shadow: 0 0 60px rgba(139,92,246,0.4), 0 30px 80px rgba(0,0,0,0.5);
    position: relative; z-index: 1; display: block;
    animation: float 6s ease-in-out infinite;
}
.hero-badge-float {
    position: absolute; z-index: 2;
    background: rgba(18,12,38,0.9); backdrop-filter: blur(10px);
    border: 1px solid rgba(245,158,11,0.4);
    border-radius: 50px; padding: 0.5rem 1rem;
    font-size: 0.82rem; font-weight: 700; color: var(--gold);
    display: flex; align-items: center; gap: 0.4rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    white-space: nowrap;
}
.hero-badge-float--tl { top: 40px; left: -20px; animation: float 5s ease-in-out infinite; }
.hero-badge-float--br { bottom: 60px; right: -20px; animation: float 5s ease-in-out 1.5s infinite; }

@media (max-width: 900px) {
    .hero-two-col { grid-template-columns: 1fr; text-align: center; padding: 6rem 0 3rem; gap: 2rem; }
    .hero-text-col .hero-badge,
    .hero-text-col .hero-title,
    .hero-text-col .hero-subtitle,
    .hero-text-col .hero-btns,
    .hero-text-col .hero-trust { text-align: center; justify-content: center; }
    .hero-portrait { height: 380px; }
    .hero-portrait-wrap { width: 320px; }
    .hero-badge-float--tl { top: 10px; left: 0; }
    .hero-badge-float--br { bottom: 20px; right: 0; }
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(212,175,55,0.12); border: 1px solid rgba(212,175,55,0.3);
    padding: 0.5rem 1.5rem; border-radius: 50px; margin-bottom: 1.5rem;
    font-size: 0.85rem; color: var(--gold); letter-spacing: 0.1em;
    font-family: var(--font-heading); text-transform: uppercase;
    animation: fadeDown 1s ease both;
}
.hero-title {
    font-family: var(--font-heading); font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700; line-height: 1.15; margin-bottom: 1.25rem;
    animation: fadeUp 1s ease 0.2s both;
}
.hero-title .line1 { display: block; color: var(--white); }
.hero-title .line2 { display: block; background: linear-gradient(135deg, var(--gold), var(--gold-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem); color: rgba(255,255,255,0.7); max-width: 600px;
    margin: 0 auto 2.5rem; animation: fadeUp 1s ease 0.4s both;
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; animation: fadeUp 1s ease 0.6s both; }
.hero-art { margin: 3rem auto 0; position: relative; width: 220px; height: 220px; animation: fadeUp 1s ease 0.8s both; }

/* Crystal Ball SVG Art */
.crystal-ball {
    width: 220px; height: 220px; border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, rgba(167,139,250,0.6) 0%, rgba(124,58,237,0.3) 40%, rgba(15,10,30,0.8) 100%);
    border: 2px solid rgba(167,139,250,0.4);
    box-shadow: 0 0 60px rgba(124,58,237,0.5), 0 0 120px rgba(124,58,237,0.2), inset 0 0 40px rgba(167,139,250,0.15);
    animation: pulse-glow 3s ease-in-out infinite;
    position: relative; display: flex; align-items: center; justify-content: center;
}
.crystal-ball::before {
    content: ''; position: absolute; top: 18%; left: 22%; width: 28%; height: 20%;
    background: radial-gradient(ellipse, rgba(255,255,255,0.4) 0%, transparent 100%);
    border-radius: 50%; transform: rotate(-30deg);
}
.crystal-inner { font-size: 4rem; animation: float 4s ease-in-out infinite; }
.crystal-base {
    width: 80px; height: 20px; background: linear-gradient(135deg, var(--gold), rgba(212,175,55,0.5));
    border-radius: 50%; margin: 0.5rem auto 0; box-shadow: var(--shadow-gold);
}
.moon-decorations { position: absolute; inset: -50px; pointer-events: none; }
.moon-phase {
    position: absolute; font-size: 1.5rem; opacity: 0.5;
    animation: orbit 20s linear infinite;
}
.moon-phase:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; }
.moon-phase:nth-child(2) { top: 20%; right: 5%; animation-delay: -5s; }
.moon-phase:nth-child(3) { bottom: 20%; left: 8%; animation-delay: -10s; }
.moon-phase:nth-child(4) { bottom: 10%; right: 8%; animation-delay: -15s; }
.hero-scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2; text-align: center; }
.hero-scroll span { display: block; font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 0.5rem; }
.scroll-arrow { width: 24px; height: 24px; margin: 0 auto; border-right: 2px solid rgba(212,175,55,0.5); border-bottom: 2px solid rgba(212,175,55,0.5); transform: rotate(45deg); animation: bounce 2s ease infinite; }

/* ── Services Section ── */
.services-section { background: var(--bg); padding: 100px 0; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.5rem; }
.service-card {
    background: var(--card-bg); border: 1px solid var(--border);
    border-radius: var(--radius-lg); position: relative;
    overflow: hidden; transition: all var(--transition); cursor: pointer;
    backdrop-filter: blur(10px);
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    transform: scaleX(0); transform-origin: left; transition: transform var(--transition); z-index: 2;
}
.service-card:hover { transform: translateY(-6px); border-color: var(--primary); box-shadow: var(--shadow); }
.service-card:hover::before { transform: scaleX(1); }
/* Service card image */
.service-card-img { height: 200px; overflow: hidden; position: relative; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; display: block; }
.service-card:hover .service-card-img img { transform: scale(1.08); }
.service-card-img-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(9,6,20,0.2) 0%, rgba(9,6,20,0.7) 100%); }
.service-card-body { padding: 1.5rem; }
.service-icon {
    width: 64px; height: 64px; border-radius: var(--radius); margin-bottom: 1.25rem;
    background: linear-gradient(135deg, rgba(139,92,246,0.2), rgba(245,158,11,0.1));
    border: 1px solid rgba(139,92,246,0.3); display: flex; align-items: center; justify-content: center;
    font-size: 1.75rem; transition: all var(--transition);
}
.service-card:hover .service-icon { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); transform: scale(1.1); }
.service-card h3, .service-card-body h3 { font-family: var(--font-heading); font-size: 1.15rem; color: var(--white); margin-bottom: 0.75rem; }
.service-card p, .service-card-body p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; margin-bottom: 1.25rem; }
.service-meta { display: flex; gap: 0.75rem; margin-bottom: 1.25rem; flex-wrap: wrap; }
.service-meta span { font-size: 0.78rem; color: var(--gold); background: rgba(245,158,11,0.1); padding: 0.25rem 0.75rem; border-radius: 50px; border: 1px solid rgba(245,158,11,0.2); }
.service-link { color: var(--accent); font-size: 0.9rem; font-weight: 600; display: flex; align-items: center; gap: 0.4rem; transition: gap var(--transition); }
.service-card:hover .service-link { gap: 0.8rem; color: var(--gold); }

/* ── About Section ── */
.about-section { background: var(--bg3); padding: 100px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-art { position: relative; display: flex; align-items: center; justify-content: center; }
.portrait-frame {
    width: 340px; height: 420px; border-radius: 180px 180px 120px 120px;
    background: radial-gradient(ellipse at center, rgba(139,92,246,0.4) 0%, rgba(9,6,20,0.9) 70%);
    border: 3px solid rgba(196,181,253,0.35);
    box-shadow: 0 0 80px rgba(139,92,246,0.4), 0 0 160px rgba(139,92,246,0.15), inset 0 0 40px rgba(139,92,246,0.1);
    display: flex; align-items: flex-end; justify-content: center;
    position: relative; overflow: hidden; animation: pulse-glow 4s ease-in-out infinite;
}
.portrait-frame--photo { padding: 0; }
.portrait-frame--photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; border-radius: inherit; }
.portrait-frame--photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(139,92,246,0.3) 100%); border-radius: inherit; pointer-events: none; }
.portrait-svg { width: 280px; opacity: 0.9; display: none; }
.aura-ring {
    position: absolute; border-radius: 50%;
    border: 1px solid rgba(167,139,250,0.2); animation: expandRing 4s ease-in-out infinite;
}
.aura-ring:nth-child(1) { width: 380px; height: 460px; animation-delay: 0s; }
.aura-ring:nth-child(2) { width: 420px; height: 500px; animation-delay: 1s; }
.aura-ring:nth-child(3) { width: 460px; height: 540px; animation-delay: 2s; }
.floating-stars { position: absolute; inset: -30px; pointer-events: none; }
.fstar { position: absolute; color: var(--gold); font-size: 1rem; opacity: 0; animation: starAppear 3s ease infinite; }
.fstar:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; }
.fstar:nth-child(2) { top: 30%; right: 0%; animation-delay: 1s; }
.fstar:nth-child(3) { bottom: 25%; left: 0%; animation-delay: 2s; }
.fstar:nth-child(4) { top: 5%; right: 15%; animation-delay: 0.5s; }
.about-content { }
.about-content h2 { font-family: var(--font-heading); font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--white); margin-bottom: 1rem; line-height: 1.3; }
.about-content h2 span { color: var(--gold); }
.about-content p { color: var(--text-muted); margin-bottom: 1rem; line-height: 1.8; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin: 1.5rem 0; }
.about-feature { display: flex; align-items: center; gap: 0.6rem; font-size: 0.9rem; color: var(--text); }
.about-feature i { color: var(--gold); font-size: 0.8rem; }
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.stat-item { text-align: center; }
.stat-number { font-family: var(--font-heading); font-size: 2rem; color: var(--gold); font-weight: 700; }
.stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.25rem; }

/* ── How It Works ── */
.how-section { background: var(--bg); padding: 100px 0; }
.steps-container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; position: relative; margin-top: 2rem; }
.steps-container::before {
    content: ''; position: absolute; top: 50px; left: calc(16.67% + 30px); right: calc(16.67% + 30px);
    height: 2px; background: linear-gradient(90deg, var(--primary), var(--gold), var(--primary));
}
.step-card { text-align: center; padding: 2rem 1.5rem; position: relative; }
.step-number {
    width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-heading); font-size: 1.75rem; font-weight: 700; color: var(--white);
    box-shadow: 0 0 30px rgba(124,58,237,0.5); position: relative; z-index: 1;
    border: 3px solid var(--bg); transition: all var(--transition);
}
.step-card:hover .step-number { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: #1a0a00; box-shadow: var(--shadow-gold); }
.step-icon { font-size: 2rem; margin-bottom: 1rem; }
.step-card h3 { font-family: var(--font-heading); font-size: 1.15rem; color: var(--white); margin-bottom: 0.75rem; }
.step-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; }

/* ── Testimonials ── */
.testimonials-section { background: var(--bg3); padding: 100px 0; }
.testimonials-slider { position: relative; overflow: hidden; }
.testimonials-track { display: flex; transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.testimonial-card {
    min-width: 100%; padding: 0 1rem;
}
.testimonial-inner {
    background: var(--card-bg); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 2.5rem 3rem; max-width: 800px;
    margin: 0 auto; text-align: center; position: relative; backdrop-filter: blur(10px);
}
.testimonial-inner::before {
    content: '\201C'; font-family: Georgia, serif; font-size: 8rem; line-height: 0;
    position: absolute; top: 2.5rem; left: 2rem; color: rgba(124,58,237,0.2);
    pointer-events: none;
}
.testimonial-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 1.25rem; letter-spacing: 2px; }
.testimonial-text { font-size: 1.05rem; color: var(--text); line-height: 1.85; margin-bottom: 2rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 1rem; }
.author-avatar {
    width: 52px; height: 52px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--gold));
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-heading); font-weight: 700; font-size: 1rem; color: var(--white);
}
.author-info { text-align: left; }
.author-name { font-weight: 700; color: var(--white); font-size: 1rem; }
.author-detail { font-size: 0.82rem; color: var(--text-muted); }
.slider-controls { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 2rem; }
.slider-btn {
    width: 44px; height: 44px; border-radius: 50%; background: var(--card-bg);
    border: 1px solid var(--border); color: var(--text); font-size: 0.9rem;
    display: flex; align-items: center; justify-content: center; transition: all var(--transition);
    cursor: pointer;
}
.slider-btn:hover { background: var(--primary); border-color: var(--primary); }
.slider-dots { display: flex; gap: 0.5rem; }
.slider-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); cursor: pointer; transition: all var(--transition); border: none; }
.slider-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }

/* ── Gallery Section ── */
.gallery-section { background: var(--bg); padding: 100px 0; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.gallery-item {
    border-radius: var(--radius-lg); overflow: hidden; position: relative;
    height: 280px; cursor: pointer; transition: all var(--transition);
    border: 1px solid var(--border); background: var(--bg2);
}
.gallery-item:hover { transform: scale(1.03); box-shadow: var(--shadow); }
.gallery-item img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-art {
    width: 100%; height: 100%; display: flex; flex-direction: column;
    align-items: center; justify-content: center; position: relative;
}
.gallery-icon { font-size: 4rem; margin-bottom: 1rem; filter: drop-shadow(0 0 20px rgba(255,255,255,0.3)); }
.gallery-caption {
    position: absolute; bottom: 0; left: 0; right: 0; padding: 1.25rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.75));
    color: var(--white); font-weight: 600; font-size: 0.9rem;
    text-align: center; font-family: var(--font-heading);
    letter-spacing: 0.02em;
}

/* ── Blog Section ── */
.blog-section { background: var(--bg3); padding: 100px 0; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.blog-card {
    background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius-lg);
    overflow: hidden; transition: all var(--transition); backdrop-filter: blur(10px);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--primary); }
.blog-image {
    height: 200px; display: flex; align-items: center; justify-content: center;
    font-size: 3.5rem; position: relative; overflow: hidden;
}
.blog-image img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.blog-image::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.25); pointer-events: none; }
.blog-body { padding: 1.5rem; }
.blog-date { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.blog-body h3 { font-family: var(--font-heading); font-size: 1.05rem; color: var(--white); margin-bottom: 0.75rem; line-height: 1.4; }
.blog-body p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.65; margin-bottom: 1rem; }
.blog-link { color: var(--gold); font-size: 0.88rem; font-weight: 600; display: flex; align-items: center; gap: 0.4rem; transition: gap var(--transition); }
.blog-card:hover .blog-link { gap: 0.8rem; }

/* ── Contact Section ── */
.contact-section { background: var(--bg); padding: 100px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; }
.contact-info-side h3 { font-family: var(--font-heading); font-size: 1.5rem; color: var(--white); margin-bottom: 1rem; }
.contact-info-side p { color: var(--text-muted); line-height: 1.8; margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.25rem; }
.cdetail { display: flex; gap: 1rem; align-items: flex-start; }
.cdetail-icon {
    width: 44px; height: 44px; flex-shrink: 0; border-radius: var(--radius);
    background: rgba(124,58,237,0.15); border: 1px solid rgba(124,58,237,0.25);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 1rem;
}
.cdetail-text strong { display: block; color: var(--white); font-size: 0.9rem; margin-bottom: 0.25rem; }
.cdetail-text span { color: var(--text-muted); font-size: 0.88rem; }
.contact-form { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.5rem; backdrop-filter: blur(10px); }
.contact-form h3 { font-family: var(--font-heading); font-size: 1.4rem; color: var(--white); margin-bottom: 1.75rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text); margin-bottom: 0.5rem; }
.form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 0.85rem 1.1rem; border-radius: var(--radius);
    background: rgba(255,255,255,0.05); border: 1px solid var(--border);
    color: var(--text); font-size: 0.9rem; transition: all var(--transition);
    outline: none; -webkit-appearance: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--primary); background: rgba(124,58,237,0.08); box-shadow: 0 0 0 3px rgba(124,58,237,0.1); }
.form-group select option { background: var(--bg2); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-msg { padding: 0.85rem 1.1rem; border-radius: var(--radius); margin-top: 1rem; font-size: 0.9rem; display: none; }
.form-msg.success { background: rgba(16,185,129,0.15); border: 1px solid rgba(16,185,129,0.3); color: #34D399; display: block; }
.form-msg.error { background: rgba(225,29,72,0.15); border: 1px solid rgba(225,29,72,0.3); color: #F87171; display: block; }

/* ── Footer ── */
.footer { background: #0A0618; border-top: 1px solid var(--border); }
.footer-top { padding: 5rem 0 3rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 3rem; }
.footer-logo { display: flex; align-items: center; font-family: var(--font-heading); font-size: 1.4rem; color: var(--gold); font-weight: 700; margin-bottom: 1rem; }
.footer-col p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.8; }
.footer-col h4 { font-family: var(--font-heading); font-size: 1rem; color: var(--white); margin-bottom: 1.25rem; position: relative; padding-bottom: 0.75rem; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--gold); }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.footer-social a {
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(255,255,255,0.06); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center; color: var(--text-muted);
    font-size: 0.9rem; transition: all var(--transition);
}
.footer-social a:hover { background: var(--primary); border-color: var(--primary); color: var(--white); transform: translateY(-2px); }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { color: var(--text-muted); font-size: 0.88rem; display: flex; align-items: center; gap: 0.5rem; transition: all var(--transition); }
.footer-links a i { font-size: 0.7rem; }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact { display: flex; flex-direction: column; gap: 0.85rem; }
.contact-item { display: flex; gap: 0.75rem; align-items: flex-start; }
.contact-item i { color: var(--gold); margin-top: 3px; flex-shrink: 0; font-size: 0.9rem; }
.contact-item span { color: var(--text-muted); font-size: 0.85rem; line-height: 1.5; }
.footer-newsletter { display: flex; margin-top: 0.75rem; }
.footer-newsletter input { flex: 1; padding: 0.7rem 1rem; background: rgba(255,255,255,0.06); border: 1px solid var(--border); border-right: none; border-radius: var(--radius) 0 0 var(--radius); color: var(--text); font-size: 0.85rem; outline: none; }
.footer-newsletter button { padding: 0.7rem 1rem; background: var(--gold); color: #1a0a00; border-radius: 0 var(--radius) var(--radius) 0; font-size: 0.85rem; transition: all var(--transition); cursor: pointer; border: none; }
.footer-newsletter button:hover { background: var(--gold-light); }
.footer-bottom { border-top: 1px solid var(--border); padding: 1.5rem 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { color: var(--text-muted); font-size: 0.82rem; }

/* ── Floating Elements ── */
.whatsapp-float {
    position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
    width: 56px; height: 56px; border-radius: 50%;
    background: #25D366; color: var(--white); font-size: 1.6rem;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: all var(--transition);
    animation: pulse-glow-green 2s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1); background: #20BA5A; }
.back-to-top {
    position: fixed; bottom: 5.5rem; right: 2.1rem; z-index: 998;
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--primary); color: var(--white); font-size: 0.9rem;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow); transition: all var(--transition);
    opacity: 0; pointer-events: none; border: none; cursor: pointer;
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* ── Page Hero (inner pages) ── */
.page-hero {
    padding: 10rem 0 5rem; text-align: center; background: var(--bg3);
    border-bottom: 1px solid var(--border); position: relative; overflow: hidden;
}
.page-hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(124,58,237,0.15) 0%, transparent 70%);
}
.page-hero h1 { font-family: var(--font-heading); font-size: clamp(2rem, 5vw, 3.5rem); color: var(--white); position: relative; }
.page-hero h1 span { color: var(--gold); }
.page-hero p { color: var(--text-muted); max-width: 600px; margin: 1rem auto 0; position: relative; }
.breadcrumb { display: flex; justify-content: center; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1rem; position: relative; }
.breadcrumb a { color: var(--accent); }
.breadcrumb span { color: var(--text-muted); }

/* ── Booking Page ── */
.booking-section { background: var(--bg); padding: 80px 0; }
.booking-grid { display: grid; grid-template-columns: 1fr 1.8fr; gap: 3rem; }
.booking-info { }
.booking-info h3 { font-family: var(--font-heading); font-size: 1.4rem; color: var(--white); margin-bottom: 1rem; }
.booking-info p { color: var(--text-muted); line-height: 1.8; margin-bottom: 1.5rem; }
.booking-perks { display: flex; flex-direction: column; gap: 1rem; }
.perk { display: flex; gap: 1rem; align-items: center; }
.perk-icon { width: 42px; height: 42px; flex-shrink: 0; border-radius: var(--radius); background: rgba(212,175,55,0.1); border: 1px solid rgba(212,175,55,0.2); display: flex; align-items: center; justify-content: center; color: var(--gold); }
.perk-text strong { display: block; color: var(--white); font-size: 0.9rem; }
.perk-text span { color: var(--text-muted); font-size: 0.82rem; }
.booking-form-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.5rem; backdrop-filter: blur(10px); }
.booking-form-card h3 { font-family: var(--font-heading); font-size: 1.4rem; color: var(--white); margin-bottom: 2rem; }

/* ── Testimonials Page ── */
.testimonials-masonry { columns: 3; gap: 1.25rem; }
.tcard {
    break-inside: avoid; margin-bottom: 1.25rem;
    background: var(--card-bg); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 1.75rem; backdrop-filter: blur(10px);
}
.tcard-stars { color: var(--gold); margin-bottom: 1rem; }
.tcard-text { color: var(--text-muted); font-size: 0.9rem; line-height: 1.75; margin-bottom: 1.25rem; font-style: italic; }
.tcard-author { display: flex; align-items: center; gap: 0.75rem; }
.tcard-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--gold)); display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 700; color: var(--white); }
.tcard-name { font-weight: 700; color: var(--white); font-size: 0.9rem; }
.tcard-loc { font-size: 0.78rem; color: var(--text-muted); }
.submit-testimonial { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.5rem; margin-top: 3rem; backdrop-filter: blur(10px); }
.submit-testimonial h3 { font-family: var(--font-heading); color: var(--white); margin-bottom: 1.5rem; }
.star-rating { display: flex; flex-direction: row-reverse; justify-content: flex-end; gap: 0.25rem; margin-bottom: 0.5rem; }
.star-rating input { display: none; }
.star-rating label { font-size: 1.5rem; color: var(--border); cursor: pointer; transition: color var(--transition); }
.star-rating input:checked ~ label, .star-rating label:hover, .star-rating label:hover ~ label { color: var(--gold); }

/* ── Services Page ── */
.services-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.service-detail-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.5rem; backdrop-filter: blur(10px); transition: all var(--transition); }
.service-detail-card:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateY(-4px); }
.service-detail-header { display: flex; align-items: center; gap: 1.25rem; margin-bottom: 1.5rem; }
.service-detail-icon { width: 72px; height: 72px; border-radius: var(--radius-lg); background: linear-gradient(135deg, rgba(124,58,237,0.2), rgba(212,175,55,0.1)); border: 1px solid rgba(124,58,237,0.3); display: flex; align-items: center; justify-content: center; font-size: 2rem; flex-shrink: 0; }
.service-detail-card h3 { font-family: var(--font-heading); font-size: 1.3rem; color: var(--white); }
.service-detail-meta { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 0.5rem; }
.meta-badge { font-size: 0.75rem; padding: 0.2rem 0.75rem; border-radius: 50px; background: rgba(212,175,55,0.1); border: 1px solid rgba(212,175,55,0.2); color: var(--gold); }
.service-detail-card p { color: var(--text-muted); line-height: 1.8; margin-bottom: 1.5rem; }
.service-includes { margin-bottom: 1.5rem; }
.service-includes h4 { font-size: 0.85rem; color: var(--accent); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.75rem; }
.service-includes li { display: flex; align-items: center; gap: 0.5rem; color: var(--text-muted); font-size: 0.88rem; margin-bottom: 0.4rem; }
.service-includes li i { color: var(--gold); font-size: 0.75rem; }

/* ── Blog Page ── */
.blog-detail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

/* ── Scroll Animations ── */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-in { opacity: 0; transition: opacity 0.7s ease; }
.fade-in.visible { opacity: 1; }

/* ── Animations ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes pulse-glow { 0%, 100% { box-shadow: 0 0 60px rgba(124,58,237,0.5), 0 0 120px rgba(124,58,237,0.2); } 50% { box-shadow: 0 0 90px rgba(124,58,237,0.7), 0 0 160px rgba(124,58,237,0.35); } }
@keyframes pulse-glow-green { 0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); } 50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7); } }
@keyframes bounce { 0%, 100% { transform: rotate(45deg) translateY(0); } 50% { transform: rotate(45deg) translateY(6px); } }
@keyframes twinkle { 0%, 100% { opacity: 0.1; transform: scale(1); } 50% { opacity: 1; transform: scale(1.3); } }
@keyframes orbit { 0% { transform: rotate(0deg) translateX(4px); } 100% { transform: rotate(360deg) translateX(4px); } }
@keyframes expandRing { 0%, 100% { opacity: 0.2; transform: scale(1); } 50% { opacity: 0.05; transform: scale(1.05); } }
@keyframes starAppear { 0%, 100% { opacity: 0; transform: scale(0.5); } 50% { opacity: 0.9; transform: scale(1); } }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-art { order: -1; }
    .portrait-frame { width: 280px; height: 340px; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .testimonials-masonry { columns: 2; }
    .booking-grid { grid-template-columns: 1fr; }
    .services-detail-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .nav-links { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(15,10,30,0.97); flex-direction: column; align-items: center; justify-content: center; gap: 1.5rem; z-index: 999; }
    .nav-links.open { display: flex; }
    .nav-links a { font-size: 1.1rem; }
    .hamburger { display: flex; z-index: 1000; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .blog-grid, .blog-detail-grid { grid-template-columns: 1fr 1fr; }
    .steps-container { grid-template-columns: 1fr; }
    .steps-container::before { display: none; }
    .footer-grid { grid-template-columns: 1fr; }
    .testimonials-masonry { columns: 1; }
    .form-row { grid-template-columns: 1fr; }
    .stats-row { grid-template-columns: repeat(3, 1fr); }
    .about-features { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .blog-grid, .blog-detail-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .hero-btns { flex-direction: column; align-items: center; }
    .stats-row { grid-template-columns: 1fr; }
    .testimonial-inner { padding: 2rem 1.5rem; }
}
