/* Contact Page Styles */
body {
    background-color: #f9f9f9;
}

.contact-section {
    position: relative;
    padding-top: 6rem; /* Increased from 3rem to create more space below navbar */
    padding-bottom: 3rem;
    min-height: calc(100vh - 180px); /* Makes sure the content area fills most of the viewport */
}

.contact-section .section-header {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.main-title {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.main-title:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 80px;
    height: 3px;
    background-color: #d9a175;
    transform: translateX(-50%);
}

.section-description {
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.contact-info {
    transition: all 0.3s ease;
    background-color: #fff;
    border-radius: 8px;
}

.contact-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

.contact-form-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

.contact-info .contact-form-cta h3 {
    color: #333;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.contact-info .contact-form-cta h3:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #d9a175;
}

.contact-info h4 {
    color: #555;
    font-weight: 600;
}

.contact-info a {
    color: #333;
    transition: color 0.2s ease;
}

.contact-info a:hover {
    color: #d9a175;
}

.social-link {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 1.5rem;
}

.social-link a {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
}

.instagram-btn {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.whatsapp-btn {
    background-color: #25D366;
}

.social-link a i {
    margin-right: 8px;
    font-size: 1.1rem;
}

.social-link a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive styles */
@media (max-width: 768px) {
    .social-link {
        flex-direction: column;
        gap: 10px;
    }
    
    .social-link a {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .contact-info {
        padding: 15px !important;
    }
} 