/* ============================================================
   سيباشا للتشطيبات — Premium Design System 2025
   ============================================================ */

/* === Google Fonts === */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800;900&family=Tajawal:wght@300;400;500;700;800&display=swap');

/* === Design Tokens === */
:root {
    /* Gold Palette */
    --gold:           #D4AF37;
    --gold-light:     #F5D060;
    --gold-dark:      #9A7A2E;
    --gold-glow:      rgba(212,175,55,.3);
    --gold-gradient:  linear-gradient(135deg, #D4AF37 0%, #F5D060 50%, #C9A84C 100%);
    --gold-text:      linear-gradient(135deg, #F5D060, #D4AF37, #9A7A2E);

    /* Dark Palette */
    --bg-primary:     #050505;
    --bg-secondary:   #0D0D0D;
    --bg-tertiary:    #161616;
    --bg-card:        #111111;
    --bg-elevated:    #1A1A1A;

    /* Text */
    --text-primary:   #F5F5F5;
    --text-secondary: #BFBFBF;
    --text-muted:     #777;

    /* Borders & Surfaces */
    --border:         rgba(212,175,55,.15);
    --border-hover:   rgba(212,175,55,.4);
    --glass-bg:       rgba(17,17,17,.7);
    --glass-border:   rgba(212,175,55,.12);

    /* Spacing */
    --section-pad:    clamp(60px, 8vw, 120px);
    --container-max:  1280px;

    /* Typography */
    --font-main:      'Cairo', 'Tajawal', sans-serif;
    --font-display:   'Cairo', sans-serif;

    /* Effects */
    --transition:     .4s cubic-bezier(.4,0,.2,1);
    --transition-fast: .2s ease;
    --radius:         16px;
    --radius-sm:      10px;
    --radius-lg:      24px;
    --shadow:         0 10px 40px rgba(0,0,0,.5);
    --shadow-gold:    0 8px 30px rgba(212,175,55,.25);
    --shadow-card:    0 4px 20px rgba(0,0,0,.4);
    --blur:           20px;
}

/* === Light Theme === */
[data-theme="light"] {
    --bg-primary:     #FAFAF8;
    --bg-secondary:   #F0EDE6;
    --bg-tertiary:    #E8E4DB;
    --bg-card:        #FFFFFF;
    --bg-elevated:    #FFFFFF;
    --text-primary:   #1A1A1A;
    --text-secondary: #555;
    --text-muted:     #888;
    --border:         rgba(212,175,55,.2);
    --glass-bg:       rgba(255,255,255,.75);
    --glass-border:   rgba(212,175,55,.15);
    --shadow:         0 10px 40px rgba(0,0,0,.1);
    --shadow-card:    0 4px 20px rgba(0,0,0,.08);
    --gold-glow:      rgba(212,175,55,.2);
}

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

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

body {
    font-family: var(--font-main);
    background: var(--bg-primary);
    color: var(--text-primary);
    direction: rtl;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb {
    background: var(--gold-gradient);
    border-radius: 10px;
}

/* === Loading Screen === */
.loader-wrap {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 24px;
    transition: opacity .6s ease, visibility .6s ease;
}
.loader-wrap.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.loader-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    animation: loaderPulse 1.5s ease-in-out infinite;
}
.loader-bar {
    width: 160px;
    height: 3px;
    background: var(--bg-elevated);
    border-radius: 10px;
    overflow: hidden;
}
.loader-bar::after {
    content: '';
    display: block;
    width: 40%;
    height: 100%;
    background: var(--gold-gradient);
    border-radius: 10px;
    animation: loaderSlide 1.2s ease-in-out infinite;
}
@keyframes loaderPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: .7; }
}
@keyframes loaderSlide {
    0% { transform: translateX(300%); }
    100% { transform: translateX(-300%); }
}

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.3;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
}
.section-title .gold {
    background: var(--gold-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: clamp(.95rem, 1.5vw, 1.1rem);
    max-width: 600px;
    margin: 0 auto 48px;
}
.gold-line {
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold-gradient);
    margin: 12px auto 0;
    border-radius: 10px;
}

