/* ==========================================
   AANGAN INTERIORS — Advanced Animations & 3D
   ========================================== */

/* --- CSS Variables --- */
:root {
    --terracotta: #C4622D;
    --terra-light: #D4744A;
    --terra-dark: #A04E22;
    --cream: #FAF7F2;
    --cream-dark: #F0EBE1;
    --gold: #C9A84C;
    --gold-light: #E2C97E;
    --charcoal: #1E1E1E;
    --charcoal-mid: #3A3A3A;
    --gray: #7A7A7A;
    --gray-light: #B8B8B8;
    --sage: #7A9E7E;
    --white: #FFFFFF;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Jost', sans-serif;

    --nav-h: 75px;
    --section-pad: 100px;
    --radius: 4px;
    --radius-lg: 12px;
    --shadow: 0 8px 40px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--charcoal);
    line-height: 1.7;
    overflow-x: hidden;
    cursor: none;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { cursor: none; border: none; background: none; font-family: var(--font-body); }
input, textarea, select { font-family: var(--font-body); }

/* --- Custom Cursor --- */
.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--terracotta);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s;
    mix-blend-mode: multiply;
}
.cursor-ring {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1.5px solid rgba(196, 98, 45, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: width 0.4s cubic-bezier(0.25,0.46,0.45,0.94),
                height 0.4s cubic-bezier(0.25,0.46,0.45,0.94),
                border-color 0.3s;
}
.cursor-dot.hovered { width: 14px; height: 14px; background: var(--gold); }
.cursor-ring.hovered { width: 64px; height: 64px; border-color: var(--gold); }

/* --- Container --- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 768px) { .container { padding: 0 20px; } }

/* --- Announcement Bar --- */
.announce-bar {
    background: var(--charcoal);
    color: var(--gold-light);
    text-align: center;
    padding: 10px 20px;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    font-weight: 500;
    position: relative;
    z-index: 1001;
}

/* ==========================================
   NAVBAR
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-h);
    transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(250, 247, 242, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(0,0,0,0.08);
}
.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 115px; width: auto; }
.logo-text {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--charcoal);
    letter-spacing: 0.02em;
    transition: var(--transition);
}
.navbar.transparent .logo-text { color: var(--white); }
.navbar.scrolled .logo-text { color: var(--charcoal); }
.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--charcoal);
    position: relative;
    padding-bottom: 3px;
}
.navbar.transparent .nav-links a { color: rgba(255,255,255,0.9); }
.navbar.scrolled .nav-links a { color: var(--charcoal); }
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--terracotta);
    transition: width 0.4s cubic-bezier(0.4,0,0.2,1);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.nav-cta {
    background: var(--terracotta);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: var(--radius);
    letter-spacing: 0.08em;
    position: relative;
    overflow: hidden;
}
.nav-links a.nav-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--terra-dark);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: -1;
}
.nav-links a.nav-cta:hover::before { transform: scaleX(1); }
.nav-links a.nav-cta::after { display: none; }
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    cursor: pointer;
}
.nav-toggle span {
    display: block;
    height: 2px;
    background: var(--charcoal);
    transition: var(--transition);
    border-radius: 2px;
}
.navbar.transparent .nav-toggle span { background: var(--white); }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    display: inline-block;
    padding: 14px 36px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: none;
    border: none;
    position: relative;
    overflow: hidden;
}
.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.15);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.btn:hover::after { transform: scaleX(1); }
.btn-primary { background: var(--terracotta); color: var(--white); }
.btn-primary:hover { background: var(--terra-dark); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(196,98,45,0.35); color: var(--white); }
.btn-outline { background: transparent; border: 1.5px solid var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--charcoal); transform: translateY(-2px); }
.btn-outline-dark { background: transparent; border: 1.5px solid var(--charcoal); color: var(--charcoal); }
.btn-outline-dark:hover { background: var(--charcoal); color: var(--white); }
.btn-gold { background: var(--gold); color: var(--charcoal); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(201,168,76,0.35); }
.btn-360 {
    background: linear-gradient(135deg, #2d1f0e, #1a1208);
    color: var(--gold-light);
    border: 1px solid rgba(201,168,76,0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
}
.btn-360:hover { border-color: var(--gold); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.3); color: var(--gold-light); }
.mt-2 { margin-top: 1rem; }

/* ==========================================
   SECTION HEADERS
   ========================================== */
.section-tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 12px;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 500;
    line-height: 1.2;
    color: var(--charcoal);
    margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--terracotta); }
