/* ============================================
   NOVATRAIL - Space & Defence Website
   Futuristic Design with Advanced Animations
   ============================================ */

/* === ROOT VARIABLES - SpaceX Style === */
:root {
    /* SpaceX Monochromatic Palette */
    --primary: #ffffff;
    --primary-dark: #e0e0e0;
    --primary-light: #ffffff;
    --secondary: #000000;
    --accent: #005288;
    --success: #34a853;
    --warning: #fbbc04;
    
    /* Pure Black & White Backgrounds */
    --bg-black: #000000;
    --bg-darker: #000000;
    --bg-dark: #000000;
    --bg-card: rgba(255, 255, 255, 0.05);
    --bg-hover: rgba(255, 255, 255, 0.1);
    --bg-light: rgba(255, 255, 255, 0.03);
    
    /* High Contrast Text */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.9);
    --text-muted: rgba(255, 255, 255, 0.6);
    --text-dark: #000000;
    
    /* Minimal Gradients */
    --gradient-primary: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%);
    --gradient-dark: linear-gradient(180deg, #000000 0%, #000000 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.9) 100%);
    
    /* Spacing System */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* SpaceX Typography */
    --font-heading: 'D-DIN', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'D-DIN', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'SF Mono', 'Consolas', 'Monaco', monospace;
    
    /* Minimal Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.6);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.7);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.8);
    
    /* Subtle Borders */
    --border-color: rgba(255, 255, 255, 0.2);
    --border-light: rgba(255, 255, 255, 0.1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

html::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

body {
    font-family: var(--font-body);
    background: var(--bg-black);
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 11px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    position: relative;
    width: 100%;
    max-width: 100vw;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

body::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

/* === ANIMATED BACKGROUND === */
.space-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: #000000;
}

/* Video Background Layer */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    opacity: 0.1;
    filter: none;
}

/* Planet Layer */
.planet-layer {
    position: absolute;
    top: 0;
    right: -10%;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.floating-planet {
    position: absolute;
    top: 10%;
    right: 5%;
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 50%;
    opacity: 0.15;
    animation: floatPlanet 20s ease-in-out infinite;
    filter: none;
}

@keyframes floatPlanet {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(5deg);
    }
}

/* Space Images Layer */
.space-images-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.space-img {
    position: absolute;
    opacity: 0.08;
    filter: none;
    object-fit: cover;
}

.space-img-1 {
    top: 20%;
    left: -5%;
    width: 500px;
    height: 500px;
    animation: floatSpace1 25s ease-in-out infinite;
}

.space-img-2 {
    bottom: 10%;
    right: -5%;
    width: 450px;
    height: 450px;
    animation: floatSpace2 30s ease-in-out infinite;
}

@keyframes floatSpace1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-20px, -20px) scale(1.05);
    }
}

@keyframes floatSpace2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(20px, 20px) scale(1.05);
    }
}

#starfield {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.nebula {
    display: none;
}

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

/* === NAVIGATION === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    padding: 0.75rem 0;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 2px;
    transition: opacity 0.2s ease;
    text-transform: uppercase;
}

.logo:hover {
    opacity: 0.7;
}

.logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: invert(1) brightness(1.2);
}

.logo:hover .logo-image {
    transform: scale(1.05);
    filter: invert(1) brightness(1.2);
}

.logo-text {
    font-size: 1.5rem;
}

.logo-icon {
    display: none;
}

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

.nav-link {
    position: relative;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    padding: 0.5rem 1.25rem;
    transition: opacity 0.2s ease;
    border-radius: 0;
    text-transform: uppercase;
}

.nav-link:hover,
.nav-link.active {
    opacity: 0.7;
    background: transparent;
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.current-time {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    color: var(--text-primary);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    min-width: 120px;
    text-align: center;
    opacity: 1;
    visibility: visible;
    transition: none;
    animation: none;
}

.btn-portal {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 2px solid var(--text-primary);
    border-radius: 0;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-portal:hover {
    background: var(--text-primary);
    color: var(--bg-black);
    transform: none;
    box-shadow: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 0;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.68rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--text-primary);
    color: var(--bg-black);
    box-shadow: none;
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: none;
    box-shadow: none;
}

.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border-color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.5);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* === HERO SECTION === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    padding: 0;
    padding-top: 80px;
    margin-top: 0;
    overflow: hidden;
    background: transparent;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
    pointer-events: none;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-video video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero-text {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 8rem;
    padding-top: 2rem;
}

/* Mission Time Counter */
.mission-time {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-bottom: 2rem;
    opacity: 1 !important;
    visibility: visible !important;
}

