/* ==========================================================================
   CSS Variables & Reset
   ========================================================================== */
   :root {
    /* Deep Cinematic Colors */
    --clr-black: #030303;
    --clr-charcoal: #0a0a0a;
    --clr-surface: #111111;
    --clr-white: #f8f8f8;
    --clr-gray: #888888;
    --clr-silver: #bbbbbb;
    --clr-gold: #cba865; /* Muted Premium Gold */
    --clr-red: #cc2929;  /* Deep Energy Red */
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-smooth: 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 1.2s cubic-bezier(0.16, 1, 0.3, 1);

    /* Spacing */
    --section-padding: 10rem 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none; /* Hide default cursor for custom glow */
}

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

body {
    background-color: var(--clr-black);
    color: var(--clr-white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
   Aesthetic Custom Cursor — Dot + Ring + Glow
   ========================================================================== */

/* Ambient glow (large soft halo) */
.cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(203,168,101,0.04) 0%, rgba(255,255,255,0.02) 35%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9996;
    mix-blend-mode: screen;
    will-change: transform;
    transition: opacity 0.3s ease;
}

/* Precision dot — instant follow */
.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 6px;
    height: 6px;
    background: var(--clr-gold);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    will-change: transform;
    transition: width 0.2s ease, height 0.2s ease, background 0.2s ease, opacity 0.2s ease;
    box-shadow: 0 0 8px rgba(203,168,101,0.8);
}

/* Trailing ring — lagged follow */
.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9998;
    will-change: transform;
    transition: width 0.35s cubic-bezier(0.16,1,0.3,1),
                height 0.35s cubic-bezier(0.16,1,0.3,1),
                border-color 0.35s ease,
                background 0.35s ease,
                opacity 0.2s ease;
}

/* Hover state — ring expands, turns gold */
.cursor-dot.hovered {
    width: 10px;
    height: 10px;
    background: var(--clr-gold);
    box-shadow: 0 0 16px rgba(203,168,101,1);
}

.cursor-ring.hovered {
    width: 52px;
    height: 52px;
    border-color: rgba(203,168,101,0.6);
    background: rgba(203,168,101,0.04);
}

/* Click state */
.cursor-dot.clicking {
    width: 4px;
    height: 4px;
    opacity: 0.6;
}

.cursor-ring.clicking {
    width: 24px;
    height: 24px;
    border-color: rgba(203,168,101,0.9);
}

/* Hide all cursor elements on touch devices */
@media (hover: none) and (pointer: coarse) {
    * { cursor: auto; }
    .cursor-glow,
    .cursor-dot,
    .cursor-ring { display: none; }
}

/* ==========================================================================
   Utility Classes & Layout
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 5%;
}

.section-padding {
    padding: var(--section-padding);
}

.dark-bg {
    background-color: var(--clr-charcoal);
}

.text-center {
    text-align: center;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.section-subtitle {
    color: var(--clr-gray);
    max-width: 650px;
    margin: 0 auto 4rem;
    font-size: 1.1rem;
}

.text-left-margin {
    margin: 0 0 4rem 0;
}

.section-header {
    margin-bottom: 5rem;
}

/* Film Grain Overlay */
.grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
    background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
    opacity: 0.04; /* Very subtle luxury texture */
}

/* Premium Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    border: 1px solid transparent;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.btn-primary {
    background-color: var(--clr-white);
    color: var(--clr-black);
    box-shadow: 0 0 20px rgba(255,255,255,0.1);
}

.btn-primary:hover {
    background-color: var(--clr-gold);
    color: var(--clr-white);
    box-shadow: 0 0 30px rgba(203, 168, 101, 0.3);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--clr-white);
    border-color: rgba(255,255,255,0.2);
}

.btn-outline:hover {
    background-color: var(--clr-white);
    color: var(--clr-black);
    border-color: var(--clr-white);
}

/* Glass Card Component */
.glass-card {
    background-color: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
    position: relative;
}

