/* =====================================================
   WAN - Worldwide Aerospace Network Premium Styles
   ===================================================== */

/* CSS Variables */
:root {
    --color-primary: #0d59a4;
    --color-secondary: #0e4dc0;
    --color-tertiary: #093390;
    --color-accent: #3895d1;
    --color-highlight: #76e5f4;
    --color-white: #ffffff;
    --color-dark: #0a0f1a;
    --color-text: #e8ecf2;
    --color-text-muted: #8892a4;
    
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', 'Inter', sans-serif;
    
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 30px rgba(118, 229, 244, 0.3);
    
    --navbar-height: 80px;
    --section-padding: 120px 0;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

/* Container */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
}

p {
    color: var(--color-text-muted);
}

.gradient-text {
    background: linear-gradient(135deg, var(--color-highlight), var(--color-accent), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-animated {
    background: linear-gradient(90deg, var(--color-highlight), var(--color-accent), var(--color-secondary), var(--color-highlight));
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s ease infinite;
}

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

/* Section Styling */
.section {
    padding: var(--section-padding);
    position: relative;
}

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

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-highlight));
    margin: 0 auto;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-top: 20px;
}

/* =====================================================
   NAVBAR - Premium Glassmorphism
   ===================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--navbar-height);
    z-index: 1000;
    background: rgba(10, 15, 26, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(10, 15, 26, 0.92);
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.3s var(--transition-smooth);
}

.nav-logo:hover {
    transform: scale(1.02);
}

.nav-logo img {
    height: 42px;
    width: auto;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-white), var(--color-highlight));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    position: relative;
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 8px 0;
    transition: color 0.3s var(--transition-smooth);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-highlight));
    transition: width 0.3s var(--transition-smooth);
}

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

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

/* Hamburger Menu */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger-line {
    width: 28px;
    height: 2px;
    background: var(--color-white);
    transition: all 0.3s var(--transition-smooth);
    transform-origin: center;
}

.nav-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

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

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 15, 26, 0.5) 0%,
        rgba(10, 15, 26, 0.65) 50%,
        rgba(10, 15, 26, 0.75) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-logo {
    margin-bottom: 30px;
}

.logo-image {
    max-width: 500px;
    width: 100%;
    height: auto;
}

.hero-title {
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 40px;
    color: var(--color-white);
    letter-spacing: -0.02em;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.hero-locations {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.location-text {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    color: var(--color-white);
    font-weight: 400;
    margin: 0;
}

/* Responsive Hero */

@media (min-width: 1025px){
    .logo-image{
        max-width: 650px;
    }

    .hero-locations{
        margin-bottom: 150px;
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 0 20px;
    }
    
    .logo-image {
        max-width: 500px;
    }
    
    .hero-title {
        margin-bottom: 30px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .logo-image {
        max-width: 490px;
    }
    
    .hero-title {
        font-size: 1.25rem;
    }
    
    .hero-locations {
        gap: 6px;
    }
    
    .location-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 380px){
    .logo-image {
        max-width: 210px;
    }
}
/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s var(--transition-smooth);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-highlight), var(--color-accent));
    opacity: 0;
    transition: opacity 0.4s var(--transition-smooth);
    z-index: -1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--color-white);
    box-shadow: 0 4px 20px rgba(13, 89, 164, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(13, 89, 164, 0.5);
}

.btn-primary:hover::before {
    opacity: 1;
}

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

.btn-secondary:hover {
    border-color: var(--color-highlight);
    background: rgba(118, 229, 244, 0.1);
    transform: translateY(-3px);
}


/* =====================================================
   HERO SHOWCASE SECTION
   ===================================================== */
.hero-showcase {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 7;
    min-height: 400px;
    max-height: 700px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-showcase picture {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.showcase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 15, 26, 0.75) 0%,
        rgba(10, 15, 26, 0.85) 50%,
        rgba(10, 15, 26, 0.9) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
}

.showcase-content {
    text-align: center;
    max-width: 900px;
    width: 100%;
}

.showcase-title {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--color-white);
    line-height: 1.4;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.showcase-text {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--color-text);
    margin-bottom: 30px;
    line-height: 1.6;
}

.showcase-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.contact-item {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    color: var(--color-text);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin: 0;
}

.contact-label {
    color: var(--color-highlight);
    font-weight: 500;
}

.contact-icon {
    width: 20px;
    height: 20px;
    color: var(--color-highlight);
    flex-shrink: 0;
}

.contact-link {
    color: var(--color-white);
    text-decoration: none;
    transition: color 0.3s var(--transition-smooth);
}

.contact-link:hover {
    color: var(--color-highlight);
    text-decoration: underline;
}

