/* style.css - Premium Spectacular Design for EZ Junk Removal Header */

:root {
    /* Fallback Brand Color - Will be dynamically overridden by logo colors by JS */
    --brand-color-rgb: 0, 180, 80; 
    --brand-color: rgb(var(--brand-color-rgb));
    
    /* Sleek Dark Mode Backgrounds */
    --bg-dark-primary: #0a0a0a;
    --bg-dark-secondary: #131313;
    
    /* Premium Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    
    /* Fonts */
    --font-main: 'Outfit', sans-serif;
    --font-display: 'Montserrat', sans-serif;
    --font-serif: 'Montserrat', sans-serif;
    
    /* Layout */
    --header-height: 120px;
    
    /* Transitions */
    --transition-smooth: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    letter-spacing: 0;
}

html {
    scroll-behavior: smooth;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 2000;
    background-image:
        radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.04), transparent 28%),
        radial-gradient(circle at 85% 15%, rgba(var(--brand-color-rgb), 0.08), transparent 30%),
        linear-gradient(rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0.015));
    mix-blend-mode: screen;
    opacity: 0.45;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ==================================== */
/* Spectacular Glass Header             */
/* ==================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.4) 0%, rgba(5, 5, 5, 0) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.site-header.scrolled {
    background: rgba(8, 8, 8, 0.7);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    height: 80px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), inset 0 -1px 0 rgba(var(--brand-color-rgb), 0.5);
    border-bottom: 1px solid rgba(var(--brand-color-rgb), 0.8);
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* ==================================== */
/* Logo Left Side                       */
/* ==================================== */
.brand-logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.brand-logo img {
    max-height: 95px; /* Adjust according to the logo aspect ratio */
    width: auto;
    transition: var(--transition-smooth);
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.1));
}

/* Hover effect on logo */
.brand-logo:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 0 25px rgba(var(--brand-color-rgb), 0.5));
}

.site-header.scrolled .brand-logo img {
    max-height: 65px;
}

/* ==================================== */
/* Desktop Navigation Menu              */
/* ==================================== */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.3px;
    position: relative;
    padding: 10px 15px;
    display: inline-flex;
    align-items: center;
    color: #ffffff;
    border-radius: 100px;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
    text-shadow: 0 1px 3px rgba(0,0,0,0.4);
    white-space: nowrap;
}

.nav-text {
    position: relative;
    z-index: 2;
    color: inherit;
}

.nav-text::before,
.nav-text::after {
    display: none;
}

/* Base glassmorphism background pill */
.nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.03); 
    border-radius: 100px;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 0;
}

/* The Animated Glowing Border Wrapper */
.nav-link::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, transparent 40%, var(--brand-color), #2563eb, transparent 60%);
    background-size: 200% 200%;
    border-radius: 100px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    padding: 2px;
}

@keyframes spinNavBorder {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

.nav-link:hover::before,
.nav-link.active::before {
    opacity: 1;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(5px);
}

.nav-link:hover::after,
.nav-link.active::after {
    opacity: 1;
    animation: spinNavBorder 2.5s linear infinite;
}

/* Hidden elements */
.hover-element {
    display: none;
}

/* ==================================== */
/* CTA Button - Magnetic Spectacular    */
/* ==================================== */
.cta-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--bg-dark-primary);
    background: var(--brand-color);
    border-radius: 999px;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 10px 25px rgba(var(--brand-color-rgb), 0.4), inset 0 2px 5px rgba(255,255,255,0.4);
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-text {
    position: relative;
    z-index: 2;
}

/* Metallic specular glow animation */
.cta-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.8), transparent);
    transform: skewX(-25deg);
    animation: metallic-shine 6s infinite;
    z-index: 1;
}

@keyframes metallic-shine {
    0%, 80% { left: -100%; }
    100% { left: 200%; }
}

.cta-btn:hover {
    box-shadow: 0 15px 35px rgba(var(--brand-color-rgb), 0.7), inset 0 2px 2px rgba(255,255,255,0.6);
    transform: translateY(-2px);
    background: #fff;
    color: var(--brand-color);
}

/* ==================================== */
/* Spectacular Pay Your Bill Button     */
/* ==================================== */
.pay-bill-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, #0b5093 0%, #1e87e5 100%);
    border-radius: 999px;
    overflow: hidden;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 8px 25px rgba(11, 80, 147, 0.4), inset 0 2px 5px rgba(255,255,255,0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    margin-right: 0;
    white-space: nowrap;
    flex-shrink: 0;
}

.pay-bill-btn .btn-text {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.pay-bill-btn ion-icon {
    font-size: 1.3rem;
    animation: icon-float 3s ease-in-out infinite;
}

@keyframes icon-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.pay-bill-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.6), transparent);
    transform: skewX(-25deg);
    animation: metallic-shine-pay 4s infinite;
    z-index: 1;
}

@keyframes metallic-shine-pay {
    0%, 70% { left: -100%; }
    100% { left: 200%; }
}

.pay-bill-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 35px rgba(30, 135, 229, 0.6), 
                0 0 20px rgba(11, 80, 147, 0.5),
                inset 0 2px 5px rgba(255,255,255,0.5);
    background: linear-gradient(135deg, #1169c0 0%, #3f9eff 100%);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* ==================================== */
/* Mobile Menu Toggle (Hamburger)       */
/* ==================================== */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 45px;
    height: 45px;
    position: relative;
    z-index: 1001;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(255,255,255,0.05);
}

.bar {
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--text-primary);
    margin: 6px auto;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 0 8px rgba(255,255,255,0.4);
}

.bar-2 {
    width: 18px;
    margin-left: auto;
    margin-right: 7px;
}

.mobile-menu-toggle:hover .bar-2 {
    width: 30px;
    background-color: var(--brand-color);
    box-shadow: 0 0 12px var(--brand-color);
}

/* Toggle Active State */
.mobile-menu-toggle.active .bar {
    background-color: var(--brand-color);
    box-shadow: 0 0 15px rgba(var(--brand-color-rgb), 0.6);
}

.mobile-menu-toggle.active .bar-1 {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active .bar-2 {
    opacity: 0;
    transform: translateX(20px);
}

.mobile-menu-toggle.active .bar-3 {
    transform: translateY(-8px) rotate(-45deg);
}

/* ==================================== */
/* Mobile Navigation Overlay            */
/* ==================================== */
.mobile-nav-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    z-index: 999;
    clip-path: circle(0% at calc(100% - 60px) 45px); /* Start closed from hamburger */
    transition: clip-path 1.2s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav-overlay.active {
    clip-path: circle(150% at calc(100% - 60px) 45px);
}

.mobile-nav-container {
    width: 100%;
    max-width: 800px;
    padding: 0 40px;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-nav-item {
    opacity: 0;
    transform: translateY(60px) scale(0.9);
    filter: blur(10px);
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    transition-delay: calc(var(--i) * 0.15s + 0.2s);
}

.mobile-nav-overlay.active .mobile-nav-item {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

.mobile-link {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 600;
    line-height: 1.2;
    text-transform: capitalize;
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    display: inline-block;
    padding-left: 20px;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.mobile-link::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: var(--brand-color);
    transition: height 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 0 15px var(--brand-color);
    border-radius: 4px;
}

.mobile-link::before {
    display: none;
}

.mobile-link.active,
.mobile-link:hover {
    color: #ffffff;
    text-shadow: 0 0 25px rgba(255, 255, 255, 0.3);
    transform: translateX(15px);
}

.mobile-link:hover::after,
.mobile-link.active::after {
    height: 70%;
}

.mobile-cta-btn {
    display: inline-flex;
    margin-top: 30px;
    padding: 18px 45px;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--bg-dark-primary);
    background: #fff;
    border-radius: 999px;
    box-shadow: 0 15px 35px rgba(255,255,255,0.2);
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.mobile-cta-btn:hover {
    background: var(--brand-color);
    box-shadow: 0 20px 40px rgba(var(--brand-color-rgb), 0.6);
    transform: translateY(-3px);
}

.mobile-pay-bill-btn {
    display: inline-flex;
    margin-top: 15px;
    padding: 16px 40px;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, #0b5093 0%, #1e87e5 100%);
    border-radius: 999px;
    box-shadow: 0 10px 25px rgba(11, 80, 147, 0.4);
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    align-items: center;
    gap: 10px;
}

.mobile-pay-bill-btn ion-icon {
    font-size: 1.4rem;
    animation: icon-float 3s ease-in-out infinite;
}

.mobile-pay-bill-btn:hover {
    background: linear-gradient(135deg, #1169c0 0%, #3f9eff 100%);
    box-shadow: 0 15px 35px rgba(30, 135, 229, 0.6), 0 0 20px rgba(11, 80, 147, 0.5);
    transform: translateY(-3px) scale(1.02);
}

/* Decorative background elements for mobile */
.decorative-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.6;
    animation: flowBg 15s infinite alternate ease-in-out;
}

@keyframes flowBg {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.3) translate(50px, -50px); }
}

.circle-1 {
    width: 400px;
    height: 400px;
    background: rgba(var(--brand-color-rgb), 0.4);
    top: 5%;
    left: -100px;
}

.circle-2 {
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.05);
    bottom: -100px;
    right: -150px;
}


/* ==================================== */
/* Spectacular Hero Slider              */
/* ==================================== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh; /* Full viewport height */
    overflow: hidden;
    background:
      radial-gradient(circle at 25% 25%, rgba(var(--brand-color-rgb), 0.16), transparent 42%),
      var(--bg-dark-primary);
}

.slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    visibility: hidden;
    /* Spectacular Clip-path transition */
    clip-path: inset(0 100% 0 0);
    transition: clip-path 1.6s cubic-bezier(0.77, 0, 0.175, 1), opacity 1.2s ease, visibility 1.6s;
    display: flex;
    align-items: center;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    clip-path: inset(0 0 0 0);
    z-index: 2;
}

/* Background Image with Cinematic Ken Burns & Blur Effect */
.slide-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.3) rotate(2deg);
    filter: blur(12px) brightness(1.3);
    transition: transform 10s cubic-bezier(0.19, 1, 0.22, 1), filter 3.5s ease;
    z-index: -2;
    will-change: transform, filter;
}

.slide.active .slide-bg {
    transform: scale(1) rotate(0deg);
    filter: blur(0) brightness(1);
}

/* Cinematic Vignette Overlay */
.hero-slider::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    box-shadow: inset 0 0 250px rgba(0,0,0,0.8);
    pointer-events: none;
    z-index: 15;
}

/* Sophisticated Dark Gradient Overlay to make text pop */
.slide-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(5,5,5,0.95) 0%, rgba(5,5,5,0.7) 40%, rgba(5,5,5,0.2) 100%),
                radial-gradient(circle at 80% 50%, rgba(var(--brand-color-rgb), 0.25) 0%, rgba(0,0,0,0.6) 80%);
    z-index: -1;
}

/* Content Layout */
.slide .container {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10;
}

.slide-content {
    max-width: 850px;
    padding-top: 80px; /* Offset for header */
}

/* Typography & Animations */
.slide-badge-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.4s;
}

.slide.active .slide-badge-wrap {
    opacity: 1;
    transform: translateY(0);
}