.section-subtitle { font-size: 1.05rem; color: var(--gray); max-width: 580px; line-height: 1.8; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-subtitle { margin: 0 auto; }
.divider { display: block; width: 50px; height: 2px; background: var(--terracotta); margin: 20px auto; }

/* ==========================================
   HERO — Full Immersive
   ========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0d0905;
}
#heroCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
    z-index: 1;
    transform: scale(1.05);
    transition: transform 8s ease;
}
.hero.loaded .hero-bg-img { transform: scale(1); }
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10,7,3,0.92) 30%, rgba(10,7,3,0.4) 70%, rgba(10,7,3,0.6) 100%);
    z-index: 2;
}
.hero-grain {
    position: absolute;
    inset: 0;
    z-index: 3;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 4;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    padding-top: var(--nav-h);
    padding-bottom: 160px;
    width: 100%;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
    opacity: 0;
    animation: heroFadeUp 1s 0.4s cubic-bezier(0.16,1,0.3,1) forwards;
}
.hero-eyebrow-line {
    width: 40px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold));
}
.hero-eyebrow-text {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-light);
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.2rem, 7vw, 6.5rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 30px;
    max-width: 800px;
    letter-spacing: -0.01em;
}
.hero-title .line {
    display: block;
    overflow: hidden;
}
.hero-title .line-inner {
    display: block;
    opacity: 0;
    transform: translateY(110%);
    animation: slideUp 1s cubic-bezier(0.16,1,0.3,1) forwards;
}
.hero-title .line:nth-child(1) .line-inner { animation-delay: 0.5s; }
.hero-title .line:nth-child(2) .line-inner { animation-delay: 0.65s; }
.hero-title .line:nth-child(3) .line-inner { animation-delay: 0.8s; }
.hero-title em { font-style: italic; color: var(--gold-light); font-weight: 300; }
.hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.6);
    max-width: 480px;
    margin-bottom: 48px;
    line-height: 1.9;
    opacity: 0;
    animation: heroFadeUp 1s 1s cubic-bezier(0.16,1,0.3,1) forwards;
}
.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: heroFadeUp 1s 1.15s cubic-bezier(0.16,1,0.3,1) forwards;
}
.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 4;
    display: flex;
    border-top: 1px solid rgba(255,255,255,0.07);
    opacity: 0;
    animation: heroFadeUp 1s 1.3s cubic-bezier(0.16,1,0.3,1) forwards;
}
.hero-stat {
    flex: 1;
    padding: 28px 36px;
    border-right: 1px solid rgba(255,255,255,0.07);
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
}
.hero-stat:last-child { border-right: none; }
.hero-stat:hover { background: rgba(255,255,255,0.03); }
.hero-stat::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--terracotta), var(--gold));
    transition: width 0.5s ease;
}
.hero-stat:hover::before { width: 100%; }
.hero-stat-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--white);
    line-height: 1;
    margin-bottom: 6px;
}
.hero-stat-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.hero-scroll-indicator {
    position: absolute;
    right: 48px;
    bottom: 90px;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0;
    animation: heroFadeUp 1s 1.6s forwards;
}
.scroll-text { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.3); writing-mode: vertical-rl; }
.scroll-bar { width: 1px; height: 70px; background: rgba(255,255,255,0.1); position: relative; overflow: hidden; }
.scroll-bar::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 40%; background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.5)); animation: scrollAnim 2s 2s infinite; }
@keyframes scrollAnim { 0% { transform: translateY(-100%); } 100% { transform: translateY(300%); } }

/* ==========================================
   3D CARD TILT EFFECT
   ========================================== */
.tilt-card {
    transform-style: preserve-3d;
    transition: transform 0.1s ease;
}
.tilt-card-inner {
    transform: translateZ(20px);
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about-section { padding: var(--section-pad) 0; background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-images { position: relative; height: 580px; perspective: 1000px; }
.about-img-main {
    position: absolute; top: 0; left: 0; width: 75%; height: 85%;
    object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
    transition: transform 0.6s ease;
}
.about-img-secondary {
    position: absolute; bottom: 0; right: 0; width: 55%; height: 55%;
    object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
    border: 6px solid var(--cream);
    transition: transform 0.6s ease;
}
.about-images:hover .about-img-main { transform: rotate(-1deg) scale(1.02); }
.about-images:hover .about-img-secondary { transform: rotate(1.5deg) scale(1.03) translateY(-6px); }
.about-badge {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    background: var(--terracotta); color: var(--white);
    width: 110px; height: 110px; border-radius: 50%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; font-family: var(--font-display); z-index: 10;
    box-shadow: 0 8px 30px rgba(196,98,45,0.4);
    animation: badgePulse 3s ease-in-out infinite;
}
@keyframes badgePulse {
    0%, 100% { box-shadow: 0 8px 30px rgba(196,98,45,0.4); }
    50% { box-shadow: 0 8px 50px rgba(196,98,45,0.7), 0 0 0 12px rgba(196,98,45,0.08); }
}
.about-badge-num { font-size: 1.8rem; font-weight: 600; line-height: 1; }
.about-badge-text { font-size: 0.72rem; }
.about-content .section-title { text-align: left; }
.about-content .section-subtitle { text-align: left; }
.about-features { margin: 32px 0; display: flex; flex-direction: column; gap: 16px; }
.about-feature { display: flex; align-items: flex-start; gap: 16px; }
.about-feature-icon {
    width: 44px; height: 44px;
    background: var(--cream-dark); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--terracotta); font-size: 1rem; flex-shrink: 0;
    transition: var(--transition);
}
.about-feature:hover .about-feature-icon { background: var(--terracotta); color: var(--white); transform: rotate(10deg) scale(1.1); }
.about-feature-text h4 { font-weight: 600; font-size: 1rem; margin-bottom: 4px; }
.about-feature-text p { font-size: 0.9rem; color: var(--gray); }

/* ==========================================
   SERVICES — 3D Hover Cards
   ========================================== */
.services-section {
    padding: var(--section-pad) 0;
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
}
.services-section::before {
    content: '';
    position: absolute;
    top: -200px; left: 50%; transform: translateX(-50%);
    width: 900px; height: 900px;
    background: radial-gradient(circle, rgba(196,98,45,0.06) 0%, transparent 60%);
    pointer-events: none;
}
.services-section .section-tag { color: var(--gold-light); }
.services-section .section-title { color: var(--white); }
.services-section .section-subtitle { color: rgba(255,255,255,0.45); }
.services-section .divider { background: var(--gold); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: transform 0.15s ease, box-shadow 0.3s, background 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
}
.service-card-glow {
    position: absolute;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196,98,45,0.2) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
    transform: translate(-50%, -50%);
}
.service-card:hover .service-card-glow { opacity: 1; }
.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(196,98,45,0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
}
.service-card:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.12); }
.service-card:hover::before { opacity: 1; }
.service-icon {
    width: 56px; height: 56px;
    background: rgba(196,98,45,0.12);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--terracotta); font-size: 1.4rem;
    margin-bottom: 24px;
    transition: var(--transition);
    position: relative; z-index: 1;
}
.service-card:hover .service-icon { background: var(--terracotta); color: var(--white); transform: scale(1.1) rotate(5deg); box-shadow: 0 8px 20px rgba(196,98,45,0.4); }
.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.35rem; font-weight: 500;
    color: var(--white); margin-bottom: 12px;
    position: relative; z-index: 1;
}
.service-card p { font-size: 0.92rem; color: rgba(255,255,255,0.45); line-height: 1.8; position: relative; z-index: 1; }
.service-card .learn-more {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--gold-light); font-size: 0.82rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase; margin-top: 20px;
    transition: gap 0.3s ease; position: relative; z-index: 1;
}
.service-card:hover .learn-more { gap: 16px; }

