.hero-section {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    padding: 60px 40px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11,31,56,0.9) 0%, rgba(11,31,56,0.75) 50%, rgba(42,168,196,0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    padding: 40px 20px;
    text-align: left;
    color: var(--text-light);
    flex: 1;
}

.hero-logo {
    margin-bottom: 20px;
}

.hero-logo img {
    max-width: 280px;
    height: auto;
    filter: drop-shadow(0 4px 15px rgba(0,0,0,0.3));
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin: 0 0 20px 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.hero-divider {
    width: 100px;
    height: 4px;
    background: var(--gold);
    margin: 0 0 25px;
}

.hero-text {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.7;
    margin-bottom: 30px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.hero-phone-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--navy);
    padding: 18px 35px;
    border-radius: var(--radius-full);
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-gold);
}

.hero-phone-btn i {
    font-size: 24px;
}

.hero-phone-btn:hover {
    color: var(--navy);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(200,150,43,0.5);
}

.hero-cta-btn {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    color: var(--text-light);
    padding: 18px 35px;
    border-radius: var(--radius-full);
    font-size: var(--spacing-md);
    font-weight: 600;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.3);
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
}

.hero-cta-btn:hover {
    background: rgba(255,255,255,0.25);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.hero-cta-wrapper {
    margin-top: 20px;
}

.hero-form-container {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.hero-form {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 35px;
    width: 340px;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.hero-form h3 {
    color: var(--gold);
    font-size: 1.4rem;
    margin-bottom: 5px;
    text-align: center;
}

.hero-form h3 i {
    margin-right: var(--spacing-sm);
}

.hero-form-subtitle {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-align: center;
    margin-bottom: 25px;
    font-style: italic;
}

.quick-quote-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-form-group input {
    width: 100%;
    padding: var(--spacing-md) 18px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-md);
    font-size: 15px;
    background: var(--bg-input);
    color: var(--text-light);
    transition: all var(--transition-fast);
}

.hero-form-group input::placeholder {
    color: var(--text-dim);
}

.hero-form-group input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255,255,255,0.15);
}

.hero-form-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--navy);
    border: none;
    border-radius: var(--radius-full);
    font-size: var(--spacing-md);
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.hero-form-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.hero-trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.hero-trust-badges span {
    color: var(--text-muted);
    font-size: var(--spacing-sm);
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-trust-badges i {
    color: var(--gold);
}

@media (max-width: 992px) {
    .hero-section {
        flex-direction: column;
        padding: 40px 20px;
        min-height: auto;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
        padding: 20px;
    }

    .hero-divider {
        margin: 0 auto 25px;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-form-container {
        margin-top: 40px;
    }

    .hero-form {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 576px) {
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .hero-phone-btn, .hero-cta-btn {
        width: 100%;
        justify-content: center;
    }
}
