/* ============================================================
   HERO SECTION CSS
   Fully Responsive - Image hidden on mobile
   Metbaber - Main Hero Section
   ============================================================ */

/* Hero Section Container */
.hero-section {
    position: relative;
    background: var(--brand-cream, #F9F5EE);
    padding: 80px 0;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    position: relative;
    z-index: 2;
}

/* Grid Layout */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* ============================================================
   LEFT CONTENT STYLES
   ============================================================ */
.hero-content {
    max-width: 600px;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(200, 37, 30, 0.1);
    padding: 6px 16px;
    border-radius: 9999px;
    margin-bottom: 24px;
    font-size: 12px;
    font-weight: 600;
    color: var(--brand-red, #C8251E);
    font-family: var(--font-mono, monospace);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--brand-red, #C8251E);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

/* Title */
.hero-title {
    font-family: var(--font-serif, 'Instrument Serif', serif);
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.2;
    color: var(--brand-ink, #18110A);
    margin-bottom: 24px;
}

.hero-title-highlight {
    color: var(--brand-red, #C8251E);
    font-style: italic;
    position: relative;
    display: inline-block;
}

.hero-title-highlight::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 0;
    height: 8px;
    background: rgba(200, 37, 30, 0.2);
    z-index: -1;
    border-radius: 4px;
}

/* Description */
.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--brand-ink-muted, #6A5840);
    margin-bottom: 16px;
}

.hero-description-amharic {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--brand-ink-faint, #A0896F);
    margin-bottom: 32px;
    font-style: italic;
    border-left: 3px solid var(--brand-gold, #C4882A);
    padding-left: 16px;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    border: none;
}

.hero-btn-primary {
    background: var(--brand-red, #C8251E);
    color: white;
    box-shadow: 0 4px 15px rgba(200, 37, 30, 0.3);
}

.hero-btn-primary:hover {
    background: var(--brand-red-dark, #A01A14);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(200, 37, 30, 0.4);
}

.hero-btn-secondary {
    background: transparent;
    color: var(--brand-red, #C8251E);
    border: 2px solid var(--brand-red, #C8251E);
}

.hero-btn-secondary:hover {
    background: var(--brand-red, #C8251E);
    color: white;
    transform: translateY(-3px);
}

/* Trust Indicators */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 1px solid rgba(196, 136, 42, 0.2);
}

.hero-trust-avatars {
    display: flex;
    align-items: center;
}

.hero-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif, serif);
    font-size: 14px;
    font-weight: 600;
    color: white;
    border: 2px solid var(--brand-cream, #F9F5EE);
    margin-left: -8px;
}

.hero-avatar:first-child {
    margin-left: 0;
}

.hero-avatar-count {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--brand-cream, #F9F5EE);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--brand-ink, #18110A);
    border: 2px solid rgba(196, 136, 42, 0.3);
    margin-left: -8px;
}

.hero-trust-text p {
    font-size: 12px;
    color: var(--brand-ink-muted, #6A5840);
    margin-top: 4px;
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: 4px;
}

.hero-rating i {
    color: var(--brand-gold, #C4882A);
    font-size: 12px;
}

.hero-rating span {
    font-size: 12px;
    font-weight: 600;
    color: var(--brand-ink, #18110A);
    margin-left: 6px;
}

/* ============================================================
   RIGHT IMAGE STYLES
   ============================================================ */
.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image-container {
    position: relative;
    max-width: 500px;
    width: 100%;
}

.hero-image {
    width: 100%;
    height: auto;
    animation: float 4s ease-in-out infinite;
}

/* Floating Cards */
.hero-float-card {
    position: absolute;
    background: white;
    padding: 10px 18px;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-ink, #18110A);
    white-space: nowrap;
    z-index: 10;
}

.hero-float-card i {
    font-size: 16px;
}

.hero-float-1 {
    top: 10%;
    right: -10%;
    animation: floatCard 3s ease-in-out infinite;
}

.hero-float-2 {
    bottom: 20%;
    left: -15%;
    animation: floatCard 3.5s ease-in-out infinite reverse;
}

.hero-float-3 {
    top: 40%;
    right: -5%;
    animation: floatCard 4s ease-in-out infinite;
}

.hero-float-card i.fa-check-circle {
    color: #059669;
}

.hero-float-card i.fa-users {
    color: var(--brand-red, #C8251E);
}

.hero-float-card i.fa-clock {
    color: var(--brand-gold, #C4882A);
}

/* ============================================================
   BACKGROUND DECORATIONS
   ============================================================ */
.hero-bg-decoration {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.hero-bg-1 {
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(200, 37, 30, 0.08) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

.hero-bg-2 {
    bottom: -15%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(196, 136, 42, 0.06) 0%, transparent 70%);
    animation: pulse 10s ease-in-out infinite reverse;
}

.hero-bg-3 {
    top: 30%;
    left: 20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(200, 37, 30, 0.04) 0%, transparent 70%);
    animation: pulse 12s ease-in-out infinite;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-10px) translateX(5px);
    }
}

/* ============================================================
   RESPONSIVE DESIGN - IMAGE HIDDEN ON MOBILE
   ============================================================ */

/* Tablet (768px - 1024px) - Show image but smaller */
@media (max-width: 1024px) {
    .hero-section {
        padding: 60px 0;
        min-height: auto;
    }
    
    .hero-grid {
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-image-container {
        max-width: 400px;
    }
    
    .hero-float-1,
    .hero-float-2,
    .hero-float-3 {
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .hero-float-card i {
        font-size: 12px;
    }
}

/* Mobile Landscape (576px - 768px) - Hide image */
@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    /* Hide image wrapper on mobile */
    .hero-image-wrapper {
        display: none;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-description-amharic {
        font-size: 0.9rem;
        text-align: left;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .hero-trust {
        justify-content: center;
        text-align: center;
    }
    
    .hero-trust-avatars {
        justify-content: center;
    }
    
    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }
}

/* Mobile Portrait (up to 576px) */
@media (max-width: 576px) {
    .hero-section {
        padding: 30px 0;
    }
    
    .hero-container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-title-highlight::after {
        bottom: 4px;
        height: 6px;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .hero-description-amharic {
        font-size: 0.85rem;
        padding-left: 12px;
    }
    
    .hero-buttons {
        gap: 12px;
    }
    
    .hero-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .hero-btn i {
        font-size: 12px;
    }
    
    .hero-trust {
        gap: 16px;
    }
    
    .hero-avatar,
    .hero-avatar-count {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }
    
    .hero-rating i {
        font-size: 10px;
    }
    
    .hero-rating span {
        font-size: 11px;
    }
    
    .hero-trust-text p {
        font-size: 11px;
    }
}

/* Small Mobile (up to 380px) */
@media (max-width: 380px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-badge {
        font-size: 10px;
        padding: 4px 12px;
    }
    
    .hero-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .hero-trust-avatars {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Tablet Portrait (768px - 1024px) - Keep image visible but smaller */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-image-wrapper {
        display: block;
    }
    
    .hero-float-1 {
        top: 5%;
        right: -5%;
    }
    
    .hero-float-2 {
        bottom: 15%;
        left: -10%;
    }
    
    .hero-float-3 {
        top: 35%;
        right: 0;
    }
}

/* Desktop (1025px and above) */
@media (min-width: 1025px) {
    .hero-image-wrapper {
        display: block;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
}

/* Large Desktop (1440px and above) */
@media (min-width: 1440px) {
    .hero-container {
        max-width: 1400px;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-description {
        font-size: 1.2rem;
    }
    
    .hero-image-container {
        max-width: 600px;
    }
}

/* ============================================================
   ACCESSIBILITY & PERFORMANCE
   ============================================================ */

/* Reduced Motion Preference */
@media (prefers-reduced-motion: reduce) {
    .hero-image,
    .hero-float-card,
    .hero-bg-decoration {
        animation: none;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
        transition: none;
    }
    
    .hero-btn-primary:hover,
    .hero-btn-secondary:hover {
        transform: none;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .hero-badge {
        border: 1px solid currentColor;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
        border: 2px solid currentColor;
    }
}

/* Print Styles */
@media print {
    .hero-section {
        background: white;
        padding: 20px;
    }
    
    .hero-image-wrapper,
    .hero-bg-decoration,
    .hero-btn {
        display: none;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content {
        text-align: left;
    }
}