/* --- GLOBAL RESET & TYPOGRAPHY --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #050505; /* CHANGED from transparent to dark black */
    color: var(--text-white);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- INITIALIZATION LOADER --- */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 9999; /* Highest priority */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.loader-logo {
    width: 140px; /* Adjust size */
    margin-bottom: 30px;
    animation: pulse 2s infinite ease-in-out;
}

.loading-bar {
    width: 200px;
    height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    overflow: hidden;
}

.loading-progress {
    width: 0%;
    height: 100%;
    background: var(--primary-orange);
    animation: loadProgress 2s ease-in-out forwards;
}

.loader-text {
    color: var(--primary-orange);
    font-family: 'Courier New', Courier, monospace; /* Tech/Code look */
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    opacity: 0.8;
    animation: textPulse 1.5s infinite ease-in-out;
}

@keyframes textPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes loadProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

/* --- NAVBAR STYLES --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(15px); /* Glass Effect */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
    display: flex;
    align-items: center;
}

.nav-container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand img {
    height: 50px;
    width: auto;
    display: block;
}

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

.nav-links a {
    color: var(--text-gray);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-orange);
}

.nav-btn {
    background: var(--primary-orange);
    color: white !important;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700 !important;
    box-shadow: 0 4px 15px var(--primary-orange-glow);
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--primary-orange-glow);
}

/* Dropdown styling */
.dropdown { position: relative; cursor: pointer; }
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--card-bg);
    border: var(--glass-border);
    min-width: 200px;
    border-radius: 8px;
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.dropdown:hover .dropdown-content { display: block; }
.dropdown-content a {
    display: block;
    padding: 10px 20px;
}
.dropdown-content a:hover { background: rgba(255,255,255,0.05); }

/* --- HERO SECTION --- */
.hero {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: transparent;
    text-align: center;
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
    padding: 0 20px;
}

.pill {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary-orange);
    display: inline-block;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.highlight {
    color: var(--primary-orange);
    text-shadow: 0 0 30px var(--primary-orange-glow);
}

.cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* --- BUTTONS --- */
.btn {
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: var(--primary-orange);
    border: none;
    color: white;
}

.btn-primary:hover {
    box-shadow: 0 0 25px var(--primary-orange-glow);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-outline:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.05);
}

/* --- SECTIONS GENERAL --- */
.section-padding {
    padding: 100px 0;
}

.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 50px;
    border-left: 4px solid var(--primary-orange);
    padding-left: 20px;
}

/* --- NEW 12-COLUMN BENTO GRID --- */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr); 
    grid-template-rows: repeat(2, minmax(280px, auto));
    gap: 24px;
    width: 100%;
}

.card {
    background: linear-gradient(145deg, #141414, #0f0f0f);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Orange Top Glow Line */
.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-orange), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(245, 130, 32, 0.15);
    border-color: rgba(245, 130, 32, 0.3);
}

.card:hover::before { opacity: 1; }

/* Card Typography & Numbering */
.card-number {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255,255,255,0.03);
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
    transition: color 0.3s ease;
}

.card:hover .card-number { color: rgba(245, 130, 32, 0.1); }

.card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-weight: 600;
    z-index: 2;
}

.card p {
    color: #b0b0b0;
    font-size: 1rem;
    line-height: 1.6;
    z-index: 2;
}

.arrow-link {
    margin-top: auto;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.card:hover .arrow-link {
    background: var(--primary-orange);
    transform: rotate(-45deg); /* Arrow points up-right */
}

/* Grid Spanning */
.card-large { grid-column: span 8; }
.card-medium { grid-column: span 4; }
.card-wide { grid-column: span 12; }

/* --- STATS SECTION --- */
.stats {
    padding: 60px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    background: rgba(255,255,255,0.02);
}

.stats-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: var(--container-width);
    margin: 0 auto;
    text-align: center;
}

.stat-item .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-orange);
}

.stat-item .label {
    color: var(--text-gray);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- LOCATIONS --- */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.location-card {
    background: #111;
    padding: 30px;
    border-left: 3px solid var(--primary-orange);
    border-radius: 0 12px 12px 0;
}

.location-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: white;
}

.location-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* --- ANIMATION UTILS --- */
.hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}
.show {
    opacity: 1;
    transform: translateY(0);
}