.slide-badge {
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--brand-color);
}

.badge-line {
    height: 2px;
    width: 50px;
    background-color: var(--brand-color);
    box-shadow: 0 0 10px rgba(var(--brand-color-rgb), 0.5);
}

.slide-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 6.5vw, 6rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 25px;
    color: var(--text-primary);
    text-shadow: 0 15px 40px rgba(0,0,0,0.8);
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    letter-spacing: 0.12em;
    filter: blur(12px);
    transition: all 1.8s cubic-bezier(0.19, 1, 0.22, 1) 0.6s;
}

.slide.active .slide-title {
    opacity: 1;
    transform: translateY(0) scale(1);
    letter-spacing: -0.02em;
    filter: blur(0);
}

.highlight-hero {
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255,255,255,0.8);
    position: relative;
    font-family: var(--font-main);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.highlight-hero::before {
    content: 'Junk Removal';
    position: absolute;
    left: 0;
    top: 0;
    -webkit-text-stroke: 0;
    background: linear-gradient(135deg, var(--brand-color) 0%, #a8ff78 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 25px rgba(var(--brand-color-rgb), 0.6));
    animation: pulse-glow 4s infinite alternate;
}

@keyframes pulse-glow {
    0% { filter: drop-shadow(0 0 15px rgba(var(--brand-color-rgb), 0.4)); }
    100% { filter: drop-shadow(0 0 35px rgba(var(--brand-color-rgb), 0.8)); }
}

.title-branded {
    font-size: 0.6em;
    font-weight: 400;
    color: var(--text-secondary);
    font-family: var(--font-main);
    letter-spacing: 0.03em;
}

.slide-subtitle {
    font-size: clamp(1.1rem, 1.8vw, 1.4rem);
    color: #d0d0d0;
    font-weight: 300;
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.6;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(40px);
    filter: blur(8px);
    transition: all 1.6s cubic-bezier(0.19, 1, 0.22, 1) 0.9s;
}

.slide.active .slide-subtitle {
    opacity: 1;
    transform: translateY(0);
    letter-spacing: 0.08em;
    filter: blur(0);
}

.slide-actions {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1) 1s;
}

.slide.active .slide-actions {
    opacity: 1;
    transform: translateY(0);
}

/* Premium Buttons */
.hero-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 45px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--bg-dark-primary);
    background: var(--brand-color);
    border: none;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 14px 35px rgba(var(--brand-color-rgb), 0.35), inset 0 0 0 1px rgba(255,255,255,0.16);
    transition: transform 0.2s linear, box-shadow 0.4s ease;
}

.hero-btn .btn-text {
    position: relative;
    z-index: 2;
}

.btn-hover-fx {
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(45deg) translateY(-100%);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
    pointer-events: none;
}

.hero-btn:hover {
    box-shadow: 0 20px 45px rgba(var(--brand-color-rgb), 0.55), inset 0 0 0 1px rgba(255,255,255,0.55);
    transform: translateY(-2px);
}

.hero-btn:hover .btn-hover-fx {
    transform: rotate(45deg) translateY(100%);
}

/* Controls */
.slider-controls {
    position: absolute;
    bottom: 50px;
    left: 0;
    width: 100%;
    z-index: 20;
}

.controls-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Nav Arrows */
.slider-nav-arrows {
    display: flex;
    gap: 15px;
}

.nav-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(5px);
    transition: all 0.4s ease;
}

.nav-arrow:hover {
    background: var(--brand-color);
    border-color: var(--brand-color);
    color: var(--bg-dark-primary);
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(var(--brand-color-rgb), 0.4);
}

/* Pagination Dots */
.slider-pagination {
    display: flex;
    gap: 12px;
    align-items: center;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
}

.dot::after {
    content: '';
    position: absolute;
    top: -5px; left: -5px;
    width: 20px; height: 20px;
    border-radius: 50%;
    border: 1px solid var(--brand-color);
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.dot.active {
    background: var(--brand-color);
    transform: scale(1.2);
    box-shadow: 0 0 14px rgba(var(--brand-color-rgb), 0.7);
}

.dot.active::after {
    opacity: 1;
    transform: scale(1);
}

/* Progress Bar */
.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.1);
    z-index: 20;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: var(--brand-color);
    box-shadow: 0 0 15px var(--brand-color);
    transition: width 0.1s linear;
}


/* ==================================== */
/* About Section Spectacular SEO        */
/* ==================================== */
.why-choose-us-premium {
    position: relative;
    padding: 150px 0;
    background: #050505; /* Deep dark background */
    overflow: hidden;
    z-index: 5;
    font-family: var(--font-main);
}

.relative-z {
    position: relative;
    z-index: 10;
}

/* Glassmorphism Background Glows */
.glass-bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    pointer-events: none;
    animation: drift 15s ease-in-out infinite alternate;
}

.glow-1 {
    width: 600px;
    height: 600px;
    background: rgba(var(--brand-color-rgb), 0.15);
    top: -200px;
    left: -200px;
}

.glow-2 {
    width: 500px;
    height: 500px;
    background: rgba(100, 200, 255, 0.08); /* subtle cool blue glow for contrast */
    bottom: -100px;
    right: -100px;
    animation-delay: -5s;
}

.glow-3 {
    width: 400px;
    height: 400px;
    background: rgba(var(--brand-color-rgb), 0.08);
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
}

@keyframes drift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Premium Header */
.premium-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px auto;
}

.premium-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 20px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(var(--brand-color-rgb), 0.4);
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.kicker-text {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    color: var(--brand-color);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand-color);
    box-shadow: 0 0 10px var(--brand-color);
    animation: pulse-dot-anim 2s infinite;
}

@keyframes pulse-dot-anim {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(var(--brand-color-rgb), 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(var(--brand-color-rgb), 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(var(--brand-color-rgb), 0); }
}

.premium-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
}

.magic-text {
    background: linear-gradient(135deg, #ffffff 0%, var(--brand-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.3));
}

.premium-subtitle {
    font-size: 1.25rem;
    color: #b0b0b0;
    line-height: 1.6;
    font-weight: 300;
    max-width: 650px;
    margin: 0 auto;
}

/* Glassmorphism Cards Grid */
.premium-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.glass-card {
    position: relative;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    isolation: isolate;
    overflow: hidden;
    cursor: default;
}

.glass-card:hover {
    transform: translateY(-12px) scale(1.03);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(var(--brand-color-rgb), 0.5);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 40px rgba(var(--brand-color-rgb), 0.15);
}

.glass-card-inner {
    position: relative;
    z-index: 2;
}

.card-icon-wrapper {
    width: 75px;
    height: 75px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(var(--brand-color-rgb), 0.2) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(var(--brand-color-rgb), 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--brand-color);
    margin-bottom: 30px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.glass-card:hover .card-icon-wrapper {
    transform: scale(1.15) rotate(10deg);
    background: var(--brand-color);
    color: var(--bg-dark-primary);
    box-shadow: 0 15px 30px rgba(var(--brand-color-rgb), 0.5);
}

.glass-card-title {
    font-family: var(--font-serif);
    font-size: 1.7rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.glass-card-text {
    font-size: 1.05rem;
    color: #a5a5a5;
    line-height: 1.6;
    font-weight: 400;
    transition: color 0.3s;
}

.glass-card:hover .glass-card-text {
    color: #ffffff;
}

/* Shine Effect */
.glass-card-highlight {
    position: absolute;
    top: 0; left: -100%;
    width: 60%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.1), transparent);
    transform: skewX(-25deg);
    transition: none;
    pointer-events: none;
}

.glass-card:hover .glass-card-highlight {
    animation: glass-shine 1s cubic-bezier(0.25, 1, 0.5, 1) 0.1s;
}

@keyframes glass-shine {
    100% { left: 200%; }
}

/* Large Background Icon */
.icon-backdrop {
    position: absolute;
    bottom: -30px;
    right: -30px;
    font-size: 180px;
    color: rgba(255, 255, 255, 0.02);
    z-index: -1;
    transform: rotate(-15deg);
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.glass-card:hover .icon-backdrop {
    color: rgba(var(--brand-color-rgb), 0.06);
    transform: rotate(0deg) scale(1.15);
}

/* CTA Wrapper */
.premium-cta-wrap {
    text-align: center;
    margin-top: 30px;
}

.glass-btn {
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    background: rgba(var(--brand-color-rgb), 0.85) !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
}

.glass-btn:hover {
    background: var(--brand-color) !important;
    border-color: rgba(255,255,255,0.5) !important;
}

/* Reveal Animations */
.reveal-elem {
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform, opacity;
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

.reveal-elem.visible {
    opacity: 1;
    transform: translate(0, 0);
}


/* ==================================== */
/* Spectacular Services Cards           */
/* ==================================== */
.services-section {
    padding: 120px 0;
    background:
      radial-gradient(circle at 90% 12%, rgba(var(--brand-color-rgb), 0.12) 0, transparent 35%),
      var(--bg-dark-primary);
    position: relative;
    z-index: 5;
}

.services-header {
    margin-bottom: 60px;
    text-align: center;
}

.justify-center {
    justify-content: center;
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--bg-dark-secondary);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.5s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.5s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(var(--brand-color-rgb), 0.15);
    border-color: rgba(var(--brand-color-rgb), 0.3);
}

.card-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-card:hover .card-img {
    transform: scale(1.12);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.2) 50%, transparent 100%);
    opacity: 0.6;
    transition: opacity 0.5s ease, background 0.5s ease;
}

.service-card:hover .card-overlay {
    opacity: 0.95;
    background: linear-gradient(to top, rgba(var(--brand-color-rgb), 0.95) 0%, rgba(10,10,10,0.8) 100%);
}

.card-content-hover {
    position: absolute;
    inset: 0;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 2;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-card:hover .card-content-hover {
    opacity: 1;
    transform: translateY(0);
}

.card-content-hover .card-title {
    font-family: var(--font-serif);
    font-size: 2.4rem;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.1;
    text-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.card-excerpt {
    color: rgba(255,255,255,0.9);
    font-size: 1.05rem;
    margin-bottom: 25px;
    line-height: 1.5;
}

.card-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    font-size: 0.9rem;
    align-self: flex-start;
    padding: 12px 25px;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 30px;
    transition: all 0.3s ease;
}

.card-btn:hover {
    background: #fff;
    color: var(--bg-dark-primary);
    transform: scale(1.05);
}

.card-bottom-bar {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-dark-secondary);
    position: relative;
    z-index: 3;
    transition: background 0.5s ease;
}

.service-card:hover .card-bottom-bar {
    background: var(--bg-dark-primary);
}

.static-card-title {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 1.18rem;
    letter-spacing: 0;
    color: var(--text-primary);
    margin: 0;
    transition: color 0.3s ease;
}

.service-card:hover .static-card-title {
    color: var(--brand-color);
}

