:root {
    /* --- HYBRID NEON PALETTE (Dark Base + White Light) --- */
    /* Background: Lighter Premium Bordo-Black Base */
    --void-bg: #1c0e12;
    /* Much Lighter than before */
    --nebula-light: #f0f0f0;
    /* Pure White Light */
    --nebula-bordo: #5c0f20;
    /* Richer Bordo */

    /* Accents */
    --neon-pink: #b30030;
    /* Slightly Brighter Bordo */
    --neon-glow: #ff1a53;
    /* Higher Pop */

    /* Glass System: More Visible & Premium */
    --glass-surface: rgba(255, 255, 255, 0.12);
    /* clearer glass */
    --glass-border: rgba(255, 255, 255, 0.25);
    --glass-highlight: rgba(255, 255, 255, 0.35);
    --glass-blur: blur(30px);

    /* Text Colors */
    --text-main: #ffffff;
    --text-muted: #dcdcdc;
    /* Brighter Muted Text */

    /* Compats */
    --primary: var(--neon-pink);
    --bg-dark: var(--void-bg);
}

body {
    background-color: var(--void-bg);
    /* THE PREMIUM LIGHT HYBRID: Soft Dark Base + DOMINANT White Flares */
    background-image:
        /* Top-Left MASSIVE White Flare (Ambient Light) */
        radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.45) 0%, transparent 55%),
        /* Bottom-Right Soft Bordo Glow */
        radial-gradient(circle at 90% 90%, rgba(153, 0, 51, 0.5) 0%, transparent 60%),
        /* Center/Top Wide White Haze (The "Daylight" feel) */
        radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 75%);
    background-attachment: fixed;
    color: var(--text-main);
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    margin: 0;
}

/* Typography Reset */
h1,
h2,
h3,
h4,
h5 {
    color: #fff;
}

p {
    color: #ddd;
}

.text-white {
    color: #fff !important;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* Navbar: Glass Capsule */
/* Navbar: Professional Transparent */
.navbar {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 15px 0;
    transition: all 0.4s ease;
    box-shadow: none;
}

.navbar.scrolled {
    background: rgba(10, 2, 5, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin: 0 15px;
    position: relative;
    /* For hover effect */
}

/* Nav Link Hover - Subtle underline glow */
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--neon-pink);
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.3s;
    box-shadow: 0 0 10px var(--neon-pink);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: #fff !important;
}

/* Hero Subtitle - Integrated Glass Pill (High Readability) */
.hero-subtitle {
    display: inline-block;
    font-size: 1rem;
    font-weight: 800;
    /* Bolder for readability */
    letter-spacing: 2px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    /* Lighter bg for contrast */
    border: 1px solid rgba(255, 255, 255, 0.3);
    /* Stronger border */
    padding: 12px 30px;
    border-radius: 50px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: 0.3s ease;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    /* Shadow for lift, not blur */
}

.hero-subtitle:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #fff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    color: #fff;
}

/* Hero Title */
/* Hero Title - Luminous & Modern */
h1.hero-title {
    color: #fff;
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

h1.hero-title span {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.8);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    position: relative;
    display: inline-block;
}

/* Subtle glowing text animation */
h1.hero-title span::before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    color: var(--neon-pink);
    overflow: hidden;
    border-right: 2px solid var(--neon-pink);
    animation: typeGlow 4s steps(20) infinite alternate;
    opacity: 0.5;
    filter: blur(5px);
}

/* Wrapper Fixes for Alignment */
.hero-wrapper {
    padding: 150px 0 100px;
}

@media (min-width: 992px) {
    .hero-wrapper {
        text-align: left;
    }

    .hero-phone-container {
        text-align: right;
    }
}

/* Glass Components */
.glass-dashboard,
.glass-panel-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.2) 100%);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(30px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border-radius: 30px;
    padding: 40px;
}

/* Buttons - Ultra Premium & Animated */
.btn-neon {
    background: linear-gradient(90deg, var(--neon-pink), #ff0040, var(--neon-pink));
    background-size: 200% auto;
    color: #fff;
    border: none;
    box-shadow:
        0 0 20px rgba(255, 0, 64, 0.5),
        0 0 40px rgba(255, 0, 64, 0.3);
    font-weight: 700;
    border-radius: 50px;
    padding: 12px 35px;
    letter-spacing: 0.5px;
    transition: 0.3s;
    animation: gradientMove 3s linear infinite;
}

.btn-neon:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow:
        0 0 30px rgba(255, 0, 64, 0.8),
        0 0 60px rgba(255, 0, 64, 0.5);
    color: #fff;
}

