/* Hero Section - Optimized Design */
.hero {
    position: relative;
    min-height: calc(100vh - 80px);
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.95) 0%, 
        rgba(255, 165, 0, 0.9) 50%, 
        rgba(255, 140, 0, 0.95) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
}

/* Hero Content Container */
.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 80px);
}

/* Hero Layout - Centered Design */
.hero-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}



/* Center Content */
.hero-center-content {
    text-align: center;
    position: relative;
}

/* Logo Section */
.hero-logo-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.hero-logo-main {
    position: relative;
    display: inline-block;
}

.main-logo-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.9);
    box-shadow: 
        0 0 30px rgba(244, 185, 66, 0.6),
        0 20px 40px rgba(0, 0, 0, 0.3);
    animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-8px) scale(1.03); }
}

/* Title Section */
.hero-title-wrapper {
    margin-bottom: 1.5rem;
}

.hero-title-main {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    color: white;
    text-shadow: 
        0 0 30px rgba(244, 185, 66, 0.8),
        3px 3px 6px rgba(0, 0, 0, 0.5);
    margin: 0 0 1.8rem 0;
    letter-spacing: 1px;
}

.hero-location-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    border: 2px solid rgba(244, 185, 66, 0.3);
    box-shadow: 0 4px 15px rgba(244, 185, 66, 0.2);
    color: #2C3E50;
    font-size: 1.1rem;
    font-weight: 600;
}

.hero-location-badge i {
    color: #F4B942;
    font-size: 1.2em;
}

/* Subtitle Section */
.hero-subtitle-wrapper {
    margin-bottom: 2.5rem;
}

