/* ============================================
   CHA Logistics - Main Stylesheet
   Colors: Blue (#1a56db), White (#fff), Grey (#6b7280)
   ============================================ */

:root {
    --primary: #1a56db;
    --primary-dark: #1242b0;
    --primary-light: #3b82f6;
    --secondary: #0f172a;
    --accent: #06b6d4;
    --grey-50: #f9fafb;
    --grey-100: #f3f4f6;
    --grey-200: #e5e7eb;
    --grey-300: #d1d5db;
    --grey-400: #9ca3af;
    --grey-500: #6b7280;
    --grey-600: #4b5563;
    --grey-700: #374151;
    --grey-800: #1f2937;
    --grey-900: #111827;
    --white: #ffffff;
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --transition: all 0.3s ease;
    --radius: 12px;
    --radius-sm: 8px;
}

/* General */
* { box-sizing: border-box; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--grey-700);
    line-height: 1.7;
    overflow-x: hidden;
}

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }

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

/* ---- Preloader ---- */
#preloader {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--white); z-index: 99999;
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.5s ease;
}
#preloader.fade-out { opacity: 0; pointer-events: none; }
.spinner {
    width: 50px; height: 50px;
    border: 4px solid var(--grey-200);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- Top Bar ---- */
.top-bar {
    background: var(--secondary);
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    padding: 8px 0;
}
.top-bar a { color: rgba(255,255,255,0.8); }
.top-bar a:hover { color: var(--white); }
.top-bar i { color: var(--primary-light); margin-right: 6px; }

/* ---- Navbar ---- */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 12px 0;
    transition: var(--transition);
    z-index: 1000;
}
.navbar.scrolled {
    padding: 6px 0;
    box-shadow: var(--shadow-lg);
}
.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary) !important;
    letter-spacing: -0.5px;
}
.navbar-brand span { color: var(--grey-800); }
.nav-link {
    color: var(--grey-700) !important;
    font-weight: 500;
    padding: 8px 16px !important;
    position: relative;
    transition: var(--transition);
}
.nav-link::after {
    content: '';
    position: absolute; bottom: 0; left: 50%; width: 0;
    height: 2px; background: var(--primary);
    transition: var(--transition);
    transform: translateX(-50%);
}
.nav-link:hover, .nav-link.active {
    color: var(--primary) !important;
}
.nav-link:hover::after, .nav-link.active::after {
    width: 70%;
}
.navbar .btn-primary {
    background: var(--primary);
    border: none;
    border-radius: 50px;
    padding: 8px 24px;
    font-weight: 600;
    transition: var(--transition);
}
.navbar .btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(26, 86, 219, 0.4);
}

/* ---- Hero Section ---- */
.hero-section {
    background: linear-gradient(135deg, var(--secondary) 0%, #1e3a5f 50%, var(--primary-dark) 100%);
    position: relative;
    padding: 140px 0 100px;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}
.hero-section::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.03)" d="M0,288L48,272C96,256,192,224,288,197.3C384,171,480,149,576,165.3C672,181,768,235,864,250.7C960,267,1056,245,1152,224C1248,203,1344,181,1392,170.7L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}
.hero-section .hero-content { position: relative; z-index: 2; }
.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}
.hero-section h1 span {
    background: linear-gradient(135deg, var(--accent), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-section p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    max-width: 540px;
    margin-bottom: 30px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 6px 16px;
    border-radius: 50px;
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}
.hero-stats {
    display: flex; gap: 40px; margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stats .stat h3 {
    font-size: 2rem; font-weight: 800; color: var(--white); margin: 0;
}
.hero-stats .stat p {
    font-size: 0.85rem; color: rgba(255,255,255,0.6); margin: 0;
}
.hero-image {
    position: relative; z-index: 2;
}
.hero-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
}

/* Floating shapes */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}
.shape-1 { width: 300px; height: 300px; background: var(--primary-light); top: -50px; right: -50px; animation-delay: 0s; }
.shape-2 { width: 200px; height: 200px; background: var(--accent); bottom: -30px; left: 10%; animation-delay: 2s; }
.shape-3 { width: 150px; height: 150px; background: var(--white); top: 30%; right: 20%; animation-delay: 4s; }

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

/* ---- Section Styles ---- */
section { padding: 80px 0; }

.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-header .badge-label {
    display: inline-block;
    background: rgba(26, 86, 219, 0.1);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--grey-900);
    margin-bottom: 15px;
}
.section-header p {
    font-size: 1.1rem;
    color: var(--grey-500);
    max-width: 600px;
    margin: 0 auto;
}
.section-divider {
    width: 60px; height: 4px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    border-radius: 2px;
    margin: 0 auto 15px;
}