@keyframes gradientMove {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

.btn-glass {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    padding: 12px 35px;
    font-weight: 500;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-glass:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.btn-glass:hover::before {
    left: 100%;
}

/* Floating Tags - PROFESSIONAL GLASS PILLS */
.float-tag {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    color: #111;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 10px 20px;
    border-radius: 100px;
    border: 2px solid rgba(255, 255, 255, 1);
    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.3),
        0 0 15px rgba(255, 255, 255, 0.4);
    /* Glow */
    white-space: nowrap;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.float-tag:hover {
    transform: scale(1.1);
    background: #fff;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.6);
}

/* Specific Positions & Complex Orbits */
.float-tag.tag-1 {
    top: 15%;
    right: -40px;
    animation: orbitFloat1 6s ease-in-out infinite;
}

.float-tag.tag-2 {
    bottom: 20%;
    left: -50px;
    animation: orbitFloat2 7s ease-in-out infinite 0.5s;
}

.float-tag.tag-3 {
    bottom: 5%;
    right: -10px;
    animation: orbitFloat3 8s ease-in-out infinite 1.5s;
}

@keyframes orbitFloat1 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(-10px, -15px) rotate(2deg);
    }
}

@keyframes orbitFloat2 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(15px, 10px) rotate(-3deg);
    }
}

@keyframes orbitFloat3 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(-5px, -20px) rotate(1deg);
    }
}

/* Phone Wrapping */
.hero-phone-wrap {
    width: 300px;
    transform-style: preserve-3d;
    animation: floatPhone 6s ease-in-out infinite;
    position: relative;
    z-index: 5;
    /* Removed border-radius and overflow to prevent cutting the new HD image */
    /* Removed heavy box-shadow to let image shadow take over or be cleaner */
}

.hero-phone-img {
    width: 100%;
    transform: scale(1.02);
    display: block;
    /* Ensure no inline spacing */
}

@keyframes floatPhone {

    0%,
    100% {
        transform: translateY(0) rotateY(-15deg) rotateX(10deg);
    }

    50% {
        transform: translateY(-20px) rotateY(-5deg) rotateX(5deg);
    }
}

/* Phone Stage */
.phone-stage {
    perspective: 1000px;
    display: flex;
    justify-content: center;
}

@media(max-width:991px) {
    h1.hero-title {
        font-size: 2.5rem;
        text-align: center;
    }

    .hero-wrapper {
        text-align: center;
        padding-top: 120px;
    }

    .phone-stage {
        margin-top: 50px;
        min-height: 400px;
    }

    .hero-phone-wrap {
        width: 220px;
    }

    .float-tag {
        font-size: 0.7rem;
        padding: 8px 14px;
    }

    .float-tag.tag-1 {
        right: -10px;
    }

    .float-tag.tag-2 {
        left: -10px;
    }

    /* Mobile Menu Glass Effect */
    .navbar-collapse {
        background: rgba(10, 2, 5, 0.9);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 20px;
        border-radius: 0 0 20px 20px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
        margin-top: 0;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-top: none;
        /* Seamless attachment */
    }
}


/* --- FEATURES SWIPER CAROUSEL (PHONE STYLE 3D) --- */
.features-swiper {
    width: 100%;
    overflow: visible !important;
    padding-bottom: 80px;
    perspective: 1200px;
    /* Enhanced 3D context */
}

/* Base Slide: Phone Shape - Faded side cards */
.feature-slide {
    width: 360px;
    /* Wider Card */
    height: 580px;
    /* Taller Card */
    transition: all 0.5s ease;
    opacity: 0;
    /* HIDDEN BY DEFAULT */
    transform: scale(0.8) !important;
    /* Smaller side cards */
    filter: blur(5px);
    pointer-events: none;
    /* Prevent clicking hidden slides */
}

/* VISIBLE SLIDES: Active, Prev, Next */
.swiper-slide-active,
.swiper-slide-prev,
.swiper-slide-next {
    opacity: 1;
    pointer-events: auto;
}

