/* ============================================================
   Tech Biz Security - Master Stylesheet
   Futuristic Cyber-SaaS Dark Theme Design
   ============================================================ */

:root {
    /* Color Palette */
    --bg-darker: #050811;
    --bg-dark: #0a0f1d;
    --bg-glass: rgba(10, 15, 29, 0.65);
    --border-glass: rgba(0, 242, 254, 0.12);
    --border-glass-hover: rgba(0, 242, 254, 0.3);
    
    --primary: #00f2fe;        /* Neon Cyan */
    --primary-glow: rgba(0, 242, 254, 0.35);
    --secondary: #7f00ff;      /* Electric Violet */
    --secondary-glow: rgba(127, 0, 255, 0.35);
    
    --text-primary: #f8fafc;
    --text-muted: #94a3b8;
    --text-dark: #475569;
    
    --green-alert: #10b981;    /* System Ok */
    --red-alert: #ef4444;      /* Threat Detected */
    --orange-alert: #f97316;   /* Breach Investigation */
    
    /* Layout Variables */
    --container-width: 1280px;
    --header-height: 80px;
    
    /* Transitions */
    --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    --font-sans: 'Inter', sans-serif;
    --font-heading: 'Orbitron', sans-serif;
}

/* Base Reset & Core Elements */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-darker);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Particle Canvas */
#matrix-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    opacity: 0.8;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    letter-spacing: 1px;
    font-weight: 700;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Structural Components */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-tag {
    font-family: var(--font-heading);
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: inline-block;
    text-shadow: 0 0 10px var(--primary-glow);
}

.section-title {
    font-size: 38px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 30%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-desc {
    color: var(--text-muted);
    font-size: 16px;
}

/* Buttons System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #000000;
    box-shadow: 0 4px 20px rgba(0, 242, 254, 0.25);
    font-weight: 900;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 242, 254, 0.45);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(0, 242, 254, 0.08);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.accent {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary-glow);
}

/* Global Glassmorphism Card styling */
.glass-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 32px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    border-color: var(--border-glass-hover);
    box-shadow: 0 8px 30px rgba(0, 242, 254, 0.08);
    transform: translateY(-4px);
}

/* Global Header Style */
.header {
    height: var(--header-height);
    background: rgba(5, 8, 17, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-glass);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 900;
    color: #ffffff;
}

.logo-icon {
    font-size: 24px;
    color: var(--primary);
    filter: drop-shadow(0 0 8px var(--primary-glow));
    animation: pulse 2.5s infinite alternate;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    padding: 8px 0;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    box-shadow: 0 0 8px var(--primary);
    transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* Header Dropdowns */
.dropdown {
    position: relative;
}

/* Invisible hover bridge to prevent premature closing of dropdown */
.dropdown::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 15px;
    z-index: 1050;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(0);
    margin-top: 5px;
    width: 580px;
    background: var(--bg-dark);
    border: 1px solid var(--border-glass-hover);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition-smooth);
    z-index: 1100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.dropdown-column h3 {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 6px;
}

.dropdown-column a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 13px;
    color: var(--text-primary);
    transition: var(--transition-smooth);
}

.dropdown-column a i {
    font-size: 14px;
    color: var(--primary);
    width: 16px;
}

.dropdown-column a:hover {
    background: rgba(0, 242, 254, 0.05);
    color: var(--primary);
    transform: translateX(4px);
}

/* SOC Indicator */
.soc-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 50px;
    padding: 6px 14px;
    font-size: 10px;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    font-weight: 700;
    flex-shrink: 0;
}

@media (max-width: 1150px) {
    .soc-indicator {
        display: none !important;
    }
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background: var(--green-alert);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--green-alert);
    animation: dotPulse 1.5s infinite alternate;
}

.soc-text .green {
    color: var(--green-alert);
    text-shadow: 0 0 8px rgba(16, 185, 129, 0.3);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Slim contact button in header for visually balanced layout */
.header-actions .btn {
    padding: 8px 18px;
    font-size: 12px;
    border-radius: 6px;
    flex-shrink: 0;
}

.mobile-toggle {
    display: none;
    font-size: 20px;
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
}

/* Responsive navigation behaviors */
@media (max-width: 991px) {
    .mobile-toggle {
        display: block;
    }
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: var(--bg-darker);
        border-top: 1px solid var(--border-glass);
        z-index: 999;
        flex-direction: column;
        padding: 40px 24px;
        transition: var(--transition-smooth);
        overflow-y: auto;
    }
    .nav-menu.open {
        left: 0;
    }
    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: 24px;
    }
    .nav-link {
        font-size: 16px;
        width: 100%;
        display: block;
    }
    .dropdown {
        width: 100%;
    }
    .dropdown-menu {
        position: static;
        width: 100%;
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        box-shadow: none;
        background: rgba(255,255,255,0.02);
        margin-top: 10px;
        display: none;
        padding: 12px;
    }
    .dropdown.open .dropdown-menu {
        display: block;
    }
    .dropdown-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .d-none-md {
        display: none !important;
    }
}