/* ---- Service Cards ---- */
.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 35px 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--grey-200);
    height: 100%;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: var(--transition);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card .icon-box {
    width: 70px; height: 70px;
    background: linear-gradient(135deg, rgba(26, 86, 219, 0.1), rgba(6, 182, 212, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}
.service-card:hover .icon-box {
    background: linear-gradient(135deg, var(--primary), var(--accent));
}
.service-card .icon-box i {
    font-size: 28px;
    color: var(--primary);
    transition: var(--transition);
}
.service-card:hover .icon-box i { color: var(--white); }
.service-card h4 {
    font-weight: 700;
    color: var(--grey-900);
    margin-bottom: 12px;
}
.service-card p {
    color: var(--grey-500);
    font-size: 0.95rem;
}

/* ---- CHA Badge / Trust ---- */
.cha-badge-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 50px 0;
    color: var(--white);
}
.cha-license-number {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 2px;
    background: rgba(255,255,255,0.15);
    display: inline-block;
    padding: 10px 30px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.3);
}

/* ---- About Section ---- */
.about-section { background: var(--grey-50); }
.about-image-wrapper {
    position: relative;
}
.about-image-wrapper img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}
.experience-badge {
    position: absolute;
    bottom: -20px; right: -20px;
    background: var(--primary);
    color: var(--white);
    padding: 20px 25px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
}
.experience-badge h3 {
    font-size: 2.5rem; font-weight: 800; margin: 0; line-height: 1;
}
.experience-badge p { margin: 0; font-size: 0.85rem; opacity: 0.9; }

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 25px;
}
.about-feature-item {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 15px;
    background: var(--white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--grey-200);
}
.about-feature-item i {
    color: var(--success);
    font-size: 18px;
}

/* ---- Industry Cards ---- */
.industry-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px 25px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--grey-200);
    cursor: pointer;
}
.industry-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}
.industry-card i {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 15px;
}
.industry-card h5 {
    font-weight: 600;
    color: var(--grey-800);
    margin: 0;
}

/* ---- Stats Counter ---- */
.stats-section {
    background: linear-gradient(135deg, var(--secondary), var(--primary-dark));
    padding: 60px 0;
}
.stat-item {
    text-align: center; color: var(--white);
}
.stat-item h3 {
    font-size: 2.8rem; font-weight: 800; margin-bottom: 5px;
    background: linear-gradient(to right, var(--white), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-item p {
    color: rgba(255,255,255,0.7); font-size: 0.95rem; margin: 0;
}

/* ---- Testimonials ---- */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 35px;
    border: 1px solid var(--grey-200);
    transition: var(--transition);
    height: 100%;
}
.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.testimonial-card .stars {
    color: var(--warning);
    margin-bottom: 15px;
}
.testimonial-card .quote {
    font-style: italic;
    color: var(--grey-600);
    line-height: 1.8;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid var(--primary-light);
}
.testimonial-card .client-info {
    display: flex; align-items: center; gap: 12px;
}
.testimonial-card .client-info .avatar {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-weight: 700; font-size: 1.1rem;
}
.testimonial-card .client-info h6 {
    font-weight: 600; margin: 0; color: var(--grey-900);
}
.testimonial-card .client-info small {
    color: var(--grey-500);
}

/* ---- Blog Cards ---- */
.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--grey-200);
    height: 100%;
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.blog-card .card-img-top {
    height: 220px;
    object-fit: cover;
    transition: var(--transition);
}
.blog-card:hover .card-img-top { transform: scale(1.05); }
.blog-card .card-img-wrapper { overflow: hidden; }
.blog-card .card-body { padding: 25px; }
.blog-card .badge-date {
    display: inline-block;
    background: rgba(26, 86, 219, 0.1);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 12px;
}
.blog-card h5 {
    font-weight: 700; color: var(--grey-900);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-card p {
    color: var(--grey-500);
    font-size: 0.95rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ---- CTA Section ---- */
.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute; top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 60%);
}
.cta-section h2 { color: var(--white); font-weight: 800; font-size: 2.5rem; margin-bottom: 15px; }
.cta-section p { color: rgba(255,255,255,0.8); font-size: 1.15rem; margin-bottom: 30px; }
.btn-white {
    background: var(--white);
    color: var(--primary);
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: var(--transition);
}
.btn-white:hover {
    background: var(--grey-100);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* ---- Contact Section ---- */
.contact-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    border: 1px solid var(--grey-200);
    transition: var(--transition);
    height: 100%;
}
.contact-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}
.contact-card .icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, rgba(26, 86, 219, 0.1), rgba(6, 182, 212, 0.1));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 15px;
}
.contact-card .icon i { font-size: 24px; color: var(--primary); }
.contact-card h5 { font-weight: 600; color: var(--grey-800); }
.contact-card p { color: var(--grey-500); margin: 0; }