/* --- RESPONSIVE FIXES --- */
@media (max-width: 900px) {
    .hero h1 { font-size: 2.5rem; }
    
    /* Collapse Bento Grid to single column */
    .bento-grid {
        display: flex;
        flex-direction: column;
    }
    
    .card { min-height: auto; }
    .card-large, .card-medium, .card-wide { grid-column: span 1; }

    .nav-links { display: none; } /* Hide menu on mobile */
    .hamburger { display: block; } /* Show hamburger (needs JS logic later) */

    .stats-container {
        flex-direction: column;
        gap: 30px;
    }
}

/* --- MOBILE MENU STYLES (Replace your existing mobile media query) --- */
@media (max-width: 900px) {
    /* 1. Hamburger Icon Placement */
    .hamburger {
        display: block;
        cursor: pointer;
        z-index: 1001; /* Ensure it sits on top of the menu */
        margin-right: 20px;
    }

    .hamburger span {
        display: block;
        width: 30px;
        height: 3px;
        margin: 6px;
        background-color: white;
        transition: all 0.3s ease;
        border-radius: 2px;
    }

    /* 2. Main Mobile Menu Container */
    .nav-links {
        position: fixed; /* Fixed so it stays while scrolling */
        top: 0;
        right: 0;
        height: 100vh;
        width: 85%; /* Covers most of the screen */
        background: rgba(10, 10, 10, 0.98); /* Deep dark background */
        backdrop-filter: blur(15px); /* Glass effect */
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 100px; /* Space for the top logo area */
        transform: translateX(100%); /* Hidden by default */
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        overflow-y: auto; /* Scrollable if menu is tall */
    }

    /* Class added by JS to show menu */
    .nav-links.nav-active {
        transform: translateX(0%);
        box-shadow: -10px 0 30px rgba(0,0,0,0.8);
    }

    /* 3. Main Links Styling */
    .nav-links li {
        width: 100%;
        text-align: center;
        opacity: 0; /* Animated in by JS */
        border-bottom: 1px solid rgba(255,255,255,0.03);
    }

    .nav-links li a {
        display: block;
        padding: 20px;
        font-size: 1.2rem;
        color: white;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    /* 4. Dropdown Styling (The "Accordion" Look) */
    .dropdown-content {
        position: static; /* Pushes content down */
        width: 100%;
        background: rgba(255, 255, 255, 0.03); /* Slightly lighter block */
        display: none; /* Hidden by default */
        padding: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    /* Only show when active class is added by JS */
    .dropdown.active .dropdown-content {
        display: block;
        animation: fadeIn 0.3s ease;
    }

    .dropdown-content a {
        font-size: 1rem; /* Smaller font for sub-items */
        text-transform: none;
        color: #aaa;
        padding: 15px 0;
    }

    .dropdown-content a:hover {
        color: var(--primary-orange);
        background: rgba(255,255,255,0.05);
    }

    /* 5. Hamburger Animation (X shape) */
    .toggle .span:nth-child(1) { transform: rotate(-45deg) translate(-7px, 6px); background: var(--primary-orange); }
    .toggle .span:nth-child(2) { opacity: 0; }
    .toggle .span:nth-child(3) { transform: rotate(45deg) translate(-7px, -6px); background: var(--primary-orange); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Keyframe for link fade-in */
@keyframes navLinkFade {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* --- SYNAPTIC BACKGROUND --- */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Puts it behind everything */
    background: radial-gradient(circle at 50% 50%, #141414 0%, #000000 100%);
    pointer-events: none; /* Allows clicking through the canvas */
}

/* --- NEURAL NETWORK BACKGROUND --- */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Puts it behind the text */
    background: radial-gradient(circle at 50% 50%, #1a1a1a 0%, #000000 100%); /* Deep vignette background */
}

/* The Moving Grid */
.tech-grid {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    /* Creates a grid pattern using CSS gradients */
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px; /* Size of the squares */
    transform: perspective(500px) rotateX(60deg); /* 3D Tilted Floor Effect */
    animation: gridMove 20s linear infinite;
    opacity: 0.6;
}

/* The Glowing Orbs */
.tech-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px); /* Makes them soft and gaseous */
    opacity: 0.4;
    animation: floatBlob 25s infinite ease-in-out alternate;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: var(--primary-orange);
    top: -100px;
    left: -100px;
    z-index: 1;
}

.blob-2 {
    width: 600px;
    height: 600px;
    background: #1e3c72; /* Deep Tech Blue for contrast */
    bottom: -100px;
    right: -100px;
    z-index: 1;
    animation-delay: -5s; /* Offsets the timing so they don't move together */
}

/* --- SUB-PAGE STYLES (Add to bottom of style.css) --- */

/* Smaller Hero for Sub-pages */
.page-hero {
    height: 60vh; /* Shorter than home */
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
}

.lead {
    font-size: 1.25rem;
    color: var(--text-gray);
    max-width: 700px;
    margin-top: 20px;
}

/* Glass Panel for Text */
.glass-panel {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 16px;
    border-left: 4px solid var(--primary-orange);
}

.text-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: white;
}

.text-content p {
    margin-bottom: 20px;
    color: #cccccc;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Expertise Grid (Small Tech Cards) */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.tech-card {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.tech-card:hover {
    background: rgba(245, 130, 32, 0.1);
    border-color: var(--primary-orange);
    transform: translateY(-5px);
}

.tech-icon {
    font-family: 'Courier New', monospace;
    color: var(--primary-orange);
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
    opacity: 0.7;
}

.tech-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .page-hero { height: auto; padding: 120px 0 60px 0; }
    .glass-panel { padding: 30px; }
}

/* --- CYBERSECURITY SPECIFIC STYLES --- */

/* Alert Pill (Red/Orange variant) */
.pill-alert {
    border-color: rgba(255, 100, 100, 0.3);
    color: #ff6b6b;
    background: rgba(255, 100, 100, 0.1);
}

/* Centered Glass Panel for CTA */
.text-center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.text-center h2 {
    color: white;
    margin-bottom: 15px;
}

.text-center p {
    color: var(--text-gray);
    margin-bottom: 30px;
}

/* --- SPACING FIXES --- */

/* Reduce padding on internal pages */
.page-hero {
    padding-bottom: 40px; /* Reduce gap between Hero and first section */
}

/* Create a tighter padding class */
.section-padding-small {
    padding: 50px 0; /* Half the size of the home page padding */
}

/* Remove margin from the bento grid on subpages so it sits tighter */
.bento-grid {
    margin-bottom: 0;
}

/* Adjust the CTA section to pull it up */
.cta-section {
    padding-top: 20px;
    padding-bottom: 80px;
}

/* --- CERTIFICATIONS STRIP --- */
.certifications-strip {
    padding: 30px 0;
    background: rgba(255, 255, 255, 0.02); /* Very subtle background */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.cert-label {
    color: var(--text-gray);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
}

.cert-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.cert-logos img {
    height: 50px; /* Uniform height */
    width: auto;
    filter: grayscale(100%); /* Tech look: B&W by default */
    opacity: 0.6;
    transition: all 0.3s ease;
}

.cert-logos img:hover {
    filter: grayscale(0%); /* Color on hover */
    opacity: 1;
    transform: scale(1.05);
}

/* --- LEADERSHIP CARDS --- */
.leaders-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.leader-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    width: 300px;
    transition: transform 0.3s ease;
}

.leader-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-orange);
}

