/* Hero Section Enhanced Styles */

/* Animated Background Shapes */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--main-green) 0%, var(--main-green-light) 100%);
    top: -100px;
    right: -50px;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #6A5ACD 0%, #9370DB 100%);
    bottom: -50px;
    left: 10%;
    animation: float 10s ease-in-out infinite reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--main-green-light) 0%, var(--main-green) 100%);
    top: 50%;
    left: -30px;
    animation: float 12s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(5deg);
    }
}

/* Hero Search Bar */
.hero-search {
    display: flex;
    gap: 12px;
    margin: 24px 0 20px 0;
    position: relative;
    z-index: 1;
}

.hero-search-input {
    flex: 1;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 15px;
    outline: none;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-search-input:focus {
    border-color: var(--main-green);
    box-shadow: 0 0 0 4px rgba(159, 188, 11, 0.1);
    background: #fff;
}

.hero-search-btn {
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--main-green) 0%, var(--main-green-light) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(159, 188, 11, 0.3);
}

.hero-search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(159, 188, 11, 0.4);
}

/* Quick Action Buttons */
.hero-quick-actions {
    display: flex;
    gap: 12px;
    margin: 20px 0;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.quick-action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.quick-action-btn:hover {
    transform: translateY(-2px);
    border-color: var(--main-green);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.quick-action-primary {
    background: linear-gradient(135deg, var(--main-green) 0%, var(--main-green-light) 100%);
    color: white;
    border-color: var(--main-green);
}

.quick-action-primary:hover {
    box-shadow: 0 6px 16px rgba(159, 188, 11, 0.4);
}

.action-icon {
    font-size: 18px;
}

/* Trust Indicators / Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 28px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    border: 1px solid rgba(159, 188, 11, 0.2);
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 24px;
    font-weight: 800;
    color: var(--main-green);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(159, 188, 11, 0.2);
}

/* Main Actions Below Hero */
.main-actions-below {
    margin: 32px auto 40px;
    max-width: 1400px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-slider {
        flex-direction: column;
        padding: 36px 24px;
    }

    .hero-left,
    .hero-right {
        width: 100%;
    }

    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-divider {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        padding: 28px 20px;
    }

    .hero-left h2 {
        font-size: 28px;
    }

    .hero-left p {
        font-size: 15px;
    }

    .hero-search {
        flex-direction: column;
    }

    .hero-search-btn {
        width: 100%;
    }

    .hero-cta-main {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
    }

    .hero-quick-actions {
        flex-direction: column;
    }

    .quick-action-btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        gap: 16px;
        padding: 16px;
    }

    .stat-number {
        font-size: 20px;
    }

    .stat-label {
        font-size: 11px;
    }

    .shape-1,
    .shape-2,
    .shape-3 {
        opacity: 0.04;
    }
}