/* Contact Page Styles */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Dana', sans-serif;
}

.contact-hero {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #050a14 0%, #0a1526 50%, #0f1f35 100%);
    overflow: hidden;
    border-bottom: 3px solid rgba(255, 215, 0, 0.6);
}

.contact-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1.5" fill="rgba(255,255,255,0.15)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.contact-hero-content {
    position: relative;
    text-align: center;
    color: white;
    max-width: 700px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-hero-content h1 {
    font-size: 52px;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    font-family: 'Medina', 'Dana', sans-serif;
}

.contact-hero-content p {
    font-size: 18px;
    opacity: 0.95;
    line-height: 1.8;
}

.contact-info-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #050a14 0%, #0a1526 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 40px;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card-modern {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d4a6b 100%);
    padding: 32px;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.info-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 45px rgba(255, 215, 0, 0.4);
    border-color: #D4AF37;
    background: linear-gradient(135deg, #1a2f4f 0%, #1e3a5f 100%);
}

.card-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    margin-bottom: 20px;
}

.card-icon.phone {
    background: linear-gradient(135deg, #1e3a5f, #2d4a6b);
    color: #D4AF37;
}

.card-icon.email {
    background: linear-gradient(135deg, #2d4a6b, #1e3a5f);
    color: #D4AF37;
}

.card-icon.location {
    background: linear-gradient(135deg, #1a2f4f, #0f1f35);
    color: #D4AF37;
}

.card-icon.eitaa {
    background: linear-gradient(135deg, #0f766e, #115e59);
    color: #D4AF37;
}

.card-details a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 600;
}

.card-details a:hover {
    color: #D4AF37;
}

.card-details h3 {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
}

.card-details p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.availability {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 2px solid #f3f4f6;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.availability i {
    color: var(--primary-color);
}

.contact-form-container {
    background: linear-gradient(135deg, #0f1f35 0%, #1a2f4f 100%);
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 215, 0, 0.5);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 2px solid #f3f4f6;
}

.form-header i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.form-header h2 {
    font-size: 28px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 12px;
}

.form-header p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
}

.form-group label i {
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    font-size: 15px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    transition: all 0.3s ease;
    font-family: inherit;
    background: rgba(5, 10, 20, 0.6);
    color: #ffffff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D4AF37;
    background: rgba(5, 10, 20, 0.8);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
    color: #ffffff;
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.submit-btn-contact {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #D4AF37, #E6C200);
    color: #050a14;
    border: none;
    padding: 20px;
    font-size: 17px;
    font-weight: 700;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    margin-top: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
}

.submit-btn-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.8);
    background: linear-gradient(135deg, #E6C200, #F5E6D3);
    border-color: rgba(255, 255, 255, 0.5);
}

.success-message {
    display: none;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 24px;
    border-radius: 14px;
    margin-top: 24px;
}

.success-message.show {
    display: flex;
    animation: slideDown 0.5s ease;
}

.success-message i {
    font-size: 32px;
}

.success-message strong {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
}

.success-message p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d4a6b 100%);
}

.map-container {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    padding: 80px;
    text-align: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
}

.map-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #0f1f35, #1a2f4f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 48px;
    color: #D4AF37;
    box-shadow: 0 10px 35px rgba(255, 215, 0, 0.5);
    border: 3px solid rgba(255, 215, 0, 0.6);
}

.map-placeholder h3 {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
}