.icon-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(var(--brand-color-rgb), 0.1);
    color: var(--brand-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-card:hover .icon-circle {
    background: var(--brand-color);
    color: var(--bg-dark-primary);
    transform: rotate(360deg);
}

.reveal-up {
    transform: translateY(50px);
}

/* ==================================== */
/* Premium Reclaim Space Signature      */
/* ==================================== */
.reclaim-section-premium {
    position: relative;
    padding: 160px 0;
    background: #000000;
    overflow: hidden;
    isolation: isolate;
}

/* Giant Watermark Text */
.reclaim-watermark {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-serif);
    font-size: clamp(8rem, 22vw, 22rem);
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.02);
    white-space: nowrap;
    z-index: -2;
    pointer-events: none;
    user-select: none;
}

/* Animated Glows */
.reclaim-bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    pointer-events: none;
}

.reclaim-glow-1 {
    width: 400px; height: 400px;
    background: rgba(var(--brand-color-rgb), 0.15);
    top: 10%; left: -100px;
    animation: drift 20s infinite alternate;
}

.reclaim-glow-2 {
    width: 500px; height: 500px;
    background: rgba(var(--brand-color-rgb), 0.1);
    bottom: -150px; right: -150px;
    animation: drift 15s infinite alternate-reverse;
}

.reclaim-glow-3 {
    width: 300px; height: 300px;
    background: rgba(255, 255, 255, 0.05);
    top: 40%; left: 50%;
    transform: translate(-50%, -50%);
}

.container-reclaim {
    max-width: 1250px;
}

.reclaim-premium-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Text Content */
.reclaim-badge-wrap {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 22px;
    border-radius: 50px;
    background: linear-gradient(90deg, rgba(var(--brand-color-rgb), 0.1) 0%, transparent 100%);
    border: 1px solid rgba(var(--brand-color-rgb), 0.3);
    margin-bottom: 30px;
}

.reclaim-badge-text {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    color: #ffffff;
}

.reclaim-premium-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 4.5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    color: #ffffff;
    margin-bottom: 30px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.highlight-brand {
    color: transparent;
    -webkit-text-stroke: 1.5px var(--brand-color);
    position: relative;
    white-space: nowrap;
}

.reclaim-premium-divider {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
}

.divider-line {
    height: 2px;
    flex-grow: 1;
    background: linear-gradient(90deg, var(--brand-color) 0%, transparent 100%);
    max-width: 150px;
}

.divider-icon {
    font-size: 26px;
    color: var(--brand-color);
    filter: drop-shadow(0 0 10px var(--brand-color));
}

.reclaim-premium-text-box {
    margin-bottom: 40px;
}

.reclaim-text-lead {
    font-size: 1.25rem;
    color: #ffffff;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 20px;
}

.reclaim-text-sub {
    font-size: 1.05rem;
    color: #a0a0a0;
    line-height: 1.8;
}

/* Inline Features */
.reclaim-inline-features {
    display: flex;
    gap: 30px;
    margin-bottom: 45px;
}

.inline-feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.inline-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(var(--brand-color-rgb), 0.1);
    color: var(--brand-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border: 1px solid rgba(var(--brand-color-rgb), 0.3);
}

.inline-feature span {
    font-weight: 600;
    color: #ffffff;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Media Side */
.reclaim-premium-media {
    position: relative;
    perspective: 1200px;
}

.reclaim-image-wrapper {
    position: relative;
    border-radius: 30px;
    transform: rotateY(-10deg) rotateX(4deg);
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    isolation: isolate;
}

.reclaim-premium-media:hover .reclaim-image-wrapper {
    transform: rotateY(0deg) rotateX(0deg);
}

.image-border-glow {
    position: absolute;
    inset: -2px;
    border-radius: 32px;
    background: conic-gradient(from 0deg, transparent, var(--brand-color), transparent, rgba(255,255,255,0.5), transparent);
    z-index: -1;
    animation: spinGlow 5s linear infinite;
}

@keyframes spinGlow {
    100% { transform: rotate(360deg); }
}

.reclaim-premium-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 30px;
    display: block;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

.reclaim-image-overlay-premium {
    position: absolute;
    inset: 0;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(var(--brand-color-rgb), 0.15) 0%, transparent 60%);
    pointer-events: none;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* Floating 3D Cards */
.floating-glass-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    border-radius: 20px;
    background: rgba(15, 15, 15, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(var(--brand-color-rgb), 0.15);
    z-index: 5;
}

.card-top-right {
    top: 50px;
    right: -30px;
}

.card-bottom-left {
    bottom: 50px;
    left: -30px;
}

.float-anim-1 { animation: float-1 4s ease-in-out infinite; }
.float-anim-2 { animation: float-2 5s ease-in-out infinite alternate-reverse; }

@keyframes float-1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}
@keyframes float-2 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(20px); }
}

.glass-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.rating-icon {
    background: rgba(255, 193, 7, 0.15);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.check-icon {
    background: rgba(var(--brand-color-rgb), 0.2);
    color: var(--brand-color);
    border: 1px solid rgba(var(--brand-color-rgb), 0.4);
}

.glass-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.glass-title {
    color: #ffffff;
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: 0.5px;
}

.glass-sub {
    color: #a0a0a0;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.glass-btn-reclaim {
    background: var(--brand-color);
    color: var(--bg-dark-primary);
}

/* ==================================== */
/* Brand Adaptive Light Theme           */
/* ==================================== */
:root {
    --surface-page: #f5f8f7;
    --surface-section: #ffffff;
    --surface-soft: #eef5f2;
    --surface-card: #ffffff;
    --text-strong: #14221d;
    --text-muted-light: #4d6258;
}

body {
    background: radial-gradient(circle at 8% 8%, rgba(var(--brand-color-rgb), 0.1) 0%, transparent 36%), var(--surface-page);
    color: var(--text-strong);
}

body::before {
    opacity: 0.15;
}

.site-header {
    background: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(var(--brand-color-rgb), 0.15);
    box-shadow: 0 8px 25px rgba(12, 28, 21, 0.08);
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 30px rgba(10, 24, 18, 0.12);
}

.nav-link {
    color: #2f433a;
}

.nav-link.active,
.nav-link:hover {
    color: #12201b;
}

.mobile-menu-toggle .bar {
    background-color: #1e312a;
}

.mobile-nav-overlay {
    background: rgba(245, 250, 248, 0.96);
}

.mobile-link {
    color: #2f433a;
}

.mobile-link.active,
.mobile-link:hover {
    color: var(--brand-color);
}

.hero-slider {
    background:
      radial-gradient(circle at 20% 15%, rgba(var(--brand-color-rgb), 0.22), transparent 40%),
      #dfe8e4;
}

.slide-overlay {
    background:
      linear-gradient(90deg, rgba(14, 25, 21, 0.6) 0%, rgba(14, 25, 21, 0.35) 45%, rgba(14, 25, 21, 0.08) 100%),
      radial-gradient(circle at 74% 50%, rgba(var(--brand-color-rgb), 0.2) 0%, rgba(255, 255, 255, 0) 62%);
}

.slider-progress {
    background: rgba(20, 34, 29, 0.12);
}

.about-section,
.services-section,
.reclaim-section {
    background: var(--surface-section);
}

.about-section {
    background:
      radial-gradient(circle at 0% 12%, rgba(var(--brand-color-rgb), 0.12) 0, transparent 35%),
      var(--surface-section);
}

.services-section {
    background:
      radial-gradient(circle at 95% 12%, rgba(var(--brand-color-rgb), 0.11) 0, transparent 34%),
      var(--surface-soft);
}

.reclaim-section {
    background:
      radial-gradient(circle at 15% 20%, rgba(var(--brand-color-rgb), 0.14) 0%, transparent 42%),
      radial-gradient(circle at 85% 80%, rgba(var(--brand-color-rgb), 0.08) 0%, transparent 42%),
      var(--surface-section);
}

.section-heading,
.reclaim-title {
    color: #10201a;
    text-shadow: none;
}

.section-description,
.reclaim-text {
    color: var(--text-muted-light);
}

.lead-text {
    color: #2c3f37;
}

.lead-text strong {
    color: #13211c;
}

.emphasis-box {
    background: rgba(var(--brand-color-rgb), 0.08);
    border-left: 3px solid rgba(var(--brand-color-rgb), 0.9);
}

.emphasis-box p {
    color: #1d2f28;
}

.service-card {
    background: var(--surface-card);
    border: 1px solid rgba(var(--brand-color-rgb), 0.15);
    box-shadow: 0 10px 28px rgba(20, 44, 34, 0.1);
}

.service-card:hover {
    box-shadow: 0 20px 40px rgba(var(--brand-color-rgb), 0.2);
}

.card-overlay {
    background: linear-gradient(to top, rgba(14, 24, 20, 0.7) 0%, rgba(14, 24, 20, 0.2) 55%, transparent 100%);
}

.service-card:hover .card-overlay {
    background: linear-gradient(to top, rgba(var(--brand-color-rgb), 0.88) 0%, rgba(20, 36, 30, 0.45) 100%);
}

.card-bottom-bar {
    background: #f7fbf9;
}

.service-card:hover .card-bottom-bar {
    background: #eef6f2;
}

.static-card-title {
    color: #13221d;
}

.reclaim-kicker {
    color: #1d342b;
    background: rgba(var(--brand-color-rgb), 0.14);
}

.reclaim-image-overlay {
    background:
        linear-gradient(to top, rgba(9, 18, 14, 0.52) 0%, rgba(9, 18, 14, 0.12) 55%, transparent 100%),
        linear-gradient(120deg, rgba(var(--brand-color-rgb), 0.22), transparent 55%);
}

.reclaim-stat-card {
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(var(--brand-color-rgb), 0.45);
}

.reclaim-stat-number {
    color: #13221d;
}

.reclaim-stat-label {
    color: #304740;
}

/* ==================================== */
/* Responsive Design Breakpoints        */
/* ==================================== */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    .nav-links {
        gap: 20px;
    }
    .cta-btn {
        padding: 12px 24px;
    }
}

@media (max-width: 900px) {
    /* Hide desktop nav, show hamburger */
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .brand-logo img {
        max-height: 65px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .floating-badge {
        bottom: -20px;
        right: 20px;
        padding: 15px 25px;
    }
    
    .badge-number {
        font-size: 2.2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }

    .reclaim-section {
        padding: 100px 0;
    }

    .reclaim-layout {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .reclaim-image-frame {
        transform: none;
    }

    .reclaim-image {
        min-height: 420px;
    }

    .slide-title,
    .section-heading,
    .reclaim-title {
        letter-spacing: 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    .brand-logo img {
        max-height: 55px;
    }
    .mobile-link {
        font-size: 24px;
    }

    .reclaim-title {
        font-size: clamp(2rem, 9vw, 2.6rem);
    }

    .reclaim-text {
        font-size: 1rem;
        line-height: 1.75;
    }

    .reclaim-image {
        min-height: 330px;
    }

    .reclaim-stat-card {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }
}
/* ==================================== */
/* Mind-Blowing Top Rated Section       */
/* ==================================== */
.top-rated-section {
    position: relative;
    padding: 160px 0;
    background: #020202;
    overflow: hidden;
    isolation: isolate;
}

/* Neon Orbs */
.neon-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.6;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(var(--brand-color-rgb), 0.25) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation: drift-orb 25s ease-in-out infinite alternate;
}

.orb-2 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 50, 150, 0.2) 0%, transparent 70%);
    bottom: -300px;
    left: -200px;
    animation: drift-orb 20s ease-in-out infinite alternate-reverse;
}

