/* =============================================
   FALCON SKYDIVE – PHASE 2 ADDITIONS
   Non-destructive frontend polish on top of the
   existing theme-style.css / theme-bridge.css.
   ============================================= */

/* ---- 2.1 HERO OVERLAY + CTA ---- */
.hero-simple-swiper { position: relative; }
.hero-simple-swiper .hero-slide { position: relative; }

.hero-slide .simple-hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: clamp(24px, 6vw, 80px);
    background: linear-gradient(105deg,
        rgba(9, 18, 46, 0.82) 0%,
        rgba(9, 18, 46, 0.62) 45%,
        rgba(9, 18, 46, 0.25) 75%,
        rgba(9, 18, 46, 0.05) 100%);
    color: #fff;
    z-index: 2;
    pointer-events: none;
}

.hero-slide .simple-hero-copy {
    max-width: 640px;
    pointer-events: auto;
}

.hero-slide .simple-hero-copy .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 18px;
}

.hero-slide .simple-hero-copy h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    line-height: 1.05;
    font-size: clamp(1.85rem, 4.4vw, 3.6rem);
    color: #ffffff;
    margin: 0 0 14px;
    letter-spacing: -0.01em;
    text-shadow: 0 4px 22px rgba(0, 0, 0, 0.35);
}
.hero-slide .simple-hero-copy h1 span { color: #ffb547; }

.hero-slide .simple-hero-copy p {
    font-size: clamp(0.95rem, 1.4vw, 1.15rem);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.92);
    margin: 0 0 26px;
    max-width: 520px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.hero-slide .simple-hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.hero-slide .simple-hero-cta .btn-primary,
.hero-slide .simple-hero-cta .btn-outline {
    padding: 12px 26px;
    font-size: 0.9rem;
    border-radius: 999px;
    font-weight: 700;
}
.hero-slide .simple-hero-cta .btn-outline {
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.85);
    color: #fff;
}
.hero-slide .simple-hero-cta .btn-outline:hover {
    background: rgba(255, 255, 255, 0.18);
}

/* Make banner image behave like a poster */
.hero-simple-swiper .hero-banner-image {
    width: 100%;
    height: clamp(340px, 44vw, 600px);
    object-fit: cover;
    object-position: center;
    display: block;
}

@media (max-width: 640px) {
    .hero-slide .simple-hero-overlay {
        background: linear-gradient(180deg,
            rgba(9, 18, 46, 0.55) 0%,
            rgba(9, 18, 46, 0.78) 100%);
        justify-content: center;
        text-align: center;
    }
    .hero-slide .simple-hero-copy { text-align: center; }
    .hero-slide .simple-hero-copy p { margin-left: auto; margin-right: auto; }
    .hero-slide .simple-hero-cta { justify-content: center; }
    .hero-simple-swiper .hero-banner-image {
        height: 380px;
    }
}

/* ---- 2.2 CATEGORY CARDS POLISH ---- */
.categories-section .cat-card {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.categories-section .cat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(17, 32, 58, 0.18);
}
.categories-section .cat-card .cat-img {
    transition: transform 0.6s ease;
}
.categories-section .cat-card:hover .cat-img {
    transform: scale(1.05);
}
.categories-section .cat-card .cat-overlay {
    background: linear-gradient(180deg,
        rgba(9, 18, 46, 0) 40%,
        rgba(9, 18, 46, 0.82) 100%);
    transition: background 0.35s ease;
}
.categories-section .cat-card:hover .cat-overlay {
    background: linear-gradient(180deg,
        rgba(9, 18, 46, 0.15) 0%,
        rgba(9, 18, 46, 0.88) 100%);
}

/* ---- 2.3 WHY CHOOSE US ---- */
.why-choose-section {
    padding: 80px 0 70px;
    background: linear-gradient(180deg, #f6f9ff 0%, #ffffff 100%);
}
.why-choose-section .section-header { margin-bottom: 46px; }
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}
.why-card {
    background: #ffffff;
    border: 1px solid #e6ecf6;
    border-radius: 18px;
    padding: 28px 26px;
    box-shadow: 0 8px 22px rgba(17, 32, 58, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}
.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 44px rgba(17, 32, 58, 0.14);
    border-color: #d5deee;
}
.why-card .why-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #ffffff;
    background: linear-gradient(135deg, #1f3f79, #2E63C6);
    box-shadow: 0 12px 24px rgba(46, 99, 198, 0.28);
    margin-bottom: 18px;
}
.why-card:nth-child(2) .why-icon { background: linear-gradient(135deg, #d94f5c, #e63946); box-shadow: 0 12px 24px rgba(230, 57, 70, 0.28); }
.why-card:nth-child(3) .why-icon { background: linear-gradient(135deg, #0f9d76, #16b487); box-shadow: 0 12px 24px rgba(15, 157, 118, 0.28); }
.why-card:nth-child(4) .why-icon { background: linear-gradient(135deg, #6e51c9, #8a6bff); box-shadow: 0 12px 24px rgba(110, 81, 201, 0.28); }
.why-card:nth-child(5) .why-icon { background: linear-gradient(135deg, #f2994a, #f6b545); box-shadow: 0 12px 24px rgba(242, 153, 74, 0.28); }
.why-card:nth-child(6) .why-icon { background: linear-gradient(135deg, #1798a5, #21c1d1); box-shadow: 0 12px 24px rgba(33, 193, 209, 0.28); }
.why-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #11203c;
    margin: 0 0 10px;
    line-height: 1.3;
}
.why-card p {
    font-size: 0.92rem;
    color: #56637b;
    line-height: 1.65;
    margin: 0;
}
@media (max-width: 992px) {
    .why-choose-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
    .why-choose-grid { grid-template-columns: 1fr; }
    .why-choose-section { padding: 60px 0 50px; }
}

/* ---- 2.5 VIEW ALL PRODUCTS ---- */
.products-view-all {
    margin-top: 34px;
    text-align: center;
}
.products-view-all .btn-primary {
    padding: 12px 32px;
    font-size: 0.92rem;
}

/* ---- 2.6 FOOTER POLISH ---- */
.main-footer .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    margin-right: 8px;
    transition: background 0.25s ease, transform 0.25s ease;
}
.main-footer .footer-social a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}
.main-footer .footer-links ul li a { transition: color 0.2s ease, padding 0.2s ease; }
.main-footer .footer-links ul li a:hover { color: #ffb547; padding-left: 4px; }

/* ---- General small utility ---- */
.text-center { text-align: center; }
