/* ===== PAGE BANNER ===== */
.page-banner {
    background: var(--primary-navy);
    padding: 52px 0;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(244, 121, 32, 0.06);
    border-radius: 50%;
}

.page-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: rgba(244, 121, 32, 0.04);
    border-radius: 50%;
}

.page-banner h1 {
    color: white;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.page-banner p.banner-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.page-banner .breadcrumb {
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.page-banner .breadcrumb-item a {
    color: var(--primary-orange);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
}

.page-banner .breadcrumb-item a:hover {
    color: #ffb074;
}

.page-banner .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
}

.page-banner .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
}

/* ===== PAGE SECTIONS ===== */
.page-section {
    padding: 50px 0;
}

.page-section-sm {
    padding: 35px 0;
}

.page-section-gray {
    background: var(--body-bg);
}

.page-section-white {
    background: white;
}

/* ===== FORM STYLES ===== */
.form-custom .form-label {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.form-custom .form-control,
.form-custom .form-select {
    border: 1.5px solid var(--border-color);
    border-radius: 10px;
    padding: 11px 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 13.5px;
    color: var(--text-dark);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: #fafafa;
}

.form-custom .form-control:focus,
.form-custom .form-select:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(244, 121, 32, 0.1);
    background-color: white;
}

.form-custom .form-control::placeholder {
    color: #bbb;
    font-size: 13px;
}

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

.btn-primary-custom {
    background: var(--primary-orange);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary-custom:hover {
    background: var(--orange-hover);
    color: white;
    transform: translateY(-1px);
}

.btn-outline-custom {
    background: transparent;
    color: var(--primary-navy);
    border: 1.5px solid var(--primary-navy);
    border-radius: 10px;
    padding: 11px 32px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-custom:hover {
    background: var(--primary-navy);
    color: white;
}

/* ===== AUTH PAGES ===== */
.auth-section {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    padding: 50px 0;
    background: var(--body-bg);
}

.auth-card {
    max-width: 480px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    padding: 40px 36px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-light);
}

.auth-card .auth-logo {
    text-align: center;
    margin-bottom: 28px;
}

.auth-card .auth-logo .logo-text {
    font-size: 30px;
}

.auth-card h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
    text-align: center;
}

.auth-card p.auth-subtitle {
    font-size: 13.5px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 28px;
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 24px 0;
    color: var(--text-muted);
    font-size: 12px;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-color);
}

.social-auth-btns {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.social-auth-btns .btn {
    flex: 1;
    padding: 10px;
    border: 1.5px solid var(--border-color);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    background: white;
    color: var(--text-dark);
}

.social-auth-btns .btn:hover {
    border-color: var(--primary-orange);
    background: var(--orange-pale);
}

.auth-card .form-check {
    font-size: 13px;
}

.auth-card .form-check-input:checked {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
}

.auth-card .auth-link {
    color: var(--primary-orange);
    font-weight: 500;
    text-decoration: none;
    font-size: 13px;
}

.auth-card .auth-link:hover {
    color: var(--orange-hover);
    text-decoration: underline;
}

.auth-footer-text {
    text-align: center;
    font-size: 13.5px;
    color: var(--text-muted);
    margin-top: 20px;
}

/* ===== ABOUT PAGE ===== */
.about-story-img {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    height: 100%;
    min-height: 300px;
    background: linear-gradient(135deg, var(--primary-navy), #1a3a5c);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.15);
    font-size: 80px;
}

.about-story-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stats-section {
    background: var(--primary-navy);
    padding: 48px 0;
}

.stat-item {
    text-align: center;
    padding: 20px 10px;
}

.stat-item .stat-num {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-orange);
    line-height: 1.2;
    margin-bottom: 4px;
}

.stat-item .stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 400;
}

.value-card {
    background: white;
    border-radius: 14px;
    padding: 28px 22px;
    text-align: center;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover);
}

.value-card .value-icon {
    width: 58px;
    height: 58px;
    background: var(--orange-pale);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 24px;
    color: var(--primary-orange);
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: var(--primary-orange);
    color: white;
}