/* ==========================================
   GALLERY — Masonry with 3D hover
   ========================================== */
.gallery-section { padding: var(--section-pad) 0; background: var(--cream-dark); }
.gallery-filter { display: flex; justify-content: center; gap: 10px; margin-bottom: 40px; flex-wrap: wrap; }
.filter-btn {
    padding: 8px 22px; border-radius: 50px;
    font-size: 0.82rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
    border: 1.5px solid transparent; background: transparent; color: var(--gray);
    transition: var(--transition); cursor: none;
}
.filter-btn:hover, .filter-btn.active { background: var(--terracotta); color: var(--white); border-color: var(--terracotta); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 16px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: none;
    transform-style: preserve-3d;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
    will-change: transform;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(20,12,4,0.88) 0%, transparent 55%);
    opacity: 0; transition: opacity 0.4s ease;
    display: flex; align-items: flex-end; padding: 24px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-info h4 { color: var(--white); font-family: var(--font-display); font-size: 1.15rem; transform: translateY(10px); transition: transform 0.4s; }
.gallery-info span { color: rgba(255,255,255,0.55); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; }
.gallery-item:hover .gallery-info h4 { transform: translateY(0); }
.gallery-zoom-icon {
    position: absolute; top: 16px; right: 16px;
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(6px);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 0.9rem;
    opacity: 0; transform: scale(0.7);
    transition: opacity 0.3s, transform 0.3s;
}
.gallery-item:hover .gallery-zoom-icon { opacity: 1; transform: scale(1); }

