body {
    font-family: 'Poppins', sans-serif;
}

.top-bar {
    background: #0A3D62;
    font-size: 14px;
}

.main-navbar {
    background: #0A3D62;
}

.nav-link {
    color: white !important;
    font-weight: 500;
}

.nav-link:hover {
    color: #F39C12 !important;
}

.hero-section {
    background: url('https://picsum.photos/1920/900') center/cover no-repeat;
    color: white;
    padding: 150px 0;
    text-align: center;
    position: relative;
}

.hero-section::before {
    content: "";
    position: absolute;
    top:0; left:0;
    width:100%; height:100%;
    background: rgba(0,0,0,0.6);
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.section-padding {
    padding: 80px 0;
}

.footer {
    background: #0A3D62;
}

.footer a {
    color: white;
    text-decoration: none;
}

.footer a:hover {
    color: #F39C12;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    font-size: 30px;
    text-decoration: none;
}

.call-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 37px;
    text-decoration: none;
}

/* ═══════════════════════════════════════════════
   HOMEPAGE – NEW SECTIONS
═══════════════════════════════════════════════ */

/* HERO */
.hero-section {
    background: linear-gradient(135deg, #0A3D62 0%, #1a6496 50%, #0d5a8a 100%);
    color: white;
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    background: rgba(243,156,18,0.08);
    border-radius: 50%;
    top: -200px; right: -100px;
}
.hero-section::after {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
    bottom: -150px; left: -80px;
}
.hero-section .container { position: relative; z-index: 2; }
.hero-badge {
    display: inline-block;
    background: rgba(243,156,18,0.2);
    border: 1px solid rgba(243,156,18,0.5);
    color: #F39C12;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.hero-btn-main {
    box-shadow: 0 8px 25px rgba(243,156,18,0.4);
    transition: all 0.3s;
}
.hero-btn-main:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(243,156,18,0.5); }
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    background: rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 20px;
    backdrop-filter: blur(10px);
    max-width: 600px;
    margin: 0 auto;
}
.hero-stat { text-align: center; padding: 8px 24px; }
.hero-stat strong { display: block; font-size: 26px; font-weight: 800; color: #F39C12; }
.hero-stat span { font-size: 12px; opacity: 0.7; }
.hero-stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }

/* TRUST BAR */
.trust-bar {
    background: #1a1a2e;
    padding: 14px 0;
    overflow: hidden;
}
.trust-items {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}
.trust-items span {
    color: #F39C12;
    font-weight: 600;
    font-size: 13px;
    white-space: nowrap;
}