.value-card h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.value-card p {
    font-size: 12.5px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.team-card {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-light);
    text-align: center;
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-4px);
}

.team-card .team-img {
    height: 200px;
    background: linear-gradient(135deg, #1a3a5c, #2d5a8e);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: rgba(255, 255, 255, 0.2);
}

.team-card .team-info {
    padding: 18px 16px;
}

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

.team-card .team-info p {
    font-size: 12.5px;
    color: var(--primary-orange);
    font-weight: 500;
    margin-bottom: 10px;
}

.team-card .team-social a {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--orange-pale);
    border-radius: 50%;
    color: var(--primary-orange);
    font-size: 12px;
    margin: 0 3px;
    transition: all 0.3s ease;
}

.team-card .team-social a:hover {
    background: var(--primary-orange);
    color: white;
}

/* ===== CONTACT PAGE ===== */
.contact-info-card {
    background: white;
    border-radius: 14px;
    padding: 28px 22px;
    text-align: center;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-light);
    height: 100%;
    transition: transform 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-4px);
}

.contact-info-card .contact-icon {
    width: 56px;
    height: 56px;
    background: var(--orange-pale);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 22px;
    color: var(--primary-orange);
}

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

.contact-info-card p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

.contact-info-card a {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 500;
}

.contact-info-card a:hover {
    text-decoration: underline;
}

.contact-form-wrapper {
    background: white;
    border-radius: 16px;
    padding: 36px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-light);
}

.map-placeholder {
    background: linear-gradient(135deg, #e8e8e8, #f5f5f5);
    border-radius: 16px;
    height: 100%;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: #ccc;
    border: 1px solid var(--border-light);
    overflow: hidden;
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 16px;
}

/* ===== PROFILE PAGE ===== */
.profile-header-section {
    background: var(--primary-navy);
    padding: 40px 0 80px;
}

.profile-main-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-light);
    margin-top: -60px;
    position: relative;
    z-index: 2;
}

.profile-avatar {
    width: 120px;
    height: 120px;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-orange), #ff9a56);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    color: white;
    flex-shrink: 0;
    border: 4px solid white;
    box-shadow: var(--card-shadow);
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.profile-info h2 i {
    color: var(--verified-blue);
    font-size: 18px;
}

.profile-info .profile-profession {
    font-size: 14px;
    color: var(--primary-orange);
    font-weight: 600;
    margin-bottom: 8px;
}

.profile-info .profile-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
    color: var(--text-muted);
}

.profile-info .profile-meta span i {
    color: var(--primary-orange);
    margin-right: 4px;
}

.profile-detail-card {
    background: white;
    border-radius: 14px;
    padding: 26px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-light);
    margin-bottom: 24px;
}

.profile-detail-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-light);
}

.profile-detail-card p {
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.profile-skills .skill-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--orange-pale);
    color: var(--primary-orange);
    border-radius: 20px;
    font-size: 12.5px;
    font-weight: 500;
    margin: 3px 4px 3px 0;
}

.profile-sidebar-card {
    background: white;
    border-radius: 14px;
    padding: 24px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-light);
    margin-bottom: 20px;
}

.profile-sidebar-card h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 14px;
}

.profile-sidebar-card .price-display {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-orange);
}

.profile-sidebar-card .price-display span {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-muted);
}

.review-card {
    padding: 18px 0;
    border-bottom: 1px solid var(--border-light);
}