.hero-description {
    font-size: clamp(1.1rem, 2.2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    margin: 0;
    font-weight: 600;
}

/* Buttons Section */
.hero-buttons-wrapper {
    display: flex;
    gap: 1.8rem;
    justify-content: center;
    margin-bottom: 2.8rem;
    flex-wrap: wrap;
}

.hero-btn {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 1.1rem 2.2rem;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.25),
        0 4px 12px rgba(0, 0, 0, 0.15);
    border: none;
    position: relative;
    overflow: hidden;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.hero-btn:hover::before {
    left: 100%;
}

.instagram-button {
    background: linear-gradient(135deg, #E4405F 0%, #C13584 50%, #833AB4 100%);
    color: white;
}

.facebook-button {
    background: linear-gradient(135deg, #1877F2 0%, #166FE5 100%);
    color: white;
}

.call-button {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: white;
}

.hero-btn:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.35),
        0 6px 15px rgba(0, 0, 0, 0.2);
}

.hero-btn i {
    font-size: 1.35rem;
    transition: transform 0.3s ease;
}

.hero-btn:hover i {
    transform: scale(1.1);
}

/* Special Offer Card - Modern Design */
.special-offer-card {
    position: relative;
    display: inline-block;
    margin: 1.5rem 0 2rem 0;
    animation: cardFloat 4s ease-in-out infinite;
}

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

.offer-badge {
    position: absolute;
    top: -8px;
    right: 12px;
    z-index: 2;
}

.offer-label {
    background: linear-gradient(135deg, #E74C3C, #C0392B);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.4);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.offer-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(255, 248, 240, 0.95) 100%);
    backdrop-filter: blur(20px);
    padding: 1.4rem 1.8rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.6);
    box-shadow: 
        0 12px 35px rgba(244, 185, 66, 0.35),
        0 6px 15px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.offer-content:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 16px 45px rgba(244, 185, 66, 0.4),
        0 8px 20px rgba(0, 0, 0, 0.2);
}

.offer-icon {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    box-shadow: 
        0 4px 12px rgba(255, 165, 0, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 
            0 4px 12px rgba(255, 165, 0, 0.4),
            inset 0 2px 4px rgba(255, 255, 255, 0.3);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 
            0 6px 16px rgba(255, 165, 0, 0.6),
            inset 0 2px 4px rgba(255, 255, 255, 0.3);
    }
}

.offer-details {
    flex: 1;
    text-align: right;
}

.offer-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #2C3E50;
    margin-bottom: 0.3rem;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.offer-description {
    font-size: 0.9rem;
    color: #7F8C8D;
    font-weight: 500;
    line-height: 1.3;
}

.offer-arrow {
    color: #FFD700;
    font-size: 1.2rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.offer-content:hover .offer-arrow {
    opacity: 1;
    transform: translateX(-3px);
}

/* Social Media Icons - Bottom */
.social-icons-bottom {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.social-icon.facebook {
    background: linear-gradient(135deg, #1877F2 0%, #166FE5 100%);
    color: white;
}

.social-icon.instagram {
    background: linear-gradient(135deg, #E4405F 0%, #C13584 50%, #833AB4 100%);
    color: white;
}

.social-icon:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Trust Section */


/* Background Elements */
.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    animation: floatUpDown 6s ease-in-out infinite;
}

.circle-1 { width: 80px; height: 80px; top: 20%; left: 10%; animation-delay: 0s; }
.circle-2 { width: 60px; height: 60px; top: 60%; right: 10%; animation-delay: 2s; }
.circle-3 { width: 100px; height: 100px; bottom: 20%; left: 15%; animation-delay: 4s; }

@keyframes floatUpDown {
    0%, 100% { transform: translateY(0px); opacity: 0.7; }
    50% { transform: translateY(-20px); opacity: 1; }
}

/* Premium Badge */
.hero-badge {
    position: absolute;
    top: 60px;
    right: 20px;
    z-index: 15;
    animation: badgePulse 3s ease-in-out infinite;
}

.badge-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 220, 0.95));
    backdrop-filter: blur(20px);
    padding: 14px 24px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 
        0 8px 25px rgba(244, 185, 66, 0.4),
        0 4px 10px rgba(255, 215, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(255, 215, 0, 0.4);
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.badge-content i {
    color: #E8A317;
    font-size: 1.2rem;
    text-shadow: 0 1px 2px rgba(244, 185, 66, 0.3);
}

.badge-content span {
    color: #1A1A1A;
    font-weight: 700;
    font-size: 0.95rem;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}



/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: calc(100vh - 80px);
    }
    
    .hero-content {
        padding: 1rem;
        min-height: calc(100vh - 80px);
    }
    
    .hero-logo-wrapper {
        margin-bottom: 1.5rem;
    }
    
    .main-logo-image {
        width: 120px;
        height: 120px;
    }
    
    .hero-title-main {
        font-size: clamp(2.5rem, 8vw, 4rem);
        margin-bottom: 0.8rem;
    }
    
    .special-offer-card {
        margin: 1rem 0 1.5rem 0;
    }

    .offer-content {
        padding: 1.4rem 1.8rem;
        gap: 1rem;
    }

    .offer-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

         .offer-title {
         font-size: 1.1rem;
     }
     
     .offer-description {
         font-size: 0.85rem;
     }
    
    .hero-subtitle-wrapper {
        margin-bottom: 2rem;
    }
    

    
    .hero-description {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
    }
    
    .hero-buttons-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 0.9rem 1.8rem;
        font-size: 1rem;
    }

    .social-icons-bottom {
        gap: 0.8rem;
        margin-top: 1.5rem;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    

    
    .floating-circle {
        display: none;
    }
    
    .hero-badge {
        top: 50px;
        right: 15px;
    }
    
    .badge-content {
        padding: 10px 16px;
        font-size: 0.82rem;
    }
    
    .badge-content i {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: calc(100vh - 70px);
    }
    
    .hero-content {
        padding: 0.75rem;
        min-height: calc(100vh - 70px);
    }
    
    .hero-logo-wrapper {
        margin-bottom: 1.2rem;
    }

    .special-offer-card {
        margin: 0.8rem 0 1.2rem 0;
    }

    .offer-content {
        padding: 1.2rem 1.6rem;
        gap: 0.8rem;
    }

    .offer-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

         .offer-title {
         font-size: 1rem;
     }
     
     .offer-description {
         font-size: 0.8rem;
     }

    .social-icons-bottom {
        gap: 0.6rem;
        margin-top: 1.2rem;
    }

    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .main-logo-image {
        width: 100px;
        height: 100px;
    }
    
    .hero-title-main {
        font-size: clamp(2rem, 7vw, 3rem);
        margin-bottom: 0.6rem;
    }
    
    .hero-location-badge {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
    
    .hero-subtitle-wrapper {
        margin-bottom: 1.5rem;
    }
    

    
    .hero-description {
        font-size: clamp(0.85rem, 4vw, 1rem);
    }
    
    .hero-buttons-wrapper {
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-btn {
        max-width: 250px;
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
    
    
    
    .hero-badge {
        top: 40px;
        right: 10px;
    }
    
    .badge-content {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    .particles {
        display: none;
    }
} 