@keyframes drift-orb {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(100px, 100px) scale(1.2); }
}

/* Header styling */
.top-rated-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px auto;
}

.top-rated-kicker {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.electric-line {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--brand-color));
    box-shadow: 0 0 10px var(--brand-color);
}

.top-rated-kicker .electric-line:last-child {
    background: linear-gradient(270deg, transparent, var(--brand-color));
}

.electric-text {
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 0.9rem;
    text-shadow: 0 0 15px rgba(var(--brand-color-rgb), 0.8);
}

.top-rated-title {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.text-gradient-electric {
    background: linear-gradient(to right, #ffffff, var(--brand-color), #ffffff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine-electric 4s linear infinite;
}

@keyframes shine-electric {
    to { background-position: 200% center; }
}

.top-rated-description {
    font-size: 1.25rem;
    color: #a0a0a0;
    line-height: 1.7;
    font-weight: 300;
    max-width: 750px;
    margin: 0 auto;
}

/* Fantastic Laser Wave Divider */
.laser-divider {
    position: absolute;
    top: -2px; left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 10;
    pointer-events: none;
}

.wave-svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 140px;
}

.wave-svg path:first-child {
    fill: #000000;
}

.wave-glow-line {
    fill: none;
    stroke: var(--brand-color);
    stroke-width: 4px;
    filter: drop-shadow(0px 8px 15px var(--brand-color));
    animation: wave-pulse 3s infinite alternate;
}

@keyframes wave-pulse {
    0% { filter: drop-shadow(0px 5px 8px var(--brand-color)); stroke-width: 3px; }
    100% { filter: drop-shadow(0px 15px 30px var(--brand-color)); stroke-width: 5px; opacity: 0.8; }
}

/* 3D Bento Layout */
.container-top-rated {
    padding-top: 60px;
}

.bento-grid-3d {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 40px;
    perspective: 1500px;
}

@media (max-width: 1024px) {
    .bento-grid-3d { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .bento-grid-3d { grid-template-columns: 1fr; }
}

.bento-card-3d {
    position: relative;
    border-radius: 35px;
    padding: 50px 45px;
    isolation: isolate;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.6s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: transparent;
    cursor: default;
}

.card-large {
    grid-column: span 3;
    padding: 80px 70px;
    min-height: 400px;
}

@media (max-width: 1024px) { .card-large { grid-column: span 2; } }
@media (max-width: 768px) { .card-large { grid-column: span 1; padding: 50px 30px;} }

.bento-card-bg-3d {
    position: absolute;
    inset: 0;
    background: rgba(15, 15, 15, 0.6);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 35px;
    z-index: -2;
    transform: translateZ(-20px);
    transition: background 0.5s ease;
}

.magic-border-gradient {
    position: absolute;
    inset: -2px;
    border-radius: 37px;
    background: conic-gradient(from 180deg at 50% 50%, rgba(255,255,255,0.05) 0deg, rgba(var(--brand-color-rgb), 0.5) 120deg, rgba(255,255,255,0.05) 240deg, rgba(var(--brand-color-rgb), 0.5) 360deg);
    z-index: -3;
    animation: borderSpin 6s linear infinite;
    opacity: 0.3;
    transition: opacity 0.5s ease;
}

@keyframes borderSpin {
    100% { transform: rotate(360deg); }
}

.bento-card-3d:hover {
    transform: rotateX(4deg) translateZ(30px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.8), 0 0 40px rgba(var(--brand-color-rgb), 0.15);
}

.bento-card-3d:hover .magic-border-gradient { opacity: 1; }

.bento-content-3d {
    position: relative;
    z-index: 2;
    transform: translateZ(40px);
    transform-style: preserve-3d;
}

.bento-header-split {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 35px;
}

.bento-icon-wrapper-3d {
    position: relative;
    width: 85px;
    height: 85px;
    border-radius: 26px;
    background: linear-gradient(135deg, rgba(var(--brand-color-rgb), 0.2) 0%, rgba(255,255,255,0.05) 100%);
    border: 1px solid rgba(var(--brand-color-rgb), 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    color: var(--brand-color);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    transform-style: preserve-3d;
}

.icon-ring {
    position: absolute;
    inset: -10px;
    border-radius: 35px;
    border: 1px dashed rgba(var(--brand-color-rgb), 0.4);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    animation: slow-spin 10s linear infinite;
}

@keyframes slow-spin {
    100% { transform: rotate(360deg); }
}

.bento-card-3d:hover .bento-icon-wrapper-3d {
    transform: translateZ(40px) rotate(-15deg) scale(1.1);
    background: var(--brand-color);
    color: rgba(5,5,5,0.9);
}

.bento-card-3d:hover .icon-ring {
    opacity: 1;
    inset: -15px;
}

.floating-mini-badge {
    background: rgba(var(--brand-color-rgb), 0.15);
    color: var(--brand-color);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(var(--brand-color-rgb), 0.4);
    transform: translateZ(20px);
}

.bento-title-3d {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.1;
    text-shadow: 0 5px 15px rgba(0,0,0,0.5);
    transform: translateZ(30px);
}

.card-large .bento-title-3d { font-size: 3rem; }

.bento-text-3d {
    font-size: 1.15rem;
    color: #b5b5b5;
    line-height: 1.7;
    font-weight: 300;
    max-width: 95%;
    transform: translateZ(20px);
}

.card-large .bento-text-3d {
    font-size: 1.3rem;
    max-width: 60%;
}

@media (max-width: 768px) { .card-large .bento-text-3d { max-width: 100%; } }

.bento-graphic-floating {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%) translateZ(60px);
    width: 250px;
    height: 250px;
    perspective: 800px;
}

.bento-img-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0,0,0,0.8);
    border: 3px solid rgba(var(--brand-color-rgb), 0.5);
    animation: floatImage 6s ease-in-out infinite;
}

.bento-img-glow {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--brand-color-rgb), 0.4), transparent 70%);
    z-index: -1;
    filter: blur(30px);
    transform: translateZ(-20px);
}

@keyframes floatImage {
    0%, 100% { transform: translateY(0) rotateY(-5deg); }
    50% { transform: translateY(-15px) rotateY(10deg); }
}

@media (max-width: 1024px) { .bento-graphic-floating { display: none; } }

.glow-pulse {
    animation: text-pulse 2s infinite alternate;
}

@keyframes text-pulse {
    0% { filter: drop-shadow(0 0 5px rgba(var(--brand-color-rgb), 0.3)); }
    100% { filter: drop-shadow(0 0 15px rgba(var(--brand-color-rgb), 0.8)); }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Full Width Map Section */
.full-width-map-section {
    width: 100%;
    position: relative;
    line-height: 0;
    margin-top: 0;
}

.full-width-map-section iframe {
    filter: grayscale(15%) brightness(0.9) contrast(1.1);
    transition: filter 0.5s ease;
}

.full-width-map-section:hover iframe {
    filter: grayscale(0%) brightness(1) contrast(1);
}

/* ==========================================================
   RESIDENTIAL PAGE CINEMATIC HERO
   ========================================================== */
.page-cinematic-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #050505;
}

.cinematic-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.1);
    animation: slow-pan-zoom 20s infinite alternate cubic-bezier(0.45, 0.05, 0.55, 0.95);
    z-index: 1;
    filter: brightness(0.6) contrast(1.1);
}

.cinematic-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0,0,0,0.85) 0%,
        rgba(0,0,0,0.2) 50%,
        rgba(0,0,0,0.8) 100%
    );
    z-index: 2;
}

.cinematic-content-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    text-align: center;
    padding-top: 100px; /* Offset for header */
}

.cinematic-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cinematic-badge {
    display: inline-block;
    color: var(--brand-color, #fff);
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-bottom: 25px;
    border: 1px solid rgba(var(--brand-color-rgb, 255,255,255), 0.3);
    padding: 10px 25px;
    border-radius: 50px;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(-20px);
    animation: cinematic-fade-up 1s cubic-bezier(0.19, 1, 0.22, 1) forwards 0.5s;
}

.cinematic-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(3rem, 6vw, 6.5rem);
    font-weight: 900;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.cinematic-title .word-reveal {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px) scale(0.9);
    filter: blur(10px);
    animation: cinematic-word-reveal 1.2s cubic-bezier(0.19, 1, 0.22, 1) forwards;
    animation-delay: var(--d);
}

.cinematic-title .hl {
    color: var(--brand-color);
    text-shadow: 0 0 40px rgba(var(--brand-color-rgb), 0.6);
}

.cinematic-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: cinematic-fade-up 1s cubic-bezier(0.19, 1, 0.22, 1) forwards 1.8s;
}

.cinematic-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, var(--brand-color, #fff), rgba(var(--brand-color-rgb, 255,255,255), 0.7));
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 24px 50px;
    border-radius: 60px;
    text-decoration: none;
    letter-spacing: 2px;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 15px 35px rgba(var(--brand-color-rgb, 0,0,0), 0.4);
    overflow: hidden;
}

.cinematic-btn ion-icon {
    font-size: 28px;
    animation: ring-phone 2s infinite ease-in-out;
}

.cinematic-btn:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 25px 50px rgba(var(--brand-color-rgb, 0,0,0), 0.6),
                0 0 40px rgba(var(--brand-color-rgb, 255,255,255), 0.8);
    color: #fff;
    background: #000;
    border: 2px solid var(--brand-color);
}

.cinematic-btn .btn-ring {
    position: absolute;
    inset: -5px;
    border: 2px solid var(--brand-color);
    border-radius: 60px;
    opacity: 0;
    animation: ping-ring 2.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.cinematic-number {
    color: rgba(255,255,255,0.8);
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    letter-spacing: 3px;
    font-weight: 500;
}

/* Cinematic Animations */
@keyframes slow-pan-zoom {
    0% { transform: scale(1.05) translate(0, 0); }
    100% { transform: scale(1.15) translate(-1%, 2%); }
}

@keyframes cinematic-fade-up {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes cinematic-word-reveal {
    0% { opacity: 0; transform: translateY(40px) scale(0.85); filter: blur(15px); }
    100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

@keyframes ring-phone {
    0%, 100% { transform: rotate(0deg); }
    10% { transform: rotate(15deg); }
    20% { transform: rotate(-10deg); }
    30% { transform: rotate(5deg); }
    40% { transform: rotate(-5deg); }
    50% { transform: rotate(0deg); }
}

@keyframes ping-ring {
    0% { transform: scale(1); opacity: 1; }
    50% { opacity: 0.5; }
    100% { transform: scale(1.3); opacity: 0; }
}

/* ==========================================================
   RESIDENTIAL PAGE: SPECTACULAR SPLIT FEATURE
   ========================================================== */
.spectacular-split-feature {
    position: relative;
    padding: 120px 0;
    background-color: #050505; /* Black bg to match cinematic hero */
    color: #fff;
    overflow: hidden;
}

.split-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

/* LEFT SIDE - IMAGE WITH 3D EFFECT */
.split-image-box {
    position: relative;
    flex: 1;
    perspective: 1000px;
    display: flex;
    justify-content: center;
}

.glow-orb {
    position: absolute;
    width: 60%;
    height: 80%;
    background: radial-gradient(circle, rgba(var(--brand-color-rgb), 0.6) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: orb-pulse 4s infinite alternate ease-in-out;
    z-index: 0;
}

.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 550px;
    border-radius: 30px;
    z-index: 1;
    transform: rotateY(15deg) rotateX(5deg);
    box-shadow: -20px 20px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(var(--brand-color-rgb), 0.2);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
}

.image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 40%);
    pointer-events: none;
}

.split-image-box:hover .image-wrapper {
    transform: rotateY(5deg) rotateX(0deg) scale(1.02);
}

.feature-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: contrast(1.1);
}

