/* ==========================================================================
   Sky Route Digital - Premium Black & Gold Luxury Tech Stylesheet
   Design System: Luxury Gold accents, Deep Pitch Blacks, Glassmorphism
   ========================================================================== */

/* --- Fonts & Base Setup --- */
:root {
    /* Premium Extracted Branding Colors */
    --gold-1: #FFD700; /* Bright Premium Gold */
    --gold-2: #D4AF37; /* Metallic Gold */
    --gold-3: #B8860B; /* Dark Goldenrod */
    
    --black: #050505;
    --dark-bg: #0B0B0B;
    --card-bg: #121212;
    --card-bg-rgb: 18, 18, 18;
    
    --white: #ffffff;
    --gray: #b8b8b8;
    
    /* System variables */
    --bg-dark: var(--dark-bg);
    --bg-dark-rgb: 11, 11, 11;
    --card-border: rgba(212, 175, 55, 0.12);
    --card-border-hover: rgba(255, 215, 0, 0.45);
    
    --primary: var(--gold-2);
    --primary-rgb: 212, 175, 55;
    --secondary: var(--gold-3);
    --secondary-rgb: 184, 134, 11;
    --glow-gold: var(--gold-1);
    --glow-gold-rgb: 255, 215, 0;
    
    --text-white: var(--white);
    --text-muted: var(--gray);
    --text-dim: #7f7f7f;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;

    /* Native Bootstrap Dark Overrides */
    --bs-body-bg: var(--dark-bg);
    --bs-body-bg-rgb: 11, 11, 11;
    --bs-body-color: var(--white);
    --bs-body-color-rgb: 255, 255, 255;
    --bs-secondary-color: var(--gray);
    --bs-secondary-color-rgb: 184, 184, 184;
    --bs-tertiary-color: var(--gray);
    --bs-tertiary-color-rgb: 184, 184, 184;
    --bs-link-color: var(--gold-1);
    --bs-link-hover-color: var(--white);
}

/* Explicit color helper overrides */
.text-muted {
    color: var(--text-muted) !important;
}
.text-dim {
    color: var(--text-dim) !important;
}
p, span, li, label, td, th {
    color: var(--text-muted);
}
h1, h2, h3, h4, h5, h6, .text-white {
    color: var(--text-white) !important;
}
.accordion-body p {
    color: var(--text-muted) !important;
}
.timeline-item p {
    color: var(--text-muted) !important;
}
::placeholder {
    color: var(--text-dim) !important;
    opacity: 0.6 !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* --- Scrollbar Customization --- */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.15);
    border-radius: 10px;
    border: 2px solid var(--bg-dark);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-1);
    box-shadow: 0 0 10px var(--gold-1);
}

/* --- Scroll Progress Indicator --- */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--gold-3), var(--gold-1));
    z-index: 99999;
    box-shadow: 0 0 10px var(--gold-1);
    transition: width 0.1s ease;
}

/* --- Custom Magnetic / Lag Mouse Follower --- */
.mouse-follower {
    position: fixed;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.8) 0%, rgba(212, 175, 55, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    mix-blend-mode: screen;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease, width 0.3s ease, height 0.3s ease;
}
.mouse-follower-glow {
    position: fixed;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(184, 134, 11, 0.15) 0%, rgba(212, 175, 55, 0.05) 50%, rgba(11, 11, 11, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* --- Dynamic Background Elements --- */
.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: 
        linear-gradient(rgba(212, 175, 55, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.015) 1px, transparent 1px);
    background-size: 60px 60px;
    background-position: center center;
    z-index: 0;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    z-index: 0;
    pointer-events: none;
    opacity: 0.35;
    mix-blend-mode: plus-lighter;
    animation: orbFloat 15s ease-in-out infinite alternate;
}
.glow-orb-primary {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--gold-3) 0%, rgba(11, 11, 11, 0) 70%);
    top: -100px;
    left: -100px;
}
.glow-orb-secondary {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--gold-2) 0%, rgba(11, 11, 11, 0) 70%);
    bottom: -150px;
    right: -100px;
    animation-delay: -5s;
}
.glow-orb-cyan {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--gold-1) 0%, rgba(11, 11, 11, 0) 70%);
    top: 40%;
    left: 70%;
    animation-delay: -10s;
}