.map-placeholder p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #D4AF37, #E6C200);
    color: #050a14;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.map-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.7);
    background: linear-gradient(135deg, #E6C200, #F5E6D3);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0 100px;
    background: linear-gradient(180deg, #0a1526 0%, #050a14 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.section-header h2 i {
    color: var(--primary-color);
}

.section-header p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.faq-item {
    background: linear-gradient(135deg, #0f1f35 0%, #1a2f4f 100%);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 215, 0, 0.5);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #D4AF37;
    box-shadow: 0 8px 35px rgba(255, 215, 0, 0.3);
    background: linear-gradient(135deg, #1a2f4f 0%, #1e3a5f 100%);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    user-select: none;
}

.faq-question i {
    font-size: 16px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-question h4 {
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-top: 16px;
    margin-top: 16px;
    border-top: 2px solid rgba(255, 215, 0, 0.3);
}

.faq-answer p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-hero {
        padding: 100px 0 60px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .info-cards {
        order: 1;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .info-card-modern {
        flex: 1;
        min-width: 280px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 80px 0 50px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 8px 16px;
    }

    .contact-hero-content h1 {
        font-size: 32px;
    }

    .contact-hero-content p {
        font-size: 16px;
    }

    .contact-info-section {
        padding: 60px 0;
    }

    .info-cards {
        flex-direction: column;
    }

    .info-card-modern {
        padding: 24px;
    }

    .card-icon {
        width: 64px;
        height: 64px;
        font-size: 28px;
    }

    .card-details h3 {
        font-size: 18px;
    }

    .card-details p {
        font-size: 14px;
    }

    .contact-form-container {
        padding: 32px 24px;
        border-radius: 16px;
    }

    .form-header {
        margin-bottom: 32px;
        padding-bottom: 24px;
    }

    .form-header i {
        font-size: 40px;
    }

    .form-header h2 {
        font-size: 24px;
    }

    .form-header p {
        font-size: 14px;
    }

    .form-row {
        grid-template-columns: 1fr;
        margin-bottom: 20px;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 18px;
        font-size: 14px;
    }

    .submit-btn-contact {
        padding: 18px;
        font-size: 16px;
    }

    .map-section {
        padding: 60px 0;
    }

    .map-container {
        border-radius: 16px;
    }

    .map-placeholder {
        padding: 50px 24px;
    }

    .map-icon {
        width: 80px;
        height: 80px;
        font-size: 36px;
    }

    .map-placeholder h3 {
        font-size: 20px;
    }

    .map-placeholder p {
        font-size: 14px;
    }

    .faq-section {
        padding: 60px 0 80px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .section-header p {
        font-size: 14px;
    }

    .faq-item {
        padding: 20px;
        border-radius: 16px;
    }

    .faq-question h4 {
        font-size: 15px;
    }

    .faq-answer p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .contact-hero-content h1 {
        font-size: 28px;
    }

    .contact-hero-content p {
        font-size: 14px;
    }

    .info-card-modern {
        padding: 20px;
    }

    .card-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }

    .contact-form-container {
        padding: 24px 20px;
    }

    .form-header {
        margin-bottom: 24px;
    }

    .map-placeholder {
        padding: 40px 20px;
    }

    .map-icon {
        width: 72px;
        height: 72px;
        font-size: 32px;
    }
}

/* Modern Light Theme Overrides */
.contact-hero {
    background: linear-gradient(135deg, #0f2a4d 0%, #1b4578 55%, #2f5f96 100%);
    border-bottom: 1px solid rgba(15, 42, 77, 0.18);
}

.contact-info-section {
    background: linear-gradient(180deg, #f7faff 0%, #eef4ff 100%);
}

.info-card-modern,
.contact-form-container {
    background: #ffffff;
    border: 1px solid rgba(15, 42, 77, 0.1);
    box-shadow: 0 16px 34px rgba(15, 42, 77, 0.1);
}

.card-details h3,
.form-header h2,
.form-group label {
    color: #0b2340;
}

.card-details p,
.availability,
.form-header p {
    color: #475569;
}

.card-icon.phone,
.card-icon.email,
.card-icon.location,
.card-icon.eitaa {
    background: linear-gradient(135deg, #eaf2ff, #dce9fb);
    color: #1f4f83;
}

.card-icon.eitaa {
    background: linear-gradient(135deg, #ccfbf1, #99f6e4);
    color: #0f766e;
}

.card-details a {
    color: #0f4c81;
}

.card-details a:hover {
    color: #0f766e;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: #f8fbff;
    color: #0f172a;
    border-color: rgba(15, 42, 77, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #64748b;
}

