/* ============================================================
   UPSKILL.ID - LANDING PAGE CSS
   ============================================================
   Style khusus untuk halaman landing (index.html)
============================================================ */


/* ============================================================
   1. HERO SECTION
   ============================================================ */

.hero {
    position: relative;
    background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
    padding: 60px 0 80px;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

/* Background Pattern */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(234, 179, 8, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Dot pattern overlay */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 1024px) {
    .hero-container {
        grid-template-columns: 1.2fr 1fr;
    }
}

/* Hero Content (Left) */
.hero-content {
    color: white;
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(234, 179, 8, 0.15);
    border: 1px solid rgba(234, 179, 8, 0.3);
    color: #FDE047;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: white;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }
}

.hero-title-highlight {
    color: #EAB308;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 540px;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

/* Hero Search Bar */
.hero-search {
    background: white;
    border-radius: 16px;
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    margin-bottom: 24px;
    max-width: 540px;
}

.hero-search-icon {
    padding-left: 16px;
    color: #64748B;
    font-size: 1.25rem;
}

.hero-search-input {
    flex: 1;
    padding: 12px 8px;
    border: none;
    outline: none;
    font-size: 1rem;
    color: #1E293B;
    background: transparent;
    min-width: 0;
}

.hero-search-input::placeholder {
    color: #94A3B8;
}

.hero-search-btn {
    padding: 12px 24px;
    background: #EAB308;
    color: #1E293B;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.hero-search-btn:hover {
    background: #FDE047;
    transform: translateY(-1px);
}

/* Popular Search */
.hero-popular {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.hero-popular-label {
    font-weight: 600;
}

.hero-popular-tag {
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    border-radius: 9999px;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    cursor: pointer;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-popular-tag:hover {
    background: rgba(234, 179, 8, 0.2);
    color: #FDE047;
    border-color: rgba(234, 179, 8, 0.5);
    transform: translateY(-1px);
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 32px;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 640px) {
    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hero-stat {
    text-align: left;
}

.hero-stat-number {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #EAB308;
    line-height: 1;
    margin-bottom: 4px;
}

@media (min-width: 640px) {
    .hero-stat-number {
        font-size: 2.5rem;
    }
}

.hero-stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Hero CTA Buttons */
.hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-cta-primary {
    padding: 16px 32px;
    background: #EAB308;
    color: #1E293B;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 30px rgba(234, 179, 8, 0.3);
}

.hero-cta-primary:hover {
    background: #FDE047;
    color: #1E293B;
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(234, 179, 8, 0.4);
}

.hero-cta-secondary {
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
}

.hero-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Hero Visual (Right) */
.hero-visual {
    position: relative;
    display: none;
    animation: fadeInRight 1s ease-out 0.3s backwards;
}

@media (min-width: 1024px) {
    .hero-visual {
        display: block;
    }
}

.hero-image {
    width: 100%;
    max-width: 500px;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    display: block;
    margin: 0 auto;
}

/* Floating Cards */
.hero-floating-card {
    position: absolute;
    background: white;
    padding: 16px 20px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 3s ease-in-out infinite;
}

.hero-floating-card-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.hero-floating-card-2 {
    bottom: 15%;
    left: -10%;
    animation-delay: 1s;
}

.hero-floating-card-3 {
    top: 50%;
    right: -5%;
    animation-delay: 2s;
}

.floating-card-icon {
    font-size: 1.5rem;
    padding: 8px;
    background: #FEF9C3;
    border-radius: 8px;
}

.floating-card-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1E293B;
}

.floating-card-subtext {
    font-size: 0.75rem;
    color: #64748B;
}


/* ============================================================
   2. TRUST BAR SECTION
   ============================================================ */

.trust-bar {
    background: #F8FAFC;
    padding: 40px 0;
    border-bottom: 1px solid #E2E8F0;
}

.trust-title {
    text-align: center;
    font-size: 0.875rem;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 24px;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 0 24px;
}

.trust-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: white;
    border-radius: 8px;
    font-weight: 600;
    color: #64748B;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.trust-logo:hover {
    opacity: 1;
}

.trust-logo-icon {
    font-size: 1.5rem;
}


/* ============================================================
   3. SECTION COMMON STYLES
   ============================================================ */

.section {
    padding: 80px 0;
}

.section-white {
    background: white;
}

.section-gray {
    background: #F8FAFC;
}

.section-dark {
    background: #1E293B;
    color: white;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(234, 179, 8, 0.1);
    color: #A16207;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #1E293B;
    margin-bottom: 16px;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}

.section-subtitle {
    font-size: 1.125rem;
    color: #64748B;
    line-height: 1.6;
}

.section-dark .section-title {
    color: white;
}

.section-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
}


/* ============================================================
   4. VALUE PROPOSITION
   ============================================================ */

.value-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .value-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.value-card {
    text-align: center;
    padding: 32px 24px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.value-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FEF9C3 0%, #FDE047 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 24px;
    box-shadow: 0 10px 20px rgba(234, 179, 8, 0.2);
}

.value-card-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 12px;
}

.value-card-description {
    color: #64748B;
    line-height: 1.6;
}


/* ============================================================
   5. CATEGORIES SECTION
   ============================================================ */

.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.category-item {
    background: white;
    padding: 24px;
    border-radius: 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-decoration: none;
    display: block;
}

.category-item:hover {
    transform: translateY(-4px);
    border-color: #EAB308;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.category-icon {
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 12px;
    display: block;
}

.category-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 4px;
}

