/* ===== CONTACT HERO ===== */
.contact-hero {
    padding: 250px 0 80px;
    /*background-color: var(--color-light);*/
    text-align: center;
}

.contact-intro h1 {
    margin-bottom: var(--spacing-xs);
    animation-delay: 0.2s;
    font-weight: 100;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--color-secondary);
    animation-delay: 0.4s;
}

/* ===== CONTACT CONTENT ===== */
.contact-content {
    padding: var(--spacing-xl) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

/* ===== CONTACT INFO ===== */
.contact-info {
    background-color: var(--color-light);
    padding: var(--spacing-md);
    border-radius: 5px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--spacing-md);
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: var(--color-white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: var(--spacing-sm);
    color: var(--color-primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-text h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.info-text p {
    margin-bottom: 0;
}

.info-text a {
    color: var(--color-primary);
}

.info-text a:hover {
    text-decoration: underline;
}

.social-contact {
    margin-top: var(--spacing-lg);
}

.social-contact h3 {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-sm);
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-white);
    color: var(--color-primary);
    transition: var(--transition-fast);
}

.social-links a:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-3px);
}

/* ===== CONTACT FORM ===== */
.contact-form h2 {
    margin-bottom: var(--spacing-md);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--color-pink);
    border-radius: 5px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

/* ===== MAP SECTION ===== */
.map-section {
    margin-bottom: var(--spacing-xl);
}

.map-container {
    height: 400px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background-color: var(--color-light);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-secondary);
    font-size: 1.2rem;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        margin-bottom: var(--spacing-md);
    }
}

@media (max-width: 768px) {
    .info-item {
        flex-direction: column;
    }
    
    .info-icon {
        margin-bottom: var(--spacing-xs);
    }
}

@media (max-width: 576px) {
    .map-container {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .map-container {
        height: 300px;
    }
}

/* ===== FORM MESSAGES & NOTIFICATIONS ===== */
.form-message {
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
    font-size: 1rem;
    animation: slideIn 0.3s ease;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== TOAST NOTIFICATION ===== */
.toast-notification {
    position: fixed;
    top: -100px;
    right: 20px;
    background-color: white;
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10000;
    transition: top 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    max-width: 400px;
    font-size: 0.95rem;
}

.toast-notification.show {
    top: 20px;
}

.toast-notification.success {
    border-left: 4px solid #28a745;
}

.toast-notification.error {
    border-left: 4px solid #dc3545;
}

.toast-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    flex-shrink: 0;
}

.toast-notification.success .toast-icon {
    background-color: #28a745;
    color: white;
}

.toast-notification.error .toast-icon {
    background-color: #dc3545;
    color: white;
}

.toast-message {
    flex: 1;
    color: #333;
}

/* Responsive para notificaciones */
@media (max-width: 576px) {
    .toast-notification {
        right: 10px;
        left: 10px;
        max-width: calc(100% - 20px);
    }
}