/* ---- Forms ---- */
.form-control, .form-select {
    border: 1px solid var(--grey-300);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 0.95rem;
    transition: var(--transition);
}
.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.15);
}
.form-label {
    font-weight: 500;
    color: var(--grey-700);
    margin-bottom: 6px;
}

/* ---- Buttons ---- */
.btn-primary {
    background: var(--primary);
    border: none;
    border-radius: 50px;
    padding: 12px 32px;
    font-weight: 600;
    transition: var(--transition);
}
.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(26, 86, 219, 0.4);
}
.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    padding: 10px 30px;
    font-weight: 600;
    background: transparent;
    transition: var(--transition);
}
.btn-outline-primary:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* ---- WhatsApp Button ---- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: pulse-whatsapp 2s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}
.whatsapp-float i {
    color: var(--white);
    font-size: 30px;
}
@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ---- Footer ---- */
.footer {
    background: var(--secondary);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}
.footer h5 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}
.footer h5::after {
    content: '';
    position: absolute; bottom: 0; left: 0;
    width: 40px; height: 3px;
    background: var(--primary);
    border-radius: 2px;
}
.footer p { color: rgba(255,255,255,0.6); }
.footer a { color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer a:hover { color: var(--primary-light); padding-left: 5px; }
.footer ul { list-style: none; padding: 0; }
.footer ul li { margin-bottom: 10px; }
.footer ul li i { color: var(--primary-light); margin-right: 8px; width: 16px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    margin-top: 40px;
}
.footer-social a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    margin-right: 8px;
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* ---- Page Header / Breadcrumb ---- */
.page-header {
    background: linear-gradient(135deg, var(--secondary), var(--primary-dark));
    padding: 120px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.03)" d="M0,96L48,128C96,160,192,224,288,229.3C384,235,480,181,576,181.3C672,181,768,235,864,250.7C960,267,1056,245,1152,213.3C1248,181,1344,139,1392,117.3L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}
.page-header h1 {
    color: var(--white); font-weight: 800; font-size: 2.8rem; margin-bottom: 10px;
    position: relative;
}
.page-header .breadcrumb {
    justify-content: center;
    background: transparent;
    margin: 0;
    position: relative;
}
.page-header .breadcrumb-item a { color: rgba(255,255,255,0.7); }
.page-header .breadcrumb-item.active { color: var(--accent); }
.page-header .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.5); }

/* ---- FAQ Accordion ---- */
.faq-accordion .accordion-item {
    border: 1px solid var(--grey-200);
    border-radius: var(--radius-sm) !important;
    margin-bottom: 12px;
    overflow: hidden;
}
.faq-accordion .accordion-button {
    font-weight: 600;
    color: var(--grey-800);
    background: var(--white);
    padding: 18px 24px;
    box-shadow: none !important;
}
.faq-accordion .accordion-button:not(.collapsed) {
    background: rgba(26, 86, 219, 0.05);
    color: var(--primary);
}
.faq-accordion .accordion-button::after {
    background-image: none;
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.8rem;
}
.faq-accordion .accordion-body {
    padding: 20px 24px;
    color: var(--grey-600);
    line-height: 1.8;
}

/* ---- Process Steps ---- */
.process-step {
    text-align: center;
    position: relative;
    padding: 0 15px;
}
.process-step .step-number {
    width: 70px; height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; font-weight: 800;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}
.process-step h5 { font-weight: 700; color: var(--grey-900); }
.process-step p { color: var(--grey-500); font-size: 0.95rem; }

/* ---- Back to Top ---- */
.back-to-top {
    position: fixed; bottom: 100px; right: 30px;
    width: 45px; height: 45px;
    background: var(--primary);
    color: var(--white);
    border: none; border-radius: 50%;
    display: none; align-items: center; justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow);
}
.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}
.back-to-top.show { display: flex; }

/* ---- Animations (AOS-like) ---- */
.fade-up {
    opacity: 0; transform: translateY(30px);
    transition: all 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .hero-section { padding: 100px 0 60px; min-height: auto; }
    .hero-section h1 { font-size: 2.5rem; }
    .hero-stats { gap: 20px; flex-wrap: wrap; }
    .about-features { grid-template-columns: 1fr; }
    .section-header h2 { font-size: 2rem; }
}

@media (max-width: 767px) {
    .hero-section h1 { font-size: 2rem; }
    .hero-section p { font-size: 1rem; }
    .hero-stats .stat h3 { font-size: 1.5rem; }
    section { padding: 50px 0; }
    .page-header { padding: 100px 0 40px; }
    .page-header h1 { font-size: 2rem; }
    .experience-badge { position: static; margin-top: 20px; display: inline-block; }
}