.category-count {
    font-size: 0.875rem;
    color: #64748B;
}


/* ============================================================
   6. FEATURED COURSES
   ============================================================ */

.courses-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 16px;
}

.courses-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
}

.course-tab {
    padding: 8px 20px;
    background: white;
    color: #64748B;
    border: 2px solid #E2E8F0;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.course-tab:hover {
    color: #1E293B;
    border-color: #1E293B;
}

.course-tab.active {
    background: #1E293B;
    color: white;
    border-color: #1E293B;
}

.view-all-link {
    color: #EAB308;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
    font-size: 0.9375rem;
}

.view-all-link:hover {
    color: #CA8A04;
    gap: 8px;
}

.courses-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .courses-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1280px) {
    .courses-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}


/* ============================================================
   7. LEARNING PATH
   ============================================================ */

.learning-path {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.learning-path::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(234, 179, 8, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.path-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

@media (min-width: 1024px) {
    .path-container {
        grid-template-columns: 1fr 1fr;
    }
}

.path-content {
    color: white;
}

.path-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(234, 179, 8, 0.2);
    color: #FDE047;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.path-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.25rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .path-title {
        font-size: 2.75rem;
    }
}

.path-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 32px;
}

.path-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}

.path-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.path-feature-check {
    width: 24px;
    height: 24px;
    background: #EAB308;
    color: #1E293B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 700;
    font-size: 0.875rem;
}

/* Path Visual */
.path-visual {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.path-milestone {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.path-milestone:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #EAB308;
    transform: translateX(8px);
}

.path-milestone-number {
    width: 48px;
    height: 48px;
    background: #EAB308;
    color: #1E293B;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.path-milestone-content {
    flex: 1;
}

.path-milestone-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.path-milestone-desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}


/* ============================================================
   8. MENTOR SHOWCASE
   ============================================================ */

.mentors-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .mentors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .mentors-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}


/* ============================================================
   9. TESTIMONIALS
   ============================================================ */

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* ============================================================
   10. BIG STATS
   ============================================================ */

.big-stats {
    background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.big-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.big-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

@media (min-width: 768px) {
    .big-stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.big-stat {
    text-align: center;
    color: white;
}

.big-stat-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
}

.big-stat-number {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #EAB308;
    line-height: 1;
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    .big-stat-number {
        font-size: 4rem;
    }
}

.big-stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}


/* ============================================================
   11. NEWSLETTER CTA
   ============================================================ */

.newsletter-section {
    background: linear-gradient(135deg, #EAB308 0%, #FDE047 100%);
    padding: 80px 0;
    text-align: center;
}

.newsletter-container {
    max-width: 640px;
    margin: 0 auto;
    padding: 0 24px;
}

.newsletter-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #1E293B;
    margin-bottom: 16px;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .newsletter-title {
        font-size: 2.5rem;
    }
}

.newsletter-subtitle {
    font-size: 1.125rem;
    color: rgba(30, 41, 59, 0.85);
    margin-bottom: 32px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 480px;
    margin: 0 auto 16px;
    flex-wrap: wrap;
}

.newsletter-input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    color: #1E293B;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    min-width: 200px;
}

.newsletter-input::placeholder {
    color: #94A3B8;
}

.newsletter-btn {
    padding: 14px 28px;
    background: #1E293B;
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: #0F172A;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.newsletter-note {
    font-size: 0.875rem;
    color: rgba(30, 41, 59, 0.7);
    margin-top: 12px;
}


/* ============================================================
   12. FINAL CTA
   ============================================================ */

.final-cta {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(234, 179, 8, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.final-cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.final-cta-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .final-cta-title {
        font-size: 3.5rem;
    }
}

.final-cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    line-height: 1.6;
}

.final-cta-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 32px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
}

.final-cta-feature {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.final-cta-feature-check {
    color: #EAB308;
    font-weight: 700;
}


/* ============================================================
   ANIMATIONS
   ============================================================ */

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.fade-in-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ============================================================
   RESPONSIVE ADJUSTMENTS
   ============================================================ */

@media (max-width: 640px) {
    .hero {
        padding: 40px 0 60px;
    }
    
    .hero-search {
        padding: 6px;
    }
    
    .hero-search-input {
        padding: 10px 8px;
        font-size: 0.9375rem;
    }
    
    .hero-search-btn {
        padding: 10px 16px;
        font-size: 0.875rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .final-cta-features {
        gap: 16px;
        flex-direction: column;
    }
}