/*
Theme Name: Vigilyx Surveillance Theme
Theme URI: https://vigilyx.com
Description: A premium WordPress theme for AI surveillance and security companies with dark, modern design and advanced animations.
Version: 1.0.0
Author: Vigilyx
Author URI: https://vigilyx.com
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vigilyx
Tags: dark, modern, business, security, surveillance, technology, one-page, responsive
*/

/* ========================================
   CSS VARIABLES DEFINITION
   ======================================== */

:root {
    /* Primary Colors */
    --primary-blue: #0d6efd;
    --primary-blue-dark: #0a58ca;
    --primary-blue-darker: #084298;
    --primary-blue-rgb: 13, 110, 253;
    
    /* Accent Colors */
    --accent-cyan: #00ffcc;
    --accent-cyan-rgb: 0, 255, 204;
    
    --accent-red: #ff6b6b;
    --accent-red-rgb: 255, 107, 107;
    
    --accent-yellow: #ffc107;
    --accent-yellow-rgb: 255, 193, 7;
    
    /* Neutral Colors */
    --white: #ffffff;
    --white-rgb: 255, 255, 255;
    --black: #000000;
    --black-rgb: 0, 0, 0;
    
    /* Dark Theme Colors */
    --dark-primary: #050505;
    --dark-secondary: #0a0a0a;
    --dark-tertiary: #080808;
    --dark-quaternary: #121212;
    --dark-quinary: #1a1a1a;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
    --gradient-secondary: linear-gradient(135deg, var(--accent-red), var(--primary-blue));
    --gradient-tertiary: linear-gradient(135deg, var(--accent-yellow), var(--accent-cyan));
    --gradient-dark: linear-gradient(135deg, var(--dark-primary) 0%, var(--dark-secondary) 50%, var(--dark-primary) 100%);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'Roboto Mono', 'Courier New', monospace;
}

/* ========================================
   FLOATING SECTION INDICATORS
   ======================================== */

.section-indicators {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.indicator-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(var(--white-rgb), 0.2);
    border: 2px solid rgba(var(--white-rgb), 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
}

.indicator-dot:hover {
    background: rgba(var(--primary-blue-rgb), 0.6);
    border-color: var(--primary-blue);
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(var(--primary-blue-rgb), 0.5);
}

.indicator-dot.active {
    background: var(--accent-cyan);
    border-color: var(--accent-cyan);
    box-shadow: 0 0 20px rgba(var(--accent-cyan-rgb), 0.8);
    animation: indicatorPulse 2s infinite;
}

@keyframes indicatorPulse {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 0 20px rgba(var(--accent-cyan-rgb), 0.8);
    }
    50% { 
        transform: scale(1.2); 
        box-shadow: 0 0 30px rgba(var(--accent-cyan-rgb), 1);
    }
}

.dot-label {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(var(--black-rgb), 0.9);
    color: var(--accent-cyan);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(var(--accent-cyan-rgb), 0.3);
    backdrop-filter: blur(10px);
}

.indicator-dot:hover .dot-label,
.indicator-dot.active .dot-label {
    opacity: 1;
    right: 20px;
}

.indicator-dot.active .dot-label {
    color: var(--accent-cyan);
    text-shadow: 0 0 10px rgba(var(--accent-cyan-rgb), 0.8);
}

/* Mobile responsiveness for indicators */
@media (max-width: 768px) {
    .section-indicators {
        right: 10px;
        gap: 12px;
    }
    
    .indicator-dot {
        width: 8px;
        height: 8px;
    }
    
    .dot-label {
        display: none;
    }
}

@media (max-width: 480px) {
    .section-indicators {
        right: 8px;
        gap: 10px;
    }
    
    .indicator-dot {
        width: 6px;
        height: 6px;
    }
}

/* Enhanced section transitions */
body {
    transition: background 1s ease;
}

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 9999;
    backdrop-filter: blur(10px);
}

.progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    width: 0%;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(var(--primary-blue-rgb), 0.5);
}

/* Active Navigation Link Styling */
.modern-link.active-section {
    color: var(--accent-cyan) !important;
    text-shadow: 0 0 15px rgba(var(--accent-cyan-rgb), 0.8);
    position: relative;
}

.modern-link.active-section::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
    animation: navPulse 2s infinite;
}

@keyframes navPulse {
    0%, 100% { opacity: 0.6; width: 30px; }
    50% { opacity: 1; width: 50px; }
}

/* Services Section - Unique Design */
.services-section {
    position: relative;
    background: 
        radial-gradient(ellipse at top left, rgba(13, 110, 253, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(0, 255, 204, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, #0a0a0a 0%, #0f0f0f 50%, #0a0a0a 100%);
    overflow: hidden;
    padding: clamp(40px, 8vw, 120px) 0;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, transparent 48%, rgba(13, 110, 253, 0.1) 49%, rgba(13, 110, 253, 0.1) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(0, 255, 204, 0.1) 49%, rgba(0, 255, 204, 0.1) 51%, transparent 52%);
    background-size: 100px 100px;
    opacity: 0.3;
    animation: servicesPattern 20s linear infinite;
}

@keyframes servicesPattern {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 100px 100px, -100px 100px; }
}

/* Services Header - Unique Design */
.services-header-container {
    position: relative;
    z-index: 2;
}

.services-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.2), rgba(0, 255, 204, 0.2));
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    padding: 12px 24px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.services-badge::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-primary);
    border-radius: 50px;
    z-index: -1;
}

.badge-icon {
    font-size: 1.2rem;
    color: #00ffcc;
    animation: iconPulse 2s infinite;
}

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

/* Services Main Heading - Unique Multi-line Design */
.services-main-heading {
    margin: 30px 0;
    position: relative;
}

.services-title {
    font-size: clamp(2rem, 8vw, 4rem);
    font-weight: 900;
    line-height: 0.9;
    margin: 0;
    position: relative;
}

.title-line {
    display: block;
    opacity: 1;
}

.title-line.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Unique Underline Design */
.title-underline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.underline-left,
.underline-right {
    height: 2px;
    width: 100px;
    background: linear-gradient(90deg, transparent, rgba(13, 110, 253, 0.5));
}

.underline-right {
    background: linear-gradient(90deg, rgba(13, 110, 253, 0.5), transparent);
}

.underline-center {
    color: #00ffcc;
    font-size: 0.5rem;
    animation: centerPulse 2s infinite;
}

@keyframes centerPulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.5); opacity: 1; }
}

/* Subtitle Styles */
.subtitle {
    font-size: clamp(0.9rem, 2.5vw, 1.2rem);
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 30px auto 0;
    line-height: 1.6;
}

.services-subtitle, .advantages-subtitle, .service-category-desc {
    font-size: inherit;
    color: inherit;
    max-width: inherit;
    margin: inherit;
    line-height: inherit;
}

/* Service Category Styles */
.service-category {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
}

