/* ===== RAAM INDUSTRIES - DEFENSE GRADE WEBSITE ===== */
/* Pure CSS - No Frameworks */

/* ===== CSS VARIABLES ===== */
:root {
    /* Primary Colors - Defense Blue */
    --primary: #0A3D62;
    --primary-light: #1E90FF;
    --primary-glow: #0B5ED7;
    
    /* Background Colors - Dark Authority */
    --bg-dark: #0B0F14;
    --bg-black: #000000;
    --bg-card: #0d1117;
    
    /* Text Colors */
    --text-white: #FFFFFF;
    --text-gray: #9CA3AF;
    --text-muted: #6B7280;
    
    /* Border Colors */
    --border-color: rgba(30, 144, 255, 0.2);
    --border-light: rgba(255, 255, 255, 0.1);
    
    /* Shadows */
    --shadow-blue: 0 0 30px rgba(30, 144, 255, 0.3);
    --shadow-glow: 0 0 60px rgba(30, 144, 255, 0.2);
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

/* ===== TYPOGRAPHY ===== */
.font-heading {
    font-family: 'Orbitron', sans-serif;
}

.font-subheading {
    font-family: 'Rajdhani', sans-serif;
}

.text-blue {
    color: var(--primary-light);
}

.text-white {
    color: var(--text-white);
}

.text-white-90 {
    color: rgba(255, 255, 255, 0.9);
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
    background: rgba(11, 15, 20, 0.9);
    backdrop-filter: blur(8px);
}

@media (min-width: 768px) {
    .navbar {
        background: transparent;
        backdrop-filter: none;
    }
}

.navbar.scrolled {
    background: rgba(11, 15, 20, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
}

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

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

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

/* Mobile Menu Button */
.mobile-menu-btn {
    display: block;
    padding: 0.5rem;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    color: var(--primary-light);
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    border-top: 1px solid var(--border-color);
    background: rgba(11, 15, 20, 0.98);
}

.mobile-nav.active {
    display: flex;
}

@media (min-width: 768px) {
    .mobile-nav {
        display: none !important;
    }
}

.mobile-nav-link {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-white);
    padding: 0.75rem;
    background: rgba(11, 15, 20, 0.5);
    border-radius: 4px;
    transition: var(--transition);
}

.mobile-nav-link:hover {
    color: var(--primary-light);
    background: rgba(30, 144, 255, 0.1);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary-glow);
    border: 2px solid var(--primary-glow);
    color: var(--text-white);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary-light);
    transform: translateX(-101%);
    transition: var(--transition);
}

.btn-primary:hover::before {
    transform: translateX(0);
}

.btn-primary:hover {
    box-shadow: var(--shadow-blue);
}

.btn-primary span,
.btn-primary i {
    position: relative;
    z-index: 1;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-light);
    color: var(--text-white);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary-light);
    transform: translateX(-101%);
    transition: var(--transition);
}

.btn-secondary:hover::before {
    transform: translateX(0);
}

.btn-secondary:hover {
    box-shadow: var(--shadow-blue);
}

.btn-secondary span,
.btn-secondary i {
    position: relative;
    z-index: 1;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--bg-black);
}

/* Grid Background */
.grid-background {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(30, 144, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30, 144, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

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

/* Radar Animation */
.radar-container {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) translateX(25%);
    width: 600px;
    height: 600px;
    opacity: 0.25;
    pointer-events: none;
}

@media (min-width: 1024px) {
    .radar-container {
        transform: translateY(-50%) translateX(0);
    }
}

.radar-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(30, 144, 255, 0.4);
}

.radar-circle:nth-child(1) { width: 100%; height: 100%; }
.radar-circle:nth-child(2) { width: 75%; height: 75%; }
.radar-circle:nth-child(3) { width: 50%; height: 50%; }
.radar-circle:nth-child(4) { width: 25%; height: 25%; }

.radar-sweep {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, rgba(30, 144, 255, 0.8), transparent);
    transform-origin: left center;
    animation: radarScan 4s linear infinite;
}