@keyframes orbFloat {
    0% { transform: translateY(0) scale(1) rotate(0deg); }
    50% { transform: translateY(-40px) scale(1.1) rotate(180deg); }
    100% { transform: translateY(40px) scale(0.9) rotate(360deg); }
}

/* --- Glassmorphism Framework --- */
.glass-panel {
    background: radial-gradient(800px circle at var(--mouse-x, 0px) var(--mouse-y, 0px), rgba(212, 175, 55, 0.05), transparent 45%), var(--card-bg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}
.glass-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.03),
        transparent
    );
    transition: 0.6s ease;
    z-index: 1;
}
.glass-panel:hover::before {
    left: 100%;
}
/* Premium Border Follower Circle Glow */
.glass-panel::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    padding: 1px;
    background: radial-gradient(400px circle at var(--mouse-x, 0px) var(--mouse-y, 0px), rgba(255, 215, 0, 0.35), rgba(184, 134, 11, 0.15) 50%, transparent 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 2;
}
.glass-panel:hover::after {
    opacity: 1;
}
.glass-panel:hover {
    border-color: rgba(255, 215, 0, 0.25);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.08);
    transform: translateY(-5px);
}

/* --- Header & Navbar Styles --- */
.navbar-glass {
    background: rgba(5, 5, 5, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition-smooth);
}
.navbar-glass.scrolled {
    background: rgba(5, 5, 5, 0.95);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.navbar-brand-glow {
    font-weight: 800;
    font-size: 1.55rem;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #ffffff 30%, var(--gold-1) 70%, var(--gold-2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
    gap: 8px;
}
.navbar-brand-glow i {
    color: var(--gold-1);
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.8));
}
.nav-link-glow {
    color: var(--text-muted) !important;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 1rem !important;
    transition: var(--transition-fast);
}
.nav-link-glow:hover, .nav-link-glow.active {
    color: var(--gold-1) !important;
}
.nav-link-glow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-1), var(--gold-3));
    transition: var(--transition-fast);
    transform: translateX(-50%);
    border-radius: 2px;
}
.nav-link-glow:hover::after, .nav-link-glow.active::after {
    width: 60%;
}

/* Premium Mega Menu and Dropdowns */
.navbar-nav .dropdown-menu {
    background: rgba(18, 18, 18, 0.95) !important;
    border: 1px solid rgba(212, 175, 55, 0.2) !important;
    backdrop-filter: blur(15px);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    margin-top: 10px;
    padding: 8px 0;
    transition: all 0.3s ease;
}
.navbar-nav .dropdown-item {
    color: var(--gray);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 20px;
    transition: var(--transition-fast);
}
.navbar-nav .dropdown-item:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-1);
    padding-left: 25px;
}
.navbar-nav .dropdown-item.active {
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold-1);
}

/* --- WhatsApp CTA and Buttons --- */
.quote-btn {
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.4);
    color: #25d366 !important;
    padding: 0.6rem 1.4rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: var(--transition-smooth);
}
.quote-btn:hover {
    background: #25d366;
    color: #050505 !important;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25d366;
    color: var(--white) !important;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
    transition: var(--transition-smooth);
    z-index: 999;
}
.floating-whatsapp:hover {
    transform: none;
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
    background-color: #1ebd59;
}

/* --- Glowing Gold Buttons --- */
.btn-glow {
    background: linear-gradient(135deg, var(--gold-1) 0%, var(--gold-2) 50%, var(--gold-3) 100%);
    border: none;
    color: var(--black) !important;
    padding: 0.75rem 1.75rem;
    border-radius: 12px;
    font-weight: 600;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35);
}
.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: 0.6s ease;
    z-index: -1;
}
.btn-glow:hover::before {
    left: 100%;
}
.btn-glow:hover {
    color: var(--black) !important;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.75);
    transform: translateY(-2px);
}

