.hero {
    height: 85vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 0;
    position: relative;
    overflow: hidden;
    background: url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15,23,42,0.95) 0%, rgba(15,23,42,0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-text p {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.hero-form-box {
    background: var(--bg-surface);
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.hero-form-box h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
}

@media (max-width: 1024px) {
    .hero {
        height: auto;
        min-height: auto;
        padding: 140px 0 60px;
        display: block;
    }
    .hero-content { grid-template-columns: 1fr; gap: 40px; }
    .hero-text { text-align: center; }
    .hero-text p { margin: 0 auto 30px; }
    .hero-btns { justify-content: center; }
}
@media (max-width: 768px) {
    .hero { padding: 140px 0 60px; }
    .hero-text h1 { font-size: 2.5rem; }
    .hero-form-box { padding: 24px; }
    .hero-btns { flex-direction: column; width: 100%; }
    .hero-btns .btn { width: 100%; }
}



.feature-box {
    text-align: center;
    padding: 40px 30px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-main);
    color: var(--primary);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 24px;
    transition: var(--transition);
}

.feature-box:hover .feature-icon {
    background: var(--primary);
    color: #fff;
    transform: translateY(-10px);
}

.feature-box h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}