/* === Navbar === */
.navbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}
.navbar.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur));
    -webkit-backdrop-filter: blur(var(--blur));
    border-bottom: 1px solid var(--glass-border);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,.3);
}
.navbar .container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
}
.nav-brand img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    object-fit: cover;
}
.nav-brand span {
    font-size: 1.2rem;
    font-weight: 700;
    background: var(--gold-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}
.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: .95rem;
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}
.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    right: 16px;
    left: 16px;
    height: 2px;
    background: var(--gold-gradient);
    border-radius: 10px;
}
.nav-cta {
    background: var(--gold-gradient) !important;
    color: #0A0A0A !important;
    font-weight: 700 !important;
    padding: 10px 24px !important;
    border-radius: 50px !important;
    -webkit-text-fill-color: #0A0A0A !important;
    transition: var(--transition) !important;
    box-shadow: var(--shadow-gold);
}
.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(212,175,55,.4) !important;
}

/* Nav Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { cursor: pointer; }
.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 220px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .3s ease;
    z-index: 100;
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
}
.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav-dropdown-menu a {
    display: flex !important;
    align-items: center;
    gap: 10px;
    padding: 10px 14px !important;
    border-radius: var(--radius-sm);
    font-size: .88rem !important;
    color: var(--text-secondary) !important;
    transition: all .2s;
    white-space: nowrap;
}
.nav-dropdown-menu a:hover {
    background: rgba(212,175,55,.08);
    color: var(--gold) !important;
}
.nav-dropdown-menu a i {
    width: 18px;
    text-align: center;
    color: var(--gold);
    font-size: .85rem;
}

/* Theme Toggle */
.theme-toggle {
    background: none;
    border: 1px solid var(--border);
    color: var(--gold);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
}
.theme-toggle:hover {
    background: var(--gold-glow);
    border-color: var(--gold);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    z-index: 1001;
}
.hamburger span {
    width: 26px;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
    border-radius: 2px;
}
.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 Nav */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--bg-secondary);
    z-index: 1000;
    padding: 100px 32px 32px;
    transition: right .4s cubic-bezier(.77,0,.18,1);
    border-left: 1px solid var(--border);
}
.mobile-nav.open { right: 0; }
.mobile-nav a {
    display: block;
    padding: 14px 0;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-bottom: 1px solid var(--border);
    transition: var(--transition-fast);
}
.mobile-nav a:hover,
.mobile-nav a.active { color: var(--gold); padding-right: 12px; }
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.nav-overlay.active { opacity: 1; visibility: visible; }

/* === Hero Section === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--bg-primary);
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(212,175,55,.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(212,175,55,.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(212,175,55,.04) 0%, transparent 40%);
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, var(--bg-primary) 100%);
    z-index: 1;
}
/* Animated grid pattern */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(212,175,55,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212,175,55,.04) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
}
@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}
/* Floating orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .5;
    animation: orbFloat 8s ease-in-out infinite;
}
.hero-orb-1 {
    width: 300px; height: 300px;
    background: rgba(212,175,55,.15);
    top: 10%; right: 15%;
    animation-delay: 0s;
}
.hero-orb-2 {
    width: 200px; height: 200px;
    background: rgba(212,175,55,.1);
    bottom: 20%; left: 10%;
    animation-delay: -3s;
}
.hero-orb-3 {
    width: 150px; height: 150px;
    background: rgba(212,175,55,.12);
    top: 50%; left: 50%;
    animation-delay: -5s;
}
@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 15px) scale(.95); }
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    max-width: 800px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(212,175,55,.1);
    border: 1px solid rgba(212,175,55,.2);
    border-radius: 50px;
    color: var(--gold);
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}
.hero h1 {
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
}
.hero h1 .gold {
    background: var(--gold-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero p {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: var(--text-secondary);
    max-width: 550px;
    margin: 0 auto 36px;
    line-height: 1.8;
}
.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: .8rem;
    animation: scrollBounce 2s ease-in-out infinite;
}
.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}
@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* === Buttons === */
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--gold-gradient);
    color: #0A0A0A;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow-gold);
    font-family: var(--font-main);
}
.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(212,175,55,.45);
    color: #0A0A0A;
}
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: transparent;
    color: var(--gold);
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--gold);
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    font-family: var(--font-main);
}
.btn-outline:hover {
    background: var(--gold-glow);
    transform: translateY(-3px);
    color: var(--gold);
    box-shadow: 0 8px 25px rgba(212,175,55,.2);
}

