/* =====================================================
   QA Troops - Professional QA Services Website
   Color Scheme: Dark Navy + Gold
   ===================================================== */

/* CSS Variables */
:root {
    --navy-dark: #020d1c;
    --navy: #0a1628;
    --navy-light: #1a2d4a;
    --navy-lighter: #243b5c;
    --gold: #f4c430;
    --gold-light: #ffd54f;
    --gold-dark: #c49b00;
    --white: #ffffff;
    --gray-100: #f8fafc;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --success: #10b981;
    --error: #ef4444;

    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition: all 0.3s ease;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --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);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-600);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

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

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }

.gold { color: var(--gold); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy-dark);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(244, 196, 48, 0.3);
}

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

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: transparent;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(2, 13, 28, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gold);
    color: var(--navy-dark);
    font-weight: 800;
    font-size: 14px;
    border-radius: 8px;
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    font-weight: 500;
}

.nav-menu a:hover {
    color: var(--gold);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(244, 196, 48, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(244, 196, 48, 0.05) 0%, transparent 40%);
}

.hero .container {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(244, 196, 48, 0.1);
    border: 1px solid rgba(244, 196, 48, 0.3);
    border-radius: 50px;
    color: var(--gold);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero h1 {
    color: var(--white);
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--gray-400);
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--gold);
}

.stat-label {
    font-size: 14px;
    color: var(--gray-400);
}

/* Code Window Visual */
.hero-visual {
    display: flex;
    justify-content: center;
}

.code-window {
    background: var(--navy-dark);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 500px;
    border: 1px solid var(--navy-lighter);
}