/* Responsive adjustments for hero-showcase */
@media (max-width: 1024px) {
    .hero-showcase {
        aspect-ratio: auto;
        min-height: 500px;
        height: auto;
    }
    
    .showcase-overlay {
        padding: 50px 30px;
        position: relative;
        inset: 0;
        min-height: 500px;
    }
    
    .showcase-content {
        max-width: 90%;
        margin: 0 auto;
    }
    
    .showcase-title {
        font-size: 1.4rem;
    }
    
    .showcase-text {
        font-size: 1rem;
    }
    
    .showcase-contact {
        gap: 18px;
    }
    
    .contact-item {
        font-size: 0.95rem;
        gap: 12px;
    }
    
    .contact-icon {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 768px) {
    .hero-showcase {
        aspect-ratio: auto;
        min-height: 480px;
        height: auto;
    }
    
    .showcase-overlay {
        padding: 40px 24px;
        position: relative;
        inset: 0;
        min-height: 480px;
    }
    
    .showcase-content {
        max-width: 92%;
        margin: 0 auto;
    }
    
    .showcase-title {
        font-size: 1.25rem;
    }
    
    .showcase-text {
        font-size: 0.95rem;
    }
    
    .showcase-contact {
        gap: 16px;
    }
    
    .contact-item {
        font-size: 0.9rem;
        gap: 10px;
    }
    
    .contact-icon {
        width: 17px;
        height: 17px;
    }
}

@media (max-width: 450px) {
    .hero-showcase {
        min-height: auto;
        height: auto;
    }
    
    .showcase-overlay {
        padding: 30px 16px;
        min-height: auto;
        align-items: flex-start;
    }
    
    .showcase-content {
        max-width: 100%;
    }
    
    .showcase-title {
        font-size: 1.1rem;
        margin-bottom: 14px;
    }
    
    .showcase-text {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .showcase-contact {
        gap: 16px;
        align-items: stretch;
    }
    
    .contact-item {
        font-size: 0.85rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 6px;
        line-height: 1.4;
        word-break: break-word;
    }
    
    .contact-icon {
        width: 20px;
        height: 20px;
        margin-bottom: 2px;
    }
    
    .contact-label {
        display: block;
    }
    
    .contact-link {
        display: block;
        margin-top: 2px;
    }
}

/* =====================================================
   OVERVIEW SECTION
   ===================================================== */
.overview {
    background: linear-gradient(180deg, var(--color-dark) 0%, #0d1525 50%, var(--color-dark) 100%);
}

.overview-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

.lead-text {
    font-size: 1.35rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 24px;
}

.overview-text p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.overview-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    display: block;
    margin-bottom: 10px;
}

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

/* =====================================================
   MISSION SECTION
   ===================================================== */
.mission {
    background: linear-gradient(180deg, var(--color-dark) 0%, #0a1220 100%);
}

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

.mission-content {
    order: 1;
}

.mission-image {
    order: 2;
    position: relative;
}

.mission-text {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 24px;
    color: var(--color-text);
}

.mission-list {
    list-style: none;
    margin-top: 30px;
}

.mission-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    font-size: 1.05rem;
    color: var(--color-text);
}

.mission-list .icon {
    width: 24px;
    height: 24px;
    color: var(--color-highlight);
    flex-shrink: 0;
}

/* =====================================================
   WHAT WAN DOES SECTION
   ===================================================== */
.does {
    background: linear-gradient(180deg, #0a1220 0%, var(--color-dark) 50%, #0d1525 100%);
}

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

.does-image {
    order: 1;
    position: relative;
}

.does-content {
    order: 2;
}

.does-text {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 24px;
    color: var(--color-text);
}

.does-features {
    margin-top: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(13, 89, 164, 0.2), rgba(118, 229, 244, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-highlight);
}

.feature-text h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: var(--color-white);
}

.feature-text p {
    font-size: 0.95rem;
}

/* Responsive Images */
.responsive-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.image-glow {
    position: absolute;
    inset: -20px;
    background: linear-gradient(135deg, rgba(13, 89, 164, 0.3), rgba(118, 229, 244, 0.1));
    filter: blur(40px);
    border-radius: 24px;
    z-index: -1;
    opacity: 0.5;
}

.mission-img, .does-img {
    position: relative;
    z-index: 1;
}

/* =====================================================
   DIVISIONS SECTION
   ===================================================== */
.divisions {
    background: linear-gradient(180deg, #0d1525 0%, var(--color-dark) 100%);
}

.division-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 24px;
    margin-bottom: 60px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s var(--transition-smooth);
}

.division-card:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.division-card-reverse {
    direction: rtl;
}

.division-card-reverse > * {
    direction: ltr;
}

.division-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--color-white);
}

.division-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 24px;
    color: var(--color-white);
}

.division-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 16px;
    color: var(--color-text);
}

.division-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 24px;
    color: var(--color-text);
}

.model{
    margin-top: 30px;
}

.division-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.division-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: var(--color-text);
}

.division-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--color-highlight);
    border-radius: 50%;
    flex-shrink: 0;
}