@media (max-width: 575px) {
    .d-none-sm {
        display: none !important;
    }
}

/* Futuristic SOC terminal live simulation widget */
.terminal-widget {
    background: #02040a;
    border: 1px solid var(--border-glass-hover);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7);
}

.terminal-header {
    background: #090e18;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.terminal-title {
    font-family: var(--font-heading);
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.terminal-dots {
    display: flex;
    gap: 6px;
}

.terminal-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.terminal-dot.red { background: var(--red-alert); }
.terminal-dot.yellow { background: var(--orange-alert); }
.terminal-dot.green { background: var(--green-alert); }

.terminal-body {
    padding: 16px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 12px;
    height: 250px;
    overflow-y: auto;
    color: #38bdf8;
    background: radial-gradient(circle at top right, rgba(0, 242, 254, 0.03), transparent);
}

.terminal-line {
    margin-bottom: 8px;
    white-space: pre-wrap;
    animation: typing 0.5s ease-out;
}

.terminal-line.success { color: var(--green-alert); }
.terminal-line.danger { color: var(--red-alert); font-weight: bold; }
.terminal-line.warning { color: var(--orange-alert); }

/* Global Footer Styles */
.footer {
    background: #02050b;
    border-top: 1px solid var(--border-glass);
    padding: 80px 0 0 0;
    position: relative;
    z-index: 5;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 60px;
}

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

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

.footer-logo {
    margin-bottom: 20px;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 24px;
    max-width: 320px;
}

.newsletter-box h4 {
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.input-field {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: 6px;
    padding: 12px 16px;
    color: #ffffff;
    font-family: var(--font-sans);
    font-size: 14px;
    transition: var(--transition-smooth);
}

.input-field:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.15);
}

.btn-newsletter {
    padding: 12px 18px;
}

.newsletter-msg {
    margin-top: 8px;
    font-size: 12px;
}

.footer-links h4, .footer-contact h4 {
    font-size: 13px;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

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

.footer-links ul li a {
    color: var(--text-muted);
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links ul li a:hover {
    color: var(--primary);
    transform: translateX(4px);
}

.footer-contact .contact-details p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 14px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact .contact-details p strong {
    color: #ffffff;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.social-icons a:hover {
    background: var(--primary);
    color: #000000;
    box-shadow: 0 0 15px var(--primary-glow);
    transform: translateY(-2px);
}

/* Certifications Footer segment */
.certifications-area {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.certifications-area h4 {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.cert-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.cert-badge {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: 6px;
    display: flex;
    overflow: hidden;
    font-size: 10px;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    font-weight: 700;
}

.cert-code {
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 12px;
    color: #ffffff;
}

.cert-status {
    background: rgba(0, 242, 254, 0.08);
    color: var(--primary);
    padding: 6px 12px;
    border-left: 1px solid var(--border-glass);
}

.footer-bottom {
    background: #010307;
    padding: 24px 0;
}

.footer-bottom-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-dark);
}

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

.legal-links a {
    color: var(--text-dark);
}

.legal-links a:hover {
    color: var(--text-muted);
}

@media (max-width: 767px) {
    .footer-bottom-container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* Badges custom sizing */
.badge {
    font-size: 9px;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
}

.badge-pulse {
    background: var(--primary);
    color: #000000;
    animation: badgeAlert 1.5s infinite alternate;
}

/* Keyframes core animations */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.1);
        opacity: 1;
        filter: drop-shadow(0 0 15px rgba(0, 242, 254, 0.7));
    }
}

@keyframes dotPulse {
    0% {
        box-shadow: 0 0 2px var(--green-alert);
        opacity: 0.5;
    }
    100% {
        box-shadow: 0 0 12px var(--green-alert);
        opacity: 1;
    }
}

@keyframes badgeAlert {
    0% {
        box-shadow: 0 0 2px var(--primary-glow);
    }
    100% {
        box-shadow: 0 0 8px var(--primary);
    }
}

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

/* ============================================================
   Pages specific styles and grids
   ============================================================ */

/* Home Hero Section */
.hero {
    position: relative;
    padding: 160px 0 100px 0;
    min-height: 95vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 10% 20%, rgba(127, 0, 255, 0.05) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(0, 242, 254, 0.05) 0%, transparent 40%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
}

