/* Contact Hero */
.contact-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0A1F44 0%, #1B3A5C 100%);
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 122, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 24px;
    line-height: 1.2;
}

.contact-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Main */
.contact-main {
    padding: 80px 0;
    background: #FAFBFC;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Contact Form */
.contact-form-wrapper {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 4px 24px rgba(10, 31, 68, 0.08);
}

.contact-form-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 12px;
}

.contact-form-header p {
    color: var(--color-gray-600);
    margin-bottom: 32px;
}

.alert-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 16px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    font-weight: 500;
}

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

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

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 8px;
    font-size: 0.9375rem;
}

.required {
    color: #EF4444;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.1);
}

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

.btn-contact-submit {
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #FF6B00 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.0625rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 8px;
}

.btn-contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 122, 0, 0.3);
}

.form-privacy-note {
    margin-top: 20px;
    font-size: 0.875rem;
    color: var(--color-gray-600);
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-privacy-note svg {
    flex-shrink: 0;
    color: var(--color-primary);
}

.form-privacy-note a {
    color: var(--color-primary);
    text-decoration: underline;
}

/* Contact Info Cards */
.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 2px 12px rgba(10, 31, 68, 0.06);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    box-shadow: 0 8px 24px rgba(10, 31, 68, 0.12);
    transform: translateY(-4px);
}

.contact-info-featured {
    background: linear-gradient(135deg, var(--color-primary) 0%, #FF6B00 100%);
    color: white;
}

.contact-info-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.contact-info-icon svg {
    color: white;
}

.contact-info-featured h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-info-featured p {
    opacity: 0.9;
    margin-bottom: 20px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: white !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    background: rgba(255, 255, 255, 0.25);
}

.contact-info-icon-small {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.1) 0%, rgba(255, 122, 0, 0.05) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--color-primary);
}

.contact-info-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 8px;
}

.contact-info-card p {
    font-size: 0.9375rem;
    color: var(--color-gray-600);
    margin-bottom: 12px;
}

.contact-info-card a {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
}

.contact-info-card a:hover {
    text-decoration: underline;
}

.contact-social {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.contact-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.1) 0%, rgba(255, 122, 0, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.contact-social a:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-2px);
}

/* FAQ Section */
.contact-faq {
    padding: 80px 0;
    background: #FAFBFC;
}

.contact-faq-header {
    text-align: center;
    margin-bottom: 48px;
}

.contact-faq-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-secondary);
    margin-bottom: 16px;
    line-height: 1.2;
}

.contact-faq-subtitle {
    font-size: 1.125rem;
    color: var(--color-gray-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.contact-faq-item {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 24px 32px;
    margin-bottom: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #E5E7EB;
}

.contact-faq-item:hover {
    border-color: var(--color-primary);
    box-shadow: 0 4px 12px rgba(255, 122, 0, 0.1);
}

.contact-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin: 0;
}

.contact-faq-question i {
    color: var(--color-primary);
    transition: transform 0.3s ease;
}

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

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

.contact-faq-item.active .contact-faq-answer {
    max-height: 200px;
    padding-top: 16px;
}

.contact-faq-answer p {
    color: var(--color-gray-600);
    line-height: 1.6;
}

.contact-faq-cta {
    text-align: center;
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid #E5E7EB;
}

.contact-faq-cta p {
    font-size: 1.125rem;
    color: var(--color-gray-600);
    margin-bottom: 20px;
}

.contact-btn-faq {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #FF6B00 100%);
    color: white;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-btn-faq:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 122, 0, 0.3);
}

/* CTA Section */
.contact-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #0A1F44 0%, #1B3A5C 100%);
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 122, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.contact-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}

.contact-cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.contact-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    padding: 16px 32px;
    background: white;
    color: var(--color-primary);
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 255, 255, 0.3);
}

.btn-cta-secondary {
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Responsive */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-hero-title {
        font-size: 2.5rem;
    }
}

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

    .contact-hero-title {
        font-size: 2rem;
    }

    .contact-hero-subtitle {
        font-size: 1.125rem;
    }

    .contact-main {
        padding: 60px 0;
    }

    .contact-form-wrapper {
        padding: 32px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-cta-content h2 {
        font-size: 2rem;
    }

    .contact-cta-content p {
        font-size: 1.125rem;
    }

    .contact-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        justify-content: center;
    }
}