.leader-img {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px auto;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255,255,255,0.1);
}

.leader-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-card h3 {
    color: white;
    margin-bottom: 5px;
}

.leader-card .role {
    color: var(--primary-orange);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- LEADERSHIP PAGE STYLES --- */

.bio-row {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.bio-img-wrapper {
    flex-shrink: 0; /* Prevents image from shrinking */
    width: 250px;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.bio-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image covers the square perfectly */
}

.role-highlight {
    display: block;
    color: var(--primary-orange);
    font-family: 'Courier New', monospace;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

/* Responsive Stacking for Bios */
@media (max-width: 850px) {
    .bio-row {
        flex-direction: column; /* Stack image on top of text */
        align-items: center;
        text-align: center;
    }

    .bio-img-wrapper {
        width: 200px;
        height: 200px;
        border-radius: 50%; /* Make it a circle on mobile */
        margin-bottom: 20px;
    }
}

/* --- TESTIMONIALS GRID --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    position: relative;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-orange);
}

.testimonial-card::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-orange);
    position: absolute;
    top: 10px;
    left: 20px;
    opacity: 0.3;
    font-family: serif;
}

.quote {
    font-style: italic;
    color: #ccc;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.author strong {
    display: block;
    color: white;
    font-size: 1rem;
}

.author span {
    display: block;
    font-size: 0.85rem;
    color: var(--primary-orange);
    margin-top: 5px;
}

/* --- FOOTER STYLES --- */
.site-footer {
    background: rgba(10, 10, 10, 0.9);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 0;
    margin-top: 50px;
    backdrop-filter: blur(10px);
}

.footer-container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-col {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.center-col a {
    color: var(--text-gray);
    transition: color 0.3s;
}

.center-col a:hover {
    color: var(--primary-orange);
}

.separator { margin: 0 10px; color: #444; }

.right-col .social-links a {
    margin-left: 15px;
    color: white;
    font-weight: bold;
    font-size: 0.8rem;
    transition: color 0.3s;
}

.right-col .social-links a:hover {
    color: var(--primary-orange);
}

/* --- CONTACT FORM STYLES --- */
.contact-layout {
    display: flex;
    gap: 60px;
}

.contact-form-wrapper { flex: 2; }
.contact-info-wrapper { 
    flex: 1; 
    border-left: 1px solid rgba(255,255,255,0.1);
    padding-left: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Inputs */
.tech-form .form-group {
    margin-bottom: 25px;
}

.tech-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 500;
}

.tech-form input, 
.tech-form textarea {
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.tech-form input:focus, 
.tech-form textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 15px rgba(245, 130, 32, 0.2);
    background: rgba(0, 0, 0, 0.5);
}

/* Checkbox */
.form-check {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-check input { width: auto; }

/* Contact Info Side */
.info-block { margin-bottom: 40px; }
.info-block h3 { color: var(--text-gray); font-size: 0.9rem; text-transform: uppercase; margin-bottom: 5px; }
.highlight-text { font-size: 1.5rem; color: white; font-weight: 600; }

.social-btn {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    margin-right: 10px;
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: var(--primary-orange);
    transform: translateY(-3px);
}

/* Responsive Contact */
@media (max-width: 768px) {
    .contact-layout { flex-direction: column; }
    .contact-info-wrapper { border-left: none; padding-left: 0; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 40px; }
    .footer-container { flex-direction: column; text-align: center; }
}

/* --- LEGAL PAGE TYPOGRAPHY --- */
.legal-content h3 {
    color: white;
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
}

.legal-content p {
    margin-bottom: 20px;
    color: #cccccc;
    line-height: 1.8;
}

.intro-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-orange) !important;
}

.legal-content ol {
    margin-left: 20px;
    margin-bottom: 30px;
    color: #cccccc;
}

.legal-content li {
    margin-bottom: 10px;
    list-style-type: decimal;
    padding-left: 10px;
}

/* --- LOCATIONS PAGE STYLES --- */
.location-row {
    display: flex;
    gap: 40px;
    align-items: center;
}

.loc-info {
    flex: 1;
}

.loc-info h2 {
    color: white;
    margin-bottom: 15px;
    font-size: 2rem;
}

.address-text {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 25px;
    line-height: 1.8;
}

.loc-map {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    height: 300px;
}

/* Grayscale map effect to fit the theme (optional, removes color until hover) */
.loc-map iframe {
    filter: grayscale(100%) invert(90%);
    transition: filter 0.3s ease;
}

.loc-map:hover iframe {
    filter: grayscale(0%) invert(0%);
}

.btn-small {
    padding: 10px 25px;
    font-size: 0.9rem;
}

/* Responsive Locations */
@media (max-width: 850px) {
    .location-row {
        flex-direction: column-reverse; /* Put map on top on mobile? or bottom */
        align-items: flex-start;
    }
    
    .loc-map {
        width: 100%;
        height: 250px;
        margin-bottom: 20px;
    }
}

/* --- CAREERS / PANZAJOBS STYLES --- */

/* The Job Terminal Window */
.job-terminal {
    background: #000;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    overflow: hidden;
    margin-top: 20px;
}

.terminal-header {
    background: #1a1a1a;
    padding: 12px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
}

.term-dots {
    display: flex;
    gap: 8px;
    margin-right: 20px;
}

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

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.term-title {
    color: #666;
    font-family: monospace;
    font-size: 0.9rem;
}

.terminal-body {
    position: relative;
    background: white; /* Iframe content is likely light-themed */
    height: 600px;
    overflow: hidden;
}

/* Responsive Iframe */
.responsive-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

@media (max-width: 768px) {
    .terminal-body {
        height: 500px;
    }
}