/* ==========================================
   360° DESIGN VIEWER
   ========================================== */
.design360-section {
    padding: var(--section-pad) 0;
    background: #0d0905;
    position: relative;
    overflow: hidden;
}
.design360-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23C9A84C' fill-opacity='0.04'%3E%3Cpath d='M30 0L60 30L30 60L0 30z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.design360-header {
    text-align: center;
    position: relative;
    z-index: 2;
    margin-bottom: 60px;
}
.design360-header .section-tag { color: var(--gold-light); }
.design360-header .section-title { color: var(--white); }
.design360-header .divider { background: var(--gold); }
.design360-header p { color: rgba(255,255,255,0.5); max-width: 550px; margin: 0 auto; }
.design360-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}
.design360-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    cursor: none;
    position: relative;
}
.design360-card:hover { transform: translateY(-8px); border-color: rgba(201,168,76,0.3); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.design360-thumb {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #1a1208;
}
.design360-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.design360-card:hover .design360-thumb img { transform: scale(1.05); }
.design360-badge {
    position: absolute;
    top: 12px; left: 12px;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
    color: var(--gold-light);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 4px;
    border: 1px solid rgba(201,168,76,0.3);
}
.design360-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.3);
    opacity: 0;
    transition: opacity 0.3s;
}
.design360-card:hover .design360-play { opacity: 1; }
.design360-play-icon {
    width: 64px; height: 64px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    border: 1.5px solid rgba(255,255,255,0.3);
    color: white; font-size: 1.3rem;
    transition: transform 0.3s, background 0.3s;
}
.design360-play-icon:hover { transform: scale(1.15); background: var(--terracotta); border-color: transparent; }
.design360-info { padding: 20px 22px; }
.design360-info h4 { font-family: var(--font-display); font-size: 1.15rem; color: var(--white); margin-bottom: 6px; font-weight: 500; }
.design360-info p { font-size: 0.82rem; color: rgba(255,255,255,0.4); margin-bottom: 14px; }
.design360-meta { display: flex; align-items: center; gap: 14px; }
.design360-type { font-size: 0.72rem; color: var(--gold-light); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; }
.design360-cta-wrapper { text-align: center; margin-top: 50px; position: relative; z-index: 2; }

/* 360 Viewer Page */
.viewer-container {
    width: 100%;
    height: 100vh;
    position: relative;
    background: #000;
    overflow: hidden;
}
#panoCanvas { width: 100%; height: 100%; display: block; }
.viewer-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}
.viewer-btn {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    width: 48px; height: 48px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
}
.viewer-btn:hover { background: rgba(255,255,255,0.25); transform: scale(1.1); }
.viewer-info-bar {
    position: absolute;
    top: 0; left: 0; right: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, transparent 100%);
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10;
}
.viewer-title { font-family: var(--font-display); font-size: 1.3rem; color: white; font-weight: 400; }
.viewer-hint {
    position: absolute;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.5);
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: hintPulse 2s ease-in-out infinite;
}
@keyframes hintPulse { 0%,100%{opacity:0.5} 50%{opacity:1} }
.viewer-gyro-btn {
    position: absolute;
    top: 20px;
    right: 80px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    cursor: pointer;
    z-index: 10;
    backdrop-filter: blur(6px);
}

