/* 
* Packages Hero Section - Simplified
* Modern Minimal Design
* Version: 1.0
*/

/* ============================================
   HERO SECTION - PACKAGES
   ============================================ */

.hero {
    background: linear-gradient(135deg, #FF6B35 0%, #FFA500 100%) !important;
    color: white !important;
    padding: 0 !important;
    position: relative !important;
    overflow: hidden !important;
    min-height: 50vh !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    opacity: 0.1;
}

.tiger-stripes {
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 30px,
        rgba(255, 215, 0, 0.3) 30px,
        rgba(255, 215, 0, 0.3) 60px
    );
    animation: stripeMove 30s linear infinite;
}

@keyframes stripeMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(60px); }
}

/* Hide unnecessary elements */
.floating-elements,
.hero-badge,
.breadcrumbs,
.hero-features,
.trust-signals,
.hero-visual,
.hero-stats {
    display: none !important;
}

/* Container */
.hero .container {
    position: relative !important;
    z-index: 2 !important;
    max-width: 900px !important;
    padding: 0 1.5rem !important;
}

/* Content */
.hero-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 2rem !important;
}

/* Title */
.hero-title {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 0;
    width: 100%;
}

.title-main {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    text-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
    line-height: 1.1;
    letter-spacing: -2px;
}

.title-sub {
    font-size: 1.4rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
    line-height: 1.5;
}

/* Description */
.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1.25rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-cta,
.hero-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-cta {
    background: white;
    color: #FF6B35;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.hero-cta:hover {
    background: #FFD700;
    color: #1A1A1A;
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.hero-contact {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.hero-contact:hover {
    background: white;
    color: #FF6B35;
    transform: translateY(-5px);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .hero {
        min-height: 55vh !important;
    }

    .title-main {
        font-size: 3rem;
    }

    .title-sub {
        font-size: 1.25rem;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

/* Mobile (< 768px) */
@media (max-width: 768px) {
    .hero {
        min-height: 60vh !important;
    }

    .hero .container {
        padding: 0 1.25rem !important;
    }

    .hero-content {
        gap: 1.5rem !important;
    }

    .title-main {
        font-size: 2.25rem;
    }

    .title-sub {
        font-size: 1.15rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-item {
        padding: 1rem;
    }

    .stat-icon {
        font-size: 1.75rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta,
    .hero-contact {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
}

/* Small Mobile (< 480px) */
@media (max-width: 480px) {
    .title-main {
        font-size: 2rem;
    }

    .title-sub {
        font-size: 1.05rem;
    }

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