.glass-card:hover {
    background-color: rgba(255, 255, 255, 0.03);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), inset 0 0 20px rgba(255,255,255,0.02);
}

/* ==========================================================================
   Animations
   ========================================================================== */
.fade-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 2rem 0;
    transition: background-color var(--transition-smooth), padding var(--transition-smooth);
}

.navbar.scrolled {
    background-color: rgba(3, 3, 3, 0.9);
    padding: 1rem 0;
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
}

.logo img {
    height: 35px;
    transition: opacity var(--transition-fast);
    border-radius: 4px; /* Optional, softens the edges if it's a solid block */
}

.logo:hover img {
    opacity: 0.7;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-links a {
    color: var(--clr-silver);
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color var(--transition-fast);
}

.nav-links a:hover {
    color: var(--clr-white);
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

.nav-cta {
    padding: 0.8rem 1.8rem;
    font-size: 0.75rem;
}

.hamburger {
    display: none;
    width: 35px;
    height: 20px;
    position: relative;
    z-index: 1001;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 1px;
    width: 100%;
    background: var(--clr-white);
    transition: var(--transition-smooth);
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 10px; width: 60%; right: 0; }

.hamburger.active span:nth-child(1) {
    top: 10px;
    transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    top: 10px;
    width: 100%;
    transform: rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--clr-black);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999;
    transition: right 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-links {
    list-style: none;
    text-align: center;
}

.mobile-links li {
    margin: 1.5rem 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.active .mobile-links li {
    opacity: 1;
    transform: translateY(0);
}

.mobile-links a {
    color: var(--clr-white);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-weight: 300;
}

.mobile-links .btn {
    font-size: 1rem;
    margin-top: 1rem;
}

.mobile-contact-info {
    margin-top: 4rem;
    text-align: center;
    color: var(--clr-gray);
    font-size: 0.9rem;
    opacity: 0;
}

.mobile-menu.active .mobile-contact-info {
    opacity: 1;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5%;
    overflow: hidden;
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

/* Gradient fallback — only used if hero video fails to load */
.hero-static-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, #050505 0%, #0a0804 40%, #030303 100%);
}

/* Hero background video (local showreel/main-showreel.mp4) */
.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: slowZoom 30s linear infinite alternate;
}

@keyframes slowZoom {
    0%   { transform: scale(1.05); }
    100% { transform: scale(1.15); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(3,3,3,0.8) 0%, rgba(3,3,3,0.3) 40%, rgba(3,3,3,0.95) 100%);
}

.cinematic-bar {
    position: absolute;
    left: 0;
    width: 100%;
    height: 8vh;
    background-color: var(--clr-black);
    z-index: 1;
}

.cinematic-bar.top { top: 0; }
.cinematic-bar.bottom { bottom: 0; }

.hero-content {
    max-width: 1000px;
    z-index: 2;
    margin-top: 5vh;
}

.hero-label {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    color: var(--clr-gold);
    margin-bottom: 2rem;
    display: inline-block;
    border: 1px solid rgba(203, 168, 101, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    background: rgba(0,0,0,0.5);
}

.hero-kavishka {
    font-size: clamp(1rem, 2vw, 1.2rem);
    letter-spacing: 0.4em;
    color: var(--clr-silver);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.hero-kavishka span {
    color: var(--clr-white);
}

.hero-title {
    font-size: clamp(3.5rem, 8vw, 8rem);
    line-height: 0.9;
    margin-bottom: 2.5rem;
    text-shadow: 0 0 40px rgba(255,255,255,0.1);
}

.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--clr-silver);
    max-width: 750px;
    margin: 0 auto 3.5rem;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.hero-micro-info {
    position: absolute;
    bottom: 12vh;
    left: 5%;
    display: flex;
    gap: 3rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--clr-gray);
    z-index: 2;
}

.info-item {
    position: relative;
}

.info-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background-color: var(--clr-gold);
    border-radius: 50%;
    opacity: 0.5;
}

.scroll-indicator {
    position: absolute;
    bottom: 12vh;
    right: 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.mouse {
    width: 24px;
    height: 38px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 2px;
    height: 6px;
    background: var(--clr-white);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes scrollWheel {
    0% { top: 6px; opacity: 1; }
    100% { top: 20px; opacity: 0; }
}

/* ==========================================================================
   Showreel Section
   ========================================================================== */
.video-frame {
    width: 100%;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    padding: 1px; /* Creates the thin border effect */
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
}

.video-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, rgba(0,0,0,0) 70%);
    z-index: -1;
}

.video-frame video,
.drive-showreel-iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    display: block;
    background-color: var(--clr-black);
    border-radius: 3px;
    border: 0;
    /* Enforce 16:9 height when browser doesn't respect aspect-ratio */
    min-height: clamp(200px, 45vw, 700px);
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.glass-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--clr-white);
}