/* ==========================================
   PROCESS
   ========================================== */
.process-section { padding: var(--section-pad) 0; background: var(--cream); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; position: relative; }
.process-steps::before {
    content: '';
    position: absolute;
    top: 35px;
    left: calc(12.5% + 20px);
    right: calc(12.5% + 20px);
    height: 1px;
    background: linear-gradient(to right, var(--terracotta), var(--gold), var(--terracotta));
}
.process-step { text-align: center; }
.step-num {
    width: 70px; height: 70px;
    border-radius: 50%;
    background: var(--cream-dark);
    border: 2px solid var(--terracotta);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 1.5rem; font-weight: 600;
    color: var(--terracotta); margin: 0 auto 24px;
    position: relative; z-index: 2;
    transition: var(--transition);
}
.process-step:hover .step-num { background: var(--terracotta); color: var(--white); transform: scale(1.1) rotate(10deg); box-shadow: 0 8px 25px rgba(196,98,45,0.35); }
.process-step h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; margin-bottom: 10px; }
.process-step p { font-size: 0.9rem; color: var(--gray); line-height: 1.7; }

/* ==========================================
   TESTIMONIALS
   ========================================== */
.testimonials-section {
    padding: var(--section-pad) 0;
    background: var(--charcoal);
    position: relative; overflow: hidden;
}
.testimonials-section .section-title { color: var(--white); }
.testimonials-section .section-tag { color: var(--gold-light); }
.testimonials-section .divider { background: var(--gold); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: var(--transition);
    position: relative; overflow: hidden;
}
.testimonial-card::after {
    content: '\201C';
    position: absolute;
    top: -10px; right: 24px;
    font-family: var(--font-display);
    font-size: 8rem;
    color: rgba(201,168,76,0.06);
    line-height: 1;
    pointer-events: none;
}
.testimonial-card:hover { background: rgba(255,255,255,0.07); transform: translateY(-6px); border-color: rgba(255,255,255,0.14); }
.testimonial-stars { color: var(--gold); margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text { font-family: var(--font-display); font-size: 1.15rem; font-style: italic; color: rgba(255,255,255,0.85); line-height: 1.8; margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-author-img {
    width: 50px; height: 50px;
    border-radius: 50%; object-fit: cover;
    background: var(--terracotta);
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-family: var(--font-display); font-size: 1.2rem;
}
.testimonial-author-name { font-weight: 600; color: var(--white); }
.testimonial-author-title { font-size: 0.82rem; color: rgba(255,255,255,0.35); }

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--terracotta) 0%, var(--terra-dark) 100%);
    text-align: center;
    position: relative; overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.cta-section .section-title { color: var(--white); position: relative; }
.cta-section p { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 550px; margin: 0 auto 36px; position: relative; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ==========================================
   INSTAGRAM SECTION
   ========================================== */
.instagram-section { padding: var(--section-pad) 0; background: var(--cream); }
.instagram-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 40px; }
.instagram-follow {
    display: inline-flex; align-items: center; gap: 10px;
    color: var(--terracotta); font-size: 0.88rem; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase;
    border: 1.5px solid var(--terracotta); padding: 10px 22px; border-radius: var(--radius);
    transition: var(--transition);
}
.instagram-follow:hover { background: var(--terracotta); color: var(--white); }
.instagram-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.instagram-item { aspect-ratio: 1; overflow: hidden; border-radius: var(--radius); position: relative; cursor: none; }
.instagram-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.instagram-item:hover img { transform: scale(1.12); }
.instagram-hover {
    position: absolute; inset: 0;
    background: rgba(196,98,45,0.75);
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 1.5rem;
    opacity: 0; transition: var(--transition);
}
.instagram-item:hover .instagram-hover { opacity: 1; }

/* ==========================================
   FORMS
   ========================================== */