.radar-sweep::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 300px;
    transform: translateY(-50%);
    background: conic-gradient(
        from 0deg,
        rgba(30, 144, 255, 0.3),
        transparent 60deg
    );
    transform-origin: left center;
}

@keyframes radarScan {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Radar Blips */
.radar-blip {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-light);
    border-radius: 50%;
    animation: pulseGlow 2s ease-in-out infinite;
}

.blip-1 { top: 25%; left: 33%; }
.blip-2 { top: 66%; left: 25%; animation-delay: 0.5s; }
.blip-3 { top: 50%; right: 33%; width: 6px; height: 6px; animation-delay: 1s; }

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

/* Scanning Line */
.scan-line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(30, 144, 255, 0.5), transparent);
    animation: scanVertical 8s ease-in-out infinite;
}

@keyframes scanVertical {
    0%, 100% { top: 0; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 5rem 1rem;
}

@media (min-width: 640px) {
    .hero-content {
        padding: 5rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-content {
        padding: 5rem 2rem;
    }
}

.hero-text {
    max-width: 48rem;
}

/* Status Indicator */
.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #22C55E;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.status-indicator span {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-gray);
}

/* Hero Title */
.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1280px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

/* Hero Subtitle */
.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 42rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

@media (min-width: 640px) {
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 640px) {
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat:last-child {
    grid-column: span 2;
}

@media (min-width: 640px) {
    .stat:last-child {
        grid-column: span 1;
    }
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary-light);
}

@media (min-width: 640px) {
    .stat-number {
        font-size: 2.25rem;
    }
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-top: 0.25rem;
}

/* Hero Gradient */
.hero-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8rem;
    background: linear-gradient(to top, var(--bg-dark), transparent);
}

/* Corner Decorations */
.corner-decor {
    position: absolute;
    width: 80px;
    height: 80px;
    opacity: 0.5;
}

.corner-decor.top-left {
    top: 96px;
    left: 32px;
    border-left: 2px solid rgba(30, 144, 255, 0.3);
    border-top: 2px solid rgba(30, 144, 255, 0.3);
}

.corner-decor.bottom-right {
    bottom: 96px;
    right: 32px;
    border-right: 2px solid rgba(30, 144, 255, 0.3);
    border-bottom: 2px solid rgba(30, 144, 255, 0.3);
}

/* ===== SECTION STYLES ===== */
.section-padding {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(10, 61, 98, 0.2);
    border: 1px solid rgba(30, 144, 255, 0.3);
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.section-badge i {
    color: var(--primary-light);
    font-size: 0.875rem;
}

.section-badge span {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary-light);
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.75rem, 5vw, 3rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.125rem;
    color: var(--text-gray);
    letter-spacing: 0.05em;
    max-width: 42rem;
    margin: 0 auto;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    position: relative;
    padding: 6rem 0;
    background: var(--bg-black);
    overflow: hidden;
}

.about-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.about-bg-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 25%;
    width: 384px;
    height: 384px;
    border: 1px solid rgba(30, 144, 255, 0.3);
    border-radius: 50%;
}

.about-bg-pattern::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 25%;
    width: 256px;
    height: 256px;
    border: 1px solid rgba(30, 144, 255, 0.2);
    border-radius: 50%;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

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

.about-text {
    margin-bottom: 2rem;
}

.about-text p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.key-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.key-point {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(10, 61, 98, 0.1);
    border: 1px solid rgba(30, 144, 255, 0.2);
    border-radius: 4px;
}

.key-point i {
    color: var(--primary-light);
}

.key-point span {
    font-size: 0.875rem;
}

.footnote {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

/* Capabilities Card */
.capabilities-card {
    background: linear-gradient(145deg, rgba(13, 17, 23, 1) 0%, rgba(11, 15, 20, 1) 100%);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.capabilities-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
    opacity: 0;
    transition: var(--transition);
}

.capabilities-card:hover {
    border-color: rgba(30, 144, 255, 0.5);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

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

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.card-header h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.card-badge {
    font-family: monospace;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.capabilities-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.capability-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: var(--transition);
}

.capability-item:hover {
    border-color: rgba(30, 144, 255, 0.3);
}

.capability-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 61, 98, 0.3);
    border-radius: 8px;
}