.btn-outline-glow {
    background: transparent;
    border: 1px solid var(--gold-2);
    color: var(--gold-2);
    padding: 0.75rem 1.75rem;
    border-radius: 12px;
    font-weight: 600;
    transition: var(--transition-smooth);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}
.btn-outline-glow:hover {
    background: rgba(212, 175, 55, 0.08);
    color: var(--white);
    border-color: var(--gold-1);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.35);
    transform: translateY(-2px);
}

/* --- Hero Section & Dashboard Illustration --- */
.hero-wrapper {
    position: relative;
    padding: 8rem 0 5rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    z-index: 2;
}

/* S1 Background Elements */
.animated-luxury-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.03), transparent 60%);
    z-index: 0;
    pointer-events: none;
}
.gold-light-ray {
    position: absolute;
    width: 150px;
    height: 800px;
    background: linear-gradient(to bottom, rgba(255, 215, 0, 0.03) 0%, rgba(212, 175, 55, 0) 100%);
    transform: rotate(45deg);
    top: -200px;
    left: 10%;
    z-index: 0;
    filter: blur(40px);
    pointer-events: none;
    animation: swayRays 12s ease-in-out infinite alternate;
}
.gold-light-ray-2 {
    position: absolute;
    width: 250px;
    height: 600px;
    background: linear-gradient(to bottom, rgba(212, 175, 55, 0.02) 0%, rgba(184, 134, 11, 0) 100%);
    transform: rotate(-35deg);
    top: -100px;
    right: 15%;
    z-index: 0;
    filter: blur(50px);
    pointer-events: none;
    animation: swayRays2 15s ease-in-out infinite alternate;
}

@keyframes swayRays {
    0% { transform: rotate(40deg) translateX(0); }
    100% { transform: rotate(50deg) translateX(50px); }
}
@keyframes swayRays2 {
    0% { transform: rotate(-30deg) translateX(0); }
    100% { transform: rotate(-40deg) translateX(-40px); }
}

.floating-icon {
    position: absolute;
    color: rgba(212, 175, 55, 0.25);
    font-size: 2.2rem;
    pointer-events: none;
    animation: floatIcon 6s ease-in-out infinite alternate;
    z-index: 1;
}
.fi-sms { top: 20%; left: 8%; animation-delay: 0s; }
.fi-whatsapp { top: 65%; left: 5%; animation-delay: 2s; }
.fi-email { top: 80%; left: 45%; animation-delay: 4s; }
.fi-api { top: 15%; left: 50%; animation-delay: 1.5s; font-size: 1.8rem; }

@keyframes floatIcon {
    0% { transform: translateY(0) rotate(0deg); opacity: 0.25; }
    100% { transform: translateY(-25px) rotate(15deg); opacity: 0.45; }
}

.badge-glow {
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--gold-1);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
    margin-bottom: 1.5rem;
}
.badge-glow span {
    width: 6px;
    height: 6px;
    background: var(--gold-1);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px var(--gold-1);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.4; }
    100% { transform: scale(1); opacity: 1; }
}