.floating-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(var(--brand-color-rgb), 0.5);
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 5;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    animation: float-badge 4s infinite ease-in-out;
}

.floating-badge ion-icon {
    color: #ffb703; /* Gold star */
    font-size: 24px;
}

.floating-badge span {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
}

/* RIGHT SIDE - CONTENT */
.split-content-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.micro-heading {
    font-family: 'Outfit', sans-serif;
    color: rgba(var(--brand-color-rgb), 1);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-left: 50px;
}

.micro-heading::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 2px;
    background-color: var(--brand-color);
}

.spectacular-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 30px;
}

.text-glow {
    color: var(--brand-color);
    text-shadow: 0 0 20px rgba(var(--brand-color-rgb), 0.4);
    display: inline-block;
}

.spectacular-desc {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    color: #a0a0a0;
    line-height: 1.7;
    margin-bottom: 40px;
}

.highlight-text {
    color: #fff;
    font-weight: 500;
    border-bottom: 1px solid var(--brand-color);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 50px 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.feature-list li {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    color: #d0d0d0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-list li ion-icon {
    color: var(--brand-color);
    font-size: 26px;
    filter: drop-shadow(0 0 5px rgba(var(--brand-color-rgb), 0.5));
}

/* SONAR BUTTON TACTIC */
.sonar-btn {
    position: relative;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    margin-top: 10px;
}

.sonar-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--brand-color);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 22px 48px;
    border-radius: 50px;
    z-index: 10;
    box-shadow: 0 10px 20px rgba(var(--brand-color-rgb), 0.4);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.sonar-btn:hover .sonar-content {
    transform: scale(1.06);
}

.ringing-icon {
    font-size: 26px;
    animation: shaking-bell 2.5s infinite;
}

.sonar-waves {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.sonar-waves .wave {
    position: absolute;
    inset: 0;
    border: 2px solid var(--brand-color);
    border-radius: 50px;
    opacity: 0;
    animation: sonar-ripple 3s linear infinite;
}

.sonar-waves .wave:nth-child(2) {
    animation-delay: 1s;
}

.sonar-waves .wave:nth-child(3) {
    animation-delay: 2s;
}

/* Split Section Keyframes */
@keyframes orb-pulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    100% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.9; }
}

@keyframes float-badge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes shaking-bell {
    0%, 100% { transform: rotate(0deg); }
    5% { transform: rotate(15deg); }
    10% { transform: rotate(-15deg); }
    15% { transform: rotate(15deg); }
    20% { transform: rotate(-15deg); }
    25% { transform: rotate(0deg); }
}

@keyframes sonar-ripple {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

@media (max-width: 992px) {
    .split-container {
        flex-direction: column;
        gap: 60px;
        text-align: center;
    }
    
    .split-image-box {
        width: 100%;
        max-width: 600px;
        order: 1;
    }
    
    .split-content-box {
        order: 2;
        align-items: center;
    }

    .micro-heading::before {
        display: none;
    }

    .micro-heading {
        padding-left: 0;
    }

    .feature-list li {
        justify-content: center;
    }
}

/* ==========================================================
   RESIDENTIAL PAGE: SUPERLATIVE GRID & PLASMA CTA
   ========================================================== */
.residential-comprehensive-services {
    position: relative;
    padding: 140px 0;
    overflow: hidden;
    background-color: #02050a;
}

.comprehensive-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: blur(10px) brightness(0.3) saturate(1.5);
    transform: scale(1.1);
    z-index: 1;
}

.comprehensive-bg-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0,0,0,0.5) 0%, rgba(2,5,10,1) 80%);
    z-index: 2;
}

.comprehensive-header {
    margin-bottom: 70px;
}

.glowing-subtitle {
    display: inline-block;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 30px;
    border: 1px solid rgba(var(--brand-color-rgb), 0.5);
    background: rgba(var(--brand-color-rgb), 0.1);
    box-shadow: 0 0 20px rgba(var(--brand-color-rgb), 0.2);
    margin-bottom: 25px;
}

.comprehensive-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #fff;
    font-weight: 900;
    line-height: 1.1;
    margin: 0;
}

.highlight-plasma {
    background: linear-gradient(135deg, #fff 0%, var(--brand-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(var(--brand-color-rgb), 0.5));
}

/* HOLOGRAM GRID */
.superlative-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

/* Center the last card if odd */
.center-card-last:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    justify-self: center;
    width: 100%;
    max-width: 450px;
}

.glass-hologram-card {
    position: relative;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px 30px;
    backdrop-filter: blur(20px);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.glass-card-inner {
    position: relative;
    z-index: 2;
    transform: translateZ(20px);
}

.hologram-light {
    position: absolute;
    inset: -50%;
    background: conic-gradient(from 0deg, transparent 0deg, rgba(var(--brand-color-rgb), 0.4) 90deg, transparent 180deg);
    opacity: 0;
    transition: opacity 0.5s;
    animation: rotate-light 4s linear infinite;
    z-index: 0;
}

.glass-hologram-card:hover {
    transform: translateY(-10px) rotateX(2deg) rotateY(-2deg);
    border-color: rgba(var(--brand-color-rgb), 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(var(--brand-color-rgb), 0.2);
}

.glass-hologram-card:hover .hologram-light {
    opacity: 1;
}

.card-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(var(--brand-color-rgb), 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border: 1px solid rgba(var(--brand-color-rgb), 0.3);
    transition: all 0.4s;
    box-shadow: inset 0 0 20px rgba(var(--brand-color-rgb), 0.2);
}

.glass-hologram-card:hover .card-icon-wrapper {
    background: var(--brand-color);
    box-shadow: 0 0 30px rgba(var(--brand-color-rgb), 0.6);
    transform: scale(1.1) translateZ(30px);
}

.card-icon-wrapper ion-icon {
    font-size: 34px;
    color: var(--brand-color);
    transition: color 0.4s;
}

.glass-hologram-card:hover .card-icon-wrapper ion-icon {
    color: #fff;
}

.card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.3;
}

.card-desc {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    color: #b0b0b0;
    line-height: 1.6;
}

/* PLASMA BUTTON CTA */
.cta-plasma-container {
    padding-top: 40px;
}

.plasma-btn {
    position: relative;
    display: inline-block;
    text-decoration: none;
}

.plasma-core {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    background: #000;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 20px 50px;
    border-radius: 60px;
    z-index: 10;
    border: 2px solid rgba(var(--brand-color-rgb), 0.6);
    box-shadow: inset 0 0 20px rgba(var(--brand-color-rgb), 0.5), 0 0 30px rgba(var(--brand-color-rgb), 0.3);
    transition: all 0.3s;
    overflow: hidden;
}

.plasma-core ion-icon {
    font-size: 30px;
    color: var(--brand-color);
}

.plasma-btn:hover .plasma-core {
    background: var(--brand-color);
    color: #fff;
    border-color: #fff;
    box-shadow: inset 0 0 20px rgba(255,255,255, 0.5), 0 0 50px rgba(var(--brand-color-rgb), 0.8);
    transform: scale(1.05);
}

.plasma-btn:hover .plasma-core ion-icon {
    color: #fff;
    animation: shaking-bell 2s infinite;
}

.plasma-glowing-ring {
    position: absolute;
    inset: -8px;
    border-radius: 60px;
    background: conic-gradient(from 0deg, var(--brand-color), transparent 50%, var(--brand-color));
    z-index: 0;
    animation: spin-plasma 3s linear infinite;
    filter: blur(10px);
    opacity: 0.7;
}

.plasma-glowing-ring.ring-2 {
    inset: -15px;
    filter: blur(20px);
    opacity: 0.4;
    animation: spin-plasma 5s linear infinite reverse;
}

/* Animations */
@keyframes rotate-light {
    100% { transform: rotate(360deg); }
}

@keyframes spin-plasma {
    100% { transform: rotate(360deg); }
}

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

/* ==========================================================
   COMMERCIAL PAGE: HYPER-MODERN CINEMATIC HERO
   ========================================================== */
.page-cinematic-commercial {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #050810; /* Darker, slightly blue tint for corporate */
}

.com-cinematic-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.1);
    animation: commercial-zoom 25s infinite alternate cubic-bezier(0.3, 0.1, 0.7, 0.9);
    z-index: 1;
    filter: brightness(0.5) contrast(1.1) saturate(0.8); /* Desaturated corporate look */
}

.com-cinematic-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(5, 8, 16, 0.8) 0%,
        rgba(5, 8, 16, 0.4) 50%,
        rgba(5, 8, 16, 0.95) 100%
    );
    z-index: 2;
}

.com-cinematic-content-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    text-align: center;
    padding-top: 100px;
}

.com-cinematic-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.com-cinematic-badge {
    display: inline-block;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 8px;
    margin-bottom: 30px;
    border-top: 1px solid rgba(var(--brand-color-rgb), 0.8);
    border-bottom: 1px solid rgba(var(--brand-color-rgb), 0.8);
    padding: 10px 30px;
    background: linear-gradient(90deg, transparent, rgba(var(--brand-color-rgb), 0.2), transparent);
    opacity: 0;
    transform: scaleX(0);
    animation: blade-reveal 1s cubic-bezier(0.19, 1, 0.22, 1) forwards 0.5s;
}

.com-cinematic-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(3rem, 5.5vw, 5.5rem);
    font-weight: 900;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.com-cinematic-title .sweep-text {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px) rotateX(90deg);
    transform-origin: bottom center;
    animation: flip-reveal 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.2) forwards;
}

.com-cinematic-title .sweep-text:nth-child(1) { animation-delay: 0.1s; }
.com-cinematic-title .commercial-hl { animation-delay: 0.4s; }
.com-cinematic-title .small-text { animation-delay: 0.7s; }

.com-cinematic-title .commercial-hl {
    color: var(--brand-color);
    text-shadow: 0 0 30px rgba(var(--brand-color-rgb), 0.8);
    font-size: 1.2em;
    display: block;
    margin: 10px 0;
}

.com-cinematic-title .small-text {
    font-size: 0.55em;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    letter-spacing: 4px;
    color: #b0b5c0;
    text-transform: uppercase;
}

.com-cinematic-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    opacity: 0;
    transform: translateY(20px);
    animation: simple-fade-up 1s ease forwards 1.6s;
}

/* CYBERPULSE SCANNER BUTTON */
.cyber-pulse-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 24px 60px;
    border-radius: 4px; /* Corporate square look instead of rounded */
    text-decoration: none;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(var(--brand-color-rgb), 0.5);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: all 0.4s;
    group: hover;
}