.glass-card p {
    color: var(--clr-silver);
    font-size: 1rem;
    font-weight: 300;
}

/* ==========================================================================
   Portfolio Section
   ========================================================================== */
.filter-container {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 4rem;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--clr-gray);
    padding: 0.6rem 1.8rem;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: var(--transition-smooth);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--clr-white);
    color: var(--clr-black);
    border-color: var(--clr-white);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* ── See More / See Less button ──────────────────────────────────── */
.see-more-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
}

/* Fading divider line above the button */
.see-more-wrap::before {
    content: '';
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(203, 168, 101, 0.5), transparent);
}

.btn-see-more {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    color: var(--clr-silver);
    /* Gold gradient border via box-shadow + border trick */
    border: 1px solid rgba(203, 168, 101, 0.28);
    padding: 1rem 3rem;
    border-radius: 60px;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    cursor: pointer;
    overflow: hidden;
    transition: color 0.4s ease, border-color 0.4s ease,
                background 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s ease;
}

/* Shimmer sweep on hover */
.btn-see-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255, 255, 255, 0.08) 50%,
        transparent 100%
    );
    transition: left 0.55s ease;
    pointer-events: none;
}

.btn-see-more:hover::before {
    left: 160%;
}

.btn-see-more:hover {
    color: var(--clr-white);
    border-color: rgba(203, 168, 101, 0.7);
    background: rgba(203, 168, 101, 0.07);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(203, 168, 101, 0.12),
                0 0 0 1px rgba(203, 168, 101, 0.18);
}

/* Small gold dot accent left of text */
.btn-see-more span {
    position: relative;
}

#seeMoreIcon {
    color: rgba(203, 168, 101, 0.8);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
    flex-shrink: 0;
}

.btn-see-more:hover #seeMoreIcon {
    color: var(--clr-gold);
}


.portfolio-item {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.portfolio-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Drive thumbnail card — replaces the native <video> preview */
.portfolio-thumb {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #0d0d0d;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

/* Play icon overlay on hover */
.thumb-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease, background 0.4s ease, transform 0.4s ease;
    backdrop-filter: blur(6px);
    pointer-events: none;
}

.thumb-play-icon svg {
    width: 22px;
    height: 22px;
    color: #fff;
    margin-left: 3px; /* optical center for play triangle */
}

.portfolio-item:hover .thumb-play-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(255, 255, 255, 0.22);
}

.placeholder-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #111, #0a0a0a);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.1) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    opacity: 1; /* Keep overlay visible for premium feel */
    transition: var(--transition-smooth);
}

.portfolio-item:hover .portfolio-preview,
.portfolio-item:hover .portfolio-thumb {
    transform: scale(1.03);
}

.portfolio-item:hover .portfolio-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.3) 100%);
}

.portfolio-meta .category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--clr-gold);
    margin-bottom: 0.8rem;
    display: block;
}

.portfolio-meta .title {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 0.04em;
    line-height: 1.3;
}

