/* ============================================
   CONGRATULATIONS EVENTS & PLANNER
   Luxury Wedding Website — Design System
   ============================================
   Color Palette (60/30/10):
   60% — Deep Charcoal/Dark (#0D0D0D, #1A1A1A)
   30% — Warm Ivory/Cream (#F5E6D3, #EDE0D4)
   10% — Rich Crimson Red (#C41E3A) + Gold (#C9A96E)
   ============================================ */

/* ── Google Fonts Import ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Montserrat:wght@200;300;400;500;600;700&family=Great+Vibes&display=swap');

/* ── CSS Custom Properties ── */
:root {
    /* 60% — Primary / Background */
    --bg-primary: #0D0D0D;
    --bg-secondary: #1A1A1A;
    --bg-tertiary: #141414;
    --bg-card: #1E1E1E;
    --bg-elevated: #252525;

    /* 30% — Secondary / Text & Accents */
    --text-primary: #F5E6D3;
    --text-secondary: #EDE0D4;
    --text-muted: #A89B8C;
    --text-subtle: #8A7D6F;
    --ivory: #FFF8F0;
    --cream: #F5E6D3;

    /* 10% — Accent */
    --accent-red: #C41E3A;
    --accent-red-light: #D4395A;
    --accent-red-dark: #9B1830;
    --accent-gold: #C9A96E;
    --accent-gold-light: #D4BC8E;
    --accent-gold-dark: #A68B4B;

    /* Glassmorphism */
    --glass-bg: rgba(30, 30, 30, 0.6);
    --glass-border: rgba(201, 169, 110, 0.15);
    --glass-blur: 20px;

    /* Typography */
    --font-heading: 'Cormorant Garamond', 'Georgia', serif;
    --font-body: 'Montserrat', 'Helvetica Neue', sans-serif;
    --font-script: 'Great Vibes', cursive;

    /* Spacing */
    --section-padding: clamp(80px, 10vw, 140px);
    --container-max: 1400px;
    --container-narrow: 900px;

    /* Transitions */
    --transition-smooth: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-spring: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --transition-elegant: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);

    /* Shadows */
    --shadow-soft: 0 4px 30px rgba(0, 0, 0, 0.3);
    --shadow-elevated: 0 20px 60px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 4px 30px rgba(201, 169, 110, 0.15);
}

/* ── 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;
    font-weight: 300;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background-color: var(--accent-red);
    color: var(--ivory);
}

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

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

ul, ol {
    list-style: none;
}

/* ── Custom Scrollbar ── */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--accent-gold-dark);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

/* ── Preloader ── */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}
.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.preloader-logo {
    width: 120px;
    animation: preloaderPulse 1.5s ease-in-out infinite;
}
.preloader-line {
    width: 200px;
    height: 1px;
    background: var(--bg-elevated);
    position: relative;
    overflow: hidden;
}
.preloader-line::after {
    content: '';
    position: absolute;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    animation: preloaderSlide 1.5s ease-in-out infinite;
}