.time-display {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    font-family: var(--font-primary);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.75rem 2rem;
    border: 1px solid var(--border-color);
    border-radius: 0;
    backdrop-filter: blur(10px);
    animation: pulseGlow 2s ease-in-out infinite;
}

.time-prefix {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: 2px;
    font-family: var(--font-primary);
}

.time-value {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 2px;
    font-family: var(--font-primary);
}

.digit-flip {
    display: inline-block;
    min-width: 0.85em;
    text-align: center;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-style: preserve-3d;
}

.digit-flip.flip-animation {
    animation: flipDigit 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.separator {
    display: inline-block;
    animation: blink 1s ease-in-out infinite;
}

@keyframes flipDigit {
    0% {
        transform: rotateX(0deg) scale(1);
    }
    50% {
        transform: rotateX(90deg) scale(0.9);
        opacity: 0.5;
    }
    100% {
        transform: rotateX(0deg) scale(1);
    }
}

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

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
        border-color: var(--border-color);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.3);
    }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4.5vw, 3rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8), 0 2px 8px rgba(0, 0, 0, 0.9);
}

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

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

.hero-subtitle {
    font-size: clamp(0.85rem, 1.5vw, 1.05rem);
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.5;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 6rem;
    opacity: 1 !important;
    visibility: visible !important;
}

.hero-stats {
    display: flex;
    gap: 4rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
    margin-top: 0;
    opacity: 1 !important;
    visibility: visible !important;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
}

.stat-item {
    text-align: center;
    min-width: 150px;
    padding: 1rem;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 0.75rem;
    display: block;
}

.stat-label {
    font-size: clamp(0.6rem, 1.3vw, 0.75rem);
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    line-height: 1.4;
}

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

/* === TRUST BADGES === */
.trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-badge-img {
    height: 50px;
    width: auto;
    filter: brightness(1.1);
    transition: all 0.3s ease;
}

.trust-badge-img:hover {
    filter: brightness(1.3);
    transform: scale(1.05);
}

.badge-text {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
}

.badge-text i {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
}

/* === FLOATING ELEMENTS - REMOVED FOR PROFESSIONAL DESIGN === */

/* === SCROLL INDICATOR === */
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: bounce 2s ease infinite;
}

.scroll-indicator span:first-child {
    width: 2px;
    height: 30px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* === SECTIONS === */
.section-padding {
    padding: 6rem 0;
    position: relative;
}

.section-padding::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    pointer-events: none;
    z-index: 1;
}

.dark-section {
    background: var(--bg-dark);
    position: relative;
}

.dark-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

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

