/* ========================================
   CONTACT PAGE STYLES (cnt- prefix)
======================================== */

/* ========================================
   PAGE HEADER
======================================== */
.cnt-page-header {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cnt-page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(30, 64, 175, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.cnt-header-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cnt-header-badge {
    display: inline-block;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.cnt-page-title {
    font-size: 3rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1rem;
}

.cnt-title-highlight {
    color: #1e40af;
}

.cnt-page-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
}

/* ========================================
   CONTACT INFO CARDS
======================================== */
.cnt-info-section {
    padding: 80px 0;
    background: #ffffff;
}

.cnt-info-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    height: 100%;
}

.cnt-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: #1e40af;
}

.cnt-info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.cnt-info-card:hover .cnt-info-icon {
    transform: scale(1.1);
}

.cnt-info-icon i {
    font-size: 32px;
    color: #ffffff;
}

.cnt-info-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.cnt-info-text {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 0.25rem;
}

.cnt-info-text:last-of-type {
    margin-bottom: 0.75rem;
}

.cnt-info-link {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #1e40af;
    text-decoration: none;
    border-bottom: 2px solid rgba(30, 64, 175, 0.3);
    padding-bottom: 2px;
    transition: all 0.2s ease;
    margin-top: 0.25rem;
}

.cnt-info-link:hover {
    color: #1e3a8a;
    border-color: #1e3a8a;
}

/* ========================================
   CONTACT FORM SECTION
======================================== */
.cnt-form-section {
    padding: 80px 0;
    background: #f8fafc;
}

.cnt-form-wrapper {
    background: #ffffff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.cnt-form-badge {
    display: inline-block;
    background: rgba(30, 64, 175, 0.1);
    color: #1e40af;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cnt-form-title {
    font-size: 1.85rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

.cnt-form-desc {
    font-size: 15px;
    color: #64748b;
    margin-bottom: 2rem;
}

.cnt-form-group {
    margin-bottom: 0;
}

.cnt-form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.cnt-required {
    color: #ef4444;
}

.cnt-form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 15px;
    color: #1e293b;
    background: #ffffff;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.cnt-form-control:focus {
    outline: none;
    border-color: #1e40af;
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.cnt-form-control::placeholder {
    color: #cbd5e1;
}

textarea.cnt-form-control {
    resize: vertical;
    min-height: 130px;
}

select.cnt-form-control {
    cursor: pointer;
    appearance: auto;
}

.cnt-submit-btn {
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cnt-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.35);
    color: #ffffff;
}