/* === Stats Bar === */
.stats-bar {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 48px 0;
    position: relative;
    overflow: hidden;
}
.stats-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gold-gradient);
    opacity: .5;
}
.stats-grid {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.stat-item {
    text-align: center;
    position: relative;
}
.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: var(--border);
}
.stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(212,175,55,.1);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    color: var(--gold);
    font-size: 1.3rem;
}
.stat-number {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    background: var(--gold-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}
.stat-label {
    color: var(--text-secondary);
    font-size: .9rem;
    margin-top: 4px;
}

/* === Section === */
.section {
    padding: var(--section-pad) 0;
}
.section .container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* === Service Cards === */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .4s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-card);
}
.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(212,175,55,.1);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: var(--transition);
}
.service-card:hover .service-icon {
    background: var(--gold-gradient);
    color: #0A0A0A;
    border-color: transparent;
    box-shadow: var(--shadow-gold);
}
.service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.service-card p {
    color: var(--text-secondary);
    font-size: .95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}
.service-features {
    list-style: none;
    margin-bottom: 24px;
}
.service-features li {
    padding: 6px 0;
    color: var(--text-secondary);
    font-size: .9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
.service-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--gold);
    font-size: .75rem;
}
.service-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    font-size: .9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-fast);
}
.service-link:hover { gap: 12px; }

/* === Portfolio Grid === */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}
.portfolio-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    background: var(--bg-card);
}
.portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}
.portfolio-card:hover img { transform: scale(1.08); }
.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,.2) 50%, transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity .4s ease;
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay h3 {
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 6px;
}
.portfolio-overlay span {
    color: var(--gold);
    font-size: .85rem;
}
.portfolio-overlay .view-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(.7);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: #0A0A0A;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    opacity: 0;
    transition: var(--transition);
}
.portfolio-card:hover .view-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Filter Buttons */
.filter-btns {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.filter-btn {
    padding: 10px 24px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-secondary);
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--font-main);
    font-size: .9rem;
    font-weight: 600;
    transition: var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
    background: var(--gold-gradient);
    color: #0A0A0A;
    border-color: transparent;
    box-shadow: var(--shadow-gold);
}

/* === Testimonials === */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
}
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: var(--transition);
    position: relative;
}
.testimonial-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-card);
}
.testimonial-quote {
    position: absolute;
    top: 20px;
    left: 24px;
    font-size: 3rem;
    color: var(--gold);
    opacity: .2;
    font-family: serif;
    line-height: 1;
}
.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    color: var(--gold);
    font-size: .9rem;
}
.testimonial-text {
    color: var(--text-secondary);
    font-size: .95rem;
    line-height: 1.8;
    margin-bottom: 20px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0A0A0A;
    font-weight: 800;
    font-size: 1.1rem;
}
.testimonial-name {
    font-weight: 700;
    font-size: .95rem;
}
.testimonial-role {
    color: var(--text-muted);
    font-size: .8rem;
}

/* === Why Us / Features === */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}
.feature-card {
    text-align: center;
    padding: 36px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}
.feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-card);
}
.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: rgba(212,175,55,.08);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--gold);
    font-size: 1.6rem;
    transition: var(--transition);
}
.feature-card:hover .feature-icon {
    background: var(--gold-gradient);
    color: #0A0A0A;
    border-color: transparent;
}
.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}
.feature-card p {
    color: var(--text-secondary);
    font-size: .9rem;
}

/* === CTA Section === */
.cta-section {
    background: var(--bg-secondary);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, rgba(212,175,55,.06) 0%, transparent 70%);
}
.cta-section h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    margin-bottom: 16px;
    position: relative;
}
.cta-section p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 32px;
    position: relative;
}
.cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

/* === Contact / Forms === */
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: .9rem;
    color: var(--text-primary);
}
.form-control {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-main);
    font-size: .95rem;
    transition: var(--transition);
    outline: none;
}
.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-glow);
}
.form-control::placeholder {
    color: var(--text-muted);
}
textarea.form-control {
    min-height: 140px;
    resize: vertical;
}
select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23D4AF37' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 16px center;
    padding-left: 40px;
}

