/* Subpage Specific Styles */

/* Fixed Navigation for Subpages */
.navbar-fixed {
    position: fixed;
    background: white;
    box-shadow: 0 2px 20px rgba(0, 13, 16, 0.1);
}

/* Hero Section */
.subpage-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background: linear-gradient(135deg, #000d10 0%, #1a2428 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 200px;
    padding-bottom: 80px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.subpage-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 13, 16, 0.7);
    z-index: 1;
}

.hero-content {
    position: relative;
    text-align: center;
    color: white;
    z-index: 2;
    padding: 2rem;
    max-width: 1200px;
}

.hero-content h1 {
    font-size: 5rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.8rem;
    opacity: 0.9;
}

/* CTA Box */
.cta-box {
    text-align: center;
    margin-top: 5rem;
    padding: 4rem;
    background: #f8f8f8;
    border-radius: 20px;
}

.cta-box h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.cta-box p {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 3rem;
}

.btn-cta {
    display: inline-block;
    padding: 1.5rem 3rem;
    background: #000d10;
    color: white;
    text-decoration: none;
    border-radius: 60px;
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 13, 16, 0.3);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 5rem 0;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: #f8f8f8;
    border-radius: 15px;
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: #bd7055;
    display: block;
}

.stat-label {
    font-size: 1.3rem;
    color: #666;
    margin-top: 0.5rem;
}

/* Management Box */
.management-box {
    background: #f8f8f8;
    padding: 4rem;
    border-radius: 20px;
    margin-top: 5rem;
}

.management-box h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: center;
}

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

.management-item h3 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.management-item p {
    font-size: 1.3rem;
    line-height: 1.6;
}

/* Certification Badges */
.certification-badges {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin: 4rem 0;
    padding: 3rem;
    background: #f8f8f8;
    border-radius: 20px;
    flex-wrap: wrap;
}

.badge {
    text-align: center;
}

.badge-icon {
    width: 100px;
    height: 100px;
    background: #bd7055;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 3rem;
    color: white;
}

.badge-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000d10;
}

/* Technical Capabilities */
.technical-box {
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
    padding: 4rem;
    border-radius: 20px;
    margin-top: 5rem;
}

.technical-box h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: center;
}

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

.technical-list {
    list-style: none;
    padding: 0;
}

.technical-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 13, 16, 0.1);
    font-size: 1.3rem;
}

.technical-list strong {
    color: #000d10;
    display: inline-block;
    min-width: 200px;
}

/* Inventory Categories */
.inventory-box {
    background: #f8f8f8;
    padding: 4rem;
    border-radius: 20px;
    margin-top: 5rem;
}

.inventory-box h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: center;
}

.inventory-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.inventory-category h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #bd7055;
}

.inventory-category ul {
    list-style: none;
    padding: 0;
}

.inventory-category ul li {
    padding: 0.5rem 0;
    font-size: 1.2rem;
}

.inventory-category ul li:before {
    content: "• ";
    color: #bd7055;
}

/* Button Group */
.button-group {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
}

.btn-secondary {
    display: inline-block;
    padding: 1.5rem 3rem;
    background: transparent;
    color: #000d10;
    text-decoration: none;
    border: 2px solid #000d10;
    border-radius: 60px;
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #000d10;
    color: white;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    /* Hero Section */
    .subpage-hero {
        padding-top: 120px;
        height: 50vh;
        min-height: 400px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    /* Stats Grid */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    /* Management Grid */
    .management-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .management-box {
        padding: 2rem;
    }
    
    .management-box h2 {
        font-size: 2rem;
    }
    
    .management-item h3 {
        font-size: 1.4rem;
    }
    
    .management-item p {
        font-size: 1rem;
    }
    
    /* Certification Badges */
    .certification-badges {
        gap: 2rem;
        padding: 2rem;
    }
    
    .badge-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .badge-title {
        font-size: 1rem;
    }
    
    /* Technical Grid */
    .technical-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .technical-box {
        padding: 2rem;
    }
    
    .technical-box h2 {
        font-size: 2rem;
    }
    
    .technical-list li {
        font-size: 1rem;
        padding: 0.8rem 0;
    }
    
    .technical-list strong {
        display: block;
        margin-bottom: 0.5rem;
    }
    
    /* Inventory Grid */
    .inventory-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .inventory-box {
        padding: 2rem;
    }
    
    .inventory-box h2 {
        font-size: 2rem;
    }
    
    .inventory-category h4 {
        font-size: 1.3rem;
    }
    
    .inventory-category ul li {
        font-size: 1rem;
    }
    
    /* Button Group */
    .button-group {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .btn-cta,
    .btn-secondary {
        font-size: 1.2rem;
        padding: 1.2rem 2rem;
        text-align: center;
    }
    
    /* CTA Box */
    .cta-box {
        padding: 2rem;
    }
    
    .cta-box h2 {
        font-size: 2rem;
    }
    
    .cta-box p {
        font-size: 1.1rem;
    }
}