/* Active Slide: Front & Center */
.swiper-slide-active.feature-slide {
    opacity: 1;
    filter: blur(0);
    z-index: 100;
    transform: scale(1) !important;
}

/* Side Slides (Prev/Next) specific styling */
.swiper-slide-prev,
.swiper-slide-next {
    opacity: 0.4;
    /* Faded but visible */
    z-index: 50;
    filter: blur(2px);
    cursor: pointer;
    /* Clickable */
}

/* Inner Card: The "Screen" */
.glass-card-inner {
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    /* Dark Screen Base */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    /* Phone Corners */
    padding: 40px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* Center Content */
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: 0.4s;
}

/* Active Card Background - LIGHTER & VIBRANT */
.swiper-slide-active .glass-card-inner {
    /* Lighter, Vibrant Red/Bordo Gradient */
    background: linear-gradient(135deg, #8a0a2b 0%, #3d0510 100%);
    border: 2px solid rgba(255, 255, 255, 0.3);
    /* Lighter border */
    box-shadow:
        0 30px 90px rgba(220, 20, 60, 0.4),
        /* Wider, softer red glow */
        0 0 0 6px rgba(255, 255, 255, 0.1);
    /* Outer Ring */
}

/* Icons */
.f-icon-box {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.05);
    /* Subtle dark glass */
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    /* Soft Squircle */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #fff;
    margin-bottom: 30px;
    transition: 0.4s;
}

/* Active Icon */
.swiper-slide-active .f-icon-box {
    background: var(--neon-pink);
    border-color: #fff;
    box-shadow: 0 10px 30px rgba(153, 0, 37, 0.6);
    transform: translateY(-10px) scale(1.1);
}

.f-title {
    font-weight: 800;
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.f-desc {
    color: #aaa;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 90%;
}

.swiper-slide-active .f-desc {
    color: #ddd;
}

/* Pagination */
.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #555;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--neon-pink);
    width: 30px;
    border-radius: 10px;
}

/* Sparkles */
.sparkles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 10px #fff, 0 0 20px var(--neon-pink);
    animation: sparkleAnim 4s infinite ease-in-out;
}

.sparkle.s1 {
    top: 20%;
    left: 10%;
    width: 6px;
    height: 6px;
}

.sparkle.s2 {
    top: 70%;
    right: 15%;
    animation-delay: 1.5s;
    width: 5px;
    height: 5px;
}

.sparkle.s3 {
    top: 40%;
    left: 50%;
    animation-delay: 2.5s;
}

@keyframes sparkleAnim {

    0%,
    100% {
        opacity: 0;
        transform: scale(0);
    }

    50% {
        opacity: 1;
        transform: scale(1.5);
    }
}

/* --- STATISTICS ANIMATIONS --- */

/* 1. Moving White Light Border for Main Dashboard */
.glass-dashboard {
    position: relative;
    overflow: hidden;
    /* Ensure the light stays inside/border */
    z-index: 1;
}

/* The Rotating Light Beam */
.glass-dashboard::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, transparent, transparent, #ffffff);
    /* White tail */
    animation: rotateBorder 4s linear infinite;
    z-index: -2;
}

/* The Dark Inner Mask (Restores the dark glass look inside the border) */
.glass-dashboard::after {
    content: '';
    position: absolute;
    inset: 1px;
    /* Border width */
    background: rgba(20, 10, 15, 0.85);
    /* Match original dark glass tone */
    backdrop-filter: blur(30px);
    border-radius: 30px;
    z-index: -1;
}

@keyframes rotateBorder {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* 2. Stat Cards Hover & Vibrant Numbers */
.stat-card {
    transition: all 0.4s ease;
    /* Inherits inline styles but animates transform */
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1) !important;
    /* Brighter glass on hover */
    border-color: rgba(255, 255, 255, 0.5) !important;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.stat-number {
    transition: 0.3s;
    /* Use base inline style but add shadow */
    text-shadow: 2px 2px 0px rgba(255, 255, 255, 0.1);
}

.stat-card:hover .stat-number {
    color: #fff !important;
    text-shadow:
        0 0 15px #fff,
        0 0 30px var(--neon-pink);
    transform: scale(1.1);
}

/* --- FLOATING WHATSAPP WIDGET --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 10px 25px 10px 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

/* Green Glow Animation */
.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 2px;
    background: linear-gradient(45deg, #25d366, #128c7e, #25d366);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(0, 0, 0, 0.8);
    box-shadow:
        0 0 20px rgba(37, 211, 102, 0.4),
        0 10px 40px rgba(0, 0, 0, 0.6);
}

.whatsapp-float:hover::before {
    opacity: 1;
}

.wa-icon {
    width: 50px;
    height: 50px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.6);
    animation: pulseGreen 2s infinite;
}