.portfolio-item .btn-view {
    align-self: flex-start;
    background: transparent;
    color: var(--clr-white);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 0.8rem 1.5rem;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.portfolio-item:hover .btn-view {
    opacity: 1;
    transform: translateY(0);
    background: var(--clr-white);
    color: var(--clr-black);
    border-color: var(--clr-white);
}

/* ==========================================================================
   Signature Style
   ========================================================================== */
.signature-split {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: center;
}

.signature-text h2 {
    font-size: clamp(3rem, 6vw, 6rem);
    line-height: 0.95;
    margin-bottom: 2.5rem;
    color: var(--clr-white);
}

.signature-text p {
    font-size: 1.25rem;
    color: var(--clr-silver);
    max-width: 600px;
    font-weight: 300;
}

.signature-points {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.signature-points .point {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem 0;
    transition: var(--transition-fast);
}

.signature-points .point:hover {
    padding-left: 1rem;
    border-color: rgba(255,255,255,0.2);
}

.signature-points .point h3 {
    font-size: 2rem;
    font-weight: 300;
    color: var(--clr-gray);
    transition: var(--transition-fast);
}

.signature-points .point:hover h3 {
    color: var(--clr-white);
}

/* ==========================================================================
   Case Studies
   ========================================================================== */
.case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.case-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--clr-gold);
    margin-bottom: 2rem;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
}

.about-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background-color: var(--clr-black);
    border: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.about-glow {
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(203, 168, 101, 0.05) 0%, rgba(0,0,0,0) 60%);
}

.about-logo-watermark {
    width: 40%;
    opacity: 0.15;
    z-index: 1;
}

/* Premium photo for About section */
.about-photo-wrap {
    width: 100%;
    aspect-ratio: 4/5;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-left: 2px solid rgba(203, 168, 101, 0.35);
}

.about-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    filter: brightness(0.92) contrast(1.05);
}

.about-photo-wrap:hover .about-photo {
    transform: scale(1.04);
}

.about-photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.7) 0%, transparent 100%);
    pointer-events: none;
}

.about-content p {
    color: var(--clr-silver);
    font-size: 1.15rem;
    margin-bottom: 2rem;
    font-weight: 300;
    line-height: 1.8;
}

/* ==========================================================================
   Process Section (Timeline)
   ========================================================================== */
.timeline-container {
    position: relative;
    margin-top: 5rem;
}

.timeline-track {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.1);
    z-index: 0;
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.timeline-item {
    position: relative;
    padding-top: 3rem;
}

.timeline-item.mt-stagger {
    margin-top: 5rem;
}

.timeline-dot {
    position: absolute;
    top: 0;
    left: 0;
    width: 12px;
    height: 12px;
    background-color: var(--clr-gold);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(203, 168, 101, 0.5);
}

.timeline-item.mt-stagger .timeline-dot {
    top: auto;
    bottom: 100%;
    margin-bottom: 3rem; /* distance to track */
}

/* Adjust the dot position relative to track */
.timeline-item .timeline-dot {
    top: -6px; /* center on the 1px track */
}
.timeline-item.mt-stagger .timeline-dot {
    top: -5.5rem; /* align with track */
}

.timeline-content {
    background-color: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    border-radius: 2px;
}

.timeline-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--clr-gray);
    margin-bottom: 1rem;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: var(--clr-silver);
    font-size: 0.95rem;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.quote {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--clr-white);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.client {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--clr-gold);
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.premium-contact-card {
    background-color: var(--clr-black);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 4rem 3rem;
    position: relative;
    overflow: hidden;
}

.card-glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, rgba(0,0,0,0) 70%);
}

.premium-contact-card h3 {
    margin-bottom: 3rem;
    font-size: 2rem;
}

.info-group {
    margin-bottom: 2rem;
}

.info-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--clr-gray);
    margin-bottom: 0.5rem;
}

