/* Contact page specific styles */

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.info-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon i {
    font-size: 1.5rem;
    color: white;
}

.info-details {
    margin-top: 15px;
}

.info-details p {
    margin-bottom: 8px;
}

.info-details a {
    color: #0284c7; 
    text-decoration: none;
    transition: 0.3s;
}

.info-details a:hover {
    text-decoration: underline;
    color: #0369a1; 
}

.info-details .highlight {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.info-card p,
.info-card a {
    color: var(--accent-color);
    line-height: 1.8;
    text-decoration: none;
}

.info-card a:hover {
    color: var(--primary-color);
}

.map-container {
    width: 100%;
    max-width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.12);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.social-inline {
    display: flex;
    gap: 12px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.social-inline a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1rem;
}

.social-inline a i {
    color: #fff;
}

.social-inline a.social-fb { background: #1877f2; }
.social-inline a.social-ig { background: linear-gradient(45deg, #f09433, #dc2743, #bc1888); }
.social-inline a.social-tw { background: #000; }
.social-inline a.social-yt { background: #ff0000; }

.social-inline a:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
    color: #fff;
}

.form-status {
    margin-top: 16px;
    padding: 12px 14px;
    border-radius: 12px;
    font-weight: 600;
    line-height: 1.5;
    border: 1px solid transparent;
}

.form-status.success {
    background: #ecfdf5;
    border-color: #a7f3d0;
    color: #065f46;
}

.form-status.error {
    background: #fef2f2;
    border-color: #fecaca;
    color: #991b1b;
}

@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .contact-form-wrapper {
        padding: 25px;
    }

    .map-container {
        border-radius: 12px;
    }

    .map-container iframe {
        height: 260px;
    }
}
