/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --black: #0a0a0a;
    --dark: #111111;
    --dark2: #1a1a1a;
    --gold: #c9a84c;
    --gold-light: #e0c976;
    --gold-dark: #8a6d2b;
    --white: #f5f5f5;
    --gray: #888888;
    --gray-light: #aaaaaa;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
::selection { background: var(--gold); color: var(--black); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== PERSISTENT 3D SCISSORS ===== */
.scissors-3d {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    pointer-events: none;
    width: 160px;
    height: 260px;
    will-change: transform, opacity;
    /* NO transform here — GSAP controls everything */
}

.scissors-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 8px 30px rgba(0,0,0,0.8));
}

.blade-left, .blade-right {
    transform-origin: 100px 140px;
}

/* Sparks */
.cut-sparks {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 4px;
    pointer-events: none;
}
.spark {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #888;
    border-radius: 50%;
    opacity: 0;
}

/* Section cut reveal */
.section-cut-reveal {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(150,150,150,0.6) 50%, transparent);
    z-index: 2;
    opacity: 0;
    transform: scaleX(0);
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
    position: fixed;
    left: 24px;
    bottom: 32px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    padding: 14px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}
.whatsapp-btn svg { width: 24px; height: 24px; flex-shrink: 0; }
.whatsapp-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000; padding: 20px 0; transition: all 0.4s ease;
}
.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}
.nav-container {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-logo img { height: 45px; width: auto; object-fit: contain; }
.nav-links { display: flex; gap: 36px; }
.nav-links a {
    font-size: 13px; font-weight: 500; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--gray-light);
    transition: color 0.3s ease; position: relative;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1px; background: var(--gold); transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-toggle {
    display: none; flex-direction: column; gap: 6px;
    background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span { display: block; width: 28px; height: 2px; background: var(--white); transition: all 0.3s ease; }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* ===== HERO ===== */
.hero {
    position: relative; height: 100vh; min-height: 700px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; background: var(--black);
}
.hero-bg-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.particle { position: absolute; width: 2px; height: 2px; background: var(--gold); border-radius: 50%; opacity: 0; }
.hero-content { position: relative; z-index: 20; text-align: center; }
.hero-pre {
    font-size: 12px; font-weight: 500; letter-spacing: 0.4em;
    color: var(--gold); margin-bottom: 20px; opacity: 0;
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(60px, 12vw, 140px);
    font-weight: 700; line-height: 1; letter-spacing: -0.02em;
    color: var(--white); margin-bottom: 16px; opacity: 0;
}
.hero-tagline {
    font-size: clamp(14px, 2vw, 18px); font-weight: 300;
    letter-spacing: 0.2em; color: var(--gray-light);
    text-transform: uppercase; opacity: 0;
}
.scroll-indicator {
    position: absolute; bottom: -120px; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center;
    gap: 12px; opacity: 0;
}
.scroll-indicator span { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray); }
.scroll-line {
    width: 1px; height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ===== SECTIONS ===== */
.section { position: relative; padding: 120px 0; overflow: hidden; }
.section-label {
    font-size: 11px; font-weight: 600; letter-spacing: 0.3em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700; line-height: 1.15; margin-bottom: 60px;
}
.section-title em { font-style: italic; color: var(--gold); }

/* ABOUT */
.about { background: var(--dark); }
.about-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 80px; align-items: start; }
.about-text p { font-size: 16px; line-height: 1.8; color: var(--gray-light); margin-bottom: 20px; }
.about-lead { font-size: 20px !important; color: var(--white) !important; font-weight: 400; }
.about-stats { display: flex; flex-direction: column; gap: 40px; padding-top: 10px; }
.stat { display: flex; align-items: baseline; gap: 20px; }
.stat-number {
    font-family: var(--font-display); font-size: 56px; font-weight: 700;
    color: var(--gold); line-height: 1; min-width: 100px;
}
.stat-label { font-size: 13px; line-height: 1.6; color: var(--gray); }

/* RASHID */
.rashid { background: var(--black); }
.rashid-spotlight {
    position: absolute; top: 50%; left: 30%; transform: translate(-50%, -50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
    pointer-events: none;
}
.rashid-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 80px; align-items: center; }
.rashid-image-wrapper { position: relative; }
.rashid-image-frame { position: relative; border-radius: 8px; overflow: hidden; aspect-ratio: 3/4; }
.rashid-image-frame::before {
    content: ''; position: absolute; inset: 0;
    border: 1px solid rgba(201, 168, 76, 0.3); border-radius: 8px; z-index: 2; pointer-events: none;
}
.rashid-img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.05); }
.rashid-badge {
    position: absolute; bottom: -20px; right: -20px;
    width: 90px; height: 90px; background: var(--gold); border-radius: 50%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    z-index: 3; box-shadow: 0 8px 32px rgba(201, 168, 76, 0.3);
}
.rashid-badge span { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--black); line-height: 1; }
.rashid-badge small { font-size: 11px; font-weight: 600; color: var(--black); letter-spacing: 0.05em; text-transform: uppercase; }
.rashid-name { font-family: var(--font-display); font-size: clamp(40px, 5vw, 56px); font-weight: 700; margin-bottom: 8px; }
.rashid-title-role { font-size: 14px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; }
.rashid-divider { width: 60px; height: 2px; background: var(--gold); margin-bottom: 24px; }
.rashid-bio { font-size: 16px; line-height: 1.8; color: var(--gray-light); margin-bottom: 16px; }
.rashid-specialties { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.specialty-tag {
    padding: 8px 18px; border: 1px solid rgba(201, 168, 76, 0.4);
    border-radius: 30px; font-size: 12px; font-weight: 500; letter-spacing: 0.05em;
    color: var(--gold-light); transition: all 0.3s ease;
}
.specialty-tag:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }

/* SERVICES */
.services { background: var(--dark); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-bottom: 60px; }
.service-card {
    background: var(--dark2); border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px; padding: 40px 32px; transition: all 0.4s ease;
    position: relative; overflow: hidden;
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0; transition: opacity 0.4s ease;
}
.service-card:hover {
    transform: translateY(-6px); border-color: rgba(201, 168, 76, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.service-card:hover::before { opacity: 1; }
.service-icon { width: 48px; height: 48px; color: var(--gold); margin-bottom: 24px; }
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 { font-family: var(--font-display); font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.service-card p { font-size: 14px; line-height: 1.7; color: var(--gray); }
.services-cta { text-align: center; }
.services-cta p { font-size: 16px; color: var(--gray-light); margin-bottom: 24px; }
.cta-button {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 36px; background: var(--gold); color: var(--black);
    font-weight: 600; font-size: 14px; letter-spacing: 0.05em;
    border-radius: 50px; transition: all 0.3s ease;
}
.cta-button:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(201, 168, 76, 0.3); }

/* BRANCHES */
.branches { background: var(--black); }
.branches-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.branch-card {
    background: var(--dark2); border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px; padding: 36px 24px; text-align: center; transition: all 0.4s ease;
}
.branch-card:hover { transform: translateY(-4px); border-color: rgba(201, 168, 76, 0.3); }
.branch-number { font-family: var(--font-display); font-size: 48px; font-weight: 700; color: rgba(201, 168, 76, 0.15); line-height: 1; margin-bottom: 16px; }
.branch-card h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.branch-card p { font-size: 13px; color: var(--gray); line-height: 1.5; }
.branch-line { width: 30px; height: 2px; background: var(--gold); margin: 20px auto 0; opacity: 0.5; transition: all 0.3s ease; }
.branch-card:hover .branch-line { width: 60px; opacity: 1; }

/* GALLERY */
.gallery { background: var(--dark); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 280px; gap: 16px; }
.gallery-large { grid-column: span 2; }
.gallery-item { border-radius: 8px; overflow: hidden; position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: all 0.6s ease; filter: grayscale(30%); }
.gallery-item:hover img { transform: scale(1.05); filter: grayscale(0%); }
.gallery-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,10,0.4), transparent); pointer-events: none; }