.info-group p {
    font-size: 1.1rem;
    color: var(--clr-white);
    line-height: 1.5;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background-color: transparent;
    color: var(--clr-white);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 1rem 2rem;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.btn-whatsapp:hover {
    background-color: #25D366;
    border-color: #25D366;
}

.mt-4 {
    margin-top: 2rem;
}

/* Form Styles */
.contact-form {
    padding: 4rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

input, select, textarea {
    width: 100%;
    padding: 1.2rem 0;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--clr-white);
    font-family: var(--font-body);
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

input::placeholder, textarea::placeholder {
    color: var(--clr-gray);
    font-weight: 300;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-bottom-color: var(--clr-white);
    box-shadow: 0 10px 20px -10px rgba(255,255,255,0.1);
}

select {
    appearance: none;
    cursor: none;
    color: var(--clr-gray);
}

select:focus {
    color: var(--clr-white);
}

option {
    background-color: var(--clr-black);
    color: var(--clr-white);
}

.submit-btn {
    width: 100%;
    margin-top: 1rem;
    padding: 1.5rem;
    font-size: 1rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: var(--clr-black);
    padding: 6rem 0 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1.5rem;
    border-radius: 4px;
}

.footer-brand h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.footer-brand p {
    color: var(--clr-gray);
    font-size: 1rem;
    max-width: 350px;
}

.footer-links h4, .footer-contact h4, .footer-social h4 {
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--clr-white);
}

.footer-links ul, .footer-contact ul {
    list-style: none;
}

.footer-links li, .footer-contact li {
    margin-bottom: 1rem;
    color: var(--clr-silver);
    font-size: 0.95rem;
}

.footer-links a, .social-icons a {
    color: var(--clr-silver);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-links a:hover, .social-icons a:hover {
    color: var(--clr-white);
}

.social-icons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    color: var(--clr-gray);
}

/* ==========================================================================
   Premium Video Modal
   ========================================================================== */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(3, 3, 3, 0.98);
    backdrop-filter: blur(20px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-modal.active {
    opacity: 1;
    pointer-events: all;
}

.modal-close {
    position: absolute;
    top: 40px;
    right: 50px;
    width: 40px;
    height: 40px;
    z-index: 2001;
}

.modal-close span {
    position: absolute;
    top: 50%;
    left: 10%;
    width: 80%;
    height: 1px;
    background-color: var(--clr-gray);
    transition: var(--transition-smooth);
}

.modal-close span:nth-child(1) { transform: rotate(45deg); }
.modal-close span:nth-child(2) { transform: rotate(-45deg); }

.modal-close:hover span { background-color: var(--clr-white); }

.modal-content {
    width: 90%;
    max-width: 1400px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    transform: scale(0.98);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-modal.active .modal-content {
    transform: scale(1);
}

.video-wrapper {
    width: 100%;
    aspect-ratio: 16/9;
    background-color: #000;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.8);
    border: 1px solid rgba(255,255,255,0.05);
    /* Ensure Drive iframe fills the wrapper */
    position: relative;
}

/* Support both native <video> and Google Drive <iframe> in modal */
.video-wrapper video,
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: contain;
}

.modal-info {
    text-align: center;
}

.modal-category {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--clr-gold);
    margin-bottom: 1rem;
    display: block;
}

.modal-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.modal-desc {
    color: var(--clr-silver);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* ==========================================================================
   Responsive Queries
   ========================================================================== */
/* ==========================================================================
   Responsive — Large Screens (≤1200px)
   ========================================================================== */
@media screen and (max-width: 1200px) {
    .timeline-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem 2rem;
    }
    .timeline-track { display: none; }
    .timeline-item.mt-stagger { margin-top: 0; }
    .timeline-item { padding-top: 0; }
    .timeline-dot { display: none; }
    .timeline-content { border-left: 2px solid var(--clr-gold); }
}

/* ==========================================================================
   Responsive — Tablet (769px – 1024px)
   ========================================================================== */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    /* Hide desktop nav links, show hamburger on tablet */
    .nav-links, .nav-cta {
        display: none;
    }
    .hamburger {
        display: block;
    }

    /* Typography */
    .section-padding {
        padding: 7rem 0;
    }
    .section-title {
        font-size: clamp(2rem, 4.5vw, 3.5rem);
    }
    .hero-title {
        font-size: clamp(2.8rem, 6vw, 5rem);
    }
    .hero-subtitle {
        font-size: 1rem;
    }

    /* Hero adjustments */
    .hero-micro-info {
        gap: 1.5rem;
        font-size: 0.7rem;
    }

    /* Grids — stack on tablet */
    .signature-split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .about-photo-wrap {
        aspect-ratio: 16/9;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .contact-form {
        padding: 2.5rem;
    }

    /* Portfolio */
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .filter-container {
        gap: 0.75rem;
    }
    .filter-btn {
        padding: 0.5rem 1.2rem;
        font-size: 0.75rem;
    }

    /* Services */
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .stat-item:not(:last-child)::after { display: none; }

    /* Footer */
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    /* Contact form row */
    .form-row {
        grid-template-columns: 1fr;
    }

    /* Timeline */
    .timeline-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    /* Testimonials */
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    /* Glass card padding */
    .glass-card {
        padding: 2rem;
    }
    .contact-form.glass-card {
        padding: 2.5rem;
    }

    /* Signature section text */
    .signature-text h2 {
        font-size: clamp(2rem, 4.5vw, 4rem);
    }
    .signature-points .point h3 {
        font-size: 1.5rem;
    }

    /* Footer bottom */
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    /* Hide scroll indicator on tablet */
    .scroll-indicator { display: none; }

    /* Hero buttons stack if tight */
    .hero-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
}

/* ==========================================================================
   Responsive — Mobile (≤768px)
   ========================================================================== */
@media screen and (max-width: 768px) {
    .nav-links, .nav-cta {
        display: none;
    }
    
    .hamburger {
        display: block;
    }
    
    .hero-micro-info, .scroll-indicator {
        display: none; /* Keep hero clean on mobile */
    }
    
    .hero-title {
        font-size: clamp(2.2rem, 7vw, 3.5rem);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .section-padding {
        padding: 5rem 0;
    }
    
    .timeline-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .signature-split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .about-photo-wrap {
        aspect-ratio: 4/3;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .service-grid {
        grid-template-columns: 1fr;
    }
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    .glass-card {
        padding: 1.75rem;
    }
    .section-title {
        font-size: clamp(1.8rem, 6vw, 2.8rem);
    }
}

/* ==========================================================================
   Portfolio Archive Label
   ========================================================================== */
.portfolio-archive-label {
    font-size: 0.7rem;
    letter-spacing: 0.45em;
    color: var(--clr-gold);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: block;
    opacity: 0.85;
}

/* portfolio-desc removed from cards — rule kept hidden for safety */
.portfolio-desc {
    display: none;
}

/* ==========================================================================
   Portfolio Booking Card (Weddings — no video)
   ========================================================================== */
.booking-card-item {
    cursor: default;
}

.booking-card {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(203, 168, 101, 0.06) 0%, rgba(10, 10, 10, 0.92) 100%);
    border: 1px solid rgba(203, 168, 101, 0.25);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: border-color var(--transition-smooth),
                background var(--transition-smooth),
                transform var(--transition-smooth),
                box-shadow var(--transition-smooth);
}

.booking-card:hover {
    border-color: rgba(203, 168, 101, 0.55);
    background: linear-gradient(145deg, rgba(203, 168, 101, 0.1) 0%, rgba(10, 10, 10, 0.96) 100%);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 40px rgba(203, 168, 101, 0.06);
}

.booking-card-glow {
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle, rgba(203, 168, 101, 0.07) 0%, transparent 60%);
    pointer-events: none;
    animation: bookingGlowPulse 5s ease-in-out infinite;
}

@keyframes bookingGlowPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50%       { opacity: 1;   transform: scale(1.08); }
}