/* ========================================
   MAP & OFFICE INFO
======================================== */
.cnt-map-wrapper {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cnt-map-container {
    width: 100%;
    height: 380px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.cnt-office-info {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
}

.cnt-office-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cnt-office-title i {
    color: #1e40af;
}

.cnt-office-hours {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.cnt-hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid #f1f5f9;
}

.cnt-hour-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.cnt-day {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
}

.cnt-time {
    font-size: 13px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
}

.cnt-time--open {
    background: rgba(76, 175, 80, 0.1);
    color: #2e7d32;
}

.cnt-time--closed {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

/* ========================================
   SOCIAL MEDIA SECTION
======================================== */
.cnt-social-section {
    padding: 80px 0;
    background: #ffffff;
}

.cnt-social-wrapper {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cnt-social-title {
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.cnt-social-desc {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 2.5rem;
}

.cnt-social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cnt-social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    padding: 25px 30px;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 110px;
}

.cnt-social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    background: #ffffff;
}

.cnt-social-link i {
    font-size: 28px;
    transition: transform 0.3s ease;
}

.cnt-social-link:hover i {
    transform: scale(1.15);
}

.cnt-social-link span {
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
}

/* Individual social colors on hover */
.cnt-social-fb { color: #1877f2; }
.cnt-social-fb:hover { border-color: #1877f2; }
.cnt-social-fb i { color: #1877f2; }

.cnt-social-tw { color: #1da1f2; }
.cnt-social-tw:hover { border-color: #1da1f2; }
.cnt-social-tw i { color: #1da1f2; }

.cnt-social-li { color: #0a66c2; }
.cnt-social-li:hover { border-color: #0a66c2; }
.cnt-social-li i { color: #0a66c2; }

.cnt-social-ig { color: #e1306c; }
.cnt-social-ig:hover { border-color: #e1306c; }
.cnt-social-ig i { color: #e1306c; }

.cnt-social-yt { color: #ff0000; }
.cnt-social-yt:hover { border-color: #ff0000; }
.cnt-social-yt i { color: #ff0000; }

/* ========================================
   FAQ SECTION
======================================== */
.cnt-faq-section {
    padding: 80px 0;
    background: #f8fafc;
}

.cnt-section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.cnt-section-subtitle {
    font-size: 1rem;
    color: #64748b;
}

.cnt-accordion-item {
    background: #ffffff;
    border: 2px solid #e2e8f0 !important;
    border-radius: 14px !important;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.cnt-accordion-item:last-child {
    margin-bottom: 0;
}

.cnt-accordion-item:has(.cnt-accordion-btn:not(.collapsed)) {
    border-color: #1e40af !important;
}

.cnt-accordion-btn {
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    background: #ffffff;
    border: none;
    padding: 20px 25px;
    width: 100%;
    text-align: left;
    transition: all 0.3s ease;
    box-shadow: none !important;
}

.cnt-accordion-btn:not(.collapsed) {
    background: #ffffff;
    color: #1e40af;
    box-shadow: none !important;
}

.cnt-accordion-btn:focus {
    box-shadow: none;
}

.cnt-accordion-btn::after {
    background-image: none !important;
    content: '\F282';
    font-family: 'Bootstrap-icons';
    font-size: 18px;
    color: #1e40af;
    transform: none !important;
}

.cnt-accordion-btn:not(.collapsed)::after {
    content: '\F286';
}

.cnt-accordion-body {
    padding: 0 25px 20px;
    font-size: 15px;
    color: #64748b;
    line-height: 1.8;
    background: #ffffff;
    border-top: 1px solid #f1f5f9;
    padding-top: 16px;
}

/* ========================================
   RESPONSIVE STYLES
======================================== */
@media (max-width: 991px) {
    .cnt-page-header {
        padding: 120px 0 60px;
    }

    .cnt-page-title {
        font-size: 2.25rem;
    }

    .cnt-info-section,
    .cnt-form-section,
    .cnt-social-section,
    .cnt-faq-section {
        padding: 60px 0;
    }

    .cnt-form-wrapper {
        padding: 40px 30px;
    }

    .cnt-map-wrapper {
        position: relative;
        top: 0;
    }

    .cnt-section-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .cnt-page-header {
        padding: 100px 0 50px;
    }

    .cnt-page-title {
        font-size: 1.85rem;
    }

    .cnt-page-subtitle {
        font-size: 1rem;
    }

    .cnt-info-section,
    .cnt-form-section,
    .cnt-social-section,
    .cnt-faq-section {
        padding: 50px 0;
    }

    .cnt-info-card {
        padding: 30px 20px;
    }

    .cnt-info-icon {
        width: 70px;
        height: 70px;
    }

    .cnt-info-icon i {
        font-size: 28px;
    }

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

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

    .cnt-form-control {
        padding: 12px 16px;
        font-size: 14px;
    }

    .cnt-submit-btn {
        padding: 14px 28px;
        font-size: 15px;
    }

    .cnt-map-container {
        height: 280px;
    }

    .cnt-office-info {
        padding: 20px;
    }

    .cnt-social-title {
        font-size: 1.5rem;
    }

    .cnt-social-links {
        gap: 0.75rem;
    }

    .cnt-social-link {
        padding: 18px 20px;
        min-width: 90px;
    }

    .cnt-social-link i {
        font-size: 24px;
    }

    .cnt-section-title {
        font-size: 1.65rem;
    }

    .cnt-accordion-btn {
        font-size: 0.95rem;
        padding: 18px 20px;
    }

    .cnt-accordion-body {
        padding: 14px 20px 18px;
        font-size: 14px;
    }
}