/* ============ CONTACT HERO SECTION ============ */
.contact-hero {
    background: linear-gradient(135deg, #0F172A 0%, #1a1f3a 100%);
    padding: 80px 20px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.contact-hero .hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInDown 0.6s ease-out;
}

.contact-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffffff 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-hero p {
    font-size: 18px;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

/* ============ CONTACT SECTION ============ */
.contact-section {
    padding: 80px 20px;
    background: #f8fafc;
}

.contact-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Info Cards */
.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 80px;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.info-card {
    background: white;
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 3px solid transparent;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.15);
    border-top-color: #f97316;
}

.info-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
    animation: bounce 0.6s ease-in-out;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.info-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0F172A;
}

.info-card p {
    color: #64748b;
    font-weight: 600;
    margin-bottom: 5px;
}

.info-detail {
    font-size: 13px;
    color: #94a3b8;
    font-weight: 500 !important;
}

/* Main Contact Layout */
.contact-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    padding: 45px;
    border-radius: 15px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.contact-form-wrapper h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #0F172A;
}

.form-subtitle {
    color: #64748b;
    margin-bottom: 30px;
    font-size: 14px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #f97316;
    background: white;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

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

.form-group.checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-group.checkbox input {
    width: auto;
    cursor: pointer;
}

.form-group.checkbox label {
    margin-bottom: 0;
    cursor: pointer;
}

.form-error {
    display: block;
    color: #ef4444;
    font-size: 12px;
    margin-top: 5px;
    min-height: 16px;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.5);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-notice {
    font-size: 12px;
    color: #94a3b8;
    text-align: center;
    margin-top: 15px;
}

/* Success Message */
.success-message {
    animation: slideDown 0.4s ease-out;
}

.success-content {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}

.success-icon {
    font-size: 64px;
    display: block;
    margin-bottom: 15px;
    animation: scaleIn 0.6s ease-out;
}

.success-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.success-content p {
    font-size: 15px;
    margin-bottom: 25px;
    opacity: 0.95;
}

.reset-btn {
    padding: 12px 30px;
    background: white;
    color: #059669;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reset-btn:hover {
    transform: scale(1.05);
}

/* FAQ Section */
.faq-wrapper {
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.faq-wrapper h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #0F172A;
}

.faq-subtitle {
    color: #64748b;
    margin-bottom: 30px;
    font-size: 14px;
}

.faq-container {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.faq-item {
    border-bottom: 1px solid #e2e8f0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: white;
    border: none;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    color: #0F172A;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8fafc;
    padding-left: 25px;
}

.faq-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
    color: #f97316;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 20px 20px 20px;
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
}

/* Contact CTA Section */
.contact-cta {
    background: linear-gradient(135deg, #0F172A 0%, #1a1f3a 100%);
    padding: 60px 20px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-cta h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffffff 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-cta p {
    font-size: 16px;
    color: #cbd5e1;
    margin-bottom: 35px;
}

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

.cta-btn-primary,
.cta-btn-secondary {
    padding: 14px 35px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-btn-primary {
    background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.5);
}

.cta-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid #f97316;
}

.cta-btn-secondary:hover {
    background: rgba(249, 115, 22, 0.1);
    transform: translateY(-2px);
}

/* ============ ANIMATIONS ============ */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ============ RESPONSIVE ============ */
@media(max-width: 1024px) {
    .contact-hero h1 {
        font-size: 42px;
    }

    .contact-info-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 60px;
    }

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

    .contact-form-wrapper,
    .faq-wrapper {
        padding: 40px;
    }
}

@media(max-width: 768px) {
    .contact-hero {
        padding: 60px 20px;
        min-height: 40vh;
    }

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

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

    .contact-section {
        padding: 60px 20px;
    }

    .contact-info-cards {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 40px;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .contact-form-wrapper h2,
    .faq-wrapper h2 {
        font-size: 24px;
    }

    .faq-question {
        padding: 15px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        padding: 14px 25px;
    }

    .contact-cta h2 {
        font-size: 26px;
    }

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

@media(max-width: 480px) {
    .contact-hero {
        min-height: 30vh;
        padding: 40px 20px;
    }

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

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

    .info-card {
        padding: 25px 15px;
    }

    .info-icon {
        font-size: 40px;
    }

    .info-card h3 {
        font-size: 16px;
    }

    .contact-form-wrapper {
        padding: 20px 15px;
    }

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

    .faq-answer p {
        padding: 0 15px 15px 15px;
        font-size: 13px;
    }

    .faq-question {
        padding: 12px 15px;
        font-size: 13px;
    }
}