.division-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tag {
    padding: 10px 20px;
    background: rgba(118, 229, 244, 0.1);
    border: 1px solid rgba(118, 229, 244, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--color-highlight);
    transition: all 0.3s var(--transition-smooth);
}

.tag:hover {
    background: rgba(118, 229, 244, 0.2);
    transform: translateY(-2px);
}

.division-image {
    position: relative;
}

.division-image .responsive-image {
    box-shadow: var(--shadow-lg);
}

/* =====================================================
   VISION SECTION
   ===================================================== */
.vision {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.vision-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.vision-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center bottom, rgba(13, 89, 164, 0.3), transparent 70%);
    animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.vision-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.vision-intro {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    line-height: 1.8;
    margin-bottom: 50px;
    color: var(--color-text-muted);
}

.vision-tagline {
    font-size: clamp(2rem, 5vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

@media (max-width: 480px) {
    .vision-content {
        padding: 0 16px;
    }
    
    .vision-intro {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 30px;
    }
    
    .vision-tagline {
        font-size: 1.75rem;
        line-height: 1.2;
    }


}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
    position: relative;
    padding: 80px 0 40px;
    background: linear-gradient(180deg, #0a1220 0%, var(--color-dark) 100%);
    overflow: hidden;
}

.footer-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.footer-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(to top, rgba(13, 89, 164, 0.2), transparent);
}

.footer-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 50px;
    width: auto;
}

.footer-brand-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
}

.footer-contact {
    margin-bottom: 40px;
}

.footer-nav {
    margin-bottom: 40px;
}

.footer-nav-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    list-style: none;
}

.footer-nav-link {
    position: relative;
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 8px 0;
    transition: color 0.3s var(--transition-smooth);
}

.footer-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-highlight));
    transition: width 0.3s var(--transition-smooth);
}

.footer-nav-link:hover,
.footer-nav-link:focus {
    color: var(--color-white);
    outline: none;
}

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

.footer-nav-link:focus-visible {
    outline: 2px solid var(--color-highlight);
    outline-offset: 4px;
    border-radius: 2px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s var(--transition-smooth);
}

.contact-link:hover {
    color: var(--color-highlight);
}

.contact-link svg {
    width: 24px;
    height: 24px;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.copyright {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 10px;
}

.credit {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.credit a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.3s var(--transition-smooth);
}

.credit a:hover {
    color: var(--color-highlight);
}

/* =====================================================
   SCROLL REVEAL ANIMATIONS
   ===================================================== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s var(--transition-smooth);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */
@media (max-width: 1200px) {
    .mission-grid,
    .does-grid {
        gap: 60px;
    }
    
    .division-card {
        padding: 50px;
        gap: 40px;
    }
}

@media (max-width: 1024px) {
    :root {
        --section-padding: 100px 0;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 400px;
        height: 100vh;
        background: rgba(10, 15, 26, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: right 0.5s var(--transition-smooth);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.5rem;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .mission-grid,
    .does-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .mission-content,
    .mission-image,
    .does-image,
    .does-content {
        order: unset;
    }
    
    .mission-image,
    .does-image {
        order: -1;
    }
    
    .division-card {
        grid-template-columns: 1fr;
        padding: 40px;
    }
    
    .division-card-reverse {
        direction: ltr;
    }
    
    .division-image {
        order: -1;
    }
    
    .overview-stats {
        gap: 50px;
    }


}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px 0;
        --navbar-height: 70px;
    }

    .container {
        padding: 0 20px;
    }

    .contact-link {
        font-size: 0.95rem;
    }
    
    .hero-title {
        letter-spacing: -0.02em;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .division-card {
        padding: 30px;
        margin-bottom: 40px;
    }
    
    .division-list {
        grid-template-columns: 1fr;
    }
    
    .overview-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .stat-item {
        padding: 20px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .stat-item:last-child {
        border-bottom: none;
    }


}

@media (max-width: 480px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .nav-logo img {
        height: 36px;
    }
    
    .logo-text {
        font-size: 1.4rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .lead-text {
        font-size: 1.15rem;
    }
    
    .division-card {
        padding: 25px;
    }
    
    .division-badge {
        font-size: 0.75rem;
        padding: 6px 16px;
    }
    
    .footer-brand {
        flex-direction: column;
        gap: 10px;
    }

    .footer-logo {
        height: 40px;
    }

    .footer-brand-text {
        font-size: 1.2rem;
    }

    .contact-link {
        font-size: 0.85rem;
        flex-direction: column;
        gap: 8px;
    }

    .contact-link svg {
        width: 20px;
        height: 20px;
    }

    .footer-nav-list {
        gap: 20px;
    }

    .footer-nav-link {
        font-size: 0.9rem;
    }
}

/* =====================================================
   REDUCED MOTION
   ===================================================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    .scroll-reveal {
        opacity: 1;
        transform: none;
    }
}

