/* Modern Hero Section - Exact Figma Design */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

.hero-modern-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px 0 80px;
    /* ลบ background ออก */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* ลบ opacity และ filter ออก */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
}

/* ลบ Decorative Shapes ออกหมด */

.hero-modern-content {
    position: relative;
    z-index: 2;
}

.hero-text-area {
    max-width: 650px;
}

/* Typography exactly like Figma */
.hero-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    color: white;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-title .text-green {
    color: #1EE800;
    position: relative;
}

.hero-subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 28px;
    font-weight: 500;
    color: #1EE800;
    margin-bottom: 40px;
}

/* Search Box - Figma Style */
.hero-search-modern {
    margin-top: 40px;
}

.search-wrapper {
    background: white;
    border-radius: 100px;
    padding: 8px 8px 8px 24px;
    display: flex;
    align-items: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    max-width: 520px;
    min-height: 64px;
}

.search-input-group {
    flex: 1;
    display: flex;
    align-items: center;
}

.search-icon {
    margin-right: 16px;
    opacity: 0.5;
}

.search-input {
    border: none;
    outline: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    width: 100%;
    color: #1F2937;
    background: transparent;
}

.search-input::placeholder {
    color: #9CA3AF;
}

.search-button {
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    color: white;
    border: none;
    border-radius: 100px;
    padding: 16px 48px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.search-button:hover {
    background: linear-gradient(135deg, #7C3AED 0%, #6D28D9 100%);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.4);
}

/* Container adjustments */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.position-relative {
    position: relative;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 56px;
    }
    
    .hero-subtitle {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .hero-modern-section {
        padding: 80px 0 60px;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .search-wrapper {
        flex-direction: column;
        border-radius: 24px;
        padding: 20px;
        max-width: 100%;
    }
    
    .search-input-group {
        width: 100%;
        margin-bottom: 16px;
        padding-left: 0;
    }
    
    .search-button {
        width: 100%;
        padding: 16px 32px;
    }
    
    .shape-1,
    .shape-2 {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
}