/* ================================================================
 * contact.css - Styles for Contact Us page
 * ================================================================ */

.contact-wrapper {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 110px 20px 60px;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}
.contact-container {
    max-width: 1400px;
    margin: 0 auto;
}
.contact-header {
    text-align: center;
    margin-bottom: 60px;
    color: #fff;
}
.contact-title {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 16px 0;
    letter-spacing: 2px;
}
.contact-subtitle {
    font-size: 18px;
    opacity: 0.9;
    margin: 0;
}
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}
.contact-info-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}
.contact-info-card:hover {
    transform: translateY(-5px);
}
.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 32px;
}
.info-item:last-child {
    margin-bottom: 0;
}
.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.info-icon svg {
    width: 24px;
    height: 24px;
    color: #fff;
}
.info-content {
    flex: 1;
}
.info-label {
    font-size: 14px;
    color: #a0aec0;
    margin-bottom: 8px;
    font-weight: 500;
}
.info-value {
    font-size: 18px;
    color: #2d3748;
    font-weight: 600;
    line-height: 1.6;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}
.info-value a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}
.info-value a:hover {
    color: #764ba2;
}
.contact-form-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}
.form-title {
    font-size: 28px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 30px;
}
.form-group {
    margin-bottom: 24px;
}
.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #4a5568;
    margin-bottom: 8px;
}
.form-label .required {
    color: #e53e3e;
    margin-left: 4px;
}
.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    color: #2d3748;
    transition: all 0.3s ease;
    background: #fff;
}
.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}
.form-input::placeholder,
.form-textarea::placeholder {
    color: #a0aec0;
}
.form-textarea {
    min-height: 140px;
    resize: vertical;
}
.submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
}
.submit-btn:active {
    transform: translateY(0);
}
.map-section {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}
.map-title {
    font-size: 24px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 24px;
}
.map-container {
    width: 100%;
    height: 450px;
    border-radius: 16px;
    overflow: hidden;
    background: #f7fafc;
}
.social-section {
    margin-top: 60px;
    text-align: center;
    color: #fff;
}
.social-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
}
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.social-item {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
.social-item:hover {
    background: #fff;
    transform: scale(1.1);
}
.social-item svg {
    width: 28px;
    height: 28px;
    color: #fff;
}
.social-item:hover svg {
    color: #667eea;
}
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .contact-title {
        font-size: 36px;
    }
}
@media (max-width: 576px) {
    .contact-wrapper {
        padding: 90px 15px 30px;
    }
    .contact-info-card,
    .contact-form-card {
        padding: 30px 20px;
    }
    .contact-title {
        font-size: 28px;
    }
    .contact-subtitle {
        font-size: 16px;
    }
    .info-value {
        font-size: 16px;
    }
}

.location-map-section {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    scroll-margin-top: 100px;
}

.location-title {
    font-size: 24px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 24px;
}

.map-wrapper {
    width: 100%;
    height: 450px;
    border-radius: 16px;
    overflow: hidden;
    background: #f7fafc;
    position: relative;
}
h2 {
   margin-bottom: unset !important;
}