.service-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.1), rgba(0, 255, 204, 0.1));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-category:hover::before {
    opacity: 1;
}

.service-category:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(0, 255, 204, 0.3);
    box-shadow: 
        0 30px 60px rgba(13, 110, 253, 0.2),
        0 0 40px rgba(0, 255, 204, 0.1);
}

/* Advantages Section - Unique Design */
.advantages-header-container {
    position: relative;
    z-index: 2;
}

.advantages-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.2), rgba(13, 110, 253, 0.2));
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    padding: 12px 24px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.advantages-badge::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #ff6b6b, #0d6efd, #ff6b6b);
    border-radius: 50px;
    z-index: -1;
}

.advantages-badge .badge-icon {
    font-size: 1.2rem;
    color: var(--accent-red);
    animation: iconPulse 2s infinite;
}

.advantages-badge .badge-text {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--white);
    text-transform: uppercase;
}

/* Advantages Grid Layout */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: clamp(20px, 4vw, 30px);
    margin-top: 50px;
    position: relative;
}

/* Advantage Item Styling */
.advantage-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: clamp(30px, 5vw, 40px) clamp(20px, 3vw, 30px);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

/* Advantage Item Background Effects */
.advantage-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.05), rgba(0, 255, 204, 0.03));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.advantage-item:hover::before {
    opacity: 1;
}

/* Advantage Item Hover Effects */
.advantage-item:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(13, 110, 253, 0.3);
    box-shadow: 
        0 20px 40px rgba(13, 110, 253, 0.2),
        0 0 30px rgba(0, 255, 204, 0.1);
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.08), rgba(0, 255, 204, 0.05));
}

/* Advantage Icon Styling */
.advantage-icon {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: #0d6efd;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 0 15px rgba(13, 110, 253, 0.4));
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

/* Icon Hover Animation */
.advantage-item:hover .advantage-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 30px rgba(13, 110, 253, 0.8));
    animation: advantageIconPulse 2s infinite;
}

@keyframes advantageIconPulse {
    0%, 100% { 
        transform: scale(1.1);
        filter: drop-shadow(0 0 30px rgba(13, 110, 253, 0.8));
    }
    50% { 
        transform: scale(1.2);
        filter: drop-shadow(0 0 40px rgba(13, 110, 253, 1));
    }
}

