/* Contact Page Styles */

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.contact-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.contact-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: var(--space-4);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out;
}

.contact-subtitle {
    font-size: 1.25rem;
    color: #ffffff;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Contact Main Section */
.contact-main {
    padding: 80px 0;
    background: #F8FAFC;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Form Section */
.contact-form-section {
    animation: fadeInLeft 0.8s ease-out;
}

.contact-form-card {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border: 1px solid #E2E8F0;
    position: relative;
    overflow: hidden;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
}

.form-header {
    text-align: center;
    margin-bottom: var(--space-8);
}

.form-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 8px;
}

.form-header p {
    color: #94A3B8;
    font-size: 1rem;
    line-height: 1.5;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.form-group label {
    font-weight: 600;
    color: #374151;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.form-group label i {
    color: #2563EB;
    font-size: 0.75rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: var(--space-3) var(--space-4);
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #FFFFFF;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563EB;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-submit-btn {
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
    color: #FFFFFF;
    border: none;
    padding: var(--space-4) var(--space-8);
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    margin-top: var(--space-4);
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.contact-submit-btn:active {
    transform: translateY(0);
}

/* Contact Info Section */
.contact-info-section {
    animation: fadeInRight 0.8s ease-out;
}

.contact-info-card {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border: 1px solid #E2E8F0;
    height: fit-content;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

.info-header {
    text-align: center;
    margin-bottom: var(--space-8);
}

.info-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 8px;
}

.info-header p {
    color: #94A3B8;
    font-size: 1rem;
    line-height: 1.5;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    padding: var(--space-4);
    border-radius: 16px;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #2563EB;
}

.info-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    color: #FFFFFF;
    font-size: 1.25rem;
}

.info-content {
    flex: 1;
}

.info-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: var(--space-2);
}

.info-content p {
    color: #64748B;
    line-height: 1.6;
    margin-bottom: var(--space-2);
}

.info-tag {
    display: inline-block;
    background: #E0E7FF;
    color: #3730A3;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Social Links */
.social-links {
    text-align: center;
    padding-top: var(--space-6);
    border-top: 1px solid var(--gray-200);
}

.social-links h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-4);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: var(--space-3);
}

.social-icon {
    width: 44px;
    height: 44px;
    background: var(--gray-100);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-gradient);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: #FFFFFF;
}

.map-header {
    text-align: center;
    margin-bottom: var(--space-8);
}

.map-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: var(--space-4);
}

.map-header p {
    color: #64748B;
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* FAQ Section */
.contact-faq {
    padding: 80px 0;
    background: #F8FAFC;
}

.faq-header {
    text-align: center;
    margin-bottom: var(--space-8);
}

.faq-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: var(--space-4);
}

.faq-header p {
    color: #64748B;
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--space-6);
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: #FFFFFF;
    border-radius: 16px;
    padding: var(--space-6);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: var(--space-3);
}

.faq-item p {
    color: #64748B;
    line-height: 1.6;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Enhanced Responsive Design */
@media (max-width: 1200px) {
    .contact-grid {
        gap: 24px;
        padding: 0 20px;
    }
    
    .contact-form-card,
    .contact-info-card {
        padding: 28px;
    }
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        max-width: 800px;
    }
    
    .contact-title {
        font-size: 3rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        max-width: 800px;
    }
    
    .map-container iframe {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 60px 0;
    }
    
    .contact-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .contact-subtitle {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .contact-main {
        padding: 60px 0;
    }
    
    .contact-form-card,
    .contact-info-card {
        padding: 24px;
        border-radius: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-info-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .info-icon {
        align-self: center;
        margin-bottom: 12px;
    }
    
    .info-content h3 {
        font-size: 1.1rem;
    }
    
    .info-content p {
        font-size: 0.95rem;
    }
    
    .map-section,
    .contact-faq {
        padding: 60px 0;
    }
    
    .map-header h2,
    .faq-header h2 {
        font-size: 2rem;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .faq-item {
        padding: 20px;
    }
    
    .faq-item h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 40px 0;
    }
    
    .contact-title {
        font-size: 2rem;
        padding: 0 15px;
    }
    
    .contact-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .contact-main {
        padding: 40px 0;
    }
    
    .contact-form-card,
    .contact-info-card {
        padding: 20px;
        border-radius: 16px;
        margin: 0 15px;
    }
    
    .form-header h2,
    .info-header h2 {
        font-size: 1.5rem;
    }
    
    .form-header p,
    .info-header p {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 16px;
        font-size: 0.95rem;
    }
    
    .contact-submit-btn {
        padding: 14px 24px;
        font-size: 1rem;
        width: 100%;
    }
    
    .contact-info-item {
        padding: 16px;
        border-radius: 12px;
    }
    
    .info-icon {
        width: 40px;
        height: 40px;
    }
    
    .info-icon i {
        font-size: 1rem;
    }
    
    .info-content h3 {
        font-size: 1rem;
    }
    
    .info-content p {
        font-size: 0.9rem;
    }
    
    .info-tag {
        font-size: 0.7rem;
        padding: 3px 10px;
    }
    
    .map-section,
    .contact-faq {
        padding: 40px 0;
    }
    
    .map-header h2,
    .faq-header h2 {
        font-size: 1.8rem;
        padding: 0 15px;
    }
    
    .map-header p,
    .faq-header p {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .map-container {
        margin: 0 15px;
        border-radius: 16px;
    }
    
    .map-container iframe {
        height: 250px;
    }
    
    .faq-grid {
        padding: 0 15px;
    }
    
    .faq-item {
        padding: 16px;
        border-radius: 12px;
    }
    
    .faq-item h3 {
        font-size: 1rem;
    }
    
    .faq-item p {
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    .contact-title {
        font-size: 1.8rem;
    }
    
    .contact-subtitle {
        font-size: 0.95rem;
    }
    
    .contact-form-card,
    .contact-info-card {
        padding: 16px;
        margin: 0 10px;
    }
    
    .form-header h2,
    .info-header h2 {
        font-size: 1.3rem;
    }
    
    .contact-submit-btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .info-icon {
        width: 36px;
        height: 36px;
    }
    
    .info-icon i {
        font-size: 0.9rem;
    }
    
    .map-container {
        margin: 0 10px;
    }
    
    .map-container iframe {
        height: 200px;
    }
    
    .faq-grid {
        padding: 0 10px;
    }
} 