.capability-icon i {
    color: var(--primary-light);
}

.capability-item span {
    font-size: 0.875rem;
}

.capabilities-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.cap-stat-number {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-light);
}

.cap-stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ===== SERVICES SECTION ===== */
.services-section {
    position: relative;
    padding: 6rem 0;
    background: var(--bg-dark);
    overflow: hidden;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-card {
    background: linear-gradient(145deg, rgba(13, 17, 23, 1) 0%, rgba(11, 15, 20, 1) 100%);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    border-color: rgba(30, 144, 255, 0.5);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

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

.service-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.classification {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.625rem;
    letter-spacing: 0.1em;
    color: rgba(30, 144, 255, 0.7);
    padding: 0.25rem 0.5rem;
    border: 1px solid rgba(30, 144, 255, 0.3);
    border-radius: 2px;
}

.service-id {
    font-family: monospace;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 61, 98, 0.3);
    border: 1px solid rgba(30, 144, 255, 0.2);
    border-radius: 8px;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: rgba(30, 144, 255, 0.2);
}

.service-icon i {
    font-size: 1.5rem;
    color: var(--primary-light);
}

.service-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

.service-desc {
    font-size: 0.875rem;
    color: var(--text-gray);
    line-height: 1.6;
    flex-grow: 1;
}

.service-footer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--primary-light);
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover .service-footer {
    opacity: 1;
}

.services-cta {
    text-align: center;
    margin-top: 4rem;
}

.services-cta p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

/* Decorative Circles */
.decor-circle {
    position: absolute;
    border: 1px solid rgba(30, 144, 255, 0.1);
    border-radius: 50%;
    opacity: 0.3;
}

.decor-circle.top {
    top: 80px;
    right: 40px;
    width: 128px;
    height: 128px;
}

.decor-circle.bottom {
    bottom: 80px;
    left: 40px;
    width: 96px;
    height: 96px;
}

/* ===== TEAM SECTION ===== */
.team-section {
    position: relative;
    padding: 6rem 0;
    background: var(--bg-black);
    overflow: hidden;
}

.dot-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.2;
    background-image: radial-gradient(circle at 2px 2px, rgba(30, 144, 255, 0.15) 1px, transparent 0);
    background-size: 40px 40px;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.team-card {
    background: linear-gradient(145deg, rgba(13, 17, 23, 1) 0%, rgba(11, 15, 20, 1) 100%);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
    opacity: 0;
    transition: var(--transition);
}

.team-card:hover {
    border-color: rgba(30, 144, 255, 0.5);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

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

.team-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.clearance {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--primary-light);
    padding: 0.25rem 0.5rem;
    border: 1px solid rgba(30, 144, 255, 0.3);
    border-radius: 2px;
}