/* Advantage Heading */
.advantage-heading {
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    font-size: clamp(0.95rem, 2.5vw, 1.2rem);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

/* Heading Hover Effect */
.advantage-item:hover .advantage-heading {
    color: #00ffcc;
    text-shadow: 0 0 20px rgba(0, 255, 204, 0.6);
    transform: translateY(-2px);
}

/* Advantage Text */
.advantage-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    line-height: 1.6;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

/* Text Hover Effect */
.advantage-item:hover .advantage-text {
    color: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
}

/* Scanning Line Effect */
.advantage-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(13, 110, 253, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.8s ease;
    pointer-events: none;
    opacity: 0;
    z-index: 2;
}

.advantage-item:hover::after {
    opacity: 1;
    left: 100%;
    top: 100%;
}

/* Special Effects for Different Items */
.advantage-item:nth-child(1) .advantage-icon { color: #ff6b6b; }
.advantage-item:nth-child(2) .advantage-icon { color: #0d6efd; }
.advantage-item:nth-child(3) .advantage-icon { color: #00ffcc; }
.advantage-item:nth-child(4) .advantage-icon { color: #ffc107; }
.advantage-item:nth-child(5) .advantage-icon { color: #6f42c1; }
.advantage-item:nth-child(6) .advantage-icon { color: #20c997; }
.advantage-item:nth-child(7) .advantage-icon { color: #fd7e14; }

/* Hover Color Variations */
.advantage-item:nth-child(1):hover { border-color: rgba(255, 107, 107, 0.4); }
.advantage-item:nth-child(2):hover { border-color: rgba(13, 110, 253, 0.4); }
.advantage-item:nth-child(3):hover { border-color: rgba(0, 255, 204, 0.4); }
.advantage-item:nth-child(4):hover { border-color: rgba(255, 193, 7, 0.4); }
.advantage-item:nth-child(5):hover { border-color: rgba(111, 66, 193, 0.4); }
.advantage-item:nth-child(6):hover { border-color: rgba(32, 201, 151, 0.4); }
.advantage-item:nth-child(7):hover { border-color: rgba(253, 126, 20, 0.4); }

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .advantages-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        margin-top: 40px;
    }
    
    .advantage-item {
        padding: 25px 20px;
    }
    
    .advantage-icon {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .advantage-heading {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .advantage-text {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 30px;
    }
    
    .advantage-item {
        padding: 20px 15px;
        text-align: left;
        display: flex;
        align-items: flex-start;
        gap: 15px;
    }
    
    .advantage-icon {
        font-size: 1.8rem;
        margin-bottom: 0;
        flex-shrink: 0;
        width: 50px;
        text-align: center;
    }
    
    .advantage-content {
        flex: 1;
    }
    
    .advantage-heading {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }
    
    .advantage-text {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .advantage-item {
        padding: 15px 12px;
        gap: 12px;
    }
    
    .advantage-icon {
        font-size: 1.5rem;
        width: 40px;
    }
    
    .advantage-heading {
        font-size: 0.9rem;
    }
    
    .advantage-text {
        font-size: 0.75rem;
    }
}

/* Pricing Section - Unique Design */
.pricing-header-container {
    position: relative;
    z-index: 2;
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(0, 255, 204, 0.2));
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    padding: 12px 24px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.pricing-badge::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #ffc107, #00ffcc, #ffc107);
    border-radius: 50px;
    z-index: -1;
}

.pricing-badge .badge-icon {
    font-size: 1.2rem;
    color: #ffc107;
    animation: iconPulse 2s infinite;
}

.pricing-badge .badge-text {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: #fff;
    text-transform: uppercase;
}

/* Custom Hamburger Icon */
.hamburger-icon {
    width: 30px;
    height: 22px;
    position: relative;
    cursor: pointer;
}

.hamburger-icon::before,
.hamburger-icon::after {
    content: '';
    position: absolute;
    height: 3px;
    width: 100%;
    background-color: #fff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger-icon::before {
    top: 0;
}

.hamburger-icon::after {
    bottom: 0;
}

/* Middle line using background gradient */
.hamburger-icon {
    background: linear-gradient(to right, 
        transparent 0%, transparent 35%, 
        #fff 35%, #fff 65%, 
        transparent 65%, transparent 100%);
    background-size: 100% 3px;
    background-repeat: no-repeat;
    background-position: 0px 9.5px;
}

/* Mobile Navigation Toggle Button */
.navbar-toggler {
    border: none !important;
    padding: 8px;
    margin: 0;
    position: relative;
    z-index: 1000;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

/* Mobile Navigation Styles */
@media (max-width: 991.98px) {
    /* Prevent zoom and ensure proper scaling */
    html {
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
    }
    
    body {
        overflow-x: hidden;
        min-height: 100vh;
    }
    
    .navbar-collapse {
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(15px);
        padding: 20px;
        margin-top: 15px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
    }
    
    .navbar-nav {
        text-align: center;
    }
    
    .nav-item {
        margin-bottom: 15px;
    }
    
    .modern-link {
        display: inline-block;
        padding: 10px 20px !important;
    }
    
    .btn-premium-contact {
        margin-top: 10px;
    }
    
    /* Ensure hamburger is properly positioned */
    .custom-nav .container {
        position: relative;
    }
    
    .navbar-toggler {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    /* Adjust font sizes for mobile */
    h1 {
        font-size: clamp(1.5rem, 5vw, 2rem) !important;
    }
    
    .display-3 {
        font-size: clamp(2rem, 6vw, 2.5rem) !important;
    }
    
    .display-4 {
        font-size: clamp(1.5rem, 4vw, 2rem) !important;
    }
    
    /* Ensure proper container padding on mobile */
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Adjust hero section padding on mobile */
    .hero-section {
        padding-top: 120px !important;
    }
}

/* Enhanced mobile styles for smaller screens */
@media (max-width: 576px) {
    .navbar-brand img {
        height: 40px !important;
    }
    
    .navbar-toggler {
        padding: 5px;
    }
    
    .hamburger-icon {
        width: 25px;
        height: 18px;
    }
    
    .modern-link {
        font-size: 0.8rem !important;
        padding: 8px 16px !important;
    }
    
    .btn-premium-contact {
        font-size: 0.7rem !important;
        padding: 8px 20px !important;
    }
}

/* Tablet specific adjustments */
@media (min-width: 768px) and (max-width: 991.98px) {
    .navbar-collapse {
        margin-top: 10px;
        padding: 15px;
    }
    
    .nav-item {
        margin-bottom: 10px;
    }
    
    .modern-link {
        padding: 8px 16px !important;
    }
}

/* Navigation Container */
.custom-nav {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
    transition: all 0.4s ease;
}

/* Technical Logo Styling */
.logo-img {
    height: clamp(40px, 6vw, 55px);
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 4px rgba(0, 255, 255, 0.4));
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}



/* Modern Links */
.modern-link {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 20px !important;
    transition: all 0.3s ease;
}

.modern-link:hover {
    color: #fff !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Premium Button */
.btn-premium-contact {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: clamp(8px, 2vw, 10px) clamp(20px, 4vw, 25px);
    font-size: clamp(0.7rem, 2vw, 0.8rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0; /* Sharp corners feel more "industrial/premium" */
    transition: all 0.3s ease;
}

.btn-premium-contact:hover {
    background: #fff;
    color: #000;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
}

/* Dropdown Customization */
.dropdown-dark {
    background: #121212;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    margin-top: 15px;
}

.dropdown-item {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    padding: 10px 20px;
}

.dropdown-item:hover {
    background: #1a1a1a;
    color: #0d6efd;
}

/* Hero Section Base */
.hero-section {
    position: relative;
    background: var(--gradient-dark);
    overflow: hidden;
    padding-top: 100px;
    min-height: 100vh;
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding-top: 120px;
        padding-bottom: 60px;
    }
}

/* Creating a "Grid" background effect common in tech sites */
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(var(--primary-blue-rgb), 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(var(--primary-blue-rgb), 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle, black, transparent 80%);
    z-index: 1;
}

/* Pricing Side Image */
.pricing-image-side {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.pricing-side-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(var(--primary-blue-rgb), 0.3);
    border: 2px solid rgba(var(--accent-cyan-rgb), 0.2);
    transition: all 0.5s ease;
}

.pricing-side-image:hover {
    transform: scale(1.02) translateY(-10px);
    box-shadow: 0 30px 60px rgba(var(--primary-blue-rgb), 0.4);
    border-color: var(--accent-cyan);
}

/* Pricing Top Image */
.pricing-image-top {
    position: relative;
    z-index: 2;
}

.pricing-top-image {
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(var(--primary-blue-rgb), 0.3);
    border: 2px solid rgba(var(--accent-cyan-rgb), 0.2);
    transition: all 0.5s ease;
}

.pricing-top-image:hover {
    transform: scale(1.02) translateY(-10px);
    box-shadow: 0 30px 60px rgba(var(--primary-blue-rgb), 0.4);
    border-color: var(--accent-cyan);
}

/* Service Top Image */
.service-image-top {
    position: relative;
    z-index: 2;
}

.service-top-image {
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(var(--primary-blue-rgb), 0.3);
    border: 2px solid rgba(var(--accent-cyan-rgb), 0.2);
    transition: all 0.5s ease;
}

.service-top-image:hover {
    transform: scale(1.02) translateY(-10px);
    box-shadow: 0 30px 60px rgba(var(--primary-blue-rgb), 0.4);
    border-color: var(--accent-cyan);
}

/* Service Side Image */
.service-image-side {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.service-side-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(var(--primary-blue-rgb), 0.3);
    border: 2px solid rgba(var(--accent-cyan-rgb), 0.2);
    transition: all 0.5s ease;
}

.service-side-image:hover {
    transform: scale(1.02) translateY(-10px);
    box-shadow: 0 30px 60px rgba(var(--primary-blue-rgb), 0.4);
    border-color: var(--accent-cyan);
}

/* Mobile adjustments for service side image */
@media (max-width: 991.98px) {
    .service-image-side {
        margin-bottom: 30px;
        text-align: center;
        order: -1;
    }
    
    .service-side-image {
        max-width: min(400px, 90vw);
        margin: 0 auto;
    }
}

@media (max-width: 575.98px) {
    .service-image-side {
        margin-bottom: 20px;
        padding: 10px;
    }
    
    .service-side-image {
        max-width: min(300px, 85vw);
        border-radius: 15px;
    }
}

@media (max-width: 480px) {
    .service-side-image {
        max-width: min(250px, 80vw);
    }
}

/* Mobile adjustments for service images */
@media (max-width: 991.98px) {
    .service-image-wrapper {
        margin-bottom: 30px;
        text-align: center;
        order: -1;
    }
    
    .service-top-image {
        max-width: min(400px, 90vw);
    }
    
    .pricing-top-image {
        max-width: min(400px, 90vw);
    }
    
    .pricing-side-image {
        max-width: min(400px, 90vw);
        margin: 0 auto;
    }
    
    .pricing-image-side {
        margin-bottom: 30px;
        text-align: center;
        order: -1;
    }
}

@media (max-width: 575.98px) {
    .service-image-wrapper {
        margin-bottom: 20px;
        padding: 10px;
    }
    
    .service-top-image {
        max-width: min(300px, 85vw);
        border-radius: 15px;
    }
    
    .pricing-top-image {
        max-width: min(300px, 85vw);
        border-radius: 15px;
    }
    
    .pricing-side-image {
        max-width: min(300px, 85vw);
        border-radius: 15px;
        margin: 0 auto;
    }
    
    .pricing-image-side {
        margin-bottom: 20px;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .service-top-image,
    .pricing-top-image,
    .pricing-side-image {
        max-width: min(250px, 80vw);
    }
}

/* Hero Side Image */
.hero-image-wrapper {
    position: relative;
    z-index: 2;
    padding: 20px;
    margin-bottom: 30px;
}

.hero-side-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(var(--primary-blue-rgb), 0.3);
    border: 2px solid rgba(var(--accent-cyan-rgb), 0.2);
    transition: all 0.5s ease;
}

.hero-side-image:hover {
    transform: scale(1.02) translateY(-10px);
    box-shadow: 0 30px 60px rgba(var(--primary-blue-rgb), 0.4);
    border-color: var(--accent-cyan);
}

/* Mobile adjustments */
@media (max-width: 991.98px) {
    .hero-image-wrapper {
        margin-bottom: 30px;
        text-align: center;
    }
    
    .hero-side-image {
        max-width: min(400px, 90vw);
        margin: 0 auto;
    }
}

@media (max-width: 575.98px) {
    .hero-image-wrapper {
        margin-bottom: 20px;
        padding: 10px;
    }
    
    .hero-side-image {
        max-width: min(300px, 85vw);
        border-radius: 15px;
    }
}

@media (max-width: 480px) {
    .hero-side-image {
        max-width: min(250px, 80vw);
    }
}

/* Hero Section Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-content {
        text-align: center;
    }
    
    .badge-tech {
        margin-bottom: 20px;
        align-self: center;
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 15px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        line-height: 1.1;
        margin-bottom: 20px;
    }
    
    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 250px;
        font-size: 0.85rem;
        padding: 14px 25px;
    }
}

@media (max-width: 480px) {
    .hero-content p {
        font-size: 0.9rem;
    }
    
    .hero-buttons .btn {
        max-width: 220px;
        font-size: 0.8rem;
        padding: 12px 20px;
    }
}

/* Ensure content stays above overlay */
.hero-content {
    position: relative;
    z-index: 2;
}

/* Badge Styling */
.badge-tech {
    display: inline-flex;
    align-items: center;
    padding: clamp(6px, 1.5vw, 8px) clamp(12px, 3vw, 16px);
    background: rgba(13, 110, 253, 0.1);
    border: 1px solid rgba(13, 110, 253, 0.3);
    border-radius: 50px;
    color: #0d6efd;
    font-size: clamp(0.65rem, 2vw, 0.75rem);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-top: 20px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #00ffcc;
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 0 10px #00ffcc;
    animation: blink 1.5s infinite;
}

/* Typography Enhancements */
.text-gradient {
    background: linear-gradient(to right, #fff, #0d6efd);
    -webkit-background-clip: text;
    -webkit-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Premium Buttons - Consolidated */
.btn-primary-premium {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: white;
    border: none;
    padding: clamp(14px, 3vw, 18px) clamp(25px, 5vw, 40px);
    font-size: clamp(0.8rem, 2.5vw, 0.95rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

.btn-primary-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary-premium:hover {
    background: linear-gradient(135deg, #0a58ca 0%, #084298 100%);
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.5);
    transform: translateY(-3px);
}

.btn-primary-premium:hover::before {
    left: 100%;
}

.btn-glass {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: clamp(14px, 3vw, 18px) clamp(25px, 4vw, 35px);
    backdrop-filter: blur(10px);
    font-size: clamp(0.75rem, 2.5vw, 0.9rem);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

@keyframes blink {
    0% { opacity: 0.4; }
    50% { opacity: 1; }
    100% { opacity: 0.4; }
}

/* Intel Item Mobile Responsiveness */
.intel-item {
    position: relative;
    padding: clamp(15px, 3vw, 25px);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.intel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(13, 110, 253, 0.1), transparent);
    transition: left 0.6s ease;
}

.intel-item:hover::before {
    left: 100%;
}

.intel-item:hover {
    background: rgba(13, 110, 253, 0.08);
    border-color: rgba(13, 110, 253, 0.3);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(13, 110, 253, 0.2);
}

.intel-item h5 {
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    position: relative;
    z-index: 2;
}

.intel-item h5 i {
    transition: all 0.3s ease;
}

.intel-item:hover h5 i {
    transform: scale(1.2);
    color: #00ffcc;
    text-shadow: 0 0 15px rgba(0, 255, 204, 0.5);
}

.intel-item p {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    font-size: clamp(0.8rem, 2vw, 0.95rem);
    line-height: 1.6;
}

.intel-item:hover p {
    color: rgba(255, 255, 255, 0.9);
}



/* Desktop Polish */
@media (min-width: 992px) {
    .faq-tabs-container {
        overflow: visible;
        margin: 0 0 3rem 0;
        padding: 0;
    }
    .faq-tabs {
        width: 100%;
        justify-content: center;
    }
}

/* FAQ Section Enhanced Styling */
#faq {
    background: linear-gradient(135deg, #0a0a0a 0%, #050505 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
    padding: clamp(60px, 10vw, 120px) 0;
}

/* FAQ Background Effects */
#faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(13, 110, 253, 0.3), transparent);
}

#faq::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(13, 110, 253, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 255, 204, 0.05) 0%, transparent 50%);
    animation: faqParticleFloat 20s ease-in-out infinite;
    z-index: 0;
}

@keyframes faqParticleFloat {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(-20px, -30px); }
    50% { transform: translate(20px, -20px); }
    75% { transform: translate(-10px, 20px); }
}

#faq .container {
    position: relative;
    z-index: 1;
}

/* FAQ Header Styling */
#faq .display-4 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff, #0d6efd);
    -webkit-background-clip: text;
    -webkit-fill-color: transparent;
    background-clip: text;
    color: transparent;
    position: relative;
}

#faq .display-4::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #0d6efd, #00ffcc);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(13, 110, 253, 0.5);
}

#faq .text-secondary {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: rgba(255, 255, 255, 0.7) !important;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* FAQ Tabs Container */
.faq-tabs-container {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 20px;
    margin: 0 0 3rem 0;
    scrollbar-width: none;
    position: relative;
}

.faq-tabs-container::-webkit-scrollbar {
    display: none;
}

.faq-tabs-container::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(13, 110, 253, 0.3), transparent);
}

/* FAQ Tabs */
.faq-tabs {
    display: inline-flex;
    gap: 8px;
    padding: 0 20px;
    position: relative;
}

.faq-tabs .nav-link {
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    font-size: clamp(0.75rem, 2vw, 0.9rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 24px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.faq-tabs .nav-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.3), transparent);
    border-radius: 50%;
    transition: all 0.5s ease;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.faq-tabs .nav-link:hover {
    background: rgba(13, 110, 253, 0.1);
    border-color: rgba(13, 110, 253, 0.3);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.2);
}

.faq-tabs .nav-link:hover::before {
    width: 100%;
    height: 100%;
}

.faq-tabs .nav-link.active {
    background: linear-gradient(135deg, #0d6efd, #0a58ca);
    color: #fff !important;
    border-color: #0d6efd;
    box-shadow: 0 0 25px rgba(13, 110, 253, 0.4);
    transform: translateY(-2px) scale(1.05);
}

.faq-tabs .nav-link span {
    position: relative;
    z-index: 2;
}

/* Tab Content */
.tab-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    backdrop-filter: blur(15px);
    padding: clamp(20px, 4vw, 40px);
    position: relative;
    overflow: hidden;
}

.tab-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(13, 110, 253, 0.3), transparent);
}

/* Enhanced Accordion */
.custom-accordion {
    position: relative;
}

.custom-accordion .accordion-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 0;
    transition: all 0.3s ease;
    position: relative;
}

.custom-accordion .accordion-item:last-child {
    border-bottom: none;
}

.custom-accordion .accordion-item:hover {
    background: rgba(13, 110, 253, 0.02);
    transform: translateX(5px);
}

.custom-accordion .accordion-button {
    background: transparent !important;
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.5px;
    padding: 20px 20px 20px 50px !important;
    border: none !important;
    box-shadow: none !important;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 0 !important;
}

.custom-accordion .accordion-button::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 4px;
    height: 0;
    background: linear-gradient(135deg, #0d6efd, #00ffcc);
    transition: all 0.4s ease;
    transform: translateY(-50%);
    border-radius: 2px;
}

.custom-accordion .accordion-button:not(.collapsed)::before {
    height: 100%;
    width: 4px;
    box-shadow: 0 0 10px rgba(13, 110, 253, 0.5);
}

.custom-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2300ffcc'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform 0.3s ease;
}

.custom-accordion .accordion-button:not(.collapsed)::after {
    filter: drop-shadow(0 0 5px rgba(0, 255, 204, 0.5));
}

.custom-accordion .accordion-button:hover {
    color: #00ffcc !important;
    text-shadow: 0 0 10px rgba(0, 255, 204, 0.3);
}

.custom-accordion .accordion-button:not(.collapsed) {
    color: #00ffcc !important;
    background: rgba(0, 255, 204, 0.05) !important;
    text-shadow: 0 0 15px rgba(0, 255, 204, 0.5);
}

.custom-accordion .accordion-body {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    line-height: 1.7;
    padding: 0 20px 25px 50px !important;
    background: transparent;
    position: relative;
}

.custom-accordion .accordion-body::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 25px;
    width: 1px;
    background: linear-gradient(to bottom, rgba(0, 255, 204, 0.3), transparent);
}

