/* styles/contact.css */
.contact-hero {
    position: relative;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(139,0,0,0.7)), url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1600');
    background-size: cover;
    color: white;
    text-align: center;
}
.contact-hero .hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}
.contact-hero .hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.contact-section {
    padding: 4rem 2rem;
    background: #f9f9f9;
}
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}
.contact-form-box {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}
.contact-form-box h2 {
    color: #8B0000;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}
.form-group {
    margin-bottom: 1.25rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8B0000;
    box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.1);
}

.contact-info img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}
.info-content h3 {
    color: #8B0000;
    margin-bottom: 1.2rem;
    font-size: 1.6rem;
}
.info-content p {
    margin: 0.8rem 0;
    font-size: 1.05rem;
    color: #444;
}
.info-content i {
    color: #8B0000;
    margin-right: 10px;
    width: 20px;
}
.social-links {
    margin-top: 1.5rem;
}
.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #fffffefb;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: background 0.3s;
}
.social-links a:hover {
    background: #fcfafa;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-hero .hero-content h1 { font-size: 2rem; }
    .contact-hero .hero-content p { font-size: 1rem; }
    .contact-grid { grid-template-columns: 1fr; }
}