/* ==============================================
   A7 Transport - Shared Styles
   Common styles used across all pages
   ============================================== */

/* CSS Variables */
:root {
    --a7-navy: #0a192f;
    --a7-blue: #1e40af;
    --a7-blue-2: #3b82f6;
    --a7-orange: #ff6b35;
    --a7-orange-2: #ff8c42;
    --a7-slate: #475569;
    --a7-slate-2: #64748b;
    --a7-border: rgba(0,0,0,0.08);
    --a7-card: #ffffff;
    --a7-soft: #f8fafc;
    --a7-radius: 14px;
    --a7-shadow: 0 20px 45px rgba(2, 6, 23, 0.10);
    --a7-shadow-soft: 0 10px 25px rgba(2, 6, 23, 0.08);
}

/* Typography */
body {
    font-family: 'Inter', sans-serif;
    color: var(--a7-navy);
}

.headline-font,
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

/* Navigation */
.navbar-pro {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--a7-border);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar-pro.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.nav-link-pro {
    color: #1a1a1a !important;
    font-weight: 500;
    padding: 10px 20px !important;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link-pro:hover {
    color: var(--a7-blue) !important;
}

.nav-link-pro::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: var(--a7-blue);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link-pro:hover::after {
    transform: scaleX(1);
}

.btn-hiring {
    background: linear-gradient(135deg, var(--a7-orange) 0%, var(--a7-orange-2) 100%);
    border: none;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255,107,53,0.3);
    transition: all 0.3s ease;
}

.btn-hiring:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,107,53,0.4);
}

/* Hero Section */
.hero-pro {
    background: linear-gradient(135deg, rgba(10,25,47,0.75) 0%, rgba(30,64,175,0.65) 100%), 
                url('/assets/img/fleet-hero.jpg') center/cover fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-pro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.hero-content-pro {
    position: relative;
    z-index: 2;
}

.hero-title-pro {
    font-size: clamp(2.3rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 25px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.hero-subtitle-pro {
    font-size: 1.3rem;
    opacity: 0.9;
    line-height: 1.7;
    max-width: 600px;
}

/* Buttons */
.btn-cta-primary {
    background: linear-gradient(135deg, var(--a7-orange) 0%, var(--a7-orange-2) 100%);
    color: white;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    box-shadow: 0 8px 25px rgba(255,107,53,0.35);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255,107,53,0.45);
    color: white;
}

.btn-cta-secondary {
    background: transparent;
    color: white;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.4);
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-cta-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
    color: white;
}

/* Section Headers */
.section-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--a7-blue) 0%, var(--a7-blue-2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title-pro {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--a7-navy);
    margin-bottom: 20px;
}

.section-desc-pro {
    font-size: 1.15rem;
    color: var(--a7-slate-2);
    line-height: 1.8;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.section-pad {
    padding: 80px 0;
}

.section-soft {
    background: var(--a7-soft);
}

/* Cards */
.card-pro {
    background: var(--a7-card);
    border-radius: var(--a7-radius);
    padding: 30px;
    box-shadow: var(--a7-shadow-soft);
    border: 1px solid var(--a7-border);
    transition: all 0.4s ease;
}

.card-pro:hover {
    transform: translateY(-5px);
    box-shadow: var(--a7-shadow);
}

/* Footer */
.footer-pro {
    background: var(--a7-navy);
    padding: 60px 0 30px;
}

.footer-brand {
    margin-bottom: 20px;
    background: #ffffff;
    padding: 15px 20px;
    border-radius: 12px;
    display: inline-block;
}

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

.footer-text-pro {
    color: var(--a7-slate-2);
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--a7-blue);
    color: white;
}

.footer-title {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
    color: #cbd5e1;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

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

.footer-copyright {
    color: var(--a7-slate);
    margin: 0;
}

/* Trust Badges */
.trust-section {
    background: #ffffff;
    padding: 40px 0;
    border-bottom: 1px solid #f0f0f0;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #666;
    font-weight: 500;
}

.trust-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--a7-blue) 0%, var(--a7-blue-2) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title-pro {
        font-size: 2.5rem;
    }
    
    .section-title-pro {
        font-size: 2rem;
    }
    
    .section-pad {
        padding: 60px 0;
    }
}