/* FAQ Number Styling */
.custom-accordion .accordion-button {
    position: relative;
}

.custom-accordion .accordion-button::before {
    content: attr(data-number);
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #0d6efd;
    font-weight: 700;
    font-size: 0.8rem;
    width: auto;
    height: auto;
    background: none;
}

/* Desktop Polish */
@media (min-width: 992px) {
    .faq-tabs-container {
        overflow: visible;
        margin: 0 0 4rem 0;
        padding: 0;
    }
    
    .faq-tabs {
        width: 100%;
        justify-content: center;
        padding: 0;
    }
    
    .custom-accordion .accordion-button {
        font-size: 1.1rem;
        padding: 25px 25px 25px 60px !important;
    }
    
    .custom-accordion .accordion-body {
        font-size: 0.95rem;
        padding: 0 25px 30px 60px !important;
    }
}

/* FAQ Section Mobile Responsiveness */
@media (max-width: 768px) {
    #faq {
        padding: 40px 0;
    }
    
    .faq-tabs-container {
        margin: 0 -10px 2rem -10px;
        padding-left: 10px;
    }
    
    .faq-tabs {
        gap: 6px;
        padding: 0 10px;
    }
    
    .faq-tabs .nav-link {
        font-size: 0.7rem;
        padding: 8px 16px;
    }
    
    .custom-accordion .accordion-button {
        font-size: 0.9rem;
        padding: 15px 15px 15px 40px !important;
    }
    
    .custom-accordion .accordion-body {
        font-size: 0.85rem;
        padding: 0 15px 20px 40px !important;
    }
}