.wa-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.wa-text span {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.wa-text small {
    color: #25d366;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

@keyframes pulseGreen {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* --- CAMPAIGN SECTION (ULTRA STRIKING - RGB BORDER) --- */
.campaign-wrapper {
    z-index: 5;
    padding: 20px;
}

/* --- CYBER GRID HIGH-PERFORMANCE BACKGROUND --- */
.cyber-grid-bg {
    background-color: #080808;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    position: relative;
    /* Static border, no animation */
    /* border: 1px solid rgba(255,255,255,0.1) is handled inline or inherited */
}

/* Subtle corner accents for "Tech" look */
.cyber-grid-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(20, 10, 15, 0) 0%, rgba(0, 0, 0, 0.8) 90%);
    pointer-events: none;
    z-index: 0;
}

.campaign-neon-card {
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

/* REMOVED: .neon-border-anim, .campaign-inner-bg with blur, .particles-overlay */
/* REMOVED: Keyframes rotateBorder, particleFloat, pulseBackdrop */

/* Image Decoration simplified + Floating Animation */
.campaign-img-holder {
    position: relative;
    z-index: 5;
}

.campaign-img-holder img {
    animation: floatImg 6s ease-in-out infinite;
}

@keyframes floatImg {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Badge Glow */
.campaign-badge i {
    animation: flashIcon 1s infinite alternate;
}

@keyframes flashIcon {
    from {
        color: #fff;
        text-shadow: 0 0 5px #fff;
    }

    to {
        color: #ffeb3b;
        text-shadow: 0 0 20px #ffeb3b;
    }
}

/* Gradient Text */
.gradient-text-campaign {
    background: linear-gradient(to right, #fff, var(--gradient-col));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.2));
}

/* Button - Minimal Pulse */
.btn-campaign-neon {
    background: var(--btn-bg);
    border: none;
    color: #fff !important;
    position: relative;
    z-index: 10;
    overflow: hidden;
    transition: 0.3s;
    /* Soft static shadow */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    /* Minimal Pulse Animation */
    animation: minimalPulse 3s infinite;
}

@keyframes minimalPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.btn-campaign-neon:hover {
    transform: translateY(-2px);
    filter: brightness(1.2);
}

/* --- MOBILE NAVBAR BLUR FIX --- */
/* --- MOBILE NAVBAR BLUR FIX --- */
@media (max-width: 991px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        /* Push below the navbar header */
        left: 0;
        width: 100%;
        background: rgba(10, 2, 5, 0.4);
        /* Much more transparent */
        backdrop-filter: blur(20px);
        /* Strong Blur */
        -webkit-backdrop-filter: blur(20px);
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 20px 0;
        z-index: 9999;
        text-align: center;
    }

    .navbar-collapse .nav-link {
        margin: 10px 0;
        display: block;
        font-size: 1.1rem;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
        /* Text shadow for readability on glass */
    }
}

/* --- MOBILE/TABLET WHATSAPP BUTTON FIX --- */
@media (max-width: 991px) {
    .whatsapp-float {
        padding: 5px;
        gap: 0;
        width: 60px;
        height: 60px;
        justify-content: center;
        border-radius: 50%;
        right: 15px;
        bottom: 20px;
    }

    .wa-text {
        display: none;
    }
}

/* --- FOOTER ANIMATIONS --- */
.footer-links a {
    position: relative;
    transition: all 0.3s ease;
    display: block;
    width: fit-content;
}

.footer-links a:hover {
    color: #fff !important;
    text-shadow: 0 0 10px var(--neon-pink);
    transform: translateX(10px);
    /* Subtle slide right */
}



/* Social Icons */
.social-link {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
}

.social-link:hover {
    color: var(--neon-pink) !important;
    transform: translateY(-5px) scale(1.2);
    text-shadow: 0 0 15px var(--neon-pink);
}