.gradient-title {
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 40%, var(--gold-1) 75%, var(--gold-2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-subtext {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* --- Interactive Mock SaaS Dashboard Card --- */
.dashboard-mockup {
    position: relative;
    perspective: 1000px;
    z-index: 10;
}
.dashboard-card {
    background: rgba(18, 18, 18, 0.75);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    overflow: hidden;
    transform-style: preserve-3d;
}
.dashboard-header {
    background: rgba(255, 255, 255, 0.01);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding: 0.8rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.dashboard-dots {
    display: flex;
    gap: 6px;
}
.dashboard-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.dot-red { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #27c93f; }

.dashboard-title-url {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    padding: 0.25rem 3rem;
    font-size: 0.75rem;
    color: var(--gray);
    letter-spacing: 0.5px;
}

.dashboard-body {
    padding: 1.5rem;
}
.chart-glow-bar {
    background: linear-gradient(90deg, var(--gold-2), var(--gold-1));
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

/* Hero Right Side Floating Glass Cards */
.hero-glass-card {
    position: absolute;
    padding: 1rem;
    background: rgba(18, 18, 18, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    z-index: 12;
    transition: var(--transition-smooth);
}
.hero-glass-card:hover {
    transform: scale(1.05) translateZ(20px);
    border-color: var(--gold-1);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
}
.card-whatsapp-campaign {
    bottom: -30px;
    left: -40px;
    width: 220px;
}
.card-sms-analytics {
    top: -40px;
    right: -20px;
    width: 200px;
}
.card-otp-verification {
    bottom: 50px;
    right: -50px;
    width: 210px;
}

/* --- Service Cards Section --- */
.service-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(184, 134, 11, 0.1) 100%);
    border: 1px solid rgba(212, 175, 55, 0.25);
    color: var(--gold-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}
.glass-panel:hover .service-icon-box {
    background: linear-gradient(135deg, var(--gold-1) 0%, var(--gold-3) 100%);
    color: var(--black);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    transform: scale(1.1) rotate(5deg);
}

/* --- Services Developer Playground Sandbox --- */
.playground-section {
    padding: 6rem 0;
    position: relative;
    z-index: 2;
}
.console-card {
    background: #050505;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.7);
    font-family: 'Courier New', Courier, monospace;
    overflow: hidden;
}
.console-nav-btn {
    background: transparent;
    border: none;
    color: var(--text-dim);
    padding: 0.75rem 1.25rem;
    font-size: 0.85rem;
    border-bottom: 2px solid transparent;
    transition: var(--transition-fast);
}
.console-nav-btn.active {
    color: var(--gold-1);
    border-bottom-color: var(--gold-1);
}
.console-body {
    padding: 1.5rem;
    color: #fbbf24;
    font-size: 0.9rem;
    overflow-x: auto;
}
.console-prompt {
    color: var(--gold-1);
    user-select: none;
    margin-right: 8px;
}
.console-success {
    color: #4ade80;
}
.console-property {
    color: #f472b6;
}
.console-string {
    color: #fbbf24;
}

/* --- statistics counter boxes --- */
.feature-stat-box {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--white) 0%, var(--gold-1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

/* --- Timeline Styles --- */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 4rem auto;
}
.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold-2), var(--gold-3), transparent);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}
.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
}
.timeline-item::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    right: -8px;
    background-color: var(--bg-dark);
    border: 3px solid var(--gold-1);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 0 10px var(--gold-1);
    transition: var(--transition-fast);
}
.timeline-item:hover::after {
    background-color: var(--gold-1);
    box-shadow: 0 0 20px var(--gold-1);
}
.timeline-left {
    left: 0;
}
.timeline-right {
    left: 50%;
}
.timeline-right::after {
    left: -8px;
}

@media screen and (max-width: 600px) {
    .timeline::after {
        left: 31px;
    }
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    .timeline-item::after {
        left: 23px;
        right: auto;
    }
    .timeline-right {
        left: 0%;
    }
}

/* --- Pricing Section --- */
.pricing-switch-container {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 30px;
    padding: 4px;
}
.pricing-toggle {
    background: transparent;
    border: none;
    color: var(--text-dim);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition-fast);
}
.pricing-toggle.active {
    background: var(--gold-2);
    color: var(--black);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}
.pricing-card-popular {
    border-color: var(--gold-1) !important;
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.08) !important;
}
.popular-ribbon {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
    color: var(--black);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 30px;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* --- Testimonials / Swiper Slider Styling --- */
.testimonial-swiper {
    padding: 2rem 1rem 4rem 1rem !important;
}
.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.2) !important;
    opacity: 1 !important;
}
.swiper-pagination-bullet-active {
    background: var(--gold-1) !important;
    box-shadow: 0 0 10px var(--gold-1);
    width: 20px !important;
    border-radius: 5px !important;
    transition: var(--transition-fast);
}
.client-logo-cloud img {
    max-height: 35px;
    filter: opacity(0.3) grayscale(100%);
    transition: var(--transition-fast);
}
.client-logo-cloud img:hover {
    filter: opacity(0.8) grayscale(0%);
}