@media (max-width: 576px) {
    .faq-tabs .nav-link {
        font-size: 0.65rem;
        padding: 6px 12px;
    }
    
    .custom-accordion .accordion-button {
        font-size: 0.85rem;
        padding: 12px 12px 12px 35px !important;
    }
    
    .custom-accordion .accordion-body {
        font-size: 0.8rem;
        padding: 0 12px 15px 35px !important;
    }
}

@media (max-width: 480px) {
    .faq-tabs-container {
        margin: 0 -5px 1.5rem -5px;
        padding-left: 5px;
    }
    
    .faq-tabs {
        gap: 4px;
        padding: 0 5px;
    }
    
    .faq-tabs .nav-link {
        font-size: 0.6rem;
        padding: 5px 10px;
    }
    
    .custom-accordion .accordion-button {
        font-size: 0.8rem;
        padding: 10px 10px 10px 30px !important;
    }
    
    .custom-accordion .accordion-body {
        font-size: 0.75rem;
        padding: 0 10px 12px 30px !important;
    }
}

/* Footer Section Styling */
.footer-section {
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #000000 100%);
    position: relative;
    overflow: hidden;
    padding: clamp(40px, 8vw, 80px) 0 clamp(30px, 6vw, 60px);
}

/* Footer Background Effects */
.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(13, 110, 253, 0.5) 50%, 
        transparent 100%);
}

.footer-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(13, 110, 253, 0.05) 50%, 
        transparent 100%);
    animation: footerScan 8s linear infinite;
}

@keyframes footerScan {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Footer Logo Styling */
.footer-logo {
    margin-bottom: 1.5rem;
    padding: 15px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-logo:hover {
    background: rgba(13, 110, 253, 0.05);
    border-color: rgba(13, 110, 253, 0.2);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.1);
    transform: translateY(-2px);
}

.footer-main-logo {
    height: clamp(45px, 6vw, 60px);
    width: auto;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: brightness(0.8) contrast(1.2);
    opacity: 0.9;
}

.footer-logo:hover .footer-main-logo {
    filter: brightness(1.2) contrast(1.3) drop-shadow(0 0 20px rgba(13, 110, 253, 0.6));
    transform: scale(1.08) translateY(-2px);
    opacity: 1;
}

/* Footer Links Styling */
.footer-links-list {
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 12px;
    position: relative;
}

.footer-links-list a {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    padding: 2px 0;
}

.footer-links-list a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #0d6efd, #00ffcc);
    transition: all 0.3s ease;
    transform: translateY(-50%);
}