@keyframes preloaderPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}
@keyframes preloaderSlide {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* ── Cursor Trail (Desktop) ── */
.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99998;
    transition: transform 0.15s ease;
    mix-blend-mode: difference;
}
.cursor-ring {
    width: 40px;
    height: 40px;
    border: 1px solid var(--accent-gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99997;
    transition: all 0.3s ease;
    opacity: 0.5;
}
.cursor-ring.hover {
    transform: scale(1.5);
    border-color: var(--accent-red);
    opacity: 1;
}

/* ── Navigation ── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition-smooth);
}
.navbar.scrolled {
    padding: 12px 60px;
    background: rgba(13, 13, 13, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.nav-logo img {
    height: 50px;
    transition: var(--transition-smooth);
}
.navbar.scrolled .nav-logo img {
    height: 40px;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}
.nav-links a {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    position: relative;
    padding: 5px 0;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-gold);
    transition: var(--transition-smooth);
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-gold);
}
.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}
.nav-cta {
    font-family: var(--font-body) !important;
    font-size: 0.75rem !important;
    letter-spacing: 3px !important;
    text-transform: uppercase !important;
    color: var(--ivory) !important;
    background: transparent;
    border: 1px solid var(--accent-gold);
    padding: 12px 30px !important;
    transition: var(--transition-smooth);
    cursor: pointer;
}
.nav-cta:hover {
    background: var(--accent-gold);
    color: var(--bg-primary) !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1002;
}
.hamburger span {
    width: 28px;
    height: 1.5px;
    background: var(--accent-gold);
    transition: var(--transition-smooth);
    display: block;
}
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(13, 13, 13, 0.97);
    backdrop-filter: blur(30px);
    z-index: 1001;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-elegant);
}
.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}
.mobile-menu a {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}
.mobile-menu a:hover {
    color: var(--accent-gold);
}

/* ── Hero Section ── */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 10s ease;
}
.hero:hover .hero-bg img {
    transform: scale(1);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(13, 13, 13, 0.4) 0%,
        rgba(13, 13, 13, 0.6) 50%,
        rgba(13, 13, 13, 0.95) 100%
    );
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 30px;
}
.hero-badge {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 30px;
    display: inline-block;
    position: relative;
    overflow: hidden;
}
.hero-badge::before,
.hero-badge::after {
    content: '';
    display: inline-block;
    width: 50px;
    height: 1px;
    background: var(--accent-gold);
    vertical-align: middle;
    margin: 0 20px;
    opacity: 0.5;
}
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--ivory);
    margin-bottom: 25px;
    letter-spacing: 2px;
}
.hero-title em {
    font-style: italic;
    color: var(--accent-gold);
    font-weight: 400;
}
.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-muted);
    letter-spacing: 1px;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 40px;
}
.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.hero-scroll span {
    font-size: 0.65rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-subtle);
    writing-mode: vertical-lr;
}
.scroll-line {
    width: 1px;
    height: 50px;
    background: var(--bg-elevated);
    position: relative;
    overflow: hidden;
}
.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-gold);
    animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
    0% { top: -100%; }
    100% { top: 100%; }
}

/* ── Buttons ── */
.btn-primary {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--ivory);
    background: var(--accent-red);
    padding: 18px 45px;
    border: none;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: var(--transition-smooth);
}
.btn-primary:hover::before {
    left: 100%;
}
.btn-primary:hover {
    background: var(--accent-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.3);
}

.btn-outline {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent-gold);
    background: transparent;
    padding: 17px 45px;
    border: 1px solid var(--accent-gold);
    cursor: pointer;
    transition: var(--transition-smooth);
}
.btn-outline:hover {
    background: var(--accent-gold);
    color: var(--bg-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* ── Section Shared ── */
.section {
    padding: var(--section-padding) 0;
    position: relative;
}
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 60px;
}
.container-narrow {
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: 0 30px;
}

/* Section Headers */
.section-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 20px;
    display: inline-block;
}
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--ivory);
    margin-bottom: 20px;
    letter-spacing: 1px;
}
.section-title em {
    font-style: italic;
    color: var(--accent-gold);
    font-weight: 400;
}
.section-divider {
    width: 60px;
    height: 1px;
    background: var(--accent-gold);
    margin: 25px 0;
    opacity: 0.6;
}
.section-divider.center {
    margin: 25px auto;
}
.section-desc {
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.9;
    letter-spacing: 0.5px;
}

/* ── Parallax Overlay Decoration ── */
.deco-line {
    position: absolute;
    width: 1px;
    height: 200px;
    background: linear-gradient(to bottom, transparent, var(--accent-gold-dark), transparent);
    opacity: 0.15;
}

/* ── About Intro Section ── */
.about-intro {
    background: var(--bg-secondary);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-image-wrapper {
    position: relative;
}
.about-image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    filter: brightness(0.9);
}
.about-image-frame {
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid var(--accent-gold);
    opacity: 0.3;
    pointer-events: none;
}
.about-text .script-text {
    font-family: var(--font-script);
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 5px;
}
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(201, 169, 110, 0.15);
}
.stat-item .stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--accent-gold);
    line-height: 1;
}
.stat-item .stat-label {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-subtle);
    margin-top: 8px;
}

