/* ============================================ */
/* CONTACT PAGE SPECIFIC STYLES */
/* ============================================ */

/* ============================================ */
/* PAGE HEADER */
/* ============================================ */
.page-header-section {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-tint) 100%);
    position: relative;
    overflow: hidden;
}

.page-header-overlay {
    position: absolute;
    top:  0;
    left: 0;
    width: 100%;
    height:  100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="200" cy="200" r="300" fill="rgba(255,255,255,0.05)"/><circle cx="800" cy="700" r="250" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.3;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.breadcrumb-nav a {
    color: var(--on-primary);
    transition: var(--transition-base);
}

.breadcrumb-nav a:hover {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-nav .separator {
    color: rgba(255, 255, 255, 0.5);
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--on-primary);
    margin-bottom: 20px;
}

.page-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin:  0;
}

/* ============================================ */
/* CONTACT INFO CARDS */
/* ============================================ */
.contact-info-section {
    padding: 0;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.contact-info-card {
    background: var(--on-primary);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow:  var(--shadow-lg);
    text-align: center;
    transition: var(--transition-smooth);
    height: 100%;
    border: 2px solid transparent;
}

.contact-info-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
}

.contact-info-icon {
    width: 70px;
    height: 70px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition-base);
}

.contact-info-card:hover .contact-info-icon {
    background: var(--primary-color);
    transform: rotateY(360deg);
}

.contact-info-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--primary-color);
    transition: var(--transition-base);
}

.contact-info-card:hover .contact-info-icon svg {
    stroke: var(--on-primary);
}

.contact-info-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.contact-info-text {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.8;
    margin:  0;
}

.contact-info-text a {
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition-base);
}

.contact-info-text a:hover {
    color: var(--primary-tint);
}

.contact-info-text .small-text {
    font-size: 0.875rem;
    color: var(--text-light);
    display: block;
    margin-top: 5px;
}

/* ============================================ */
/* CONTACT MAIN SECTION */
/* ============================================ */
.contact-main-section {
    padding: 100px 0;
    background:  var(--light-bg);
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    background: var(--on-primary);
    padding: 50px 40px;
    border-radius:  16px;
    box-shadow: var(--shadow-md);
}

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

.form-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.form-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    margin: 0;
}

/* Form Styling */
.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.contact-form label svg {
    width: 18px;
    height: 18px;
    stroke: var(--primary-color);
}

.contact-form .form-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size:  1rem;
    color:  var(--text-color);
    transition: var(--transition-base);
    font-family: inherit;
    background: var(--on-primary);
}

.contact-form .form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(123, 17, 77, 0.1);
}

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

.contact-form select.form-input {
    appearance: none;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><polyline points="6 9 12 15 18 9"/></svg>') no-repeat right 12px center;
    background-size: 20px;
    background-color: var(--on-primary);
    cursor: pointer;
}

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 1.1rem;
    transition: var(--transition-base);
}

.btn-submit:hover {
    gap: 15px;
}

.btn-submit svg {
    width: 20px;
    height: 20px;
    stroke: var(--on-primary);
}

/* ============================================ */
/* MAP WRAPPER */
/* ============================================ */
.map-wrapper {
    margin-bottom: 30px;
}

.map-container {
    width: 100%;
    height:  400px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* ============================================ */
/* QUICK CONTACT CARD */
/* ============================================ */
.quick-contact-card {
    background: var(--on-primary);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    margin-bottom: 30px;
}

.quick-contact-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.quick-contact-text {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 25px;
}

.quick-contact-actions {
    display: flex;
    gap: 15px;
    justify-content:  center;
}

.quick-contact-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    background: var(--primary-color);
    color: var(--on-primary);
    border-radius: 8px;
    font-weight: 600;
    transition:  var(--transition-base);
}

.quick-contact-btn:hover {
    background: var(--primary-tint);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.quick-contact-btn.whatsapp {
    background: #25D366;
}

.quick-contact-btn.whatsapp:hover {
    background:  #1fb855;
}

.quick-contact-btn svg {
    width: 20px;
    height: 20px;
    stroke: var(--on-primary);
}

/* ============================================ */
/* OFFICE HOURS CARD */
/* ============================================ */
.office-hours-card {
    background: var(--on-primary);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.office-hours-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size:  1.25rem;
    font-weight:  700;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.office-hours-title svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-color);
}

.office-hours-list {
    padding-left: 0;
    margin-bottom: 20px;
}

.office-hours-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.office-hours-list li:last-child {
    border-bottom: none;
}

.office-hours-list .day {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-color);
}

.office-hours-list .time {
    font-size: 0.95rem;
    color: var(--text-light);
}

.emergency-note {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: var(--light-bg);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-color);
}

.emergency-note svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary-color);
    flex-shrink: 0;
}

/* ============================================ */
/* FAQ SECTION */
/* ============================================ */
.faq-section {
    padding: 100px 0;
    background: var(--on-primary);
}

.accordion {
    border: none;
}

.accordion-item {
    background: var(--light-bg);
    border: none;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.accordion-item:hover {
    box-shadow: var(--shadow-md);
}

.accordion-header {
    margin:  0;
}

.accordion-button {
    background: var(--light-bg);
    color: var(--dark-color);
    font-size: 1.1rem;
    font-weight: 600;
    padding:  20px 25px;
    border: none;
    transition: var(--transition-base);
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: var(--on-primary);
    box-shadow: none;
}

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

.accordion-button::after {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><polyline points="6 9 12 15 18 9"/></svg>');
    background-size: 20px;
}

.accordion-button:not(.collapsed)::after {
    background-image: url('data: image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2"><polyline points="6 9 12 15 18 9"/></svg>');
}

.accordion-body {
    padding: 25px;
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    background: var(--on-primary);
}

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

@media (max-width: 991px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .contact-form-wrapper {
        margin-bottom: 40px;
    }
}

@media (max-width:  767px) {
    .page-title {
        font-size: 2rem;
    }
    
    .page-header-section {
        padding: 140px 0 60px;
    }
    
    .contact-info-section {
        margin-top: -40px;
        padding: 0;
    }
    
    .contact-main-section,
    .faq-section {
        padding:  60px 0;
    }
    
    .contact-form-wrapper {
        padding: 30px 25px;
    }
    
    .form-title {
        font-size: 1.5rem;
    }
    
    .quick-contact-actions {
        flex-direction: column;
    }
    
    .map-container {
        height: 300px;
    }
}