.section-tag {
    display: inline-block;
    padding: 0.5rem 0;
    background: transparent;
    border: none;
    border-radius: 0;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 2.7vw, 2rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    letter-spacing: 0;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.section-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* === ABOUT GRID === */
.about-section {
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1516849841032-87cbac4d88f7?w=1920') no-repeat center center;
    background-size: cover;
    opacity: 0.35;
    z-index: 0;
}

.about-section > .container {
    position: relative;
    z-index: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    align-items: center;
}

.about-card {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
    transition: all 0.2s ease;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.about-card:hover {
    transform: none;
    border-color: var(--text-primary);
    box-shadow: none;
    background: transparent;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: transparent;
    border: 2px solid var(--text-primary);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.about-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.about-card p {
    color: var(--text-secondary);
}

/* === ORBIT SYSTEM === */
.about-visual {
    display: none;
}

.orbit-system {
    display: none;
}

.central-core {
    display: none;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

.orbit {
    display: none;
}

.orbit-1 {
    display: none;
}

.orbit-2 {
    display: none;
}

.orbit-3 {
    display: none;
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.orbit-item {
    display: none;
}

/* === PRODUCTS GRID === */
.products-section {
    position: relative;
    overflow: hidden;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1473968512647-3e447244af8f?w=1920') no-repeat center center;
    background-size: cover;
    opacity: 0.35;
    z-index: 0;
}

.products-section > .container {
    position: relative;
    z-index: 1;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.product-card {
    background: transparent;
    border-radius: 0;
    overflow: hidden;
    border: none;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: none;
    border-color: transparent;
    box-shadow: none;
}

.product-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.product-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-card) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--text-muted);
    opacity: 0.5;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.btn-view {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.75rem;
    background: var(--text-primary);
    color: var(--bg-black);
    border-radius: 0;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-view:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: none;
}

.product-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.5rem 1rem;
    background: var(--text-primary);
    color: var(--bg-black);
    border-radius: 0;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-content {
    padding: 2rem;
}

.product-category {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: rgba(0, 217, 255, 0.1);
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.product-desc {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.75rem;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-link:hover {
    gap: 1rem;
}

/* === SERVICES GRID === */
.services-section {
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1462331940025-496dfbfc7564?w=1920') no-repeat center center;
    background-size: cover;
    opacity: 0.35;
    z-index: 0;
}

.services-section > .container {
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
    transition: all 0.2s ease;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.5);
    background: rgba(255, 255, 255, 0.05);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: transparent;
    border: 2px solid var(--text-primary);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 0 2rem 0;
    transition: all 0.2s ease;
    color: var(--text-primary);
}

.service-card:hover .service-icon {
    transform: none;
    background: transparent;
    border-color: var(--text-primary);
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.service-desc {
    color: var(--text-secondary);
    font-size: 0.75rem;
}

/* === TIMELINE === */
.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--gradient-primary);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    width: calc(50% - 2rem);
}

.timeline-item:nth-child(odd) {
    margin-left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    margin-left: calc(50% + 2rem);
    text-align: left;
}

.timeline-content {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 217, 255, 0.1);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 20px var(--primary);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -60px;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -60px;
}

.timeline-date {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: var(--gradient-primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.timeline-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.timeline-desc {
    color: var(--text-secondary);
}

/* === TESTIMONIALS === */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.5);
    background: rgba(255, 255, 255, 0.05);
}

.testimonial-stars {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    color: var(--warning);
}

.testimonial-content {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.testimonial-author img,
.author-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-placeholder {
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.author-info h4 {
    font-family: var(--font-heading);
    margin-bottom: 0.3rem;
}

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

/* === CTA SECTION === */
.cta-section {
    background: transparent;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    padding-bottom: 0;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1446776811953-b23d57bd21aa?w=1920') no-repeat center center;
    background-size: cover;
    opacity: 0.45;
    z-index: 0;
}

.cta-section > .container {
    position: relative;
    z-index: 1;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 2rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.cta-content::before {
    display: none;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    margin-bottom: 1rem;
    position: relative;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.cta-desc {
    font-size: 0.875rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    position: relative;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

/* Ensure no gaps before footer */
.main-content {
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
}

.main-content > section:last-child {
    margin-bottom: 0;
    padding-bottom: 6rem;
}

/* === INNOVATIVE FOOTER WITH ROCKET ANIMATION === */
.footer-innovative {
    position: relative;
    background: var(--bg-black);
    padding: 12rem 0 0;
    overflow: visible;
    border-top: none;
    margin-top: 4rem;
}

/* Rocket Launch Animation */
.rocket-launch-container {
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    pointer-events: none;
    height: 150px;
}

.launch-pad {
    position: relative;
    width: 120px;
    height: 250px;
}

.rocket {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 100px;
    animation: none;
}

.rocket.launching {
    animation: none;
}

@keyframes rocketIdle {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes rocketLaunch {
    0% {
        transform: translateX(-50%) translateY(0) scale(1);
        opacity: 1;
    }
    30% {
        transform: translateX(-50%) translateY(-100px) scale(0.95);
        opacity: 1;
    }
    70% {
        transform: translateX(-50%) translateY(-800px) scale(0.6);
        opacity: 0.7;
    }
    100% {
        transform: translateX(-50%) translateY(-1500px) scale(0.3);
        opacity: 0;
    }
}

.rocket-body {
    width: 35px;
    height: 85px;
    background: linear-gradient(180deg, #ffffff 0%, #d0d0d0 50%, #a0a0a0 100%);
    clip-path: polygon(50% 0%, 85% 15%, 100% 30%, 100% 80%, 50% 100%, 0% 80%, 0% 30%, 15% 15%);
    position: relative;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.3), 0 4px 20px rgba(0,0,0,0.5);
}

.rocket-window {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    background: radial-gradient(circle, rgba(100, 200, 255, 0.8) 0%, rgba(0, 100, 200, 0.6) 100%);
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 10px rgba(100, 200, 255, 0.5);
}

.rocket-fins {
    position: absolute;
    bottom: 0;
    width: 100%;
}

.fin {
    position: absolute;
    bottom: 0;
    width: 0;
    height: 0;
    border-style: solid;
}

.fin-left {
    left: -12px;
    border-width: 0 0 25px 15px;
    border-color: transparent transparent #c0c0c0 transparent;
}

.fin-right {
    right: -12px;
    border-width: 0 15px 25px 0;
    border-color: transparent #c0c0c0 transparent transparent;
}

.rocket-fire {
    position: absolute;
    bottom: -45px;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 60px;
}

.rocket.launching .rocket-fire {
    animation: none;
}

@keyframes fireIntensify {
    0% { opacity: 1; transform: translateX(-50%) scale(1); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.5); }
    100% { opacity: 0; transform: translateX(-50%) scale(2); }
}

.flame {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 50px;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 220, 0, 0.95) 20%,
        rgba(255, 150, 0, 0.85) 50%,
        rgba(255, 80, 0, 0.6) 75%,
        rgba(200, 0, 0, 0.2) 100%
    );
    border-radius: 50% 50% 0 0;
    filter: blur(3px);
    animation: flameFlicker 0.08s infinite;
    box-shadow: 0 0 20px rgba(255, 150, 0, 0.8);
}

.flame-1 { animation-delay: 0s; }
.flame-2 { 
    animation-delay: 0.05s; 
    transform: translateX(-50%) scale(0.9);
    opacity: 0.8;
}
.flame-3 { 
    animation-delay: 0.1s; 
    transform: translateX(-50%) scale(0.8);
    opacity: 0.6;
}

@keyframes flameFlicker {
    0%, 100% { 
        height: 50px; 
        opacity: 1;
        transform: translateX(-50%) scaleX(1);
    }
    25% { 
        height: 56px; 
        opacity: 0.95;
        transform: translateX(-50%) scaleX(1.05);
    }
    50% { 
        height: 48px; 
        opacity: 1;
        transform: translateX(-50%) scaleX(0.95);
    }
    75% { 
        height: 54px; 
        opacity: 0.98;
        transform: translateX(-50%) scaleX(1.02);
    }
}

.launch-smoke {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 80px;
    background: radial-gradient(ellipse at center, 
        rgba(255, 255, 255, 0.5) 0%,
        rgba(200, 200, 200, 0.3) 30%,
        rgba(150, 150, 150, 0.15) 60%,
        transparent 100%
    );
    border-radius: 50%;
    animation: smokeExpand 1.5s ease-out infinite;
    filter: blur(8px);
}

.rocket.launching ~ .launch-smoke {
    animation: smokeExpand 1.5s ease-out infinite;
}

@keyframes smokeExpand {
    0% { 
        transform: translateX(-50%) scale(0.8) translateY(0); 
        opacity: 0.6; 
    }
    50% { 
        transform: translateX(-50%) scale(1.2) translateY(-10px); 
        opacity: 0.4; 
    }
    100% { 
        transform: translateX(-50%) scale(1.6) translateY(-20px); 
        opacity: 0; 
    }
}

@keyframes smokeBlast {
    0% { transform: translateX(-50%) scale(1); opacity: 0.5; }
    100% { transform: translateX(-50%) scale(3); opacity: 0; }
}

/* Footer Orbit System */
.footer-orbit-system {
    position: relative;
    padding: 6rem 0 2rem;
}

.footer-hub {
    text-align: center;
    margin-bottom: 3rem;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.hub-center {
    display: inline-block;
}

.footer-brand-large {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 5vw, 3.5rem);
    font-weight: 900;
    letter-spacing: 6px;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #ffffff 0%, rgba(255,255,255,0.6) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    font-size: 0.65rem;
    letter-spacing: 4px;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 3rem;
}

.mission-counter {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
}

.counter-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.counter-number {
    font-size: 3rem;
    font-weight: 900;
    font-family: var(--font-heading);
    color: var(--text-primary);
    line-height: 1;
}

.counter-label {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.counter-divider {
    width: 2px;
    height: 40px;
    background: var(--border-color);
}

/* Orbital Ring Layout */
.orbit-ring {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    padding: 0 2rem;
}

.orbit-content {
    text-align: center;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.orbit-content:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.5);
}

.orbit-content h4 {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.orbit-content a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.2s ease;
}

.orbit-content a:hover {
    color: var(--text-primary);
    padding-left: 10px;
}

.social-orbit {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.orbit-newsletter {
    display: flex;
    gap: 0;
    border: 2px solid var(--border-color);
}

.orbit-newsletter input {
    flex: 1;
    padding: 0.875rem 1rem;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 0.75rem;
    letter-spacing: 1px;
    font-weight: 600;
}

.orbit-newsletter input::placeholder {
    color: var(--text-muted);
    letter-spacing: 2px;
}

.orbit-newsletter input:focus {
    outline: none;
}

.orbit-newsletter button {
    padding: 0.875rem 1.5rem;
    background: var(--text-primary);
    color: var(--bg-black);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.orbit-newsletter button:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* Minimal Bottom Bar */
.footer-minimal-bar {
    margin-top: 6rem;
    padding: 2rem 0;
    border-top: 1px solid var(--border-light);
}

.bar-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-item i {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.india-flag {
    height: 16px;
    width: auto;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.footer-duns-logo {
    height: 20px;
    width: auto;
    filter: brightness(0.9);
    transition: all 0.3s ease;
    border-radius: 4px;
}

.footer-duns-logo:hover {
    filter: brightness(1.1);
    transform: scale(1.05);
}

.copyright-minimal,
.location,
.inspace-registered,
.duns-number,
.llp-number,
.since-year,
.legal-link {
    font-size: 0.75rem;
    letter-spacing: 2px;
    font-weight: 600;
}

.copyright-minimal,
.location,
.inspace-registered,
.duns-number,
.llp-number,
.since-year {
    color: var(--text-muted);
}

.legal-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.legal-link:hover {
    color: var(--text-primary);
}

.divider-dot {
    color: var(--border-color);
    font-size: 0.5rem;
}

/* Footer Particles Canvas */
#footerParticles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.3;
}

/* Launch Control Button (Enhanced Scroll to Top) */
.launch-control {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 70px;
    height: 70px;
    background: transparent;
    border: 2px solid var(--text-primary);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.launch-control.visible {
    opacity: 1;
    pointer-events: all;
}

.launch-control:hover {
    background: var(--text-primary);
    transform: translateY(-5px);
}

.launch-control:hover .control-rocket {
    color: var(--bg-black);
    transform: translateY(-3px);
}

.launch-control:hover .control-label {
    color: var(--bg-black);
}

.control-rocket {
    font-size: 1.5rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.control-label {
    font-size: 0.625rem;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

@keyframes launchButtonUp {
    0% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateY(-100px) scale(0.8);
        opacity: 0.8;
    }
    100% {
        transform: translateY(-500px) scale(0.3);
        opacity: 0;
    }
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .orbit-ring {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-brand-large {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .trust-badges {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
        margin-top: 1.5rem;
    }
    
    .trust-badge-img {
        height: 40px;
    }
    
    .footer-duns-logo {
        height: 24px;
    }
    
    .footer-innovative {
        padding: 4rem 0 0;
    }
    
    .orbit-ring {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .mission-counter {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .counter-divider {
        width: 40px;
        height: 2px;
    }
    
    .footer-brand-large {
        font-size: 2rem;
        letter-spacing: 4px;
    }
    
    .bar-content {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .launch-control {
        width: 60px;
        height: 60px;
        bottom: 1.5rem;
        right: 1.5rem;
    }
}

.social-link {
    width: 48px;
    height: 48px;
    background: transparent;
    border: 2px solid var(--border-color);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.25rem;
    transition: all 0.2s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--text-primary);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.3);
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.newsletter-text {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.25rem;
    background: transparent;
    border: 2px solid var(--border-color);
    border-radius: 0;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--text-primary);
    box-shadow: none;
}

.newsletter-form button {
    padding: 1rem 2rem;
    background: var(--text-primary);
    border: none;
    border-radius: 0;
    color: var(--bg-black);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.newsletter-form button:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
}

.footer-line {
    display: none;
}

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

.copyright i {
    color: var(--accent);
}

/* === SCROLL TO TOP === */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px) rotate(15deg);
    box-shadow: var(--shadow-lg);
}

/* === PAGE HEADER === */
.page-header {
    padding: 10rem 0 4rem;
    text-align: center;
    background: linear-gradient(180deg, rgba(0, 217, 255, 0.05) 0%, transparent 100%);
    position: relative;
    z-index: 2;
}

.page-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1rem;
    color: #ffffff;
    position: relative;
    z-index: 2;
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    position: relative;
    z-index: 2;
}

/* === MESSAGES === */
.messages-container {
    position: fixed;
    top: 100px;
    right: 2rem;
    z-index: 1001;
    max-width: 400px;
}

.alert {
    padding: 1rem 1.5rem;
    background: var(--bg-card);
    border-left: 4px solid var(--primary);
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: slideInRight 0.5s ease;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.alert-success {
    border-left-color: var(--success);
}

.alert-error {
    border-left-color: var(--accent);
}

.alert-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    margin-left: 1rem;
}

/* === FILTER BUTTONS === */
.products-filter .filter-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.75rem 2rem;
    background: transparent;
    border: 2px solid var(--text-primary);
    border-radius: 0;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--text-primary);
    color: var(--bg-black);
    border-color: var(--text-primary);
    transform: none;
}

/* === CONTACT FORM === */
.contact-section {
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1446941611757-91d2c3bd3d45?w=1920') no-repeat center center;
    background-size: cover;
    opacity: 0.35;
    z-index: 0;
}

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

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

.contact-items {
    margin: 3rem 0;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    transition: all 0.3s ease;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-secondary);
}

.contact-social h4 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
}

.contact-form {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 217, 255, 0.1);
}

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

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.2);
}

.form-group textarea {
    resize: vertical;
}

/* === BREADCRUMB === */
.breadcrumb {
    display: flex;
    gap: 1rem;
    align-items: center;
    color: var(--text-muted);
    padding: 1rem 0;
}

.breadcrumb a {
    color: var(--primary);
    text-decoration: none;
}

/* === PRODUCT DETAIL === */
.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.detail-image img {
    width: 100%;
    border-radius: 20px;
    border: 1px solid rgba(0, 217, 255, 0.1);
}

.product-name {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.product-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.product-specs {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 217, 255, 0.1);
    margin-bottom: 2rem;
}

.product-specs h3 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    color: var(--primary);
}

.specs-content {
    color: var(--text-secondary);
}

.product-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* === CAREER DETAIL === */
.career-detail-section {
    position: relative;
    overflow: hidden;
}

.career-detail-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1920') no-repeat center center;
    background-size: cover;
    opacity: 0.35;
    z-index: 0;
}

.career-detail-section > .container {
    position: relative;
    z-index: 1;
}

.career-header {
    margin-bottom: 3rem;
}

.career-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.career-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    color: var(--text-secondary);
}

.career-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.career-detail-section {
    position: relative;
    overflow: hidden;
}

.career-detail-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1920') no-repeat center center;
    background-size: cover;
    opacity: 0.35;
    z-index: 0;
}

