/* ========================================
   MODERN HERO SECTION - Mobile First
   ======================================== */

.modern-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #014289 0%, #0C4380 100%);
    overflow: hidden;
    padding: 80px 0 60px;
}

/* Background Image with Overlay */
.modern-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../../../images/slides/slider-1.png');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

/* Decorative Shapes */
.modern-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: #fff;
    clip-path: polygon(0 100%, 100% 100%, 100% 50%, 0 100%);
    z-index: 1;
}

.modern-hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.modern-hero-content {
    text-align: center;
    color: #fff;
}

/* Main Heading */
.modern-hero h1 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.modern-hero h1 .highlight {
    color: #FFD700;
    display: block;
    font-size: 38px;
    margin-top: 10px;
}

/* Subheading */
.modern-hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Trust Indicators */
.modern-hero-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 35px;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge i {
    font-size: 18px;
    color: #FFD700;
}

/* CTA Buttons */
.modern-hero-ctas {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.hero-cta-primary,
.hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-cta-primary {
    background: #FFD700;
    color: #014289;
    border-color: #FFD700;
}

.hero-cta-primary:hover {
    background: #FFC700;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    color: #014289;
    text-decoration: none;
}

.hero-cta-primary i {
    font-size: 20px;
    animation: ring 1.5s ease-in-out infinite;
}

@keyframes ring {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-10deg); }
    20%, 40% { transform: rotate(10deg); }
}

.hero-cta-secondary {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
}

/* Phone Number Display */
.hero-phone-display {
    font-size: 32px;
    font-weight: 800;
    color: #FFD700;
    margin-top: 25px;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-phone-display a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.hero-phone-display a:hover {
    color: #FFC700;
    text-decoration: none;
}

/* Service Icons */
.modern-hero-services {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-service-item {
    text-align: center;
    max-width: 150px;
}

.hero-service-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-service-icon i {
    font-size: 28px;
    color: #FFD700;
}

.hero-service-text {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
}

/* ========================================
   TABLET (768px and up)
   ======================================== */
@media (min-width: 768px) {
    .modern-hero {
        min-height: 600px;
        padding: 100px 0 80px;
    }

    .modern-hero h1 {
        font-size: 42px;
    }

    .modern-hero h1 .highlight {
        font-size: 52px;
        margin-top: 15px;
    }

    .modern-hero-subtitle {
        font-size: 20px;
    }

    .hero-badge {
        font-size: 15px;
    }

    .hero-cta-primary,
    .hero-cta-secondary {
        font-size: 19px;
        padding: 18px 36px;
    }

    .hero-phone-display {
        font-size: 38px;
    }
}

/* ========================================
   DESKTOP (992px and up)
   ======================================== */
@media (min-width: 992px) {
    .modern-hero {
        min-height: 650px;
    }

    .modern-hero h1 {
        font-size: 48px;
    }

    .modern-hero h1 .highlight {
        font-size: 58px;
    }

    .modern-hero-subtitle {
        font-size: 22px;
        max-width: 700px;
    }

    .modern-hero-badges {
        gap: 25px;
    }

    .hero-badge {
        font-size: 16px;
        padding: 12px 22px;
    }

    .hero-cta-primary,
    .hero-cta-secondary {
        font-size: 20px;
        padding: 20px 40px;
    }

    .hero-phone-display {
        font-size: 42px;
    }

    .modern-hero-services {
        gap: 40px;
    }

    .hero-service-item {
        max-width: 180px;
    }

    .hero-service-icon {
        width: 70px;
        height: 70px;
    }

    .hero-service-icon i {
        font-size: 32px;
    }

    .hero-service-text {
        font-size: 15px;
    }
}

/* ========================================
   LARGE DESKTOP (1200px and up)
   ======================================== */
@media (min-width: 1200px) {
    .modern-hero {
        min-height: 700px;
    }

    .modern-hero h1 {
        font-size: 54px;
    }

    .modern-hero h1 .highlight {
        font-size: 64px;
    }

    .modern-hero-subtitle {
        font-size: 24px;
        max-width: 800px;
    }
}

/* ========================================
   ACCESSIBILITY
   ======================================== */
.modern-hero a:focus,
.modern-hero button:focus {
    outline: 3px solid #FFD700;
    outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .hero-cta-primary:hover,
    .hero-cta-secondary:hover {
        transform: none;
    }

    @keyframes ring {
        0%, 100% { transform: rotate(0deg); }
    }
}