/* --- FAQ Accordion --- */
.accordion-glow .accordion-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    margin-bottom: 1rem;
    border-radius: 12px !important;
    overflow: hidden;
    transition: var(--transition-smooth);
}
.accordion-glow .accordion-button {
    background: transparent;
    color: var(--text-white);
    box-shadow: none;
    font-weight: 600;
    padding: 1.25rem 1.5rem;
}
.accordion-glow .accordion-button:not(.collapsed) {
    color: var(--gold-1);
    background: rgba(212, 175, 55, 0.03);
}
.accordion-glow .accordion-button::after {
    filter: invert(1) sepia(1) saturate(5) hue-rotate(15deg);
    transition: transform 0.3s;
}
.accordion-glow .accordion-item:hover {
    border-color: var(--card-border-hover);
}

/* --- Contact Us & Form Floating Inputs --- */
.form-glass-input {
    background: rgba(255, 255, 255, 0.01) !important;
    border: 1px solid rgba(212, 175, 55, 0.15) !important;
    color: var(--text-white) !important;
    border-radius: 10px !important;
    transition: var(--transition-fast) !important;
}
.form-glass-input:focus {
    background: rgba(255, 255, 255, 0.02) !important;
    border-color: var(--gold-1) !important;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.25) !important;
}
.form-floating label {
    color: var(--gray) !important;
}
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: var(--gold-1) !important;
    transform: scale(0.85) translateY(-0.75rem) translateX(0.15rem) !important;
}

.map-glow-container {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--card-border);
    transition: var(--transition-smooth);
}
.map-glow-container:hover {
    border-color: var(--gold-1);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.15);
}

