/* ===== Hero ===== */
.hero-section {
    position: relative;
    padding-top: 70px;
}
@media (min-width: 640px) {
    .hero-section { padding-top: 90px; }
}
@media (min-width: 1024px) {
    .hero-section { padding-top: 110px; }
}
.hero-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 70%, rgba(0,0,0,0.7) 100%);
}

/* ===== Search Card ===== */
.search-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10), 0 1px 4px rgba(0,0,0,0.06);
}
.search-field-group {
    background: #f9fafb;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    padding: 8px 14px;
    transition: border-color 0.2s ease;
}
.search-field-group:focus-within {
    border-color: #1B60C1;
    background: #fff;
}
.search-field-group label {
    font-size: 11px;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.search-btn {
    background: linear-gradient(135deg, #1B60C1 0%, #0f4299 100%);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    padding: 12px 32px;
    border-radius: 10px;
    letter-spacing: 0.03em;
    transition: all 0.25s ease;
    white-space: nowrap;
}
.search-btn:hover {
    box-shadow: 0 6px 20px rgba(27, 96, 193, 0.4);
    transform: translateY(-1px);
}

/* ===== Guest Stepper ===== */
.guest-stepper {
    display: flex;
    align-items: center;
    gap: 8px;
}
.guest-stepper button {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1.5px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #1B60C1;
    font-size: 16px;
    background: #fff;
    cursor: pointer;
    transition: all 0.15s;
}
.guest-stepper button:hover {
    background: #f0f6ff;
    border-color: #1B60C1;
}
.guest-stepper span {
    width: 24px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
}
.guest-dropdown {
    position: absolute;
    z-index: 20;
    top: calc(100% + 4px);
    left: 0;
    width: 280px;
    background: #fff;
    border-radius: 14px;
    border: 1.5px solid #e5e7eb;
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
    padding: 16px;
}

/* ===== Section Headings ===== */
.section-heading {
    font-size: 20px;
    font-weight: 800;
    color: #111827;
    letter-spacing: -0.02em;
}
.section-heading-line {
    width: 36px;
    height: 3px;
    background: linear-gradient(135deg, #1B60C1, #3b82f6);
    border-radius: 2px;
    margin-top: 6px;
}

/* ===== Promo Cards ===== */
.promo-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1.5px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.promo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.10);
}
.promo-card img {
    transition: transform 0.4s ease;
}
.promo-card:hover img {
    transform: scale(1.04);
}

/* ===== Reach / Stats ===== */
.reach-section {
    background: linear-gradient(135deg, #1A4C9A 0%, #0f3470 50%, #1B60C1 100%);
    position: relative;
    overflow: hidden;
}
.reach-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 260px;
    height: 260px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
}
.reach-section::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -40px;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
}
.stat-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    padding: 24px 16px;
    text-align: center;
    backdrop-filter: blur(8px);
    transition: background 0.3s ease, transform 0.3s ease;
}
.stat-card:hover {
    background: rgba(255,255,255,0.14);
    transform: translateY(-2px);
}

/* ===== Banner ===== */
.banner-wrapper {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

/* ===== Testimonial ===== */
.testimonial-section {
    background: #f8fafc;
    border-radius: 14px;
    border: 1.5px solid #e5e7eb;
    position: relative;
}
.testimonial-quote {
    font-size: 56px;
    line-height: 1;
    color: #1B60C1;
    opacity: 0.2;
    font-family: Georgia, serif;
}

/* ===== Blog Cards ===== */
.blog-card {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}
.blog-card img {
    transition: transform 0.4s ease;
}
.blog-card:hover img {
    transform: scale(1.04);
}
.blog-tag {
    background: linear-gradient(135deg, #1B60C1, #3b82f6);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 6px;
    letter-spacing: 0.02em;
}
.blog-category-pill {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s ease;
    border: 1.5px solid #e5e7eb;
    background: #fff;
    color: #6b7280;
}
.blog-category-pill:hover {
    border-color: #1B60C1;
    color: #1B60C1;
}
.blog-category-pill.active {
    background: #1B60C1;
    color: #fff;
    border-color: #1B60C1;
}