.footer-links-list a:hover {
    color: #00ffcc !important;
    padding-left: 5px;
    transform: translateX(3px);
}

.footer-links-list a:hover::before {
    width: 10px;
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icon-btn {
    width: clamp(40px, 5vw, 45px);
    height: clamp(40px, 5vw, 45px);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
    position: relative;
    overflow: hidden;
}

.social-icon-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.3), rgba(0, 255, 204, 0.3));
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.social-icon-btn:hover {
    background: linear-gradient(135deg, #0d6efd, #00ffcc);
    border-color: transparent;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

.social-icon-btn:hover::before {
    width: 100%;
    height: 100%;
}

.social-icon-btn i {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    position: relative;
    z-index: 2;
}

/* Newsletter Form */
.newsletter-form {
    position: relative;
    margin-top: 15px;
}

.newsletter-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(13, 110, 253, 0.3) 50%, 
        transparent 100%);
}

.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    border-radius: 8px !important;
    padding: 12px 120px 12px 15px !important;
    font-size: clamp(0.8rem, 2vw, 0.9rem) !important;
    transition: all 0.3s ease;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
}

.newsletter-form .form-control:focus {
    background: rgba(13, 110, 253, 0.1) !important;
    border-color: #0d6efd !important;
    box-shadow: 0 0 15px rgba(13, 110, 253, 0.2) !important;
    outline: none !important;
}

.newsletter-form button {
    border-radius: 6px !important;
    font-size: clamp(0.75rem, 2vw, 0.85rem) !important;
    padding: 8px 16px !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.4);
}

/* Footer Bottom */
.footer-bottom {
    position: relative;
    padding-top: 30px;
    margin-top: 40px;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.1) 50%, 
        transparent 100%);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: clamp(0.7rem, 1.5vw, 0.8rem) !important;
    margin: 0;
    font-family: 'Roboto Mono', monospace;
    letter-spacing: 1px;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5) !important;
    text-decoration: none !important;
    font-size: clamp(0.7rem, 1.5vw, 0.8rem) !important;
    font-family: 'Roboto Mono', monospace;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.footer-legal a:hover {
    color: #00ffcc !important;
    text-shadow: 0 0 10px rgba(0, 255, 204, 0.5);
}

/* Footer Headings */
.footer-section h6 {
    color: #fff !important;
    font-size: clamp(0.9rem, 2.5vw, 1.1rem) !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px !important;
    position: relative;
}

.footer-section h6::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #0d6efd, #00ffcc);
    border-radius: 1px;
}

/* Footer Description Text */
.footer-section p {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: clamp(0.85rem, 2vw, 0.95rem) !important;
    line-height: 1.7 !important;
    margin-bottom: 20px !important;
}

/* Global Ops Section */
.footer-section .list-unstyled li {
    margin-bottom: 15px;
}

.footer-section .list-unstyled span {
    display: block;
    color: #0d6efd !important;
    font-size: clamp(0.75rem, 2vw, 0.85rem) !important;
    font-weight: 700 !important;
    margin-bottom: 5px !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section .list-unstyled p {
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: clamp(0.8rem, 2vw, 0.9rem) !important;
    margin: 0 !important;
    line-height: 1.5 !important;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .footer-section {
        padding: 40px 0 30px;
    }
    
    .footer-logo {
        margin-bottom: 1rem;
        padding: 12px;
    }
    
    .footer-main-logo {
        height: 45px;
    }
    
    .footer-social {
        gap: 10px;
    }
    
    .social-icon-btn {
        width: 40px;
        height: 40px;
    }
    
    .footer-section h6 {
        font-size: 1rem !important;
        margin-bottom: 15px !important;
    }
    
    .footer-section p {
        font-size: 0.85rem !important;
    }
    
    .footer-links-list a {
        font-size: 0.85rem !important;
    }
    
    .newsletter-form .form-control {
        padding: 10px 100px 10px 12px !important;
        font-size: 0.85rem !important;
    }
    
    .newsletter-form button {
        padding: 6px 12px !important;
        font-size: 0.75rem !important;
    }
    
    .footer-bottom {
        padding-top: 20px;
        margin-top: 30px;
    }
    
    .footer-legal {
        gap: 15px;
        flex-wrap: wrap;
    }
}

@media (max-width: 576px) {
    .footer-section {
        padding: 30px 0 25px;
    }
    
    .footer-logo {
        margin-bottom: 0.8rem;
        padding: 10px;
    }
    
    .footer-main-logo {
        height: 40px;
    }
    
    .social-icon-btn {
        width: 35px;
        height: 35px;
    }
    
    .social-icon-btn i {
        font-size: 0.9rem;
    }
    
    .footer-section h6 {
        font-size: 0.95rem !important;
        margin-bottom: 12px !important;
    }
    
    .footer-section p {
        font-size: 0.8rem !important;
        margin-bottom: 15px !important;
    }
    
    .footer-links-list li {
        margin-bottom: 8px;
    }
    
    .footer-links-list a {
        font-size: 0.8rem !important;
    }
    
    .newsletter-form .form-control {
        padding: 8px 90px 8px 10px !important;
        font-size: 0.8rem !important;
    }
    
    .newsletter-form button {
        padding: 5px 10px !important;
        font-size: 0.7rem !important;
    }
    
    .footer-bottom {
        padding-top: 15px;
        margin-top: 20px;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
        gap: 12px;
    }
    
    .footer-legal a {
        font-size: 0.7rem !important;
    }
}

.bg-primary-glow {
    background: #0d6efd;
    box-shadow: 0 0 15px rgba(13, 110, 253, 0.6);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Modal Glassmorphism */
.modal-content {
    backdrop-filter: blur(15px);
    background-color: rgba(0, 0, 0, 0.9) !important;
}



#planBadgeDisplay {
    letter-spacing: 2px;
    font-family: 'Roboto Mono', monospace;
    border-style: dashed !important;
    animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
    0% { opacity: 0.6; }
    50% { opacity: 1; border-color: #0d6efd; box-shadow: 0 0 10px rgba(13, 110, 253, 0.2); }
    100% { opacity: 0.6; }
}



/* HUD Style Badge */
.protocol-badge {
    padding: 15px;
    background: rgba(13, 110, 253, 0.1);
    border: 1px dashed #0d6efd;
    color: #0d6efd;
    text-align: center;
    font-family: 'Roboto Mono', monospace;
    font-weight: bold;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Contact Form 7 Specific Styling */
.wpcf7-form .wpcf7-form-control {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    border-radius: 0 !important;
}

.wpcf7-form .wpcf7-form-control:focus {
    background: rgba(13, 110, 253, 0.05) !important;
    border-color: #0d6efd !important;
    box-shadow: 0 0 15px rgba(13, 110, 253, 0.2) !important;
    color: #ffffff !important;
}

.wpcf7-form .wpcf7-form-control::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
}

.wpcf7-form select.wpcf7-form-control {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.7rem center;
    background-size: 1.2em;
    padding-right: 2.5rem !important;
}

.wpcf7-form select.wpcf7-form-control option {
    background: #1a1a1a !important;
    color: #ffffff !important;
}

.wpcf7-form .wpcf7-submit {
    background: linear-gradient(135deg, #0d6efd, #0056b3) !important;
    border: none !important;
    color: #ffffff !important;
    padding: 12px 30px !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
}

.wpcf7-form .wpcf7-submit:hover {
    background: linear-gradient(135deg, #0056b3, #004085) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3) !important;
}

/* Form validation messages */
.wpcf7-not-valid-tip {
    color: #ff6b6b !important;
    background: rgba(255, 107, 107, 0.1) !important;
    border: 1px solid rgba(255, 107, 107, 0.3) !important;
    padding: 5px 10px !important;
    border-radius: 4px !important;
    font-size: 0.85rem !important;
}

.wpcf7-response-output {
    background: rgba(40, 167, 69, 0.1) !important;
    border: 1px solid rgba(40, 167, 69, 0.3) !important;
    color: #28a745 !important;
    padding: 15px !important;
    border-radius: 8px !important;
    margin: 20px 0 !important;
}

.wpcf7-mail-sent-ng .wpcf7-response-output {
    background: rgba(220, 53, 69, 0.1) !important;
    border: 1px solid rgba(220, 53, 69, 0.3) !important;
    color: #dc3545 !important;
}

/* Tactical Input Styling */
.tactical-input {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 0 !important;
    font-size: 0.85rem;
    color: #ffffff !important;
}

/* Form Select Styling */
select.tactical-input, 
select.form-control {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 0 !important;
    color: #ffffff !important;
    font-size: 0.85rem;
}

select.tactical-input option,
select.form-control option {
    background: #1a1a1a !important;
    color: #ffffff !important;
    padding: 8px 12px !important;
}

select.tactical-input:focus,
select.form-control:focus {
    background: rgba(13, 110, 253, 0.05) !important;
    border-color: #0d6efd !important;
    box-shadow: 0 0 15px rgba(13, 110, 253, 0.2) !important;
    color: #ffffff !important;
}

/* Select dropdown arrow styling */
select.tactical-input,
select.form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.7rem center;
    background-size: 1.2em;
    padding-right: 2.5rem !important;
}

.tactical-input::placeholder { color: #555; }

.tactical-input:focus {
    background: rgba(13, 110, 253, 0.05) !important;
    border-color: #0d6efd !important;
    box-shadow: 0 0 15px rgba(13, 110, 253, 0.2) !important;
}


/* Contact Section with Particle Animation Background */
#contact {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #050505 100%);
}

#contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(13, 110, 253, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 255, 204, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 107, 107, 0.1) 0%, transparent 50%);
    animation: particleFloat 20s ease-in-out infinite;
    z-index: 0;
}

@keyframes particleFloat {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(-20px, -30px); }
    50% { transform: translate(20px, -20px); }
    75% { transform: translate(-10px, 20px); }
}

#contact::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 25% 25%, rgba(13, 110, 253, 0.3), transparent),
        radial-gradient(2px 2px at 75% 75%, rgba(0, 255, 204, 0.3), transparent);
    background-size: 50px 50px;
    animation: particleMove 15s linear infinite;
    z-index: 0;
}

