/* Contact Page Styles */
body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.contact-hero {
    background: linear-gradient(135deg, rgba(0, 139, 139, 0.1) 0%, rgba(32, 178, 170, 0.05) 100%);
    padding: 80px 0 60px 0;
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.contact-hero-content .lead {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: #ffffff;
}

/* Contact Info Cards */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-info-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 139, 139, 0.15);
    border-color: #008B8B;
}

.contact-info-card .info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 139, 139, 0.1) 0%, rgba(32, 178, 170, 0.1) 100%);
    border: 2px solid #008B8B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.contact-info-card:hover .info-icon {
    background: linear-gradient(135deg, #008B8B 0%, #20B2AA 100%);
    transform: scale(1.1);
}

.contact-info-card .info-icon i {
    font-size: 28px;
    color: #008B8B;
    transition: color 0.3s ease;
}

.contact-info-card:hover .info-icon i {
    color: #ffffff;
}

.contact-info-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.contact-info-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

.contact-info-card p strong {
    color: #008B8B;
    font-weight: 600;
}

/* Form Section */
.form-section {
    margin-top: 60px;
}

.form-section h2 {
    font-size: 32px;
    font-weight: 600;
    color: #008B8B;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.form-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #008B8B, #20B2AA);
    border-radius: 2px;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-group label i {
    color: #008B8B;
    margin-right: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background-color: #ffffff;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #008B8B;
    box-shadow: 0 0 0 3px rgba(0, 139, 139, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #008B8B 0%, #20B2AA 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 139, 139, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 139, 139, 0.4);
}

.btn-submit i {
    font-size: 18px;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-hero-content h1 {
        font-size: 32px;
    }
    
    .contact-hero-content .lead {
        font-size: 16px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-info-card {
        padding: 30px 20px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .form-section h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 60px 0 40px 0;
    }
    
    .contact-hero-content h1 {
        font-size: 26px;
    }
    
    .contact-section {
        padding: 60px 0;
    }
    
    .form-section h2 {
        font-size: 24px;
    }
}