/* ── Services Section ── */
.services-section {
    background: var(--bg-primary);
}
.services-header {
    text-align: center;
    margin-bottom: 80px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.service-card {
    background: var(--bg-card);
    padding: 50px 40px;
    border: 1px solid rgba(201, 169, 110, 0.08);
    transition: var(--transition-elegant);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-red), var(--accent-gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-elegant);
}
.service-card:hover::before {
    transform: scaleX(1);
}
.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 169, 110, 0.2);
    box-shadow: var(--shadow-gold);
}
.service-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 25px;
    color: var(--accent-gold);
}
.service-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--accent-gold);
    fill: none;
    stroke-width: 1.2;
}
.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--ivory);
    margin-bottom: 15px;
    letter-spacing: 1px;
}
.service-card p {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.8;
}
.service-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 300;
    color: rgba(201, 169, 110, 0.06);
    line-height: 1;
}

/* ── Gallery / Portfolio ── */
.gallery-section {
    background: var(--bg-secondary);
    overflow: hidden;
}
.gallery-header {
    text-align: center;
    margin-bottom: 60px;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 15px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-elegant);
}
.gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(0.7);
}
.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(13,13,13,0.8) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: var(--transition-smooth);
}
.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}
.gallery-item-overlay h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--ivory);
    margin-bottom: 5px;
}
.gallery-item-overlay span {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-gold);
}

/* ── Testimonials ── */
.testimonials-section {
    background: var(--bg-primary);
    position: relative;
}
.testimonials-section::before {
    content: '"';
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    font-size: 20rem;
    color: rgba(201, 169, 110, 0.04);
    line-height: 1;
    pointer-events: none;
}
.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}
.testimonial-item {
    display: none;
    animation: fadeInTestimonial 0.6s ease forwards;
}
.testimonial-item.active {
    display: block;
}
@keyframes fadeInTestimonial {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.testimonial-quote {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 300;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 35px;
}
.testimonial-author {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ivory);
    letter-spacing: 1px;
}
.testimonial-event {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-top: 5px;
}
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}
.testimonial-dot {
    width: 30px;
    height: 2px;
    background: var(--bg-elevated);
    cursor: pointer;
    transition: var(--transition-smooth);
}
.testimonial-dot.active {
    background: var(--accent-gold);
    width: 50px;
}

/* ── CTA Banner ── */
.cta-banner {
    position: relative;
    padding: 120px 0;
    text-align: center;
    overflow: hidden;
}
.cta-banner-bg {
    position: absolute;
    inset: 0;
}
.cta-banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cta-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(196, 30, 58, 0.85) 0%,
        rgba(13, 13, 13, 0.9) 100%
    );
}
.cta-banner .container {
    position: relative;
    z-index: 2;
}
.cta-banner .script-text {
    font-family: var(--font-script);
    font-size: 2.5rem;
    color: var(--accent-gold-light);
    margin-bottom: 10px;
}
.cta-banner h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300;
    color: var(--ivory);
    margin-bottom: 15px;
}
.cta-banner p {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255, 248, 240, 0.7);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

/* ── Footer ── */
.footer {
    background: var(--bg-secondary);
    padding: 80px 0 0;
    border-top: 1px solid rgba(201, 169, 110, 0.1);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(201, 169, 110, 0.08);
}
.footer-brand {
    max-width: 350px;
}
.footer-brand img {
    height: 60px;
    margin-bottom: 25px;
    filter: brightness(0) invert(1);
}
.footer-brand p {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.8;
}
.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}
.footer-socials a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(201, 169, 110, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}
.footer-socials a:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
}
.footer-socials a svg {
    width: 16px;
    height: 16px;
    fill: var(--text-muted);
    transition: var(--transition-smooth);
}
.footer-socials a:hover svg {
    fill: var(--bg-primary);
}
.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--ivory);
    margin-bottom: 25px;
    letter-spacing: 1px;
}
.footer-col a,
.footer-col p {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--text-muted);
    display: block;
    margin-bottom: 12px;
    transition: var(--transition-smooth);
    line-height: 1.6;
}
.footer-col a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}
.footer-bottom {
    padding: 25px 0;
    text-align: center;
}
.footer-bottom p {
    font-size: 0.75rem;
    font-weight: 300;
    color: var(--text-subtle);
    letter-spacing: 2px;
}