@keyframes particleMove {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 50px 50px, -50px -50px; }
}

#contact .container {
    position: relative;
    z-index: 1;
}

/* Contact Section Styling */
.contact-info-card,
.contact-form-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: clamp(25px, 5vw, 40px);
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.contact-info-card::before,
.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(13, 110, 253, 0.1), transparent);
    transition: left 0.8s ease;
}

.contact-info-card:hover::before,
.contact-form-card:hover::before {
    left: 100%;
}

.contact-info-card:hover,
.contact-form-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(13, 110, 253, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(13, 110, 253, 0.15);
}

.contact-header h3 {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-header h3 {
    color: #00ffcc;
    text-shadow: 0 0 20px rgba(0, 255, 204, 0.5);
}

.divider-primary {
    height: 2px;
    background: linear-gradient(90deg, #0d6efd, transparent);
    width: 60px;
    position: relative;
    z-index: 2;
}

.contact-info-card:hover .divider-primary {
    background: linear-gradient(90deg, #00ffcc, transparent);
    box-shadow: 0 0 15px rgba(0, 255, 204, 0.3);
}

.info-item {
    position: relative;
    z-index: 2;
}

.info-item h5 {
    font-size: clamp(0.75rem, 2vw, 0.85rem);
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
}

.contact-info-card:hover .info-item h5 i {
    color: #00ffcc;
    text-shadow: 0 0 10px rgba(0, 255, 204, 0.5);
    transform: scale(1.1);
}

.info-item p {
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    line-height: 1.6;
    transition: all 0.3s ease;
}

.contact-info-card:hover .info-item p {
    color: rgba(255, 255, 255, 0.95);
}

/* Tactical Form Styling */
.tactical-form .form-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.tactical-form .form-control,
.tactical-form .form-select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 4px;
    padding: 12px 15px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.tactical-form .form-control:focus,
.tactical-form .form-select:focus {
    background: rgba(13, 110, 253, 0.1);
    border-color: #0d6efd;
    box-shadow: 0 0 15px rgba(13, 110, 253, 0.2);
    color: #fff;
}

.tactical-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* Global Form Select Styling */
.form-select {
    background-color: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    border-radius: 4px !important;
}

.form-select option {
    background-color: #1a1a1a !important;
    color: #fff !important;
    padding: 10px;
}

.tactical-form .form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 4px;
    padding: 12px 15px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.tactical-form .form-select option {
    background-color: #1a1a1a;
    color: #fff;
    padding: 10px;
}

/* Form Success Alerts */
.alert {
    border-radius: 0;
    border: none;
    padding: 15px 20px;
    font-weight: 500;
    animation: slideInUp 0.3s ease;
}

.alert-success {
    background: rgba(25, 135, 84, 0.1);
    border: 1px solid rgba(25, 135, 84, 0.3);
    color: #198754;
    backdrop-filter: blur(10px);
}

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

/* Newsletter Form Button Enhancement */
.newsletter-form button {
    transition: all 0.3s ease;
}

.newsletter-form button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Mobile Responsiveness for Contact Section */
@media (max-width: 768px) {
    .contact-info-card,
    .contact-form-card {
        padding: clamp(20px, 4vw, 25px);
        margin-bottom: 20px;
    }
    
    .contact-header h3 {
        font-size: clamp(1rem, 3vw, 1.2rem);
    }
}

@media (max-width: 576px) {
    .contact-info-card,
    .contact-form-card {
        padding: 20px;
        margin-bottom: 15px;
    }
    
    .info-item {
        margin-bottom: 20px;
    }
    
    .info-item h5 {
        font-size: 0.8rem;
    }
    
    .info-item p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .contact-info-card,
    .contact-form-card {
        padding: 15px;
    }
    
    .contact-header h3 {
        font-size: 1rem;
    }
}

/* Modal Enhanced Styling */
.modal-content {
    background: linear-gradient(135deg, #0a0a0a 0%, #050505 50%, #0a0a0a 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 16px !important;
    backdrop-filter: blur(20px) !important;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.8),
        0 0 30px rgba(13, 110, 253, 0.2) !important;
    position: relative;
    overflow: hidden;
}

.modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(13, 110, 253, 0.5), transparent);
}

.modal-header {
    background: rgba(255, 255, 255, 0.02) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding: 25px 30px !important;
    position: relative;
}

.modal-title {
    font-size: clamp(1.2rem, 3vw, 1.5rem) !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff !important;
    margin: 0;
    position: relative;
}

.text-primary-glow {
    color: #0d6efd !important;
    text-shadow: 0 0 20px rgba(13, 110, 253, 0.6);
    font-weight: 900;
}

.btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.btn-close:hover {
    opacity: 1;
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.modal-body {
    padding: 30px !important;
    position: relative;
}

/* Protocol Badge */
.selected-plan-banner {
    text-align: center;
    margin-bottom: 30px;
}

.protocol-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.2), rgba(0, 255, 204, 0.2));
    border: 2px solid rgba(13, 110, 253, 0.3);
    border-radius: 50px;
    padding: 12px 30px;
    color: #00ffcc;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.protocol-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 204, 0.3), transparent);
    animation: protocolBadgeScan 3s ease-in-out infinite;
}