/* === Contact Cards === */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}
.contact-card {
    text-align: center;
    padding: 28px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}
.contact-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}
.contact-card i {
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 12px;
}
.contact-card h4 {
    font-size: .95rem;
    margin-bottom: 6px;
}
.contact-card p {
    color: var(--text-secondary);
    font-size: .9rem;
}
.contact-card a {
    color: var(--gold);
    text-decoration: none;
}

/* === Blog === */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
}
.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}
.blog-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-card);
}
.blog-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.blog-card-body {
    padding: 24px;
}
.blog-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    font-size: .8rem;
    color: var(--text-muted);
}
.blog-meta span i { margin-left: 4px; }
.blog-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}
.blog-card h3 a {
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition-fast);
}
.blog-card h3 a:hover { color: var(--gold); }
.blog-card p {
    color: var(--text-secondary);
    font-size: .9rem;
    line-height: 1.7;
}

/* === Article Page === */
.article-header {
    text-align: center;
    padding-top: 120px;
    padding-bottom: 40px;
}
.article-cover {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 40px;
}
.article-content {
    max-width: 780px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 2;
    color: var(--text-secondary);
}
.article-content h2,
.article-content h3 {
    color: var(--text-primary);
    margin: 32px 0 16px;
}
.article-content p {
    margin-bottom: 20px;
}
.article-content img {
    max-width: 100%;
    border-radius: var(--radius-sm);
    margin: 20px 0;
}
.article-share {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}
.share-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
}
.share-btn:hover {
    background: var(--gold-gradient);
    color: #0A0A0A;
    border-color: transparent;
}

/* === Calculator === */
.calc-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
}
.calc-step {
    margin-bottom: 28px;
}
.calc-step-label {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.calc-step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: #0A0A0A;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: .85rem;
}
.calc-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
}
.calc-option {
    padding: 16px;
    background: var(--bg-elevated);
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-main);
}
.calc-option:hover { border-color: var(--gold); }
.calc-option.selected {
    border-color: var(--gold);
    background: rgba(212,175,55,.1);
    box-shadow: 0 0 0 3px var(--gold-glow);
}
.calc-option i {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 8px;
    display: block;
}
.calc-option span {
    font-weight: 600;
    font-size: .9rem;
}
.calc-result {
    text-align: center;
    padding: 32px;
    background: var(--bg-elevated);
    border: 2px solid var(--gold);
    border-radius: var(--radius);
    margin-top: 32px;
}
.calc-result-label {
    color: var(--text-secondary);
    font-size: .9rem;
    margin-bottom: 8px;
}
.calc-result-price {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    background: var(--gold-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.calc-result-note {
    color: var(--text-muted);
    font-size: .8rem;
    margin-top: 8px;
}

/* === Booking === */
.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}
.booking-info {
    padding: 36px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.booking-info h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}
.booking-step {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}
.booking-step-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: rgba(212,175,55,.1);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
}
.booking-step h4 {
    font-size: .95rem;
    margin-bottom: 4px;
}
.booking-step p {
    color: var(--text-secondary);
    font-size: .85rem;
}

/* === FAQ === */
.faq-list {
    max-width: 780px;
    margin: 0 auto;
}
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}
.faq-item.open { border-color: var(--border-hover); }
.faq-question {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-fast);
    user-select: none;
}
.faq-question:hover { color: var(--gold); }
.faq-question i {
    color: var(--gold);
    font-size: .8rem;
    transition: transform .3s ease;
}
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
}
.faq-answer-inner {
    padding: 0 24px 20px;
    color: var(--text-secondary);
    font-size: .95rem;
    line-height: 1.8;
}

/* === About Page === */
.about-hero {
    padding-top: 120px;
    padding-bottom: 60px;
    text-align: center;
}
.timeline {
    position: relative;
    max-width: 700px;
    margin: 40px auto 0;
}
.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 50%;
    width: 2px;
    background: var(--border);
    transform: translateX(50%);
}
.timeline-item {
    position: relative;
    padding: 20px 0;
}
.timeline-dot {
    position: absolute;
    right: 50%;
    transform: translateX(50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--gold-gradient);
    border: 3px solid var(--bg-primary);
    z-index: 1;
}
.timeline-content {
    width: 45%;
    padding: 20px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}