/* --- Our Team Section --- */
.team-card {
    perspective: 1000px;
    height: 380px;
}
.team-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}
.team-card:hover .team-card-inner {
    transform: rotateY(180deg);
}
.team-card-front, .team-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 20px;
    border: 1px solid var(--card-border);
    overflow: hidden;
}
.team-card-front {
    background: var(--card-bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
.team-card-back {
    background: linear-gradient(135deg, var(--card-bg) 0%, #050505 100%);
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border-color: var(--gold-1);
}
.team-member-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid var(--gold-2);
    margin-bottom: 1.5rem;
    object-fit: cover;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    transition: var(--transition-smooth);
}
.team-card:hover .team-member-img {
    transform: scale(1.1);
    border-color: var(--gold-1);
}
.team-social-icons {
    display: flex;
    gap: 12px;
    margin-top: 1rem;
}
.team-social-icons a {
    color: var(--gray);
    font-size: 1.2rem;
    transition: var(--transition-fast);
}
.team-social-icons a:hover {
    color: var(--gold-1);
    transform: translateY(-3px);
}

/* --- Footer Elements --- */
.footer-wrapper {
    position: relative;
    background: #050505;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    padding: 5rem 0 2rem 0;
    z-index: 2;
}
.footer-logo {
    font-weight: 800;
    font-size: 1.5rem;
    background: linear-gradient(135deg, #ffffff 40%, var(--gold-1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.social-icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(212, 175, 55, 0.15);
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    text-decoration: none;
}
.social-icon-btn:hover {
    background: var(--gold-2);
    color: var(--black);
    box-shadow: 0 0 15px var(--gold-1);
    transform: translateY(-3px);
}

/* --- Section Title and Header Blocks --- */
.section-subtitle {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-2);
    font-weight: 700;
    margin-bottom: 0.75rem;
}
.section-title {
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

/* --- AOS Animation Fix --- */
/* When JS force-strips AOS, ensure smooth visibility */
.aos-stripped {
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
}

/* --- Responsive Adjustments --- */
@media (max-width: 991.98px) {
    .hero-wrapper {
        padding: 6rem 0 3rem 0;
        text-align: center;
    }
    .badge-glow {
        margin: 0 auto 1.5rem auto;
    }
    .section-title {
        font-size: 2rem;
    }
    .dashboard-mockup {
        margin-top: 3rem;
    }
    .hero-glass-card {
        display: none !important; /* Hide small floating cards on tablet/mobile to avoid overlapping issues */
    }
}

/* Mobile Chrome Desktop-Mode Stability Fix */
@media (max-width: 991px) {
    html,
    body {
        max-width: 100%;
        overflow-x: hidden;
    }

    .container,
    .container-fluid,
    section,
    header,
    footer {
        max-width: 100%;
        overflow-x: hidden;
    }

    [data-tilt],
    .tilt-card,
    .glass-card,
    .service-card,
    .industry-card,
    .testimonial-card {
        transform: none !important;
        will-change: auto !important;
    }

    .floating-whatsapp {
    transform: none !important;
    animation: none !important;
    transition: none !important;
    z-index: 9999 !important;
    }

    .hero-section,
    .hero-content,
    .hero-visual,
    .dashboard-mockup,
    .floating-card,
    .stats-card {
        max-width: 100%;
        overflow-x: hidden;
    }

    canvas,
    #tsparticles,
    .particles-js-canvas-el {
        pointer-events: none !important;
    }
}

.voice-wave {
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin: 10px 0 24px;
}

.voice-wave span {
    width: 5px;
    background: #D4AF37;
    border-radius: 999px;
    display: block;
    opacity: 0.95;
    transform-origin: center;
    animation: waveformPulse 1s ease-in-out infinite;
    animation-play-state: paused;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.18);
}

/* Static waveform shape */
.voice-wave span:nth-child(1)  { height: 4px;  }
.voice-wave span:nth-child(2)  { height: 6px;  }
.voice-wave span:nth-child(3)  { height: 10px; }
.voice-wave span:nth-child(4)  { height: 16px; }
.voice-wave span:nth-child(5)  { height: 24px; }
.voice-wave span:nth-child(6)  { height: 38px; }
.voice-wave span:nth-child(7)  { height: 58px; }
.voice-wave span:nth-child(8)  { height: 88px; }
.voice-wave span:nth-child(9)  { height: 58px; }
.voice-wave span:nth-child(10) { height: 36px; }
.voice-wave span:nth-child(11) { height: 22px; }
.voice-wave span:nth-child(12) { height: 14px; }
.voice-wave span:nth-child(13) { height: 22px; }
.voice-wave span:nth-child(14) { height: 36px; }
.voice-wave span:nth-child(15) { height: 58px; }
.voice-wave span:nth-child(16) { height: 102px; }
.voice-wave span:nth-child(17) { height: 72px; }
.voice-wave span:nth-child(18) { height: 52px; }
.voice-wave span:nth-child(19) { height: 38px; }
.voice-wave span:nth-child(20) { height: 24px; }
.voice-wave span:nth-child(21) { height: 16px; }
.voice-wave span:nth-child(22) { height: 10px; }
.voice-wave span:nth-child(23) { height: 8px;  }
.voice-wave span:nth-child(24) { height: 6px;  }
.voice-wave span:nth-child(25) { height: 4px;  }

/* Different timing so it feels alive */
.voice-wave span:nth-child(odd) {
    animation-duration: 0.9s;
}

.voice-wave span:nth-child(even) {
    animation-duration: 1.15s;
}

.voice-wave span:nth-child(3n) {
    animation-duration: 1.3s;
}

.voice-wave.is-playing span {
    animation-play-state: running;
}

@keyframes waveformPulse {
    0%, 100% {
        transform: scaleY(0.82);
        opacity: 0.85;
    }
    50% {
        transform: scaleY(1.18);
        opacity: 1;
    }
}

.voice-waveform {
    height: 130px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    margin: 10px auto 24px;
    max-width: 520px;
}

.voice-waveform span {
    width: 4px;
    height: var(--h);
    background: #D4AF37;
    border-radius: 999px;
    display: block;
    opacity: 0.75;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.25);
    animation: premiumWave 1s ease-in-out infinite;
    animation-play-state: paused;
}

.voice-waveform span:nth-child(odd) {
    animation-duration: 0.85s;
}

.voice-waveform span:nth-child(even) {
    animation-duration: 1.15s;
}

.voice-waveform span:nth-child(3n) {
    animation-duration: 1.35s;
}

.voice-waveform.is-playing span {
    animation-play-state: running;
    opacity: 1;
}

@keyframes premiumWave {
    0%, 100% {
        transform: scaleY(0.75);
    }

    50% {
        transform: scaleY(1.25);
    }
}