.code-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--navy);
    border-bottom: 1px solid var(--navy-lighter);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green { background: #28c840; }

.file-name {
    margin-left: auto;
    font-size: 12px;
    color: var(--gray-500);
}

.code-content {
    padding: 20px;
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 13px;
    line-height: 1.8;
    color: var(--gray-300);
    overflow-x: auto;
}

.code-content .keyword { color: #c792ea; }
.code-content .class { color: #ffcb6b; }
.code-content .function { color: #82aaff; }
.code-content .decorator { color: #c792ea; }
.code-content .string { color: #c3e88d; }
.code-content .number { color: #f78c6c; }
.code-content .comment { color: #546e7a; }
.code-content .success { color: var(--success); }

/* Trusted Section */
.trusted-section {
    padding: 40px 0;
    background: var(--gray-100);
    border-bottom: 1px solid var(--gray-200);
}

.trusted-label {
    text-align: center;
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 24px;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.logo-placeholder {
    padding: 12px 24px;
    background: var(--gray-200);
    border-radius: 8px;
    color: var(--gray-500);
    font-weight: 600;
    font-size: 14px;
}

/* Section Styles */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(244, 196, 48, 0.1);
    color: var(--gold-dark);
    font-size: 13px;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-header p {
    font-size: 18px;
    color: var(--gray-500);
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 32px;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.service-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border: none;
}

.service-card.featured h3,
.service-card.featured p,
.service-card.featured li {
    color: var(--white);
}

.service-card.featured .service-icon {
    background: rgba(244, 196, 48, 0.2);
    color: var(--gold);
}

.service-card.featured .service-link {
    color: var(--gold);
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: 12px;
    margin-bottom: 20px;
    color: var(--navy);
}

.service-icon svg {
    width: 28px;
    height: 28px;
}

.service-card h3 {
    margin-bottom: 12px;
}

.service-card p {
    font-size: 15px;
    color: var(--gray-500);
    margin-bottom: 16px;
}

.service-features {
    margin-bottom: 20px;
}

.service-features li {
    font-size: 14px;
    color: var(--gray-600);
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--navy);
    font-weight: 600;
    font-size: 14px;
}

.service-link:hover {
    color: var(--gold-dark);
}

.service-link span {
    transition: var(--transition);
}

.service-link:hover span {
    transform: translateX(4px);
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: var(--gray-100);
}

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

.about-lead {
    font-size: 18px;
    color: var(--gray-600);
    margin-bottom: 40px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature {
    display: flex;
    gap: 16px;
    align-items: center;
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    border-radius: 10px;
    color: var(--navy-dark);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-content h4 {
    margin-bottom: 4px;
    color: var(--navy);
}

.feature-content p {
    font-size: 14px;
    color: var(--gray-500);
}

.stats-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.stats-header {
    padding: 20px 24px;
    background: var(--navy);
    color: var(--white);
    font-weight: 600;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.stat-item {
    padding: 32px 24px;
    text-align: center;
    border-bottom: 1px solid var(--gray-200);
    border-right: 1px solid var(--gray-200);
}

.stat-item:nth-child(2n) {
    border-right: none;
}

.stat-item:nth-child(n+3) {
    border-bottom: none;
}

.stat-value {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--navy);
}

.stat-desc {
    font-size: 14px;
    color: var(--gray-500);
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: var(--white);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process-step {
    position: relative;
    padding: 32px;
    background: var(--gray-100);
    border-radius: 16px;
    transition: var(--transition);
}

.process-step:hover {
    background: var(--navy);
}

.process-step:hover .step-number,
.process-step:hover h3,
.process-step:hover p {
    color: var(--white);
}

.process-step:hover .step-number {
    color: var(--gold);
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--gray-200);
    margin-bottom: 16px;
    transition: var(--transition);
}

.step-content h3 {
    margin-bottom: 8px;
}

.step-content p {
    font-size: 14px;
    color: var(--gray-500);
    transition: var(--transition);
}

/* Locations Section */
.locations-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
}

.locations-section .section-tag {
    background: rgba(244, 196, 48, 0.2);
    color: var(--gold);
}

.locations-section h2 {
    color: var(--white);
}

.locations-section .section-header p {
    color: var(--gray-400);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.location-card {
    background: var(--navy-light);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    gap: 24px;
    border: 1px solid var(--navy-lighter);
}

.location-flag {
    flex-shrink: 0;
    width: 60px;
    height: 40px;
    border-radius: 4px;
    overflow: hidden;
}

.location-flag svg,
.location-flag .flag-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-info h3 {
    color: var(--white);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hq-badge {
    font-size: 10px;
    padding: 4px 8px;
    background: var(--gold);
    color: var(--navy-dark);
    border-radius: 4px;
    font-weight: 700;
}

.location-city {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 12px;
}

.location-desc {
    font-size: 14px;
    color: var(--gray-400);
    margin-bottom: 16px;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.location-details span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray-400);
}

.location-details svg {
    width: 16px;
    height: 16px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--gold);
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    color: var(--navy-dark);
    margin-bottom: 16px;
}

.cta-content p {
    color: var(--navy);
    font-size: 18px;
    margin-bottom: 32px;
}

.cta-section .btn-primary {
    background: var(--navy-dark);
    color: var(--white);
}

.cta-section .btn-primary:hover {
    background: var(--navy);
    box-shadow: 0 10px 20px rgba(2, 13, 28, 0.3);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: var(--gray-100);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
}

.contact-info h2 {
    margin-bottom: 16px;
}

.contact-info > p {
    color: var(--gray-500);
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
}

.method-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 10px;
    color: var(--navy);
    box-shadow: var(--shadow);
}

.method-icon svg {
    width: 22px;
    height: 22px;
}

.method-label {
    display: block;
    font-size: 12px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.method-details a {
    font-weight: 600;
    color: var(--navy);
}

.method-details a:hover {
    color: var(--gold-dark);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(244, 196, 48, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-note {
    font-size: 13px;
    color: var(--gray-500);
    text-align: center;
}

/* Footer */
.footer {
    background: var(--navy-dark);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--navy-light);
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--gray-500);
    font-size: 14px;
    margin-bottom: 24px;
    max-width: 280px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy-light);
    border-radius: 8px;
    color: var(--gray-400);
}

.social-links a:hover {
    background: var(--gold);
    color: var(--navy-dark);
}

.social-links svg {
    width: 18px;
    height: 18px;
}

.footer-links h4 {
    color: var(--white);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--gray-500);
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
}

.footer-bottom p {
    color: var(--gray-500);
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: var(--gray-500);
    font-size: 14px;
}

.footer-legal a:hover {
    color: var(--gold);
}

.footer-credit {
    font-size: 13px;
    color: var(--gray-500);
}

.footer-credit a {
    color: var(--gold);
    font-weight: 500;
}

.footer-credit a:hover {
    color: var(--gold-light);
}

/* =====================================================
   Careers Page Styles
   ===================================================== */

.page-hero {
    position: relative;
    padding: 180px 0 100px;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
    text-align: center;
}

.page-hero .hero-bg {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(244, 196, 48, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(244, 196, 48, 0.05) 0%, transparent 40%);
}

.page-hero-content {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 20px;
}

.page-hero .hero-subtitle {
    color: var(--gray-400);
    font-size: 18px;
}

/* Benefits Grid */
.careers-why {
    padding: 100px 0;
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.benefit-card {
    padding: 32px;
    background: var(--gray-100);
    border-radius: 16px;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    background: var(--white);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    border-radius: 12px;
    color: var(--navy-dark);
    margin-bottom: 20px;
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
}

.benefit-card h3 {
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 14px;
    color: var(--gray-500);
}

/* Positions Section */
.positions-section {
    padding: 100px 0;
    background: var(--gray-100);
}

.positions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.position-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.position-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-lg);
}

.position-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.position-header h3 {
    font-size: 18px;
}

.position-type {
    background: rgba(244, 196, 48, 0.1);
    color: var(--gold-dark);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.position-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
}

.position-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--gray-500);
}

.position-meta svg {
    width: 16px;
    height: 16px;
}

.position-card p {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 16px;
}

.position-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.position-skills span {
    background: var(--gray-100);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    color: var(--gray-600);
}

/* Apply Section */
.apply-section {
    padding: 100px 0;
    background: var(--white);
}

.apply-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
}

.apply-info h2 {
    margin-bottom: 16px;
}

.apply-info > p {
    color: var(--gray-500);
    margin-bottom: 40px;
}

.apply-process h4 {
    margin-bottom: 20px;
    color: var(--navy);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hire-step {
    display: flex;
    align-items: center;
    gap: 16px;
}

.step-num {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: var(--navy-dark);
    font-weight: 700;
    font-size: 14px;
    border-radius: 50%;
}

.hire-step span:last-child {
    color: var(--gray-600);
    font-size: 15px;
}

.apply-form-wrapper {
    background: var(--gray-100);
    border-radius: 20px;
    padding: 40px;
}

.apply-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* File Upload Styles */
.file-upload {
    position: relative;
}

.file-upload input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px;
    border: 2px dashed var(--gray-300);
    border-radius: 10px;
    background: var(--white);
    transition: var(--transition);
}

.file-upload:hover .file-upload-label {
    border-color: var(--gold);
    background: rgba(244, 196, 48, 0.05);
}

.file-upload-label svg {
    width: 32px;
    height: 32px;
    color: var(--gray-400);
    margin-bottom: 12px;
}

.file-upload-label span {
    font-size: 14px;
    color: var(--navy);
    font-weight: 500;
}

.file-upload-label small {
    font-size: 12px;
    color: var(--gray-500);
    margin-top: 4px;
}

/* reCAPTCHA wrapper */
.recaptcha-wrapper {
    display: flex;
    justify-content: center;
}

/* =====================================================
   Blog Page Styles
   ===================================================== */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.blog-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.blog-card-image {
    height: 200px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.blog-card-image svg {
    width: 48px;
    height: 48px;
    opacity: 0.5;
}

.blog-card-content {
    padding: 24px;
}

.blog-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
}

.blog-meta span {
    font-size: 12px;
    color: var(--gray-500);
}

.blog-category {
    background: rgba(244, 196, 48, 0.1);
    color: var(--gold-dark);
    padding: 2px 10px;
    border-radius: 20px;
    font-weight: 600;
}

.blog-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card h3 a {
    color: var(--navy);
}

.blog-card h3 a:hover {
    color: var(--gold-dark);
}

.blog-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
}

.blog-section {
    padding: 100px 0;
    background: var(--gray-100);
}

.blog-coming-soon {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.blog-coming-soon p {
    color: var(--gray-600);
    margin-bottom: 20px;
    font-size: 16px;
}

.subscribe-form {
    display: flex;
    gap: 12px;
    max-width: 450px;
    margin: 0 auto;
}

.subscribe-form input {
    flex: 1;
    padding: 14px 18px;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
}

.subscribe-form input:focus {
    outline: none;
    border-color: var(--gold);
}

@media (max-width: 480px) {
    .subscribe-form {
        flex-direction: column;
    }
}

/* Responsive - Careers & Blog */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .apply-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

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

    .position-header {
        flex-direction: column;
        gap: 12px;
    }

    .position-meta {
        flex-direction: column;
        gap: 8px;
    }

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

    .apply-form-wrapper {
        padding: 24px;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtitle {
        margin: 0 auto 32px;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card.featured {
        grid-column: span 2;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--navy-dark);
        flex-direction: column;
        justify-content: center;
        gap: 32px;
        transform: translateX(-100%);
        transition: var(--transition);
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu a {
        font-size: 24px;
    }

    .nav-actions .btn {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

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

    .service-card.featured {
        grid-column: span 1;
    }

    .process-timeline {
        grid-template-columns: 1fr;
    }

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

    .location-card {
        flex-direction: column;
        text-align: center;
    }

    .location-details {
        align-items: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
    }

    .btn-lg {
        padding: 14px 28px;
    }

    .trusted-logos {
        gap: 24px;
    }

    .contact-form-wrapper {
        padding: 24px;
    }
}