.timeline-item:nth-child(odd) .timeline-content { margin-right: auto; margin-left: 55%; }
.timeline-item:nth-child(even) .timeline-content { margin-left: auto; margin-right: 55%; }
.timeline-year {
    color: var(--gold);
    font-weight: 800;
    font-size: .9rem;
    margin-bottom: 6px;
}

/* === Footer === */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 60px 0 24px;
}
.footer .container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 40px;
}
.footer-brand p {
    color: var(--text-secondary);
    font-size: .9rem;
    line-height: 1.8;
    margin: 16px 0;
}
.footer-social {
    display: flex;
    gap: 10px;
}
.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--gold-gradient);
    color: #0A0A0A;
    border-color: transparent;
}
.footer h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}
.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 2px;
    background: var(--gold-gradient);
    border-radius: 10px;
}
.footer-links {
    list-style: none;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: .9rem;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.footer-links a:hover { color: var(--gold); padding-right: 6px; }
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    color: var(--text-secondary);
    font-size: .9rem;
}
.footer-contact i {
    color: var(--gold);
    margin-top: 4px;
    min-width: 16px;
}
.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 20px;
    text-align: center;
    color: var(--text-muted);
    font-size: .85rem;
}

/* === WhatsApp Float === */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 998;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 20px rgba(37,211,102,.4);
    text-decoration: none;
    transition: var(--transition);
    animation: whatsappPulse 2s ease-in-out infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37,211,102,.5);
    color: #fff;
}
@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
    50% { box-shadow: 0 4px 20px rgba(37,211,102,.4), 0 0 0 10px rgba(37,211,102,.1); }
}

/* === Back to Top === */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 998;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    background: var(--gold-gradient);
    color: #0A0A0A;
    border-color: transparent;
}

/* === Alerts === */
.alert {
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: .9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.alert-success { background: rgba(34,197,94,.1); color: #22c55e; border: 1px solid rgba(34,197,94,.2); }
.alert-danger  { background: rgba(239,68,68,.1); color: #ef4444; border: 1px solid rgba(239,68,68,.2); }
.alert-warning { background: rgba(245,158,11,.1); color: #f59e0b; border: 1px solid rgba(245,158,11,.2); }
.alert-info    { background: rgba(59,130,246,.1); color: #3b82f6; border: 1px solid rgba(59,130,246,.2); }
.alert-dismissible .btn-close {
    margin-right: auto;
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    font-size: 1rem;
    opacity: .6;
}

/* === Page Header (sub-pages) === */
.page-header {
    padding: 120px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center top, rgba(212,175,55,.06) 0%, transparent 60%);
}
.page-header h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    position: relative;
}
.page-breadcrumb {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 16px;
    font-size: .9rem;
    color: var(--text-muted);
    position: relative;
}
.page-breadcrumb a {
    color: var(--gold);
    text-decoration: none;
}

/* === Before/After Slider === */
.ba-slider {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: col-resize;
    aspect-ratio: 16/10;
}
.ba-slider img {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ba-before { clip-path: inset(0 0 0 var(--pos, 50%)); }
.ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--pos, 50%);
    width: 4px;
    background: var(--gold);
    z-index: 2;
    transform: translateX(-50%);
}
.ba-handle::before {
    content: '\f0d9\00a0\f0da';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: #0A0A0A;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    box-shadow: var(--shadow-gold);
}
.ba-label {
    position: absolute;
    bottom: 16px;
    padding: 6px 14px;
    background: rgba(0,0,0,.7);
    color: #fff;
    border-radius: 50px;
    font-size: .75rem;
    font-weight: 600;
    z-index: 1;
}
.ba-label-before { right: 16px; }
.ba-label-after { left: 16px; }

/* === Pagination === */
.pagination {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 48px;
}
.pagination a,
.pagination span {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: .9rem;
    transition: var(--transition);
}
.pagination a:hover { border-color: var(--gold); color: var(--gold); }
.pagination .active {
    background: var(--gold-gradient);
    color: #0A0A0A;
    border-color: transparent;
}

/* === Reveal Animations === */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-left {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity .7s ease, transform .7s ease;
}
.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}
.reveal-right {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity .7s ease, transform .7s ease;
}
.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}
.reveal-scale {
    opacity: 0;
    transform: scale(.9);
    transition: opacity .6s ease, transform .6s ease;
}
.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger delay for children */
.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: .1s; }
.stagger > *:nth-child(3) { transition-delay: .2s; }
.stagger > *:nth-child(4) { transition-delay: .3s; }
.stagger > *:nth-child(5) { transition-delay: .4s; }
.stagger > *:nth-child(6) { transition-delay: .5s; }