.cyber-pulse-btn .btn-bg {
    position: absolute;
    inset: 0;
    background: var(--brand-color);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 0;
}

.cyber-pulse-btn:hover .btn-bg {
    opacity: 1;
}

.cyber-pulse-btn .btn-text {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.cyber-pulse-btn .shake-bell {
    font-size: 26px;
    color: var(--brand-color);
    transition: color 0.4s;
}

.cyber-pulse-btn:hover .shake-bell {
    color: #fff;
    animation: shaking-bell 2s infinite;
}

.cyber-pulse-btn .scanner-line {
    position: absolute;
    left: -100%;
    top: 0;
    width: 20px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
    z-index: 5;
    animation: scanner-sweep 3s ease-in-out infinite;
    transform: skewX(-20deg);
}

.cyber-pulse-btn:hover {
    box-shadow: 0 15px 40px rgba(var(--brand-color-rgb), 0.4), 
                0 0 20px rgba(var(--brand-color-rgb), 0.6);
    border-color: #fff;
    transform: translateY(-5px);
}

.com-cinematic-number {
    color: rgba(255,255,255,0.5);
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    letter-spacing: 2px;
}

/* Commercial Animations */
@keyframes commercial-zoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.15); }
}

@keyframes blade-reveal {
    0% { opacity: 0; transform: scaleX(0); }
    100% { opacity: 1; transform: scaleX(1); }
}

@keyframes flip-reveal {
    0% { opacity: 0; transform: translateY(30px) rotateX(90deg); }
    100% { opacity: 1; transform: translateY(0) rotateX(0deg); }
}

@keyframes scanner-sweep {
    0% { left: -50%; }
    50% { left: 150%; }
    100% { left: 150%; } /* Pause effect */
}

@keyframes simple-fade-up {
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================
   COMMERCIAL PAGE: CORPORATE INTRO SECTION
   ========================================================== */
.commercial-intro-section {
    position: relative;
    padding: 160px 0;
    background-color: #0b0e14; /* Sleek obsidian */
    color: #fff;
    overflow: hidden;
}

/* Background Cyber Grid */
.com-intro-bg {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
    opacity: 0.5;
    transform: perspective(500px) rotateX(60deg) scale(2);
    transform-origin: top;
}

.com-intro-container {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

/* Left Text Column */
.com-text-col {
    flex: 1.2;
    display: flex;
    flex-direction: column;
}

.com-micro-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    color: var(--brand-color);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

.com-micro-badge ion-icon {
    font-size: 20px;
}

.com-epic-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 35px;
    text-transform: uppercase;
    color: #fff;
}

/* Glitch Outline Text Effect */
.glitch-hl {
    position: relative;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.2);
    display: inline-block;
    transition: all 0.5s ease;
}

.com-epic-heading:hover .glitch-hl {
    color: var(--brand-color);
    -webkit-text-stroke: 0px;
    text-shadow: 0 0 20px rgba(var(--brand-color-rgb), 0.6), 
                 -3px 0 rgba(255,0,0,0.4), 
                 3px 0 rgba(0,255,255,0.4);
    transform: scale(1.02);
}

.com-epic-desc {
    font-family: 'Outfit', sans-serif;
    font-size: 19px;
    color: #a0a5b0;
    line-height: 1.7;
    margin-bottom: 25px;
}

.top-desc {
    font-size: 20px;
    color: #c9ced6;
}

.highlight-cyber {
    color: #fff;
    font-weight: 600;
    background: linear-gradient(180deg, transparent 70%, rgba(var(--brand-color-rgb), 0.3) 70%);
    padding: 0 5px;
}

.com-quote-box {
    margin-top: 20px;
    padding: 30px;
    border-left: 4px solid var(--brand-color);
    background: rgba(255, 255, 255, 0.03);
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-style: italic;
    color: #fff;
    line-height: 1.6;
    position: relative;
    border-radius: 0 15px 15px 0;
}

.quote-icon {
    position: absolute;
    top: -15px;
    left: 20px;
    font-size: 30px;
    color: var(--brand-color);
    background: #0b0e14;
    padding: 0 10px;
    animation: float-icon 3s ease-in-out infinite;
}

/* Right Image Column: Cyber Frame */
.com-image-col {
    flex: 1;
    position: relative;
}

.cyber-frame {
    position: relative;
    border-radius: 10px;
    padding: 15px;
    background: linear-gradient(135deg, rgba(var(--brand-color-rgb), 0.2) 0%, transparent 50%, rgba(var(--brand-color-rgb), 0.2) 100%);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    transform: perspective(1000px) rotateY(-15deg);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    overflow: hidden;
}

.cyber-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(var(--brand-color-rgb), 0.5);
    border-radius: 10px;
    clip-path: polygon(0 20%, 20% 0, 100% 0, 100% 80%, 80% 100%, 0 100%);
    pointer-events: none;
}

.com-image-col:hover .cyber-frame {
    transform: perspective(1000px) rotateY(0deg);
}

.com-feature-img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    display: block;
    filter: sepia(10%) contrast(1.1) brightness(0.9);
    transition: filter 0.5s;
}

.cyber-frame:hover .com-feature-img {
    filter: sepia(0%) contrast(1.2) brightness(1);
}

/* Cyber Frame Scanning Line */
.frame-scanner {
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(var(--brand-color-rgb), 0.8);
    box-shadow: 0 0 20px rgba(var(--brand-color-rgb), 1);
    z-index: 5;
    animation: vertical-scan 4s linear infinite;
    mix-blend-mode: overlay;
}

.floating-tech-badge {
    position: absolute;
    bottom: -20px;
    left: 30px;
    background: rgba(10, 15, 25, 0.95);
    border: 1px solid var(--brand-color);
    padding: 12px 25px;
    border-radius: 3px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 20px rgba(var(--brand-color-rgb), 0.3);
    z-index: 10;
}

.status-dot {
    width: 10px;
    height: 10px;
    background: #00ff66; /* Neon green dot */
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff66;
    animation: blink-dot 1s infinite alternate;
}

/* Animations */
@keyframes vertical-scan {
    0% { top: -10%; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 110%; opacity: 0; }
}

@keyframes float-icon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes blink-dot {
    0% { opacity: 0.3; }
    100% { opacity: 1; }
}

@media (max-width: 992px) {
    .com-intro-container {
        flex-direction: column;
    }
    
    .com-text-col {
        order: 1;
    }
    
    .com-image-col {
        order: 2;
        width: 100%;
        max-width: 600px;
    }
}

/* ==========================================================
   NEON SLICE CTA BUTTON
   ========================================================== */
.call-action-wrapper {
    margin-top: 45px;
}

.neon-slice-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 22px 50px;
    background: transparent;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid var(--brand-color);
    text-decoration: none;
    overflow: hidden;
    transition: all 0.4s;
    box-shadow: inset 0 0 10px rgba(var(--brand-color-rgb), 0.2), 0 0 20px rgba(var(--brand-color-rgb), 0.2);
    border-radius: 4px;
}

.neon-slice-btn .slice-overlay {
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;
    background: var(--brand-color);
    transform: skewX(-30deg);
    z-index: -1;
    transition: left 0.5s cubic-bezier(0.86, 0, 0.07, 1);
}

.neon-slice-btn:hover .slice-overlay {
    left: -10%;
    transform: skewX(-15deg);
}

.neon-slice-btn:hover {
    color: #000;
    box-shadow: 0 5px 30px rgba(var(--brand-color-rgb), 0.8), inset 0 0 10px rgba(255,255,255,0.5);
    transform: translateY(-5px);
    border-color: #fff;
}

.neon-slice-btn .slice-icon {
    font-size: 26px;
    transition: transform 0.4s, color 0.4s;
}

.neon-slice-btn:hover .slice-icon {
    color: #000;
    animation: shaking-bell 2s infinite;
}

/* ==========================================================
   B2B COMMERCIAL ECOSYSTEM GRID
   ========================================================== */
.b2b-commercial-ecosystem {
    position: relative;
    padding: 150px 0;
    background-color: #050810;
    overflow: hidden;
}

.ecosystem-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: grayscale(1) brightness(0.4);
    z-index: 1;
}

.ecosystem-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5,8,16,0.95) 0%, rgba(5,8,16,0.85) 100%);
    z-index: 2;
}

.ecosystem-header {
    margin-bottom: 80px;
}

.ecosystem-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: #fff;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
}

.neo-highlight {
    color: var(--brand-color);
    text-shadow: 0 0 30px rgba(var(--brand-color-rgb), 0.5);
}

.data-node-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.node-card {
    position: relative;
    background: rgba(15, 20, 30, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    padding: 50px 40px;
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s;
    display: flex;
    flex-direction: column;
}

.node-watermark {
    position: absolute;
    top: -20px;
    right: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 150px;
    color: rgba(255, 255, 255, 0.02);
    line-height: 1;
    z-index: 0;
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    pointer-events: none;
}

/* Border Trace Animation */
.node-border-trace {
    position: absolute;
    inset: 0;
    border-radius: 6px;
    z-index: 1;
    pointer-events: none;
}

.node-border-trace::before,
.node-border-trace::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border: 2px solid transparent;
    border-radius: 6px;
}

.node-border-trace::before {
    top: 0;
    left: 0;
}

.node-border-trace::after {
    bottom: 0;
    right: 0;
}

.node-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    background: rgba(15, 20, 30, 0.6);
}

.node-card:hover .node-watermark {
    color: rgba(var(--brand-color-rgb), 0.05);
    transform: scale(1.1) translate(-10px, 10px);
}

.node-card:hover .node-border-trace::before {
    width: 100%;
    height: 100%;
    border-top-color: var(--brand-color);
    border-right-color: var(--brand-color);
    transition: width 0.2s linear, height 0.2s linear 0.2s;
}

.node-card:hover .node-border-trace::after {
    width: 100%;
    height: 100%;
    border-bottom-color: var(--brand-color);
    border-left-color: var(--brand-color);
    transition: width 0.2s linear 0.4s, height 0.2s linear 0.6s;
}

.node-content {
    position: relative;
    z-index: 5;
}

.node-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--brand-color-rgb), 0.1);
    border: 1px solid rgba(var(--brand-color-rgb), 0.3);
    border-radius: 8px;
    margin-bottom: 25px;
    transition: all 0.4s;
}

.node-icon ion-icon {
    font-size: 30px;
    color: var(--brand-color);
    transition: transform 0.4s;
}

.node-card:hover .node-icon {
    background: var(--brand-color);
    box-shadow: 0 0 20px rgba(var(--brand-color-rgb), 0.4);
}

.node-card:hover .node-icon ion-icon {
    color: #fff;
    transform: scale(1.2);
}

.node-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.node-text {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    color: #a0a5b0;
    line-height: 1.7;
    margin: 0;
    max-width: 90%;
}

@media (max-width: 992px) {
    .data-node-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================
   MASTER SPECTACULAR FOOTER
   ========================================================== */
.master-spectacular-footer {
    position: relative;
    background-color: #030508;
    color: #fff;
    padding: 100px 0 30px;
    overflow: hidden;
    border-top: 2px solid rgba(var(--brand-color-rgb), 0.3);
}

.master-spectacular-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(var(--brand-color-rgb), 0.15) 0%, transparent 70%);
    filter: blur(50px);
    z-index: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 70px;
}