/* FOOTER */
.footer { background: var(--dark2); padding: 80px 0 32px; border-top: 1px solid rgba(255, 255, 255, 0.05); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-logo { height: 50px; width: auto; margin-bottom: 16px; object-fit: contain; }
.footer-brand p { font-size: 14px; line-height: 1.7; color: var(--gray); }
.footer-links h4, .footer-contact h4, .footer-social h4 {
    font-family: var(--font-display); font-size: 16px; font-weight: 700; margin-bottom: 20px;
}
.footer-links a, .footer-contact a, .footer-contact p {
    display: block; font-size: 14px; color: var(--gray); margin-bottom: 10px; transition: color 0.3s ease;
}
.footer-links a:hover, .footer-contact a:hover { color: var(--gold); }
.social-icons { display: flex; gap: 12px; }
.social-icon {
    width: 44px; height: 44px; border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: var(--gray); transition: all 0.3s ease;
}
.social-icon svg { width: 18px; height: 18px; }
.social-icon:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.05); padding-top: 24px; text-align: center; }
.footer-bottom p { font-size: 12px; color: var(--gray); letter-spacing: 0.05em; }

/* HERO ENHANCEMENTS */
.hero-ring {
    position: absolute;
    border: 1px solid rgba(201, 168, 76, 0.06);
    border-radius: 50%;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.hero-ring-1 { width: 300px; height: 300px; }
.hero-ring-2 { width: 500px; height: 500px; animation: ringPulse 6s ease-in-out infinite; }
.hero-ring-3 { width: 700px; height: 700px; animation: ringPulse 8s ease-in-out infinite 1s; }
@keyframes ringPulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.05); }
}
.hero-divider {
    display: flex; align-items: center; justify-content: center;
    gap: 16px; margin-bottom: 20px; opacity: 0;
}
.hero-divider-line {
    width: 60px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}
.hero-divider-line:last-child {
    background: linear-gradient(90deg, var(--gold), transparent);
}
.hero-divider-icon {
    color: var(--gold); font-size: 18px; opacity: 0.7;
}
.hero-highlights {
    display: flex; align-items: center; justify-content: center;
    gap: 16px; margin-top: 28px; margin-bottom: 32px; opacity: 0;
}
.hero-highlight {
    font-size: 12px; font-weight: 500; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--gray-light);
}
.hero-dot {
    width: 4px; height: 4px; background: var(--gold);
    border-radius: 50%; opacity: 0.6;
}
.hero-cta {
    display: inline-block; padding: 16px 40px;
    border: 1px solid var(--gold); color: var(--gold);
    font-size: 13px; font-weight: 600; letter-spacing: 0.12em;
    text-transform: uppercase; border-radius: 50px;
    transition: all 0.4s ease; opacity: 0;
}
.hero-cta:hover {
    background: var(--gold); color: var(--black);
    box-shadow: 0 8px 32px rgba(201, 168, 76, 0.3);
}

/* SERVICE MINI-GRID (expanded rate card) */
.service-category {
    font-family: var(--font-display);
    font-size: 22px; font-weight: 700;
    color: var(--gold); margin-top: 48px; margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}
.service-category:first-of-type { margin-top: 0; }
.services-mini-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 12px; margin-bottom: 12px;
}
.service-mini {
    background: var(--dark2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px; padding: 16px 20px;
    font-size: 14px; font-weight: 400;
    color: var(--gray-light); text-align: center;
    transition: all 0.3s ease;
}
.service-mini:hover {
    border-color: rgba(201, 168, 76, 0.3);
    color: var(--white); background: rgba(201, 168, 76, 0.08);
    transform: translateY(-2px);
}

/* GROOM PACKAGE */
.groom-package { background: var(--black); }
.groom-grid { max-width: 900px; }
.groom-info { }
.groom-lead {
    font-size: 20px; color: var(--white); font-weight: 400;
    line-height: 1.7; margin-bottom: 20px;
}
.groom-info > p { font-size: 16px; line-height: 1.8; color: var(--gray-light); margin-bottom: 32px; }
.groom-days {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px; margin-bottom: 40px;
}
.groom-day {
    background: var(--dark2); border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px; padding: 32px 24px;
    transition: all 0.4s ease; position: relative; overflow: hidden;
}
.groom-day::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    opacity: 0; transition: opacity 0.4s ease;
}
.groom-day:hover { border-color: rgba(201, 168, 76, 0.2); transform: translateY(-4px); }
.groom-day:hover::before { opacity: 1; }
.day-number {
    font-family: var(--font-display); font-size: 13px; font-weight: 600;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 14px;
}
.groom-day h4 {
    font-family: var(--font-display); font-size: 20px;
    font-weight: 700; margin-bottom: 12px; color: var(--white);
}
.groom-day p { font-size: 14px; line-height: 1.7; color: var(--gray); }