/* === Responsive Grid Helper === */
.resp-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.resp-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

/* === Responsive === */
@media (max-width: 992px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item:not(:last-child)::after { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .booking-grid { grid-template-columns: 1fr; }
    .timeline::before { right: 20px; }
    .timeline-dot { right: 20px; }
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        width: calc(100% - 50px);
        margin-right: 0;
        margin-left: auto;
    }
    .resp-grid-2 { grid-template-columns: 1fr !important; }
    .resp-grid-3 { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 768px) {
    .portfolio-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr 1fr; }
    .hero h1 { font-size: clamp(1.8rem, 7vw, 2.8rem); }
    .hero p { font-size: .95rem; }
    .hero-badge { font-size: .75rem; padding: 6px 14px; }
    .calc-container { padding: 28px 20px; }
    .calc-options { grid-template-columns: repeat(2, 1fr); }
    .section { padding: clamp(40px, 6vw, 80px) 0; }
    .section-title { font-size: clamp(1.4rem, 5vw, 2rem); }
    .section-subtitle { font-size: .9rem; margin-bottom: 32px; }
    .page-header { padding: 100px 0 40px; }
    .page-header h1 { font-size: clamp(1.4rem, 5vw, 2rem); }
    /* About page stats grid */
    .about-stats { grid-template-columns: 1fr 1fr !important; }
    .resp-grid-3 { grid-template-columns: 1fr !important; }
    /* Footer contact */
    .footer-contact li { font-size: .85rem; }
    /* Mobile nav safe area */
    .mobile-nav { padding-top: 80px; overflow-y: auto; }
    /* Tour canvas */
    #tourCanvas { height: 300px !important; }
}
@media (max-width: 576px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-btns { flex-direction: column; align-items: center; }
    .hero-btns .btn-gold,
    .hero-btns .btn-outline { width: 100%; justify-content: center; }
    .features-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .filter-btns { gap: 6px; }
    .filter-btn { padding: 8px 16px; font-size: .8rem; }
    .cta-btns { flex-direction: column; align-items: center; }
    .cta-btns .btn-gold,
    .cta-btns .btn-outline { width: 100%; justify-content: center; }
    .stat-number { font-size: 1.5rem; }
    .stat-label { font-size: .8rem; }
    .nav-brand span { font-size: 1rem; }
    .nav-brand img { width: 36px; height: 36px; }
    /* Booking info cards */
    .booking-step { gap: 12px; }
    .booking-step-icon { width: 36px; height: 36px; min-width: 36px; font-size: .85rem; }
    /* Color picker */
    .color-picker-layout { grid-template-columns: 1fr !important; }
    /* Material preview */
    .material-preview-grid { grid-template-columns: 1fr !important; }
}

/* ============================================================
   3D & ANIMATION EFFECTS — Premium
   ============================================================ */

/* === Mouse Glow === */
.mouse-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,175,55,.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    transition: none;
}
@media (max-width: 768px) { .mouse-glow { display: none; } }

/* === Custom Cursor === */
.custom-cursor {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1.5px solid rgba(212,175,55,.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transition: width .3s, height .3s, border-color .3s, background .3s;
    mix-blend-mode: difference;
}
.custom-cursor.cursor-hover {
    width: 56px;
    height: 56px;
    border-color: var(--gold);
    background: rgba(212,175,55,.08);
}
.custom-cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
}
@media (max-width: 768px) {
    .custom-cursor, .custom-cursor-dot { display: none; }
}
/* Custom cursor coexists with default — no hiding */

/* === Scroll Progress Bar === */
.scroll-progress {
    position: fixed;
    top: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
    z-index: 10000;
    width: 0%;
    transition: width .1s linear;
    box-shadow: 0 0 10px rgba(212,175,55,.5);
}