@media (max-width: 991px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.hero-title {
    font-size: 54px;
    line-height: 1.1;
    margin-bottom: 24px;
    text-transform: uppercase;
    color: #ffffff;
    position: relative;
    z-index: 10;
}

.hero-title span {
    display: block;
    background: linear-gradient(135deg, #ffffff 40%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(0, 242, 254, 0.1);
}

.hero-title span.accent {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 40px;
    }
}

.hero-desc {
    color: var(--text-muted);
    font-size: 18px;
    margin-bottom: 36px;
    max-width: 600px;
}

@media (max-width: 991px) {
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

@media (max-width: 991px) {
    .hero-actions {
        justify-content: center;
    }
}

.trust-badges {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 24px;
}

.trust-title {
    font-size: 10px;
    font-family: var(--font-heading);
    letter-spacing: 2px;
    color: var(--text-dark);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.trust-logos {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    opacity: 0.6;
}

@media (max-width: 991px) {
    .trust-logos {
        justify-content: center;
    }
}

.trust-logos span {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* 3D Cyber Globe Display */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.globe-container {
    width: 450px;
    height: 450px;
    position: relative;
}

@media (max-width: 575px) {
    .globe-container {
        width: 300px;
        height: 300px;
    }
}

.cyber-globe {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.08) 0%, transparent 70%);
    box-shadow: 0 0 60px rgba(0, 242, 254, 0.05);
    animation: rotate 60s linear infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cyber-rings {
    position: absolute;
    border: 1px dashed rgba(0, 242, 254, 0.15);
    border-radius: 50%;
}

.cyber-rings.ring-1 { width: 90%; height: 90%; transform: rotateX(60deg) rotateY(20deg); }
.cyber-rings.ring-2 { width: 80%; height: 80%; transform: rotateX(30deg) rotateY(-40deg); }
.cyber-rings.ring-3 { width: 70%; height: 70%; transform: rotateX(75deg) rotateY(0deg); }

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

/* Counters Stats block */
.stats-bar {
    background: rgba(10, 15, 29, 0.8);
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
    padding: 40px 0;
}

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

@media (max-width: 767px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

.stat-item h3 {
    font-size: 36px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 6px;
    text-shadow: 0 0 15px rgba(0, 242, 254, 0.3);
}

.stat-item p {
    color: var(--text-muted);
    font-size: 12px;
    font-family: var(--font-heading);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Service Card grid template */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

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

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

.service-card {
    position: relative;
    overflow: hidden;
}

.service-icon {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 24px;
    filter: drop-shadow(0 0 8px var(--primary-glow));
    display: inline-block;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 14px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 24px;
}

.service-learn-more {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-learn-more i {
    transition: var(--transition-smooth);
}

.service-card:hover .service-learn-more i {
    transform: translateX(4px);
}

/* FAQs accordion */
.faqs-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 15px;
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.35s ease-in-out;
    color: var(--text-muted);
    font-size: 14px;
}

.faq-item.active .faq-question {
    color: var(--primary);
    border-bottom: 1px solid rgba(255,255,255,0.02);
}

.faq-item.active .faq-answer {
    padding: 20px 24px;
    max-height: 300px;
}

/* Contact page forms */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
}

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

.contact-info-panel h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 40px 0;
}

.contact-method-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: rgba(0, 242, 254, 0.05);
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 16px;
}

.contact-form-card h3 {
    margin-bottom: 24px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 11px;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    color: var(--text-muted);
}

.textarea-field {
    min-height: 150px;
    resize: vertical;
}

.form-alert {
    margin-top: 16px;
    padding: 12px;
    border-radius: 6px;
    font-size: 13px;
    display: none;
}

.form-alert.success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--green-alert);
    color: var(--green-alert);
}

