:root {
    /* Color Palette */
    --midnight-navy: #222B56;    /* Deep Royal Navy */
    --deep-indigo: #0B4683;      /* Rich Ocean Blue */
    --vibrant-teal: #1A9695;      /* Vibrant Teal */
    --metallic-gold: #D69510;     /* Metallic Gold */
    --champagne-gold: #F2D67A;    /* Soft Champagne Gold */
    --soft-white: #F8FAFF;
    --muted-text: #BFC8E6;
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
    --glass-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

/* Base Reset */
* {
    margin: 0; padding: 0; box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--midnight-navy);
    color: var(--soft-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Film Grain Overlay */
body::after {
    content: "";
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/7/76/1k_Grain.png');
    opacity: 0.03;
    pointer-events: none;
    z-index: 9999;
}

/* Typography Updates for Magical Vibe */
h1, h2, h3, h4 { font-family: 'Metamorphous', serif; letter-spacing: 1px; }

h2 {
    font-family: 'Metamorphous', serif;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

/* Gold Shine Animation for Headings */
.hero h1, .section-header h2, .about-text h2 {
    background: linear-gradient(to right, #fff 20%, var(--metallic-gold) 40%, var(--metallic-gold) 60%, #fff 80%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: goldShine 6s linear infinite;
}

@keyframes goldShine {
    to { background-position: 200% center; }
}

.hero-label, .trust-icons span, .footer-links h4, .footer-contact h4 {
    font-family: 'Aref Ruqaa', serif;
    letter-spacing: 2px;
}

.logo .brand { font-family: 'Metamorphous', serif; font-size: 1.3rem; font-weight: 700; color: var(--soft-white); }
.logo .founder { font-family: 'Aref Ruqaa', serif; font-size: 1rem; color: var(--metallic-gold); font-weight: 700; }

.script {
    font-family: 'Great Vibes', cursive;
    font-size: 2.5rem;
    color: var(--vibrant-teal);
    display: block;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(26, 150, 149, 0.4);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Nav */
.main-header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.main-header.scrolled {
    background: rgba(34, 43, 86, 0.95);
    backdrop-filter: blur(15px);
    padding: 15px 0;
    box-shadow: 0 5px 25px rgba(0,0,0,0.3);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo { display: flex; flex-direction: column; }

.desktop-nav { display: none; }

.hamburger {
    background: none; border: none; cursor: pointer;
    display: flex; flex-direction: column; gap: 6px;
}

.hamburger span {
    display: block; width: 28px; height: 2px;
    background: var(--soft-white); transition: 0.3s;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed; top: 0; right: -100%;
    width: 100%; height: 100%;
    background: var(--midnight-navy);
    z-index: 1001;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    transition: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.mobile-menu.active { right: 0; }

.mobile-menu ul { list-style: none; text-align: center; }
.mobile-menu li { margin: 25px 0; }
.mobile-menu a {
    text-decoration: none; color: var(--soft-white);
    font-family: 'Metamorphous', serif; font-size: 1.8rem;
}

.mobile-menu .close-menu {
    position: absolute; top: 30px; right: 30px;
    background: none; border: none; color: var(--soft-white); font-size: 3rem; cursor: pointer;
}

/* Sticky Booking Bar */
.mobile-booking-bar {
    position: fixed; bottom: 0; left: 0; width: 100%;
    display: flex; z-index: 999;
    border-top: 1px solid var(--glass-border);
}

.mobile-booking-bar a {
    flex: 1; text-align: center; padding: 18px;
    text-decoration: none; font-weight: 700; font-size: 0.9rem;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    text-transform: uppercase; letter-spacing: 1px;
}

.book-now-btn { background: var(--vibrant-teal); color: #fff; }
.whatsapp-btn { background: #25D366; color: #fff; }
.whatsapp-btn img { width: 22px; }

/* Hero Section */
.hero {
    position: relative;
    width: 100%; height: 100vh; min-height: 650px;
    display: flex; align-items: center; justify-content: center;
    background: url('https://images.unsplash.com/photo-1544084944-15269ec7b5a0?auto=format&fit=crop&q=80&w=2832') center/cover;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(34, 43, 86, 0.6), rgba(34, 43, 86, 0.95));
}

#particles-container {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none; z-index: 1;
}

.hero-content {
    position: relative; z-index: 2; text-align: center;
}

.hero-label {
    text-transform: uppercase; letter-spacing: 4px; font-size: 0.75rem;
    color: var(--champagne-gold); margin-bottom: 1.5rem; display: block;
}

.hero h1 { font-family: 'Metamorphous', serif; font-size: 3.5rem; line-height: 1.2; margin-bottom: 2rem; }
.hero h1 .accent { font-family: 'Aref Ruqaa', serif; font-style: normal; font-weight: 700; color: var(--champagne-gold); }

.hero p {
    font-size: 1.1rem; color: var(--muted-text);
    max-width: 600px; margin: 0 auto 3rem; font-weight: 300;
}

/* Global Section Spacing */
section { padding: 100px 0; }

.hero-actions { 
    display: flex; 
    flex-direction: column; 
    gap: 1.5rem; 
    align-items: center; 
    justify-content: center;
}

.btn {
    padding: 16px 40px; border-radius: 5px;
    text-decoration: none; font-weight: 700; transition: 0.4s;
    display: inline-block; cursor: pointer; border: none;
    text-transform: uppercase; letter-spacing: 2px; font-size: 0.85rem;
}

.btn.primary {
    background: var(--vibrant-teal); color: #fff;
    box-shadow: 0 10px 30px rgba(26, 150, 149, 0.4), 0 0 10px rgba(26, 150, 149, 0.2);
}

.btn.primary:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 15px 40px rgba(26, 150, 149, 0.6), 0 0 20px rgba(26, 150, 149, 0.4); 
}

.btn.secondary {
    background: rgba(255,255,255,0.05); color: #fff;
    border: 1px solid var(--glass-border); backdrop-filter: blur(10px);
}

.btn.secondary:hover { background: rgba(255,255,255,0.1); }

/* Trust Bar */
.trust-bar {
    background: #1a2244; padding: 25px 0;
    border-bottom: 1px solid var(--glass-border);
}

.trust-icons {
    display: flex; justify-content: space-around; flex-wrap: wrap; gap: 20px;
    font-size: 0.8rem; color: var(--muted-text); text-transform: uppercase; letter-spacing: 2px;
}

/* ==========================================================================
   SERVICE CARDS - MAGICAL BORDERS
   ========================================================================== */

.services { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 60px; }

.service-filters {
    display: flex; overflow-x: auto; padding: 15px 0; gap: 12px;
    margin-top: 30px; scrollbar-width: none;
}
.service-filters::-webkit-scrollbar { display: none; }

.filter-btn {
    background: var(--glass-bg); border: 1px solid var(--glass-border);
    color: var(--soft-white); padding: 10px 25px; border-radius: 30px;
    white-space: nowrap; cursor: pointer; transition: 0.3s;
}
.filter-btn.active { background: var(--vibrant-teal); border-color: var(--vibrant-teal); }

.services-grid {
    display: grid; gap: 50px;
    padding-bottom: 40px;
    perspective: 1500px; /* Isolated Perspective */
}

.service-card {
    position: relative;
    height: 520px;
    width: 100%;
    cursor: pointer;
    background: transparent;
}

/* Physical Stack Shadow */
.service-card::after {
    content: '';
    position: absolute; top: 10px; right: -12px;
    width: 100%; height: 100%;
    background: var(--deep-indigo);
    border: 1px solid rgba(214, 149, 16, 0.2);
    border-radius: 15px;
    z-index: 1;
    transform: rotate(3deg);
    transition: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    pointer-events: none;
}

.service-card.flipped::after { transform: rotate(-3deg) translateX(-15px); opacity: 0.4; }

.card-inner {
    position: relative; width: 100%; height: 100%;
    transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-style: preserve-3d;
    z-index: 2;
}

.service-card.flipped .card-inner { transform: rotateY(180deg); }

.card-front, .card-back {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    -webkit-backface-visibility: hidden; backface-visibility: hidden;
    border-radius: 15px;
    background: var(--deep-indigo);
    border: 3px solid var(--metallic-gold);
    display: flex; flex-direction: column;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6), inset 0 0 15px rgba(214, 149, 16, 0.2);
    overflow: hidden;
}

/* Designer Inner Border */
.card-front::after, .card-back::after {
    content: '';
    position: absolute; top: 8px; left: 8px; right: 8px; bottom: 8px;
    border: 1px solid rgba(242, 214, 122, 0.3);
    border-radius: 10px;
    pointer-events: none;
    z-index: 5;
}

/* Magical Corner Ornaments */
.card-front::before, .card-back::before {
    content: '✦'; position: absolute; top: 12px; left: 12px;
    color: var(--champagne-gold); font-size: 18px; z-index: 10;
    text-shadow: 0 0 8px var(--metallic-gold);
}

/* Additional corners for 'Designer' look */
.card-inner::before, .card-inner::after {
    content: '✦'; position: absolute; bottom: 12px; z-index: 10;
    color: var(--champagne-gold); font-size: 18px;
    text-shadow: 0 0 8px var(--metallic-gold);
    transition: 0.5s;
    pointer-events: none;
}
.card-inner::before { left: 12px; }
.card-inner::after { right: 12px; }

.service-card:hover .card-inner::before, 
.service-card:hover .card-inner::after {
    transform: scale(1.2) rotate(90deg);
    color: var(--vibrant-teal);
}

/* Enhanced Glow for Cards */
.service-card:hover .card-front, 
.service-card:hover .card-back {
    box-shadow: 0 15px 50px rgba(0,0,0,0.8), 0 0 20px rgba(26, 150, 149, 0.3);
}

.card-back { transform: rotateY(180deg); }

.card-inner * { -webkit-backface-visibility: hidden; backface-visibility: hidden; }

/* Face Content */
.card-image {
    width: 100%; height: 250px; overflow: hidden;
    border-radius: 13px 13px 0 0;
    border-bottom: 1px solid rgba(214, 149, 16, 0.3);
}

.card-image img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.7) contrast(1.1); }

.front-details {
    flex-grow: 1; display: flex; flex-direction: column;
    justify-content: center; align-items: center; padding: 25px; text-align: center;
}

.card-front h3 {
    font-family: 'Metamorphous', serif;
    font-size: 1.1rem;
    color: var(--metallic-gold);
    text-transform: uppercase;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 12px;
}

.card-front h3::after {
    content: '⎯⎯⎯ ✧ ⎯⎯⎯';
    position: absolute; bottom: 0; left: 50%;
    transform: translateX(-50%);
    font-size: 0.6rem;
    color: var(--metallic-gold);
    letter-spacing: 3px;
    opacity: 0.6;
}

.card-front .price { color: var(--champagne-gold); font-weight: 600; font-size: 1.3rem; }

.back-details {
    height: 100%; padding: 40px 30px;
    display: flex; flex-direction: column; justify-content: space-between; text-align: center;
}

.card-back .summary { font-size: 1.1rem; color: var(--metallic-gold); font-weight: 700; margin-bottom: 15px; }
.card-back .description {
    font-size: 0.9rem; color: var(--muted-text); line-height: 1.6;
    overflow-y: auto; max-height: 180px; padding-right: 5px;
}
.card-back .description::-webkit-scrollbar { width: 3px; }
.card-back .description::-webkit-scrollbar-thumb { background: var(--metallic-gold); }

.card-actions { display: flex; flex-direction: column; gap: 12px; width: 100%; z-index: 10; }

.card-actions .btn {
    padding: 14px; font-size: 0.85rem; letter-spacing: 1px; width: 100%; border-radius: 8px;
}
.card-book { background: var(--vibrant-teal) !important; color: #fff !important; }
.card-wa { background: transparent !important; border: 1px solid var(--metallic-gold) !important; color: var(--metallic-gold) !important; }

.card-badge {
    position: absolute; top: 20px; right: 20px; z-index: 10;
    font-size: 0.6rem; padding: 5px 12px;
    background: rgba(34, 43, 86, 0.9); border: 1px solid var(--metallic-gold);
    color: var(--metallic-gold); border-radius: 20px; font-weight: 700;
}

/* Sections Reveal Effect */
.reveal {
    opacity: 0; transform: translateY(40px);
    transition: 1s cubic-bezier(0.23, 1, 0.32, 1);
}
.reveal.active { opacity: 1; transform: translateY(0); }

/* About Section */
.about { padding: 120px 0; background: rgba(0,0,0,0.3); }
.about .grid { display: grid; gap: 60px; align-items: center; }

.about .about-text h2 { margin-bottom: 1.5rem; }

.image-frame { position: relative; padding: 15px; border: 1px solid var(--metallic-gold); }
.image-frame img { width: 100%; display: block; filter: sepia(0.2); }

/* How It Works */
.how-it-works { padding: 120px 0; }
.steps-grid { display: grid; gap: 40px; margin-top: 80px; }
.step {
    text-align: center; padding: 40px 30px;
    background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 20px;
}
.step-num { font-size: 4rem; color: rgba(214, 149, 16, 0.1); margin-bottom: -20px; }
.step h4 { color: var(--metallic-gold); margin-bottom: 15px; }

/* Testimonials */
.testimonials { padding: 120px 0; background: linear-gradient(to bottom, var(--midnight-navy), var(--deep-indigo)); }
.testimonial-carousel { overflow: hidden; position: relative; max-width: 850px; margin: 50px auto 0; }
.testimonial-track { display: flex; transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1); }
.testimonial-card {
    min-width: 100%; padding: 80px 50px;
    background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 25px;
    text-align: center; backdrop-filter: blur(15px);
}
.testimonial-card p { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.6rem; margin-bottom: 2.5rem; }
.testimonial-card .client { color: var(--vibrant-teal); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; }

.carousel-dots { display: flex; justify-content: center; gap: 15px; margin-top: 40px; }
.dot { width: 10px; height: 10px; background: rgba(255,255,255,0.2); border-radius: 50%; cursor: pointer; }
.dot.active { background: var(--metallic-gold); box-shadow: 0 0 10px var(--metallic-gold); }

/* FAQ */
.faq { padding: 120px 0; }
.faq-list { max-width: 800px; margin: 50px auto 0; }
.faq-list details { background: var(--glass-bg); margin-bottom: 20px; border-radius: 12px; border: 1px solid var(--glass-border); }
.faq-list summary { padding: 30px; cursor: pointer; font-family: 'Metamorphous', serif; display: flex; justify-content: space-between; }
.faq-list summary::after { content: '+'; color: var(--metallic-gold); }
.faq-list details[open] summary::after { content: '−'; }
.faq-list p { padding: 0 30px 30px; color: var(--muted-text); }

/* Final CTA */
.final-cta { padding: 120px 0 160px; }
.glass-panel {
    background: var(--glass-bg); backdrop-filter: blur(40px);
    border: 1px solid var(--glass-border); padding: 80px 40px; border-radius: 40px;
    text-align: center; box-shadow: var(--glass-shadow);
}
.booking-form { display: grid; gap: 20px; max-width: 600px; margin: 40px auto 0; }
.booking-form input, .booking-form select, .booking-form textarea {
    width: 100%; padding: 18px; background: rgba(255,255,255,0.03);
    border: 1px solid var(--glass-border); border-radius: 8px; color: #fff;
}
.booking-form textarea { height: 150px; }

/* Footer */
.main-footer { background: #131933; padding: 100px 0 140px; border-top: 1px solid var(--glass-border); }
.footer-grid { display: grid; gap: 60px; }
.footer-brand h3 { font-family: 'Metamorphous', serif; font-size: 2.2rem; color: var(--metallic-gold); margin-bottom: 10px; }
.footer-links h4, .footer-contact h4 { margin-bottom: 30px; color: var(--vibrant-teal); text-transform: uppercase; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 15px; }
.footer-links a { text-decoration: none; color: var(--muted-text); transition: 0.3s; }
.footer-links a:hover { color: var(--metallic-gold); }
.footer-bottom { margin-top: 80px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.05); text-align: center; font-size: 0.9rem; color: var(--muted-text); }
.zodiac-footer { margin-top: 25px; font-size: 1.8rem; letter-spacing: 12px; opacity: 0.3; color: var(--champagne-gold); }

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed; bottom: 40px; right: 40px; background: #25D366;
    width: 70px; height: 70px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 15px 30px rgba(0,0,0,0.5); z-index: 998; transition: 0.3s;
}
.whatsapp-float:hover { transform: scale(1.1) rotate(10deg); }

/* Responsive Adjustments */
@media (min-width: 768px) {
    .grid { grid-template-columns: 1fr 1fr; }
    .hero h1 { font-size: 5rem; }
    .services-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .steps-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}

@media (min-width: 1024px) {
    .desktop-nav { display: block; }
    .hamburger { display: none; }
    .mobile-booking-bar { display: none; }
    .desktop-nav ul { display: flex; list-style: none; gap: 40px; align-items: center; }
    .desktop-nav a { text-decoration: none; color: #fff; font-family: 'Metamorphous', serif; font-size: 0.9rem; }
    .desktop-nav .cta a { background: var(--vibrant-teal); padding: 12px 30px; border-radius: 5px; font-weight: 700; }
    .services-grid { grid-template-columns: 1fr 1fr 1fr; gap: 60px 40px; }
    .steps-grid { grid-template-columns: repeat(4, 1fr); }
    .hero h1 { font-size: 6rem; }
    .hero-actions { flex-direction: row; }
}