.booking-card-inner {
    text-align: center;
    padding: 3rem 2.5rem;
    position: relative;
    z-index: 1;
}

.category-label-booking {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: var(--clr-gold);
    display: block;
    margin-bottom: 1.5rem;
    opacity: 0.85;
}

.booking-title {
    font-size: 2rem;
    font-weight: 300;
    color: var(--clr-white);
    margin-bottom: 1.2rem;
    letter-spacing: 0.05em;
}

.booking-desc {
    font-size: 0.92rem;
    color: var(--clr-silver);
    line-height: 1.75;
    font-weight: 300;
    margin-bottom: 2rem;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
}

.booking-btn {
    display: inline-block;
    text-decoration: none;
}

/* ==========================================================================
   Responsive — Portfolio grid for larger card counts
   ========================================================================== */
@media screen and (max-width: 1200px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .booking-title {
        font-size: 1.6rem;
    }

    .booking-desc {
        font-size: 0.85rem;
    }

    .modal-title {
        font-size: 1.8rem;
    }

    .modal-close {
        top: 20px;
        right: 20px;
    }
}

/* Cursor ring legacy rule preserved above in the Aesthetic Cursor block */

/* ==========================================================================
   UPGRADE: Service Cards — Icon + Gold Accent Line
   ========================================================================== */