/* ── WhatsApp Float ── */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition-spring);
    animation: whatsappPulse 2s ease-in-out infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}
.whatsapp-float svg {
    width: 30px;
    height: 30px;
    fill: #fff;
}
@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 15px rgba(37, 211, 102, 0.1); }
}

/* ── Scroll Animations ── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}
.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}
.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger children delay */
.stagger-1 { transition-delay: 0.1s !important; }
.stagger-2 { transition-delay: 0.2s !important; }
.stagger-3 { transition-delay: 0.3s !important; }
.stagger-4 { transition-delay: 0.4s !important; }
.stagger-5 { transition-delay: 0.5s !important; }
.stagger-6 { transition-delay: 0.6s !important; }

/* ── Page-Specific: About ── */
.page-hero {
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero-bg {
    position: absolute;
    inset: 0;
}
.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(13, 13, 13, 0.5) 0%,
        rgba(13, 13, 13, 0.85) 100%
    );
}
.page-hero-content {
    position: relative;
    z-index: 2;
}
.page-hero-content .breadcrumb {
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-subtle);
    margin-bottom: 20px;
}
.page-hero-content .breadcrumb a {
    color: var(--accent-gold);
}
.page-hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 300;
    color: var(--ivory);
    letter-spacing: 3px;
}

/* About Philosophy */
.philosophy-section {
    background: var(--bg-primary);
}
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.philosophy-card {
    padding: 50px 35px;
    border: 1px solid rgba(201, 169, 110, 0.08);
    text-align: center;
    transition: var(--transition-elegant);
}
.philosophy-card:hover {
    border-color: rgba(201, 169, 110, 0.2);
    transform: translateY(-5px);
}
.philosophy-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 300;
    color: rgba(201, 169, 110, 0.1);
    margin-bottom: 15px;
    line-height: 1;
}
.philosophy-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--ivory);
    margin-bottom: 15px;
}
.philosophy-card p {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.8;
}

/* Timeline */
.timeline-section {
    background: var(--bg-secondary);
}
.timeline {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(201, 169, 110, 0.2);
    transform: translateX(-50%);
}
.timeline-item {
    display: flex;
    margin-bottom: 60px;
    position: relative;
}
.timeline-item:nth-child(odd) {
    flex-direction: row;
    padding-right: calc(50% + 40px);
    text-align: right;
}
.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
    padding-left: calc(50% + 40px);
    text-align: left;
}
.timeline-dot {
    position: absolute;
    left: 50%;
    top: 10px;
    width: 12px;
    height: 12px;
    background: var(--accent-gold);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.timeline-content h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--ivory);
    margin-bottom: 8px;
}
.timeline-content span {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 10px;
}
.timeline-content p {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ── Services Page ── */
.services-detail-section {
    background: var(--bg-primary);
}
.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}
.service-detail-grid:nth-child(even) {
    direction: rtl;
}
.service-detail-grid:nth-child(even) > * {
    direction: ltr;
}
.service-detail-image {
    position: relative;
    overflow: hidden;
}
.service-detail-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: var(--transition-elegant);
}
.service-detail-image:hover img {
    transform: scale(1.05);
}
.service-detail-image .image-tag {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-gold);
}
.service-detail-text h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 300;
    color: var(--ivory);
    margin-bottom: 20px;
}
.service-detail-text p {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 25px;
}
.service-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.service-list li {
    position: relative;
    padding-left: 25px;
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-secondary);
}
.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 1px;
    background: var(--accent-gold);
}

/* ── Contact Page ── */
.contact-section {
    background: var(--bg-primary);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}
.contact-info h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 300;
    color: var(--ivory);
    margin-bottom: 20px;
}
.contact-info > p {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 40px;
}
.contact-detail-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}
.contact-detail-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    border: 1px solid rgba(201, 169, 110, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-detail-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--accent-gold);
    fill: none;
    stroke-width: 1.5;
}
.contact-detail-text h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--ivory);
    margin-bottom: 5px;
}
.contact-detail-text p,
.contact-detail-text a {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.6;
}
.contact-detail-text a:hover {
    color: var(--accent-gold);
}