.career-detail-section > .container {
    position: relative;
    z-index: 1;
}

.career-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.career-section {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 217, 255, 0.1);
    margin-bottom: 2rem;
}

.career-section h2 {
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.career-text {
    color: var(--text-secondary);
    line-height: 1.8;
}

.apply-card,
.info-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 217, 255, 0.1);
    margin-bottom: 2rem;
    position: sticky;
    top: 120px;
}

.apply-card h3 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
}

.apply-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.share-buttons {
    display: flex;
    gap: 1rem;
}

.share-btn {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow);
}

/* === RESPONSIVE === */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .mission-time {
        margin-bottom: 1.5rem;
    }
    
    .time-display {
        padding: 0.5rem 1.5rem;
    }
    
    .time-prefix {
        font-size: 1.2rem;
    }
    
    .time-value {
        font-size: 1.2rem;
    }
    
    .digit-flip {
        min-width: 0.75em;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(10, 14, 39, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3rem;
        transition: left 0.3s ease;
    }

    .nav-links.active {
        left: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .about-grid,
    .contact-grid,
    .detail-grid,
    .career-content-grid {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 0;
    }

    .timeline-item {
        width: 100%;
        margin-left: 2rem !important;
        text-align: left !important;
    }

    .timeline-item:nth-child(odd) .timeline-content::before,
    .timeline-item:nth-child(even) .timeline-content::before {
        left: -60px;
        right: auto;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .products-grid,
    .services-grid,
    .testimonials-slider {
        grid-template-columns: 1fr;
    }

    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
    
    .logo-image {
        height: 32px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .current-time {
        display: none;
    }
    
    .btn-portal {
        padding: 0.75rem 1rem;
        font-size: 0.75rem;
    }
    
    .btn-portal span {
        display: none;
    }
}

/* === LOADING ANIMATION === */
@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

.text-large {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.section-footer {
    text-align: center;
    margin-top: 3rem;
}

.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-muted);
}

.empty-state i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.empty-state h3 {
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}