.form-alert.danger {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid var(--red-alert);
    color: var(--red-alert);
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 991px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

.pricing-card {
    text-align: center;
    position: relative;
}

.pricing-card.popular {
    border-color: var(--primary);
    box-shadow: 0 8px 30px rgba(0,242,254,0.15);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #000000;
    font-size: 9px;
    font-family: var(--font-heading);
    font-weight: 900;
    padding: 4px 12px;
    border-radius: 50px;
    letter-spacing: 1px;
}

.pricing-header h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.price {
    font-size: 44px;
    font-family: var(--font-heading);
    font-weight: 900;
    color: var(--primary);
    margin: 20px 0;
}

.price span {
    font-size: 14px;
    color: var(--text-muted);
    font-family: var(--font-sans);
    font-weight: 400;
}

.pricing-features {
    margin: 32px 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 24px;
}

.pricing-features li {
    font-size: 14px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features li i {
    color: var(--green-alert);
}

/* Page Banner style */
.page-banner {
    padding: 160px 0 80px 0;
    background: linear-gradient(180deg, #050811 0%, #0a0f1d 100%);
    border-bottom: 1px solid var(--border-glass);
    text-align: center;
}

.page-title {
    font-size: 42px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 12px;
    color: var(--text-muted);
    font-family: var(--font-heading);
}

.breadcrumbs a:hover {
    color: var(--primary);
}

/* Blog list, cards */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

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

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

.blog-card {
    overflow: hidden;
    padding: 0;
}

.blog-image {
    height: 200px;
    background: #111827;
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0,0,0,0.7);
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
}

.blog-content {
    padding: 24px;
}

.blog-date {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.blog-content h3 {
    font-size: 18px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-content p {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 20px;
}

/* File selector styled */
.file-upload-wrapper {
    position: relative;
    border: 1px dashed var(--border-glass-hover);
    border-radius: 6px;
    padding: 16px;
    text-align: center;
    cursor: pointer;
    background: rgba(255,255,255,0.01);
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-upload-label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: var(--text-muted);
    font-size: 12px;
}

.file-upload-label i {
    font-size: 24px;
    color: var(--primary);
}

/* ============================================================
   Secure Admin Panel Dashboard Specific Styles
   ============================================================ */
.admin-body {
    background-color: #03060d;
}

.admin-layout {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 260px;
    background: #060913;
    border-right: 1px solid var(--border-glass);
    padding: 30px 20px;
    flex-shrink: 0;
}

.admin-logo {
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 30px;
}

.admin-menu li {
    margin-bottom: 8px;
}

.admin-menu-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    border-radius: 6px;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
}

.admin-menu-link:hover, .admin-menu-link.active {
    background: rgba(0, 242, 254, 0.06);
    color: var(--primary);
}

.admin-content {
    flex-grow: 1;
    padding: 40px;
    overflow-y: auto;
}

.admin-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 20px;
    margin-bottom: 40px;
}

.admin-user {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
}

.admin-user i {
    color: var(--primary);
}

.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

@media (max-width: 991px) {
    .admin-stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.admin-stat-card {
    background: #080d19;
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-stat-info h4 {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.admin-stat-val {
    font-size: 28px;
    font-weight: 900;
    color: #ffffff;
    margin-top: 6px;
    font-family: var(--font-heading);
}

.admin-stat-icon {
    font-size: 28px;
    color: var(--primary);
    opacity: 0.3;
}

/* Admin Data Tables */
.admin-table-card {
    background: #080d19;
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 40px;
}

.table-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    text-align: left;
}

.admin-table th {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
    color: var(--text-muted);
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.admin-table td {
    padding: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    color: #cbd5e1;
}

.admin-table tr:hover td {
    background: rgba(255,255,255,0.01);
}

/* Badge status */
.status-pill {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    display: inline-block;
}

.status-pill.new { background: rgba(0, 242, 254, 0.1); color: var(--primary); border: 1px solid rgba(0, 242, 254, 0.2); }
.status-pill.contacted { background: rgba(127, 0, 255, 0.1); color: #a855f7; border: 1px solid rgba(127, 0, 255, 0.2); }
.status-pill.won { background: rgba(16, 185, 129, 0.1); color: var(--green-alert); border: 1px solid rgba(16, 185, 129, 0.2); }
.status-pill.lost { background: rgba(239, 68, 68, 0.1); color: var(--red-alert); border: 1px solid rgba(239, 68, 68, 0.2); }

.action-btn-group {
    display: flex;
    gap: 8px;
}

.act-btn {
    width: 28px;
    height: 28px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    cursor: pointer;
    border: none;
    background: rgba(255,255,255,0.03);
    color: var(--text-muted);
}

.act-btn.edit:hover { background: rgba(0, 242, 254, 0.1); color: var(--primary); }
.act-btn.delete:hover { background: rgba(239, 68, 68, 0.1); color: var(--red-alert); }
.act-btn.view:hover { background: rgba(16, 185, 129, 0.1); color: var(--green-alert); }

/* Form inputs for Admin CRUD Panels */
.admin-input-card {
    background: #080d19;
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    padding: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.admin-form-group {
    margin-bottom: 24px;
}

.admin-form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.admin-form-control {
    width: 100%;
    background: #03060c;
    border: 1px solid var(--border-glass);
    border-radius: 6px;
    padding: 12px 16px;
    color: #ffffff;
    font-family: var(--font-sans);
    font-size: 14px;
}

.admin-form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(0,242,254,0.1);
}