/* FRANCHISE */
.franchise { background: var(--dark); }
.franchise-grid { max-width: 800px; }
.franchise-lead {
    font-size: 20px; color: var(--white); font-weight: 400;
    line-height: 1.7; margin-bottom: 40px;
}
.franchise-features {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 32px; margin-bottom: 48px;
}
.franchise-feature {
    display: flex; gap: 16px; align-items: flex-start;
}
.franchise-feature-icon {
    flex-shrink: 0; width: 52px; height: 52px;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    color: var(--gold);
}
.franchise-feature h4 {
    font-family: var(--font-display); font-size: 17px;
    font-weight: 700; margin-bottom: 6px; color: var(--white);
}
.franchise-feature p {
    font-size: 14px; line-height: 1.6; color: var(--gray);
}

/* REVEAL (initial states) */
.reveal-text { opacity: 0; transform: translateY(40px); }
.reveal-up { opacity: 0; transform: translateY(60px); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .branches-grid { grid-template-columns: repeat(3, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .services-mini-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .scissors-3d { width: 120px; height: 200px; }
    .groom-days { grid-template-columns: repeat(3, 1fr); }
    .franchise-features { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .nav-links {
        display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(10,10,10,0.98); flex-direction: column;
        align-items: center; justify-content: center; gap: 32px; z-index: 998;
    }
    .nav-links.active { display: flex; }
    .nav-links a { font-size: 18px; }
    .nav-toggle { display: flex; z-index: 999; }
    .hero-title { font-size: clamp(48px, 14vw, 80px); }
    .hero-ring-1 { width: 200px; height: 200px; }
    .hero-ring-2 { width: 340px; height: 340px; }
    .hero-ring-3 { width: 480px; height: 480px; }
    .hero-highlights { gap: 10px; flex-wrap: wrap; justify-content: center; }
    .hero-highlight { font-size: 11px; letter-spacing: 0.1em; }
    .hero-cta { padding: 14px 32px; font-size: 12px; }
    .scissors-3d { width: 100px; height: 165px; }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-stats { flex-direction: row; flex-wrap: wrap; gap: 32px; }
    .rashid-grid { grid-template-columns: 1fr; gap: 48px; }
    .rashid-image-frame { max-width: 400px; margin: 0 auto; }
    .rashid-badge { right: auto; left: 50%; transform: translateX(-50%); bottom: -20px; }
    .services-grid { grid-template-columns: 1fr; }
    .services-mini-grid { grid-template-columns: repeat(2, 1fr); }
    .service-category { font-size: 18px; margin-top: 36px; }
    .groom-days { grid-template-columns: 1fr; gap: 16px; }
    .franchise-features { grid-template-columns: 1fr; gap: 24px; }
    .branches-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
    .gallery-large { grid-column: span 2; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .whatsapp-btn span { display: none; }
    .whatsapp-btn { padding: 14px; border-radius: 50%; }
    .section { padding: 80px 0; }
}
@media (max-width: 480px) {
    .branches-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
    .gallery-large { grid-column: span 1; }
    .stat-number { font-size: 40px; min-width: 70px; }
    .scissors-3d { width: 80px; height: 130px; }
    .services-mini-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .service-mini { padding: 12px 14px; font-size: 13px; }
    .service-category { font-size: 16px; margin-top: 28px; }
    .hero-highlights { gap: 8px; }
    .hero-highlight { font-size: 10px; }
    .hero-divider-line { width: 40px; }
    .hero-cta { padding: 12px 28px; font-size: 11px; }
    .groom-day { padding: 24px 20px; }
    .franchise-feature { flex-direction: column; gap: 12px; }
}
