/* Contact Page Styles */

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, #f7eee5 0%, #faf0e4 100%);
    color: #4B2E2E;
    padding: 120px 0 80px;
    text-align: center;
    margin-top: 70px;
}

.contact-hero h1 {
    font-size: 5.5rem;
    margin-bottom: 0rem;
    font-weight: 450;
}

.contact-hero p {
    font-size: 1.3rem;
    font-weight: 300;
    opacity: 0.9;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Contact Cards */
.contact-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #c6a27e;
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d3748;
    font-weight: 600;
}

.contact-card p {
    color: #718096;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Contact Buttons */
.contact-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: #c6a27e;
    color: #4B2E2E;
    font-weight: bold;
    text-decoration: none;
    border: 1px solid #c6a27e;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.contact-button:hover {
    background: transparent;
    color: #c6a27e;
    border-color: #c6a27e;
    cursor: pointer;
}

.contact-button i {
    margin-right: 0.5rem;
}

/* WhatsApp Button Styling */
.whatsapp-button {
    background: #25D366;
    border-color: #25D366;
    color: white;
}

.whatsapp-button:hover {
    background: transparent;
    color: #25D366;
    border-color: #25D366;
}

/* Phone Button Styling */
.phone-button {
    background: #2c5282;
    border-color: #2c5282;
    color: white;
}

.phone-button:hover {
    background: transparent;
    color: #2c5282;
    border-color: #2c5282;
}

/* Email Button Styling */
.email-button {
    background: #e53e3e;
    border-color: #e53e3e;
    color: white;
}

.email-button:hover {
    background: transparent;
    color: #e53e3e;
    border-color: #e53e3e;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .contact-hero p {
        font-size: 1.2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-icon {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .contact-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
}