.footer-col {
    position: relative;
    z-index: 10;
}

.footer-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 30px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-heading::after {
    content: '';
    height: 2px;
    width: 40px;
    background: var(--brand-color);
    display: block;
    box-shadow: 0 0 10px var(--brand-color);
}

/* Branding Column */
.footer-logo img {
    max-width: 180px;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.2));
}

.footer-bio {
    font-family: 'Outfit', sans-serif;
    color: #a0a5b0;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.contact-pill {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #c9ced6;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 50px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(var(--brand-color-rgb), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--brand-color);
    transition: all 0.3s;
}

.contact-pill:hover {
    background: rgba(var(--brand-color-rgb), 0.1);
    border-color: rgba(var(--brand-color-rgb), 0.3);
    transform: translateX(10px);
    color: #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.contact-pill:hover .icon-circle {
    background: var(--brand-color);
    color: #fff;
    box-shadow: 0 0 15px var(--brand-color);
}

.google-review-btn {
    border-color: rgba(var(--brand-color-rgb), 0.2);
    background: linear-gradient(90deg, rgba(var(--brand-color-rgb), 0.05), transparent);
}

.google-icon-wrap {
    background: #fff;
    color: #4285F4;
}

.contact-pill.google-review-btn:hover .google-icon-wrap {
    background: #fff;
    color: #4285F4;
    box-shadow: 0 0 15px #4285F4;
}

.contact-pill.google-review-btn:hover {
    transform: scale(1.03);
    border-color: #4285F4;
}

/* Facebook Button Styles */
.facebook-btn {
    border-color: rgba(24, 119, 242, 0.2);
    background: linear-gradient(90deg, rgba(24, 119, 242, 0.05), transparent);
}

.facebook-icon-wrap {
    background: #1877f2;
    color: #fff;
}

.contact-pill.facebook-btn:hover .facebook-icon-wrap {
    background: #1877f2;
    color: #fff;
    box-shadow: 0 0 15px #1877f2;
}

.contact-pill.facebook-btn:hover {
    transform: scale(1.03);
    border-color: #1877f2;
}

/* Services Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #a0a5b0;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    transition: all 0.3s;
}

.footer-links a ion-icon {
    font-size: 20px;
    color: var(--brand-color);
    opacity: 0.7;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 10px;
}

.footer-links a:hover ion-icon {
    opacity: 1;
    transform: scale(1.2);
}

/* Service Areas */
.area-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.area-list li {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #a0a5b0;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    transition: color 0.3s;
}

.area-list li ion-icon {
    color: #ff3b3b;
    font-size: 18px;
    filter: drop-shadow(0 0 5px rgba(255,59,59,0.5));
}

.area-list li:hover {
    color: #fff;
}

/* Footer Form */
.footer-estimate-form {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
}

.input-group {
    position: relative;
    margin-bottom: 15px;
}

.input-group ion-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 15px;
    color: var(--brand-color);
    font-size: 18px;
    transition: all 0.3s;
}

.textarea-group ion-icon {
    top: 20px;
    transform: translateY(0);
}

.input-group input,
.input-group textarea {
    width: 100%;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 14px 15px 14px 45px;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    transition: all 0.3s;
    box-sizing: border-box;
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--brand-color);
    box-shadow: 0 0 15px rgba(var(--brand-color-rgb), 0.3);
    background: rgba(0,0,0,0.8);
}

.input-group input:focus + ion-icon,
.input-group textarea:focus + ion-icon {
    color: #fff;
}

.schedule-btn {
    width: 100%;
    margin-top: 10px;
    background: var(--brand-color);
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 5px 20px rgba(var(--brand-color-rgb), 0.4);
}

.schedule-btn:hover {
    background: #fff;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,255,255, 0.4);
}

.schedule-btn ion-icon {
    font-size: 20px;
    transition: transform 0.3s;
}

.schedule-btn:hover ion-icon {
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: #6a7180;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
}

@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

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

/* ==========================================================
   404 ERROR PAGE 
   ========================================================== */
.error-page-body {
    background-color: #050810;
    overflow-x: hidden;
}

.error-404-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.error-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(var(--brand-color-rgb), 0.1) 0%, #050810 80%);
    z-index: 0;
}

.error-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.glitch-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.huge-404 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(120px, 20vw, 250px);
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin: 0;
    text-shadow: 0 0 50px rgba(var(--brand-color-rgb), 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    position: relative;
}

/* Glitch Effect */
.huge-404::before,
.huge-404::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.huge-404::before {
    left: 2px;
    text-shadow: -2px 0 red;
    animation: glitch-anim-1 2s infinite linear alternate-reverse;
}

.huge-404::after {
    left: -2px;
    text-shadow: -2px 0 blue;
    animation: glitch-anim-2 3s infinite linear alternate-reverse;
}

@keyframes glitch-anim-1 {
    0% { clip-path: inset(20% 0 80% 0); }
    20% { clip-path: inset(60% 0 10% 0); }
    40% { clip-path: inset(40% 0 50% 0); }
    60% { clip-path: inset(80% 0 5% 0); }
    80% { clip-path: inset(10% 0 70% 0); }
    100% { clip-path: inset(30% 0 20% 0); }
}

@keyframes glitch-anim-2 {
    0% { clip-path: inset(10% 0 60% 0); }
    20% { clip-path: inset(30% 0 20% 0); }
    40% { clip-path: inset(70% 0 10% 0); }
    60% { clip-path: inset(20% 0 50% 0); }
    80% { clip-path: inset(5% 0 80% 0); }
    100% { clip-path: inset(50% 0 30% 0); }
}

.zero-trash {
    color: var(--brand-color);
    font-size: clamp(100px, 18vw, 220px);
    display: inline-flex;
    transform: translateY(-5px);
    animation: float-trash 3s ease-in-out infinite;
}

@keyframes float-trash {
    0%, 100% { transform: translateY(-5px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.error-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(30px, 5vw, 50px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.highlight-error {
    color: var(--brand-color);
}

.error-text {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    color: #a0a5b0;
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.back-home-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    font-size: 18px;
}

.home-icon-404 {
    font-size: 24px;
}

/* ==========================================================
   UNIVERSAL RESPONSIVE OVERRIDES (TABLET, MOBILE, IPAD)
   ========================================================== */
html, body {
    overflow-x: hidden;
    width: 100vw;
}

@media (max-width: 1024px) {
    /* TABLET & IPAD (Horizontal/Vertical) */
    .container {
        padding: 0 30px;
    }
    .slide-title {
        font-size: clamp(3rem, 6vw, 4.5rem);
    }
    .spectacular-heading, .com-title {
        font-size: clamp(2.5rem, 5vw, 4rem);
    }
    .bento-title-3d {
        font-size: clamp(1.8rem, 3vw, 2.5rem);
    }
    .error-404-section .huge-404 {
        font-size: clamp(80px, 15vw, 150px);
    }
}

@media (max-width: 768px) {
    /* MOBILE PHONES */
    section {
        padding: 60px 0;
    }
    .container {
        padding: 0 20px;
    }
    .slide-title {
        font-size: clamp(2.2rem, 8vw, 3rem);
    }
    .slide-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    /* Buttons Full Width */
    .hero-btn, .sonar-btn, .schedule-btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    
    .slide-actions {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    /* Type resizing */
    .spectacular-heading, .com-title {
        font-size: clamp(2rem, 7vw, 2.8rem);
        line-height: 1.1;
    }
    .spectacular-desc, .com-text {
        font-size: 16px;
    }
    
    /* 404 adjustments */
    .error-subtitle {
        font-size: 24px;
    }
    
    /* Footer tweaks */
    .footer-col {
        margin-bottom: 25px;
    }
    .contact-pill {
        width: 100%;
        justify-content: center;
    }
    
    /* Forms */
    .footer-estimate-form .input-group input, 
    .footer-estimate-form .input-group textarea {
        padding-left: 45px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    /* NARROW MOBILE / iPhone SE */
    .slide-title {
        font-size: 2rem;
    }
    .bento-title-3d {
        font-size: 1.6rem;
    }
    .card-title {
        font-size: 1.2rem;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        font-size: 12px;
    }
    .bento-content-3d {
        padding: 30px 20px;
    }
    .cyber-card-b2b {
        padding: 25px 15px;
    }
    .node-title {
        font-size: 18px;
    }
}

/* ==========================================================
   AJAX FORM STATUS ALERTS (TAILWIND STYLE)
   ========================================================== */
.ajax-alert {
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    animation: fadeInDrop 0.5s ease backwards;
}

@keyframes fadeInDrop {
    0% { opacity: 0; transform: translateY(-10px); }
    100% { opacity: 1; transform: translateY(0); }
}

.ajax-success {
    background-color: #d1fae5; /* bg-green-100 */
    color: #065f46; /* text-green-800 */
    border: 1px solid #10b981;
}

.ajax-error {
    background-color: #fee2e2; /* bg-red-100 */
    color: #991b1b; /* text-red-800 */
    border: 1px solid #ef4444;
}

.spin-icon {
    animation: spin-ajax 1s linear infinite;
}

@keyframes spin-ajax {
    100% { transform: rotate(360deg); }
}

/* ==========================================================
   CONTACT US PAGE STYLES (SPECTACULAR UX/UI)
   ========================================================== */

.page-cinematic-contact {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #0d0f12;
}

.contact-cinematic-bg {
    position: absolute;
    inset: 0;
    /* We can use one of existing background images and apply dark gradients */
    background: url('home/slide3.jpg') center/cover no-repeat;
    filter: brightness(0.4) saturate(1.2);
    transform: scale(1.05);
    z-index: 1;
    animation: slow-pan-bg 30s infinite alternate;
}

@keyframes slow-pan-bg {
    0% { transform: scale(1.05) translate(0, 0); }
    100% { transform: scale(1.1) translate(-2%, 2%); }
}

.contact-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    background-image: radial-gradient(rgba(var(--brand-color-rgb), 0.15) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: float-particles 20s linear infinite;
}

.contact-cinematic-content {
    position: relative;
    z-index: 10;
    padding-top: 80px;
}

.glitch-micro {
    display: inline-block;
    color: var(--brand-color);
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(var(--brand-color-rgb), 0.5);
    padding: 8px 24px;
    border-radius: 30px;
    background: rgba(0,0,0,0.5);
    box-shadow: 0 0 20px rgba(var(--brand-color-rgb), 0.3);
}

.spectacular-contact-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
}

.text-glow-contact {
    color: transparent;
    -webkit-text-stroke: 1px var(--brand-color);
    text-shadow: 0 0 20px rgba(var(--brand-color-rgb), 0.6);
    position: relative;
}

.contact-hero-desc {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Master Contact Section (Grid Layout) */
.master-contact-section {
    padding: 100px 0;
    background: #02050a;
    position: relative;
}

.contact-master-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 50px 40px;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.info-bg-glow {
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(var(--brand-color-rgb), 0.4) 0%, transparent 70%);
    filter: blur(30px);
    z-index: 0;
}

.info-card-title {
    position: relative;
    z-index: 1;
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}

.info-card-desc {
    position: relative;
    z-index: 1;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    color: #a0aab2;
    margin-bottom: 40px;
    line-height: 1.6;
}

.info-item-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: rgba(var(--brand-color-rgb), 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(var(--brand-color-rgb), 0.3);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.info-item:hover .info-icon {
    background: var(--brand-color);
    box-shadow: 0 0 20px rgba(var(--brand-color-rgb), 0.5);
    transform: translateY(-5px);
}

.info-icon ion-icon {
    font-size: 28px;
    color: var(--brand-color);
    transition: color 0.3s;
}

.info-item:hover .info-icon ion-icon {
    color: #fff;
}

.info-text h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.info-text span, .info-text a {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
}

.info-text a:hover {
    color: var(--brand-color);
}

.contact-social-pane {
    position: relative;
    z-index: 1;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-social-pane span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #fff;
}

.social-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s;
}

.social-circle:hover {
    background: var(--brand-color);
    color: #fff;
    transform: scale(1.1) rotate(10deg);
}

/* Contact Form Pane */
.contact-form-card {
    background: #0f131a;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.05);
}

.form-header {
    margin-bottom: 40px;
}

.form-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.form-line {
    width: 60px;
    height: 4px;
    background: var(--brand-color);
    border-radius: 2px;
}

.premium-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.input-modern {
    position: relative;
    display: flex;
    align-items: center;
    background: #1a1f29;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.input-modern:focus-within {
    border-color: var(--brand-color);
    box-shadow: 0 0 15px rgba(var(--brand-color-rgb), 0.3);
}

.input-modern ion-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    color: #64748b;
    z-index: 1;
}

.input-modern input, .modern-select select, .input-modern textarea {
    width: 100%;
    background: transparent;
    border: none;
    padding: 18px 20px 18px 55px;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    color: #fff;
    outline: none;
    appearance: none;
}

.input-modern input::placeholder, .input-modern textarea::placeholder {
    color: #64748b;
}

.textarea-modern ion-icon {
    top: 20px;
    transform: none;
}

.textarea-modern textarea {
    resize: vertical;
    min-height: 120px;
}

.modern-select .select-arrow {
    position: absolute;
    right: 20px;
    left: auto;
    font-size: 20px;
    pointer-events: none;
}

.submit-super-btn {
    width: 100%;
    margin-top: 10px;
    padding: 20px;
    justify-content: center;
    font-size: 18px;
    border-radius: 10px;
}

.php-error-pane {
    background: #fee2e2;
    color: #991b1b;
    padding: 15px 20px;
    border-radius: 8px;
    border: 1px solid #ef4444;
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
}

/* ==========================================================
   THANK YOU PAGE STYLES (SPECTACULAR UX/UI)
   ========================================================== */

.spectacular-thankyou-section {
    width: 100%;
    height: 100vh;
    min-height: 700px;
    background: #050810;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thankyou-bg-burst {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(var(--brand-color-rgb), 0.15) 0%, #050810 70%);
}

.thankyou-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.particle-ty {
    position: absolute;
    background: var(--brand-color);
    border-radius: 50%;
    filter: blur(4px);
    opacity: 0.6;
    animation: float-around 15s infinite ease-in-out;
}

.prt-1 { width: 30px; height: 30px; top: 20%; left: 10%; animation-delay: 0s; }
.prt-2 { width: 15px; height: 15px; top: 60%; left: 20%; animation-delay: -2s; }
.prt-3 { width: 50px; height: 50px; top: 30%; right: 15%; animation-delay: -5s; }
.prt-4 { width: 20px; height: 20px; top: 70%; right: 25%; animation-delay: -7s; }
.prt-5 { width: 40px; height: 40px; bottom: 10%; left: 50%; animation-delay: -9s; }

@keyframes float-around {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 40px) scale(0.9); }
}

.container-thankyou {
    max-width: 800px;
    padding: 40px;
}

.success-icon-3d {
    width: 120px;
    height: 120px;
    margin: 0 auto 40px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: #fff;
    position: relative;
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.4), inset 0 5px 15px rgba(255,255,255,0.4);
    transform: perspective(500px) rotateX(10deg);
    animation: bounce-icon 3s infinite alternate ease-in-out;
}

.icon-ring-out {
    position: absolute;
    inset: -20px;
    border: 2px solid #10b981;
    border-radius: 35px;
    animation: ripple-out 2s infinite cubic-bezier(0.1, 0.8, 0.3, 1);
}

@keyframes ripple-out {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(1.4); opacity: 0; }
}

