/* Contact Page Styles */

.contact-hero {
    background: linear-gradient(135deg, #00727C 0%, #009da8 100%);
    color: white;
    padding: 100px 20px 80px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-hero .hero-subtitle {
    font-size: 20px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Info Section */
.contact-info {
    padding: 80px 20px;
    background: #f8f9fa;
}

.contact-card {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.contact-details {
    padding: 60px;
    text-align: center;
}

.contact-details h2 {
    font-size: 36px;
    color: #4F4B45;
    margin-bottom: 10px;
}

.contact-title {
    font-size: 18px;
    color: #00727C;
    font-weight: 600;
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 400px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    text-decoration: none;
    color: #4F4B45;
    transition: all 0.3s;
    font-size: 18px;
}

.contact-item:hover {
    background: #00727C;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 114, 124, 0.3);
}

.contact-icon {
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
}

.contact-text {
    flex: 1;
    text-align: left;
}

.contact-message {
    background: #00727C;
    color: white;
    padding: 60px;
}

.contact-message h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.contact-message p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.95;
}

.contact-message p:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 36px;
    }
    
    .contact-details,
    .contact-message {
        padding: 40px 30px;
    }
    
    .contact-details h2 {
        font-size: 28px;
    }
    
    .contact-item {
        font-size: 16px;
        padding: 15px;
    }
    
    .contact-message h3 {
        font-size: 24px;
    }
    
    .contact-message p {
        font-size: 16px;
    }
}