.form-section { padding: var(--section-pad) 0; background: var(--cream); }
.form-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.form-info h2 { font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 500; margin-bottom: 20px; }
.form-info p { color: var(--gray); line-height: 1.8; margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; }
.contact-detail-icon {
    width: 46px; height: 46px;
    background: var(--cream-dark); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--terracotta); font-size: 1rem; flex-shrink: 0;
    transition: var(--transition);
}
.contact-detail:hover .contact-detail-icon { background: var(--terracotta); color: var(--white); }
.contact-detail-text h4 { font-weight: 600; margin-bottom: 4px; font-size: 0.9rem; }
.contact-detail-text p, .contact-detail-text a { font-size: 0.95rem; color: var(--gray); }
.contact-detail-text a:hover { color: var(--terracotta); }

.form-card {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 48px; box-shadow: var(--shadow);
    transition: box-shadow 0.4s;
}
.form-card:hover { box-shadow: var(--shadow-lg); }
.form-group { margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
label {
    display: block; font-size: 0.82rem; font-weight: 600;
    letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--charcoal-mid); margin-bottom: 8px;
}
label .required { color: var(--terracotta); margin-left: 2px; }
input[type="text"], input[type="email"], input[type="tel"], input[type="number"], select, textarea {
    width: 100%; padding: 13px 16px;
    border: 1.5px solid var(--cream-dark);
    border-radius: var(--radius); font-size: 0.95rem;
    color: var(--charcoal); background: var(--cream);
    outline: none; transition: var(--transition);
}
input:focus, select:focus, textarea:focus {
    border-color: var(--terracotta); background: var(--white);
    box-shadow: 0 0 0 4px rgba(196,98,45,0.1);
}
textarea { resize: vertical; min-height: 130px; }
select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A7A7A' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 16px center;
}
.rating-group { display: flex; gap: 8px; }
.rating-group input[type="radio"] { display: none; }
.rating-group label {
    width: 44px; height: 44px;
    background: var(--cream-dark); border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; cursor: none;
    transition: var(--transition); text-transform: none;
    letter-spacing: 0; font-weight: 400; color: var(--gray-light); margin: 0;
}
.rating-group input[type="radio"]:checked + label, .rating-group label:hover { background: #FFF3CD; color: var(--gold); transform: scale(1.15) rotate(-5deg); }
.form-submit { width: 100%; font-size: 1rem; padding: 16px; }
.form-notice { font-size: 0.82rem; color: var(--gray); text-align: center; margin-top: 14px; }

.alert { padding: 14px 18px; border-radius: var(--radius); margin-bottom: 22px; font-size: 0.9rem; font-weight: 500; }
.alert-success { background: #E6F4EA; color: #2E7D32; border-left: 4px solid #2E7D32; }
.alert-error { background: #FDEDED; color: #C62828; border-left: 4px solid #C62828; }

/* ==========================================
   PAGE HERO (inner pages)
   ========================================== */
.page-hero {
    background: linear-gradient(135deg, #0d0905 0%, #2d1f0e 100%);
    padding: calc(var(--nav-h) + 80px) 0 80px;
    text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C9A84C' fill-opacity='0.04'%3E%3Ccircle cx='20' cy='20' r='1'/%3E%3C/g%3E%3C/svg%3E");
}
.page-hero .section-tag { color: var(--gold-light); }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 300; color: var(--white); position: relative; }
.page-hero p { color: rgba(255,255,255,0.55); max-width: 550px; margin: 16px auto 0; font-size: 1.05rem; position: relative; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 20px; font-size: 0.82rem; color: rgba(255,255,255,0.35); position: relative; }
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb-sep { color: rgba(255,255,255,0.2); }

/* ==========================================
   FOOTER
   ========================================== */
.footer { background: #0a0703; }
.footer-top { padding: 70px 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.4fr; gap: 50px; }
.footer-logo { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; color: var(--white); margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.35); line-height: 1.8; margin-bottom: 24px; }
.social-links { display: flex; gap: 12px; }
.social-links a {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,0.06);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.45); font-size: 0.95rem;
    transition: var(--transition); cursor: none;
}
.social-links a:hover { background: var(--terracotta); color: var(--white); transform: translateY(-3px) scale(1.1); }
.footer h4 { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
.footer-links ul, .footer-services ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a, .footer-services a { font-size: 0.9rem; color: rgba(255,255,255,0.4); transition: var(--transition); }
.footer-links a:hover, .footer-services a:hover { color: var(--gold-light); padding-left: 6px; }
.footer-contact .contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.footer-contact .contact-item i { color: var(--terracotta); margin-top: 3px; font-size: 0.9rem; }
.footer-contact .contact-item span { font-size: 0.88rem; color: rgba(255,255,255,0.4); line-height: 1.6; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 22px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.2); }

/* ==========================================
   WHATSAPP FLOAT
   ========================================== */
.whatsapp-float {
    position: fixed; bottom: 30px; right: 30px;
    width: 56px; height: 56px;
    background: #25D366; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 1.6rem;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: var(--transition);
    cursor: none;
}
.whatsapp-float:hover { transform: scale(1.12) rotate(-10deg); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }
.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%; height: 100%;
    background: #25D366;
    border-radius: 50%;
    animation: waPulse 2.5s ease-out infinite;
    z-index: -1;
}
@keyframes waPulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.8); opacity: 0; }
}