@keyframes bounce-icon {
    0% { transform: perspective(500px) rotateX(10deg) translateY(0); }
    100% { transform: perspective(500px) rotateX(5deg) translateY(-15px); }
}

.thankyou-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
}

.highlight-success {
    color: #10b981;
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
}

.thankyou-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.thankyou-divider .l-line, .thankyou-divider .r-line {
    width: 60px;
    height: 2px;
    background: rgba(255,255,255,0.2);
}

.thankyou-divider ion-icon {
    color: #10b981;
    font-size: 24px;
}

.thankyou-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 50px;
}

.glass-btn-success {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

.glass-btn-success:hover {
    background: #10b981;
    border-color: #10b981;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

/* Animations for intro elements */
.glide-up-1 { opacity: 0; animation: glideUp 0.8s forwards 0.2s; }
.glide-up-2 { opacity: 0; animation: glideUp 0.8s forwards 0.4s; }
.glide-up-3 { opacity: 0; animation: glideUp 0.8s forwards 0.6s; }
.glide-up-4 { opacity: 0; animation: glideUp 0.8s forwards 0.8s; }

@keyframes glideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 992px) {
    .contact-master-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .input-row {
        grid-template-columns: 1fr;
    }
    .contact-form-card {
        padding: 30px 20px;
    }
    .info-card-title {
        font-size: 24px;
    }
}

/* ==========================================================
   SCROLL TO TOP BUTTON (SPECTACULAR UX/UI)
   ========================================================== */
.scroll-top-btn {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(10, 15, 25, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(var(--brand-color-rgb), 0.3);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(50px) scale(0.8);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4), inset 0 0 15px rgba(var(--brand-color-rgb), 0.2);
    text-decoration: none;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.scroll-top-btn:hover {
    transform: translateY(-8px) scale(1.05);
    background: var(--brand-color);
    border-color: #fff;
    box-shadow: 0 15px 30px rgba(0,0,0,0.6), 0 0 30px rgba(var(--brand-color-rgb), 0.8);
}

.progress-ring {
    position: absolute;
    top: 5px;
    left: 5px;
    transform: rotate(-90deg);
}

.progress-ring__circle {
    stroke-dasharray: 138.2; /* 2 * PI * r (22) */
    stroke-dashoffset: 138.2;
    transition: stroke-dashoffset 0.1s linear, stroke 0.4s;
    stroke-linecap: round;
}

.scroll-top-btn:hover .progress-ring__circle {
    stroke: #fff;
}

.scroll-btn-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--brand-color);
    transition: color 0.4s, transform 0.3s;
}

.scroll-top-btn:hover .scroll-btn-inner {
    color: #fff;
    animation: floating-arrow 1.2s infinite alternate ease-in-out;
}

@keyframes floating-arrow {
    0% { transform: translateY(2px); }
    100% { transform: translateY(-4px); }
}

@media (max-width: 768px) {
    .scroll-top-btn {
        right: 20px;
        bottom: 80px; /* Above mobile safari navs ideally */
        width: 50px;
        height: 50px;
    }
    .progress-ring {
        width: 40px;
        height: 40px;
        top: 4px;
        left: 4px;
    }
    .progress-ring circle {
        r: 18;
        cx: 20;
        cy: 20;
    }
    .progress-ring__circle {
        stroke-dasharray: 113; /* circumference for r=18 */
        stroke-dashoffset: 113;
    }
    .scroll-btn-inner {
        font-size: 22px;
    }
}

/* ==========================================================
   SMS FLOATING ACTION BUTTON (FAB) & CTA BANNER
   ========================================================== */

/* --- FAB SMS Button --- */
.fab-sms {
    position: fixed;
    right: 30px;
    bottom: 110px; /* Above the scroll-to-top button */
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: rgba(11, 80, 147, 0.85); /* brand-blue baseline */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 2px 10px rgba(255,255,255,0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.fab-sms::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-color));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.fab-sms-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: transform 0.3s ease;
}

.fab-icon {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.3));
}

.fab-pulse-1, .fab-pulse-2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-color));
    z-index: 0;
    opacity: 0.6;
    animation: sms-pulse 2.5s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

.fab-pulse-2 {
    animation-delay: 1.25s;
}

@keyframes sms-pulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    100% { transform: translate(-50%, -50%) scale(1.8); opacity: 0; }
}

.fab-sms:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(0, 180, 80, 0.85); /* Shifts towards green on hover */
    box-shadow: 0 15px 40px rgba(0, 180, 80, 0.4), inset 0 2px 10px rgba(255,255,255,0.3);
}

.fab-sms:hover .fab-sms-inner {
    transform: scale(1.1) rotate(-5deg);
}


/* --- SMS CTA Section (Banner) --- */
.sms-cta-section {
    position: relative;
    padding: 60px 0;
    background: var(--bg-dark-secondary);
    overflow: hidden;
}

.sms-cta-bg-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(140px);
    z-index: 0;
    opacity: 0.3;
}

.glow-blue {
    background: var(--brand-blue);
    top: -150px;
    left: 10%;
}

.glow-green {
    background: var(--brand-color);
    bottom: -150px;
    right: 10%;
}

.container-sms-cta {
    position: relative;
    z-index: 2;
}

.sms-banner {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), inset 0 0 20px rgba(255,255,255,0.02);
    position: relative;
    overflow: hidden;
}

.sms-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(11,80,147,0.1) 0%, rgba(0,180,80,0.05) 100%);
    pointer-events: none;
    z-index: 0;
}

.banner-icon-bg {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e87e5, var(--brand-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #fff;
    box-shadow: 0 10px 25px rgba(11, 80, 147, 0.5);
    position: relative;
    z-index: 2;
}

.banner-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.banner-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(to right, #fff, #d0d0d0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.banner-subtitle {
    color: #a1a1aa;
    font-size: 16px;
    line-height: 1.6;
}

.banner-action {
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.sms-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 35px;
    background: linear-gradient(135deg, var(--brand-color), #00d65f);
    color: #000;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 180, 80, 0.4);
}

.sms-cta-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 180, 80, 0.6);
    background: linear-gradient(135deg, #00d65f, #00ff73);
}

.sms-cta-btn ion-icon {
    font-size: 24px;
}

/* Mobile Adjustments */
@media (max-width: 900px) {
    .sms-banner {
        flex-direction: column;
        text-align: center;
        padding: 40px 25px;
    }
}

@media (max-width: 600px) {
    .fab-sms {
        right: 20px;
        bottom: 90px;
        width: 55px;
        height: 55px;
    }
    .fab-icon {
        width: 25px;
        height: 25px;
    }
    .fab-pulse-1, .fab-pulse-2 {
        width: 55px;
        height: 55px;
    }
}