.service-card {
    position: relative;
    overflow: hidden;
    padding-top: 2rem;
}

.svc-num {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    color: rgba(203, 168, 101, 0.4);
    letter-spacing: 0.2em;
    font-weight: 300;
    transition: color 0.4s ease;
}

.service-card:hover .svc-num {
    color: rgba(203, 168, 101, 0.8);
}

.svc-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 2rem;
    color: rgba(203, 168, 101, 0.55);
    transition: color 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.svc-icon svg {
    width: 100%;
    height: 100%;
}

.service-card:hover .svc-icon {
    color: var(--clr-gold);
    transform: translateY(-3px);
}

.svc-line {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, var(--clr-gold), transparent);
    transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .svc-line {
    width: 100%;
}

/* ==========================================================================
   UPGRADE: Stats Counter Strip
   ========================================================================== */
.stats-strip {
    padding: 6rem 0;
    background: var(--clr-charcoal);
    position: relative;
    overflow: hidden;
}

.stats-strip::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(203, 168, 101, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem 1rem;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50%;
    background: rgba(255, 255, 255, 0.06);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 5vw, 5rem);
    font-weight: 200;
    color: var(--clr-white);
    line-height: 1;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    /* Gold gradient text */
    background: linear-gradient(135deg, #f0d98c 0%, var(--clr-gold) 60%, #a0793a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--clr-gray);
    font-family: var(--font-heading);
}

@media screen and (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .stat-item:not(:last-child)::after { display: none; }
}

/* ==========================================================================
   UPGRADE: Section Dividers (gold gradient lines)
   ========================================================================== */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(203, 168, 101, 0.25) 30%, rgba(203, 168, 101, 0.5) 50%, rgba(203, 168, 101, 0.25) 70%, transparent 100%);
    margin: 0;
}

/* ==========================================================================
   UPGRADE: Floating WhatsApp Button
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 2.5rem;
    right: 2.5rem;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    z-index: 9000;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.3s ease,
                background 0.3s ease;
    animation: waSlideIn 0.8s 1.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes waSlideIn {
    from { opacity: 0; transform: translateY(20px) scale(0.8); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    background: #20c15d;
}

/* Pulse ring */
.wa-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.4);
    animation: waPulse 2.5s ease-out infinite;
}

@keyframes waPulse {
    0%   { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.8); opacity: 0; }
}

@media screen and (max-width: 768px) {
    .whatsapp-float {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 50px;
        height: 50px;
    }
}

/* ==========================================================================
   UPGRADE: Active Nav Link on Scroll
   ========================================================================== */
.nav-links a.nav-active {
    color: var(--clr-white);
    position: relative;
}

.nav-links a.nav-active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--clr-gold);
    animation: navLineIn 0.3s ease forwards;
}

@keyframes navLineIn {
    from { width: 0; }
    to   { width: 100%; }
}

/* ==========================================================================
   UPGRADE: Hero Title Word-by-Word Animation
   ========================================================================== */
.hero-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    animation: wordReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes wordReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