/* Contact Form */
.contact-form {
    background: var(--bg-card);
    padding: 50px;
    border: 1px solid rgba(201, 169, 110, 0.08);
}
.contact-form h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--ivory);
    margin-bottom: 30px;
}
.form-group {
    margin-bottom: 25px;
}
.form-group label {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-subtle);
    margin-bottom: 10px;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: var(--bg-primary);
    border: 1px solid rgba(201, 169, 110, 0.1);
    padding: 15px 20px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-primary);
    outline: none;
    transition: var(--transition-smooth);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent-gold);
}
.form-group textarea {
    min-height: 120px;
    resize: vertical;
}
.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23C9A96E' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* ── Map Section ── */
.map-section {
    height: 400px;
    filter: grayscale(1) brightness(0.5) contrast(1.2);
    transition: var(--transition-smooth);
}
.map-section:hover {
    filter: grayscale(0.5) brightness(0.6);
}
.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ── Marquee / Infinite Scroll Text ── */
.marquee-section {
    overflow: hidden;
    padding: 40px 0;
    border-top: 1px solid rgba(201, 169, 110, 0.08);
    border-bottom: 1px solid rgba(201, 169, 110, 0.08);
}
.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 25s linear infinite;
}
.marquee-item {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 300;
    color: rgba(201, 169, 110, 0.12);
    white-space: nowrap;
    padding: 0 40px;
    letter-spacing: 5px;
}
.marquee-item .dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 50%;
    margin: 0 30px;
    opacity: 0.3;
    vertical-align: middle;
}
@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── Counter Animation ── */
.counter-section {
    background: var(--bg-tertiary);
    padding: 80px 0;
}
.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}
.counter-item {
    position: relative;
    padding: 30px;
}
.counter-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(201, 169, 110, 0.1);
}
.counter-item:last-child::after {
    display: none;
}
.counter-value {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--accent-gold);
    line-height: 1;
}
.counter-label {
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-subtle);
    margin-top: 12px;
}

/* ── Responsive ── */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 250px);
    }
    .gallery-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 1024px) {
    .navbar {
        padding: 15px 30px;
    }
    .nav-links {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .mobile-menu {
        display: flex;
    }
    .container {
        padding: 0 30px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .about-grid,
    .service-detail-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .service-detail-grid:nth-child(even) {
        direction: ltr;
    }
    .about-image-wrapper img {
        height: 350px;
    }
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .counter-item::after {
        display: none;
    }
    .timeline::before {
        left: 20px;
    }
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        padding-left: 60px;
        padding-right: 0;
        text-align: left;
        flex-direction: row;
    }
    .timeline-dot {
        left: 20px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }
    .hero-buttons {
        flex-direction: column;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .gallery-item:nth-child(1) {
        grid-column: span 1;
    }
    .gallery-item {
        height: 250px;
    }
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .contact-form {
        padding: 30px 25px;
    }
    .navbar {
        padding: 15px 20px;
    }
    .container {
        padding: 0 20px;
    }
    .cursor-dot,
    .cursor-ring {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .hero-badge::before,
    .hero-badge::after {
        width: 25px;
        margin: 0 10px;
    }
    .about-stats {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .counter-grid {
        grid-template-columns: 1fr;
    }
    .hero {
        min-height: 600px;
    }
    .page-hero {
        height: 50vh;
        min-height: 300px;
    }
}

/* ── Parallax Float Elements ── */
.float-element {
    position: absolute;
    pointer-events: none;
    will-change: transform;
}
.float-diamond {
    width: 15px;
    height: 15px;
    border: 1px solid var(--accent-gold);
    transform: rotate(45deg);
    opacity: 0.15;
}
.float-circle {
    width: 100px;
    height: 100px;
    border: 1px solid var(--accent-gold);
    border-radius: 50%;
    opacity: 0.05;
}
.float-line {
    width: 100px;
    height: 1px;
    background: var(--accent-gold);
    opacity: 0.1;
}

/* ── Smooth Page Transition ── */
.page-transition {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    z-index: 99990;
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}
.page-transition.active {
    transform: translateY(0);
}
