/* ============================================
   CONTACT PAGE
   ============================================ */

/* Hero Section */
.contact-hero {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, rgba(76, 0, 130, 0.232) 0%, rgba(148, 112, 219, 0.429) 100%),
                url('https://media.istockphoto.com/id/1356087501/photo/close-up-of-contact-us-word.jpg?s=612x612&w=0&k=20&c=ngUTJnr1Wfy9ImNiAqb3AScv3yRqQbl5uglcyPSsJQM=');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(75, 0, 130, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 16px;
}

.breadcrumb a {
    color: var(--white);
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

.breadcrumb span {
    opacity: 0.7;
}

/* Contact Info Section */
.contact-info-section {
    padding: 80px 0;
    background: var(--background-light);
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.info-card {
    background: var(--white);
    padding: 45px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border-top: 4px solid transparent;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(75, 0, 130, 0.2);
    border-top-color: var(--primary-color);
}

.info-card-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 25px;
    box-shadow: 0 8px 25px rgba(75, 0, 130, 0.3);
    transition: transform 0.3s ease;
}

.info-card:hover .info-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.info-card h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.info-card p,
.info-card a {
    color: var(--text-dark);
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 600;
}

.info-card a {
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.info-card a:hover {
    color: var(--secondary-color);
}

.info-detail {
    color: var(--text-light) !important;
    font-size: 14px !important;
    font-weight: 400 !important;
}

/* Contact Form Section */
.contact-form-section {
    padding: 100px 0;
}

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

/* Form Wrapper */
.contact-form-wrapper {
    background: var(--white);
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

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

.form-header h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 800;
}

.form-header p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.contact-form .form-group {
    margin-bottom: 28px;
}

.contact-form label {
    display: block;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 15px;
}

.contact-form label i {
    color: var(--secondary-color);
    margin-right: 8px;
}

.required {
    color: #e74c3c;
    margin-left: 4px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: inherit;
    background: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(147, 112, 219, 0.1);
}

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

.contact-form select {
    cursor: pointer;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(75, 0, 130, 0.3);
    margin-top: 10px;
}

.btn-submit:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(75, 0, 130, 0.4);
}

.btn-submit i {
    margin-right: 12px;
}

/* Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-card {
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.sidebar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

.sidebar-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(75, 0, 130, 0.1) 0%, rgba(147, 112, 219, 0.1) 100%);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.sidebar-card h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.sidebar-list {
    list-style: none;
}

.sidebar-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-size: 15px;
}

.sidebar-list li i {
    color: var(--secondary-color);
    font-size: 14px;
}

.sidebar-list li a {
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.sidebar-list li a:hover {
    color: var(--primary-color);
}

/* Social Buttons */
.social-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border-radius: 12px;
    color: var(--white);
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-btn.facebook {
    background: #1877f2;
}

.social-btn.linkedin {
    background: #0077b5;
}

.social-btn.twitter {
    background: #1da1f2;
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Map Section */
.map-section {
    padding: 100px 0;
    background: var(--background-light);
}

.map-wrapper {
    margin-top: 50px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    height: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.map-placeholder i {
    font-size: 80px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.map-placeholder p {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.map-placeholder span {
    font-size: 16px;
    color: var(--text-light);
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 25px;
    margin-top: 60px;
}

.faq-item {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 30px;
    cursor: pointer;
    background: var(--white);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--background-light);
}

.faq-question i:first-child {
    color: var(--primary-color);
    font-size: 24px;
    flex-shrink: 0;
}

.faq-question h3 {
    flex: 1;
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 700;
    margin: 0;
}

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

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: var(--background-light);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 25px 30px;
}

.faq-answer p {
    color: var(--text-dark);
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

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

    .contact-form-wrapper {
        padding: 35px 25px;
    }

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

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

    .sidebar-card {
        padding: 25px;
    }

    .map-placeholder {
        height: 350px;
    }

    .map-placeholder i {
        font-size: 60px;
    }

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

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

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

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

    .social-buttons {
        grid-template-columns: 1fr;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question h3 {
        font-size: 16px;
    }
}