/* =====================
   Contact Page Styles
   ===================== */

/* Hero Section */
.contact-hero {
    background: linear-gradient(135deg, #FFF8F2 0%, #FAE8DC 100%);
    padding: 5rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 140, 66, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 179, 71, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-title {
    font-size: 3rem;
    font-weight: 700;
    color: #2D3748;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.contact-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #FF8C42 0%, #FFB347 100%);
    border-radius: 2px;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: #718096;
    max-width: 650px;
    margin: 2rem auto 0;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    position: relative;
}

/* Contact Form Card */
.contact-form-card {
    background: #fff;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #FF8C42 0%, #FFB347 100%);
}

.form-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #2D3748;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    font-size: 0.95rem;
    color: #718096;
    margin-bottom: 2rem;
}

/* Form Styling */
.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: #2D3748;
    margin-bottom: 0.5rem;
}

.form-label i {
    color: #FF8C42;
    margin-right: 0.5rem;
    width: 16px;
}

.custom-input {
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    color: #2D3748;
    background-color: #fafafa;
    transition: all 0.3s ease;
    width: 100%;
}

.custom-input:focus {
    border-color: #FF8C42;
    box-shadow: 0 0 0 4px rgba(255, 140, 66, 0.1);
    background-color: #fff;
    outline: none;
}

.custom-input::placeholder {
    color: #a0aec0;
}

textarea.custom-input {
    resize: none;
}

/* Submit Button */
.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #FF8C42 0%, #FFB347 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 140, 66, 0.4);
}

.btn-submit:hover::before {
    left: 100%;
}

.btn-submit i {
    transition: transform 0.3s ease;
}

.btn-submit:hover i {
    transform: translateX(5px);
}

/* Contact Info Wrapper */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    height: 100%;
}

/* Info Cards */
.info-card {
    background: #fff;
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #f5f5f5;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(255, 140, 66, 0.12);
    border-color: rgba(255, 140, 66, 0.2);
}

.info-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.15) 0%, rgba(255, 179, 71, 0.15) 100%);
    border-radius: 14px;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.25rem;
    color: #FF8C42;
}

.info-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #2D3748;
    margin-bottom: 0.35rem;
}

.info-content p {
    font-size: 0.95rem;
    color: #718096;
    margin: 0;
    line-height: 1.5;
}

.text-muted-small {
    font-size: 0.8rem !important;
    color: #a0aec0 !important;
    margin-top: 0.25rem !important;
}

/* Social Card */
.social-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #FFF8F2 0%, #FAE8DC 100%);
    border: none;
}

.social-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2D3748;
    margin-bottom: 0.5rem;
}

.social-text {
    font-size: 0.9rem;
    color: #718096;
    margin-bottom: 1.25rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    color: #2D3748;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.social-link:hover {
    background: linear-gradient(135deg, #FF8C42 0%, #FFB347 100%);
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(255, 140, 66, 0.35);
}

/* Map Section */
.map-section {
    padding: 0 0 5rem;
}

.map-wrapper {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.map-header {
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #2D3748 0%, #1a202c 100%);
}

.map-header h3 {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.map-header i {
    color: #FF8C42;
    margin-right: 0.75rem;
}

.map-container {
    position: relative;
    width: 100%;
    height: 400px;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #FFF8F2 0%, #FAE8DC 100%);
}

.section-header {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #2D3748;
    margin-bottom: 0.75rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #FF8C42 0%, #FFB347 100%);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1rem;
    color: #718096;
    margin-top: 1.5rem;
}

/* Custom Accordion */
.custom-accordion .accordion-item {
    background: #fff;
    border: none;
    border-radius: 16px !important;
    margin-bottom: 1rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.custom-accordion .accordion-button {
    font-size: 1rem;
    font-weight: 500;
    color: #2D3748;
    padding: 1.25rem 1.5rem;
    background: #fff;
    border: none;
    box-shadow: none;
}

.custom-accordion .accordion-button i {
    color: #FF8C42;
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background: #fff;
    color: #FF8C42;
    box-shadow: none;
}

.custom-accordion .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.custom-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23FF8C42' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    transition: transform 0.3s ease;
}

.custom-accordion .accordion-body {
    padding: 0 1.5rem 1.5rem;
    color: #718096;
    line-height: 1.7;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .contact-title {
        font-size: 2.5rem;
    }

    .contact-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .contact-hero {
        padding: 4rem 0 3rem;
    }

    .contact-section {
        padding: 3rem 0;
    }

    .contact-form-card {
        padding: 2rem;
    }

    .contact-info-wrapper {
        margin-top: 2rem;
    }
}

@media (max-width: 767.98px) {
    .contact-title {
        font-size: 2rem;
    }

    .contact-form-card {
        padding: 1.5rem;
    }

    .form-title {
        font-size: 1.5rem;
    }

    .info-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .map-container {
        height: 300px;
    }
}

/* Animation Keyframes */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Form Success State */
.form-success {
    text-align: center;
    padding: 3rem;
}

.form-success i {
    font-size: 4rem;
    color: #38A169;
    margin-bottom: 1.5rem;
}

.form-success h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2D3748;
    margin-bottom: 0.75rem;
}

.form-success p {
    color: #718096;
}