.review-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.review-card .review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.review-card .review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--orange-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.review-card .review-meta h6 {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.review-card .review-meta span {
    font-size: 11.5px;
    color: var(--text-muted);
}

.review-card .review-stars {
    color: var(--star-color);
    font-size: 12px;
    margin-bottom: 6px;
}

.review-card .review-text {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ===== GALLERY / PORTFOLIO ===== */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.portfolio-item {
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #e8e8e8, #f5f5f5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #ccc;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.portfolio-item:hover {
    transform: scale(1.03);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== FAQ ACCORDION ===== */
.faq-section .accordion-item {
    border: 1px solid var(--border-light);
    border-radius: 12px !important;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-section .accordion-button {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    padding: 16px 20px;
    background: white;
}

.faq-section .accordion-button:not(.collapsed) {
    color: var(--primary-orange);
    background: var(--orange-pale);
    box-shadow: none;
}

.faq-section .accordion-button::after {
    filter: hue-rotate(180deg);
}

.faq-section .accordion-body {
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.7;
    padding: 16px 20px;
}

/* ===== PAGINATION ===== */
.pagination-custom .page-item .page-link {
    border-radius: 8px;
    margin: 0 3px;
    font-size: 13px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    border-color: var(--border-color);
    padding: 8px 14px;
    transition: all 0.3s ease;
}

.pagination-custom .page-item.active .page-link {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    color: white;
}

.pagination-custom .page-item .page-link:hover {
    background: var(--orange-pale);
    color: var(--primary-orange);
    border-color: var(--primary-orange);
}

/* ===== HOW IT WORKS PAGE ===== */
.hiw-step-detailed {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-light);
    height: 100%;
}

.hiw-step-detailed .step-badge {
    width: 44px;
    height: 44px;
    background: var(--primary-orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.hiw-step-detailed .step-icon-lg {
    font-size: 40px;
    color: var(--primary-navy);
    margin-bottom: 14px;
}

.hiw-step-detailed h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.hiw-step-detailed p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.7;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 22px;
}

.benefit-item .benefit-icon {
    width: 44px;
    height: 44px;
    background: var(--orange-pale);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary-orange);
    flex-shrink: 0;
}

.benefit-item h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.benefit-item p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
    background: white;
    border-radius: 14px;
    padding: 28px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-light);
    height: 100%;
}

.testimonial-card .testimonial-stars {
    color: var(--star-color);
    font-size: 14px;
    margin-bottom: 12px;
}

.testimonial-card .testimonial-text {
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-card .testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card .testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--orange-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    font-weight: 700;
    font-size: 15px;
}

.testimonial-card .testimonial-author h6 {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.testimonial-card .testimonial-author span {
    font-size: 11.5px;
    color: var(--text-muted);
}

/* ===== JOB POST PAGE ===== */
.job-form-wrapper {
    background: white;
    border-radius: 16px;
    padding: 36px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-light);
}

.job-form-wrapper h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--border-light);
}

.form-section-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 18px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-section-title i {
    color: var(--primary-orange);
}

/* ===== CATEGORIES PAGE ===== */
.category-detail-card {
    background: white;
    border-radius: 14px;
    padding: 28px 24px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.category-detail-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover);
    border-color: var(--primary-orange);
}

.category-detail-card .cat-icon {
    width: 60px;
    height: 60px;
    background: var(--orange-pale);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--primary-orange);
    margin-bottom: 14px;
    transition: all 0.3s ease;
}

.category-detail-card:hover .cat-icon {
    background: var(--primary-orange);
    color: white;
}

.category-detail-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.category-detail-card .cat-count {
    font-size: 13px;
    color: var(--primary-orange);
    font-weight: 600;
    margin-bottom: 8px;
}

.category-detail-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    flex-grow: 1;
}

.category-detail-card .btn-cat-link {
    color: var(--primary-orange);
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    margin-top: auto;
}

.category-detail-card .btn-cat-link:hover {
    color: var(--orange-hover);
    gap: 8px;
}

/* ===== RESPONSIVE PAGES ===== */
@media (max-width: 991px) {
    .page-banner h1 {
        font-size: 28px;
    }

    .auth-card {
        padding: 30px 24px;
    }

    .profile-main-card {
        padding: 24px;
    }

    .profile-avatar {
        width: 90px;
        height: 90px;
        font-size: 32px;
    }

    .profile-info h2 {
        font-size: 20px;
    }

    .contact-form-wrapper {
        padding: 26px;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .page-banner {
        padding: 40px 0;
    }

    .page-banner h1 {
        font-size: 24px;
    }

    .profile-main-card .d-flex {
        flex-direction: column;
        text-align: center;
    }

    .profile-info .profile-meta {
        justify-content: center;
    }

    .stat-item .stat-num {
        font-size: 28px;
    }

    .social-auth-btns {
        flex-direction: column;
    }
}
