/* Hero Section */
.hero-section {
    height: 500px;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(26, 43, 95, 0) 0%,
        rgba(45, 68, 148, 0) 100%
    );
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 2;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 193, 7, 0.2);
    padding: 8px 20px;
    border-radius: 25px;
    border: 1px solid var(--accent-yellow);
}

.badge-icon {
    font-size: 20px;
}

.badge-text {
    color: white;
    font-weight: 500;
}

.hero-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0;
}

.btn-primary {
    color: #ffffff;
    width: 174;
    height: 48;
    opacity: 1;
    top: 451px;
    left: 153px;
    border-radius: 20px;
    border-bottom-width: 4px;
    padding-top: 10px;
    padding-right: 24px;
    padding-bottom: 10px;
    padding-left: 24px;
    gap: 8px;
    background: #222f6e;
    border-bottom: 4px solid #edbe3c;
}

/* Contact Section */
.contact-section {
    background-color: #f8f9fa;
}

.contact-info-card {
    background: var(--primary-blue);
    padding: 40px;
    border-radius: 15px;
    height: 100%;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 193, 7, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-yellow);
    font-size: 24px;
    flex-shrink: 0;
}

.info-icon.whatsapp {
    background-color: rgba(37, 211, 102, 0.2);
    color: #25d366;
}

.info-content h5 {
    margin-bottom: 5px;
}

.info-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-link:hover {
    color: white;
}

.divider {
    border: 1px solid var(--accent-yellow);
    margin: 25px 0;
}

/* Form */
.form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.form-subtitle {
    color: var(--secondary-blue);
    font-weight: 600;
    margin-bottom: 5px;
}

.form-title {
    color: var(--primary-blue);
    font-size: 2.5rem;
    font-weight: 700;
}

.form-input {
    background-color: var(--primary-blue);
    border: none;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 16px;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-input:focus {
    background-color: var(--secondary-blue);
    color: white;
    box-shadow: 0 0 0 0.25rem rgba(45, 68, 148, 0.25);
}

textarea.form-input {
    resize: vertical;
    min-height: 150px;
}

.btn-submit {
    background: #222f6e;
    color: #ffffff;
    font-family: Montserrat;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 24px;
    line-height: 150%;
    letter-spacing: 0%;
    width: 260;
    height: 89;
    opacity: 1;
    top: 1088px;
    left: 619px;
    border-radius: 6px;
    border-bottom-width: 4px;
    padding-top: 10px;
    padding-right: 24px;
    padding-bottom: 10px;
    padding-left: 24px;
    gap: 8px;
    border-bottom: 4px solid #eac000;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .form-title {
        font-size: 2rem;
    }

    .contact-info-card {
        margin-bottom: 30px;
    }
}
