/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

/* Page Header */
.page-header {
    padding: calc(80px + 4rem) 0 4rem;
    background: linear-gradient(135deg, #F9FAFB 0%, #E0F2FE 100%);
    text-align: center;
}

.page-header__title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #111827;
}

.page-header__description {
    font-size: 1.125rem;
    color: #6B7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 0.875rem;
}

.breadcrumb__item {
    color: #6B7280;
    transition: color 0.2s;
}

.breadcrumb__item:hover {
    color: #0097b2;
}

.breadcrumb__item--active {
    color: #111827;
    font-weight: 600;
}

.breadcrumb__separator {
    color: #D1D5DB;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.section-header {
    margin-bottom: 2rem;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: #111827;
}

.section-description {
    color: #6B7280;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.625rem;
    font-size: 0.9375rem;
}

.form-label i {
    color: #0097b2;
    font-size: 1rem;
}

.required {
    color: #EF4444;
}

.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #E5E7EB;
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-input:focus {
    outline: none;
    border-color: #0097b2;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.form-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236B7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 1.5rem;
    padding-right: 3rem;
    appearance: none;
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
    font-family: inherit;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 0.125rem;
    cursor: pointer;
    accent-color: #0097b2;
}

.form-checkbox__text {
    font-size: 0.9375rem;
    color: #4B5563;
    line-height: 1.6;
}

.form-checkbox__text a {
    color: #0097b2;
    text-decoration: underline;
}

.form-message {
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    margin-top: 1rem;
    font-weight: 500;
}

.form-message--success {
    background: #F0FDF4;
    color: #16A34A;
    border: 1px solid #86EFAC;
}

.form-message--error {
    background: #FEF2F2;
    color: #DC2626;
    border: 1px solid #FECACA;
}

/* Contact Info */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    display: flex;
    gap: 1.25rem;
    padding: 1.75rem;
    background: white;
    border-radius: 1.25rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.contact-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #E0F2FE, #BAE6FD);
    color: #007a92;
    border-radius: 1rem;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-card--whatsapp .contact-card__icon {
    background: linear-gradient(135deg, #DCFCE7, #BBF7D0);
    color: #16A34A;
}

.contact-card__content {
    flex: 1;
}

.contact-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.contact-card__link {
    display: block;
    font-size: 1.125rem;
    font-weight: 600;
    color: #0097b2;
    margin-bottom: 0.375rem;
    transition: color 0.2s;
}

.contact-card__link:hover {
    color: #007a92;
}

.contact-card--whatsapp .contact-card__link {
    color: #16A34A;
}

.contact-card--whatsapp .contact-card__link:hover {
    color: #15803D;
}

.contact-card__hours,
.contact-card__text {
    font-size: 0.875rem;
    color: #6B7280;
    line-height: 1.6;
}

/* Social Media */
.contact-social {
    background: linear-gradient(135deg, #F9FAFB, white);
    padding: 2rem;
    border-radius: 1.25rem;
    border: 1px solid #E5E7EB;
}

.contact-social__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
}

.contact-social__description {
    font-size: 0.9375rem;
    color: #6B7280;
    margin-bottom: 1.5rem;
}

.contact-social__links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    color: white;
}

.social-link--facebook {
    background: #1877F2;
}

.social-link--instagram {
    background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF);
}

.social-link--twitter {
    background: #1DA1F2;
}

.social-link--youtube {
    background: #FF0000;
}

.social-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* FAQ Links */
.contact-faq {
    background: linear-gradient(135deg, #EFF6FF, white);
    padding: 2rem;
    border-radius: 1.25rem;
    border: 1px solid #DBEAFE;
}

.contact-faq__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.25rem;
}

.contact-faq__list {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.contact-faq__link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: white;
    border-radius: 0.75rem;
    color: #374151;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #E5E7EB;
}

.contact-faq__link:hover {
    border-color: #0097b2;
    background: #F0F9FF;
    color: #0097b2;
    transform: translateX(4px);
}

.contact-faq__link i {
    color: #0097b2;
    font-size: 1.125rem;
}

/* Map Section */
.map-section {
    padding: 4rem 0;
    background: #F9FAFB;
}

.section-header--center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.map-container {
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 500px;
    border: 0;
    display: block;
}

.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.alert i {
    font-size: 20px;
}

.alert-success {
    background: #d1fae5;
    border-left: 4px solid #10b981;
    color: #065f46;
}

.alert-error {
    background: #fee2e2;
    border-left: 4px solid #ef4444;
    color: #991b1b;
}