.rank {
    font-family: monospace;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.team-avatar {
    width: 96px;
    height: 96px;
    margin: 0 auto 1.5rem;
    position: relative;
}

.avatar-inner {
    width: 100%;
    height: 100%;
    background: rgba(10, 61, 98, 0.3);
    border: 2px solid rgba(30, 144, 255, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-inner i {
    font-size: 2.5rem;
    color: rgba(30, 144, 255, 0.5);
}

.status-indicator-small {
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 20px;
    height: 20px;
    background: var(--bg-dark);
    border: 2px solid #22C55E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.status-dot-small {
    width: 8px;
    height: 8px;
    background: #22C55E;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.team-info {
    text-align: center;
    margin-bottom: 1rem;
}

.team-info h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.position {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-light);
}

.team-desc {
    font-size: 0.875rem;
    color: var(--text-gray);
    text-align: center;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.team-expertise {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.team-expertise span {
    font-family: monospace;
    font-size: 0.75rem;
    color: var(--text-muted);
    padding: 0.25rem 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

.value-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 61, 98, 0.2);
    border: 1px solid rgba(30, 144, 255, 0.3);
    border-radius: 8px;
}

.value-icon i {
    font-size: 1.5rem;
    color: var(--primary-light);
}

.value-card h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

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

/* ===== CONTACT SECTION ===== */
.contact-section {
    position: relative;
    padding: 6rem 0;
    background: var(--bg-dark);
    overflow: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 2fr 3fr;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background: linear-gradient(145deg, rgba(13, 17, 23, 1) 0%, rgba(11, 15, 20, 1) 100%);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: var(--transition);
}

.contact-card:hover {
    border-color: rgba(30, 144, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.contact-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 61, 98, 0.3);
    border: 1px solid rgba(30, 144, 255, 0.2);
    border-radius: 8px;
}

.contact-icon i {
    font-size: 1.25rem;
    color: var(--primary-light);
}

.contact-details h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-details p {
    font-size: 0.875rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.contact-details a {
    font-size: 0.875rem;
    color: var(--primary-light);
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-details .small {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.security-notice {
    padding: 1rem;
    background: rgba(10, 61, 98, 0.1);
    border: 1px solid rgba(30, 144, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.security-notice i {
    color: var(--primary-light);
    margin-top: 0.25rem;
}

.security-notice h5 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.security-notice p {
    font-size: 0.75rem;
    color: var(--text-gray);
    line-height: 1.5;
}

/* Contact Form Container */
.contact-form-container {
    background: linear-gradient(145deg, rgba(13, 17, 23, 1) 0%, rgba(11, 15, 20, 1) 100%);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
    opacity: 0;
    transition: var(--transition);
}

.contact-form-container:hover::before {
    opacity: 1;
}

.form-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.form-status {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.form-status span {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
}

.form-id {
    font-family: monospace;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.success-message {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.success-message i {
    color: #22C55E;
}

.success-message span {
    font-size: 0.875rem;
    color: #4ADE80;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-gray);
}

.required {
    color: var(--primary-light);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text-white);
    background: rgba(13, 17, 23, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    outline: none;
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(30, 144, 255, 0.2);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%239CA3AF' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 01.753 1.659l-4.796 5.48a1 1 0 01-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group select option {
    background: var(--bg-dark);
    color: var(--text-white);
}

.form-group textarea {
    resize: none;
}

.form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.security-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ===== FOOTER ===== */
.footer {
    position: relative;
    background: var(--bg-black);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 4rem 0;
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }
}

.footer-col h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 48px;
    width: auto;
    margin-bottom: 1.5rem;
}

.footer-desc {
    font-size: 0.875rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.system-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.system-status span {
    font-family: monospace;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a,
.footer-links span {
    font-size: 0.875rem;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-links i {
    font-size: 0.5rem;
    color: rgba(30, 144, 255, 0.5);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-contact i {
    color: var(--primary-light);
    margin-top: 0.25rem;
}

.footer-contact span,
.footer-contact a {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.footer-contact a:hover {
    color: var(--primary-light);
}

.certifications {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cert-badge {
    font-family: monospace;
    font-size: 0.625rem;
    color: var(--primary-light);
    padding: 0.25rem 0.5rem;
    background: rgba(10, 61, 98, 0.2);
    border: 1px solid rgba(30, 144, 255, 0.3);
    border-radius: 2px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem 0;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.classified-notice {
    font-family: monospace;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
}

/* Classification Bar */
.classification-bar {
    background: rgba(10, 61, 98, 0.3);
    padding: 0.5rem 0;
}

.classification-bar p {
    font-family: monospace;
    font-size: 0.625rem;
    text-align: center;
    color: rgba(30, 144, 255, 0.7);
    letter-spacing: 0.15em;
}

/* ===== ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--bg-dark);
}

/* ===== SELECTION ===== */
::selection {
    background: rgba(30, 144, 255, 0.3);
    color: var(--text-white);
}

/* ===== FOCUS STATES ===== */
:focus-visible {
    outline: 2px solid var(--primary-light);
    outline-offset: 2px;
}