/* === Paint Drip / Reveal on Titles === */
.section-title.paint-reveal .gold {
    animation: paintReveal 1s ease forwards;
}
@keyframes paintReveal {
    0% {
        background-size: 0% 100%;
        opacity: 0;
    }
    100% {
        background-size: 100% 100%;
        opacity: 1;
    }
}

/* === Gold Line Animated === */
.paint-reveal .gold-line {
    animation: lineGrow .8s ease .3s forwards;
    transform-origin: center;
    transform: scaleX(0);
}
@keyframes lineGrow {
    to { transform: scaleX(1); }
}

/* === Color Palette Animation === */
.color-showcase {
    margin: 40px auto;
    max-width: 500px;
    text-align: center;
}
.palette-name {
    color: var(--gold);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 16px;
    animation: fadeIn .5s ease;
}
.palette-colors {
    display: flex;
    gap: 8px;
    justify-content: center;
}
.palette-swatch {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    border: 2px solid rgba(255,255,255,.1);
    animation: swatchPop .5s cubic-bezier(.34,1.56,.64,1) forwards;
    opacity: 0;
    transform: scale(0);
    box-shadow: 0 4px 12px rgba(0,0,0,.3);
    transition: transform .3s ease;
}
.palette-swatch:hover {
    transform: scale(1.2) !important;
}
@keyframes swatchPop {
    to { opacity: 1; transform: scale(1); }
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* === Shimmer Effect on Gold Text === */
.hero h1 .gold {
    background: linear-gradient(
        90deg,
        #D4AF37 0%,
        #F5D060 25%,
        #D4AF37 50%,
        #F5D060 75%,
        #D4AF37 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}
@keyframes shimmer {
    0% { background-position: 200% center; }
    100% { background-position: -200% center; }
}

/* === Floating Animation on Stats Icons === */
.stat-icon {
    animation: floatIcon 3s ease-in-out infinite;
}
.stat-item:nth-child(2) .stat-icon { animation-delay: .5s; }
.stat-item:nth-child(3) .stat-icon { animation-delay: 1s; }
.stat-item:nth-child(4) .stat-icon { animation-delay: 1.5s; }
@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* === Glow Pulse on Service Cards on Hover === */
.service-card:hover {
    box-shadow:
        0 0 20px rgba(212,175,55,.1),
        0 8px 32px rgba(0,0,0,.3),
        inset 0 0 60px rgba(212,175,55,.03);
}

/* === Gradient Border Animation === */
.hero-badge {
    background: linear-gradient(var(--bg-primary), var(--bg-primary)) padding-box,
                linear-gradient(135deg, var(--gold), transparent, var(--gold)) border-box;
    border: 1px solid transparent;
    animation: rotateBorder 4s linear infinite;
    background-size: 100% 100%, 200% 200%;
}
@keyframes rotateBorder {
    0% { background-position: 0 0, 0% 0%; }
    50% { background-position: 0 0, 100% 100%; }
    100% { background-position: 0 0, 0% 0%; }
}

/* === Typing Cursor === */
#typingText::after {
    content: '|';
    color: var(--gold);
    animation: blink .8s step-end infinite;
    margin-right: 2px;
}
@keyframes blink {
    50% { opacity: 0; }
}

/* === 3D Transform on Cards === */
.service-card,
.feature-card,
.testimonial-card {
    transform-style: preserve-3d;
    will-change: transform;
}
.service-icon,
.feature-icon {
    transform: translateZ(30px);
}

/* === Ripple Effect on Buttons === */
.btn-gold, .btn-outline {
    position: relative;
    overflow: hidden;
}
.btn-gold::after, .btn-outline::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width .6s ease, height .6s ease;
}
.btn-gold:active::after, .btn-outline:active::after {
    width: 300px;
    height: 300px;
}

/* === WhatsApp Bounce Enhanced === */
.whatsapp-float {
    animation: whatsappBounce 3s ease-in-out infinite;
}
@keyframes whatsappBounce {
    0%, 100% { transform: translateY(0) scale(1); }
    25% { transform: translateY(-8px) scale(1.05); }
    50% { transform: translateY(0) scale(1); }
    75% { transform: translateY(-4px) scale(1.02); }
}