/* ==========================================
   ANIMATIONS & REVEAL
   ========================================== */
@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes slideUp {
    from { opacity: 0; transform: translateY(110%); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Stagger delays */
.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; }

/* ==========================================
   LIGHTBOX
   ========================================== */
.lightbox {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: var(--radius); animation: heroFadeUp 0.4s; }
.lightbox-close {
    position: absolute; top: 20px; right: 30px;
    color: var(--white); font-size: 2rem; cursor: none;
    background: none; border: none; opacity: 0.6;
    transition: var(--transition); line-height: 1;
}
.lightbox-close:hover { opacity: 1; transform: rotate(90deg) scale(1.1); }

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { gap: 50px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .instagram-grid { grid-template-columns: repeat(4, 1fr); }
    .instagram-item:nth-child(n+5) { display: none; }
    .design360-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    :root { --section-pad: 70px; --nav-h: 65px; }
    body { cursor: auto; }
    .cursor-dot, .cursor-ring { display: none; }
    button { cursor: pointer; }
    a, .btn, .filter-btn, .nav-links a, .whatsapp-float { cursor: pointer; }
    .nav-toggle { display: flex; cursor: pointer; }
    .nav-links {
        position: fixed; top: 0; right: -100%;
        width: 80%; max-width: 320px; height: 100vh;
        background: var(--white);
        flex-direction: column; align-items: flex-start;
        padding: calc(var(--nav-h) + 30px) 30px 30px;
        gap: 1.5rem; transition: right 0.4s ease;
        box-shadow: -10px 0 40px rgba(0,0,0,0.15); z-index: 999;
    }
    .nav-links.open { right: 0; }
    .nav-links a { color: var(--charcoal) !important; font-size: 1rem; }
    .nav-links a.nav-cta { width: 100%; text-align: center; }
    .about-grid { grid-template-columns: 1fr; }
    .about-images { height: 350px; }
    .services-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
    .gallery-item.tall, .gallery-item.wide { grid-row: span 1; grid-column: span 1; }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .process-steps::before { display: none; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; gap: 50px; }
    .form-row { grid-template-columns: 1fr; }
    .form-card { padding: 28px 20px; }
    .hero-stats { 
        display: flex; 
        flex-direction: column; 
        position: relative; 
        border: none; 
        border-top: 1px solid rgba(255,255,255,0.07);
        text-align: center;
    }
    .hero-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); padding: 25px; }
    .hero-title { font-size: 2.8rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom .container { flex-direction: column; gap: 8px; text-align: center; }
    .instagram-grid { grid-template-columns: repeat(3, 1fr); }
    .instagram-item:nth-child(n+4) { display: none; }
    .instagram-header { flex-direction: column; gap: 16px; text-align: center; }
    .design360-grid { grid-template-columns: 1fr; }
    .hero-content { padding: 0 20px; padding-top: var(--nav-h); }
    .nav-container { padding: 0 20px; }
    .hero-scroll-indicator { display: none; }
}
@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .instagram-grid { grid-template-columns: repeat(2, 1fr); }
    .instagram-item:nth-child(n+5) { display: none; }
    .process-steps { grid-template-columns: 1fr; }
    .hero-title { font-size: 2.2rem; }
}

/* --- Safely override cursor globally so mouse NEVER disappears --- */
body, *, a, button, .btn {
    cursor: auto !important;
}
a, button, .btn, .gallery-item, .filter-btn, .design360-card, .whatsapp-float, .social-links a, .nav-links a {
    cursor: pointer !important;
}