@keyframes protocolBadgeScan {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

/* Form Styling */
.form-label {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    margin-bottom: 8px !important;
}

.tactical-input {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    border-radius: 8px !important;
    padding: 12px 16px !important;
    font-size: 0.9rem !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(10px);
}

.tactical-input::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
    font-style: italic;
}

.tactical-input:focus {
    background: rgba(13, 110, 253, 0.1) !important;
    border-color: #0d6efd !important;
    box-shadow: 
        0 0 20px rgba(13, 110, 253, 0.3),
        inset 0 0 10px rgba(13, 110, 253, 0.1) !important;
    outline: none !important;
    color: #fff !important;
}

.tactical-input:hover {
    border-color: rgba(13, 110, 253, 0.3) !important;
    background: rgba(255, 255, 255, 0.08) !important;
}

/* Select Dropdown Styling */
.form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2300ffcc'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 12px center !important;
    background-size: 16px !important;
}

.form-select:focus {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230d6efd'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

/* Textarea Styling */
textarea.tactical-input {
    resize: vertical;
    min-height: 100px;
}

/* Modal Footer */
.modal-footer {
    background: rgba(255, 255, 255, 0.02) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding: 20px 30px !important;
}

.modal-footer .btn {
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    padding: 10px 25px !important;
    border-radius: 6px !important;
    transition: all 0.3s ease !important;
}

.modal-footer .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.3) !important;
    color: rgba(255, 255, 255, 0.8) !important;
    background: transparent !important;
}

.modal-footer .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    color: #fff !important;
    transform: translateY(-1px);
}

.modal-footer .btn-primary-premium {
    background: linear-gradient(135deg, #0d6efd, #0a58ca) !important;
    border: none !important;
    color: #fff !important;
}

.modal-footer .btn-primary-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(13, 110, 253, 0.4);
}

/* Form Row Spacing */
#quoteForm .row > div {
    margin-bottom: 20px;
}

/* Required Field Indicator */
.form-label span {
    color: #ff6b6b;
    font-weight: 700;
}

/* Form Validation States */
.tactical-input:valid {
    border-color: rgba(0, 255, 204, 0.3) !important;
    box-shadow: 0 0 10px rgba(0, 255, 204, 0.1) !important;
}

.tactical-input:invalid {
    border-color: rgba(255, 107, 107, 0.3) !important;
    box-shadow: 0 0 10px rgba(255, 107, 107, 0.1) !important;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .modal-content {
        margin: 10px;
        border-radius: 12px;
    }
    
    .modal-header {
        padding: 20px !important;
    }
    
    .modal-title {
        font-size: 1.1rem !important;
    }
    
    .modal-body {
        padding: 20px !important;
    }
    
    .protocol-badge {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    
    .tactical-input {
        padding: 10px 14px !important;
        font-size: 0.85rem !important;
    }
    
    .modal-footer {
        padding: 15px 20px !important;
    }
    
    .modal-footer .btn {
        padding: 8px 20px !important;
        font-size: 0.85rem !important;
    }
}

@media (max-width: 576px) {
    .modal-header {
        padding: 15px !important;
    }
    
    .modal-body {
        padding: 15px !important;
    }
    
    #quoteForm .row > div {
        margin-bottom: 15px;
    }
    
    .protocol-badge {
        padding: 8px 16px;
        font-size: 0.75rem;
    }
    
    .tactical-input {
        padding: 8px 12px !important;
        font-size: 0.8rem !important;
    }
    
    .modal-footer {
        padding: 12px 15px !important;
        flex-direction: column;
        gap: 10px;
    }
    
    .modal-footer .btn {
        width: 100%;
        margin: 0;
    }
}

/* POPUP BACKDROP */
#cf7-popup {
    position: fixed !important;
    inset: 0 !important; /* top:0, left:0, right:0, bottom:0 */
    width: 100vw !important;
    height: 100vh !important;
    display: none !important;
    background: rgba(0, 0, 0, 0.7) !important;
    z-index: 999999999 !important; /* MAX PRIORITY */
    align-items: center !important;
    justify-content: center !important;
}

/* POPUP BOX */
.cf7-popup-box {
    width: 90% !important;
    max-width: 380px !important;
    background: #ffffff !important;
    border-radius: 12px !important;
    padding: 25px !important;
    text-align: center !important;
    color: #000 !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3) !important;
    animation: cf7zoomIn .25s ease-out !important;
}

/* ICON */
.cf7-popup-icon {
    font-size: 50px !important;
    margin-bottom: 15px !important;
}

/* TEXT FIX */
#cf7-popup h3,
#cf7-popup p {
    color: #000 !important;
}

/* CLOSE BUTTON */
#cf7-popup-close {
    margin-top: 15px !important;
    background: #007bff !important;
    border: none !important;
    padding: 10px 20px !important;
    font-size: 16px !important;
    color: #fff !important;
    border-radius: 8px !important;
    cursor: pointer !important;
}

/* ANIMATION */
@keyframes cf7zoomIn {
    from { opacity: 0; transform: scale(0.7); }
    to   { opacity: 1; transform: scale(1); }
}