/* HOME SECTIONS */
.home-section { padding: 90px 0; }
.bg-section-alt { background: #f8fafd; }
.section-tag {
    display: inline-block;
    background: #e8f4fd;
    color: #0A3D62;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 0.3px;
}
.section-heading {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.25;
    margin-bottom: 16px;
}
.text-highlight { color: #0A3D62; position: relative; }
.section-desc {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}
.feature-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.pill {
    background: #e8f4fd;
    color: #0A3D62;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid #cce0f0;
}

/* SERVICE MINI CARDS */
.service-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.service-mini-card {
    background: white;
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    transition: all 0.25s;
    border: 2px solid transparent;
    color: #1a1a2e;
}
.service-mini-card:hover {
    border-color: #0A3D62;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(10,61,98,0.15);
    color: #0A3D62;
}
.service-mini-icon { font-size: 38px; }
.service-mini-card strong { font-size: 14px; font-weight: 700; }
.service-mini-card small { font-size: 11px; color: #888; }

/* WORKER TYPES */
.worker-types { display: flex; flex-direction: column; gap: 10px; }
.worker-type-chip {
    display: flex;
    align-items: center;
    gap: 14px;
    background: white;
    border-radius: 12px;
    padding: 12px 18px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border-left: 4px solid #0A3D62;
}
.worker-type-chip span { font-size: 24px; }
.worker-type-chip strong { display: block; font-size: 14px; color: #1a1a2e; }
.worker-type-chip small { color: #27ae60; font-weight: 600; font-size: 12px; }

/* LABOUR INFO CARD */
.labour-info-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.09);
}
.labour-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.labour-side {
    background: #f8fafd;
    border-radius: 12px;
    padding: 20px;
}
.labour-side.for-worker { border-top: 3px solid #27ae60; }
.labour-side.for-hirer { border-top: 3px solid #F39C12; }
.labour-side ul li { font-size: 13px; margin-bottom: 6px; color: #555; }

/* BROKER PROBLEM SECTION */
.broker-problem-section {
    background: linear-gradient(135deg, #c0392b 0%, #922b21 100%);
    padding: 90px 0;
}
.problem-card {
    background: rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    color: white;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.3s;
}
.problem-card:hover { background: rgba(255,255,255,0.18); transform: translateY(-4px); }
.problem-icon { font-size: 40px; margin-bottom: 14px; }

/* STEPS */
.step-card {
    background: white;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    position: relative;
    transition: all 0.3s;
    height: 100%;
}
.step-card:hover { transform: translateY(-6px); box-shadow: 0 15px 40px rgba(0,0,0,0.12); }
.step-number {
    width: 44px; height: 44px;
    background: #0A3D62;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    margin: 0 auto 16px;
}
.step-icon { font-size: 44px; }

/* PRICING CARDS */
.pricing-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0,0,0,0.09);
    transition: all 0.3s;
    background: white;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: 0 15px 40px rgba(0,0,0,0.14); }
.pricing-header {
    padding: 28px 24px;
    text-align: center;
    color: white;
}
.pricing-icon { font-size: 44px; margin-bottom: 10px; }
.pricing-amount { font-size: 28px; font-weight: 800; margin-top: 8px; }
.pricing-body { padding: 24px; }
.pricing-features { list-style: none; padding: 0; margin: 0; }
.pricing-features li { padding: 6px 0; font-size: 13px; color: #555; border-bottom: 1px solid #f0f0f0; }
.pricing-features li:last-child { border-bottom: none; }

/* STATES SECTION */
.states-section {
    background: linear-gradient(135deg, #0A3D62, #1565c0);
    padding: 80px 0;
}
.states-grid { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 10px; }
.state-chip {
    background: rgba(255,255,255,0.15);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.25);
    transition: all 0.2s;
}
.state-chip:hover { background: rgba(243,156,18,0.3); border-color: #F39C12; }

/* ABOUT FEATURE BOXES */
.about-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.about-badge {
    background: #e8f4fd;
    color: #0A3D62;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid #cce0f0;
}
.about-feature-box {
    background: white;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
    text-align: center;
    height: 100%;
    transition: all 0.25s;
}
.about-feature-box:hover { box-shadow: 0 8px 25px rgba(10,61,98,0.12); transform: translateY(-3px); }

/* CONTACT CARDS */
.contact-card {
    display: block;
    background: white;
    border-radius: 20px;
    padding: 36px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    transition: all 0.3s;
    color: #1a1a2e;
    border: 2px solid transparent;
}
.contact-card:hover { border-color: #0A3D62; transform: translateY(-5px); box-shadow: 0 15px 40px rgba(10,61,98,0.13); color: #0A3D62; }
.contact-icon {
    width: 70px; height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto;
}

/* FINAL CTA */
.final-cta-section {
    background: linear-gradient(135deg, #0A3D62 0%, #0d5a8a 100%);
    padding: 100px 0 80px;
}

/* MOBILE ADJUSTMENTS */
@media (max-width: 768px) {
    .hero-section { padding: 70px 0 60px; }
    .section-heading { font-size: 1.6rem; }
    .home-section { padding: 60px 0; }
    .hero-stat strong { font-size: 20px; }
    .labour-row { grid-template-columns: 1fr; }
    .hero-stats { gap: 0; }
    .hero-stat { padding: 8px 14px; }
    .hero-stat-divider { display: none; }
    .broker-problem-section, .states-section, .final-cta-section { padding: 60px 0; }
}
