/* ============================================
   MODERN CONTACT PAGE
   ============================================ */

/* Contact Hero Section */
.contact-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 10rem 2rem 6rem;
    margin-top: 65px;
    overflow: hidden;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(59, 130, 246, 0.12) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(16, 185, 129, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.contact-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.4);
    border-radius: 2rem;
    color: #60a5fa;
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.contact-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contact-hero-title .text-blue {
    color: #3b82f6;
}

.contact-hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    color: #d1d5db;
    line-height: 1.6;
    margin: 0;
}

/* Contact Main Section */
.contact-main-section {
    padding: 4rem 2rem;
    background: #ffffff;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2rem;
    border-radius: 1.25rem;
    border: 2px solid #e5e7eb;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.info-card:hover {
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.15);
    border-color: #3b82f6;
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e5e7eb;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.info-icon i {
    font-size: 1.25rem;
    color: #ffffff;
}

.info-card-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.info-card-body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.info-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #1f2937;
    line-height: 1.6;
}

.info-value a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-value a:hover {
    color: #2563eb;
}

/* Map Card */
.map-card {
    background: #ffffff;
    padding: 1rem;
    border-radius: 1.25rem;
    border: 2px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.map-card iframe {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 0.75rem;
}

/* Contact Form */
.contact-form-wrapper {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2.5rem;
    border-radius: 1.25rem;
    border: 2px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.form-header p {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #6b7280;
    margin: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
}

.form-input,
.form-textarea {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    padding: 0.875rem 1.25rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    background: #ffffff;
    color: #1f2937;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
}

.form-submit {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: box-shadow 0.3s ease;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.4);
}

.form-submit:hover {
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.5);
}

.form-submit:active {
    transform: translateY(1px);
}

/* Quick Contact Section */
.quick-contact-section {
    padding: 4rem 2rem;
    background: #f9fafb;
}

.quick-contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.section-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.125rem;
    color: #6b7280;
    margin: 0;
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.quick-contact-card {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 1.25rem;
    text-align: center;
    border: 2px solid #e5e7eb;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.quick-contact-card:hover {
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.15);
    border-color: #3b82f6;
}

.quick-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.quick-icon i {
    font-size: 1.75rem;
    color: #ffffff;
}

.quick-contact-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.quick-contact-card p {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}

.quick-contact-card a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.quick-contact-card a:hover {
    color: #2563eb;
}

/* CTA Section */
.contact-cta-section {
    padding: 4rem 2rem;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.contact-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.cta-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.125rem;
    color: #9ca3af;
    line-height: 1.7;
    margin: 0;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .quick-contact-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .contact-hero {
        padding: 8rem 1.5rem 4rem;
    }

    .contact-hero-title {
        font-size: 2.5rem;
    }

    .contact-hero-subtitle {
        font-size: 1rem;
    }

    .contact-main-section,
    .quick-contact-section {
        padding: 3rem 1.5rem;
    }

    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }
    
    /* Fix contact form on mobile */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form-wrapper {
        width: 100%;
        max-width: 100%;
    }
    
    .form-input,
    .form-textarea {
        width: 100%;
        box-sizing: border-box;
    }
    
    .form-submit {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .contact-hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .info-card,
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .contact-main-section,
    .quick-contact-section {
        padding: 2.5rem 1rem;
    }
    
    .form-input,
    .form-textarea {
        padding: 0.875rem 1rem;
        font-size: 1rem;
    }
}
