/* ============================================================ */
/* PRIVACY POLICY PAGE                                          */
/* ============================================================ */

/* ----- Policy Hero ----- */
.policy-hero {
    background: linear-gradient(135deg, #fff8f0 0%, #ffffff 100%);
    padding: 60px 0;
    border-bottom: 1px solid #f3e2c8;
}

.policy-badge {
    display: inline-block;
    background: #fcecd2;
    color: #f17833;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.policy-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 12px;
}
.policy-hero h1 span {
    color: #f17833;
}

.policy-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

.policy-effective {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-top: 12px;
}

/* ----- Policy Content ----- */
.policy-content {
    padding: 60px 0 80px;
    background: #ffffff;
}

.policy-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e9edf2;
}

.policy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.policy-section h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
}

.policy-section h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #0f172a;
    margin-top: 16px;
    margin-bottom: 8px;
}

.policy-section p {
    font-size: 1rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 12px;
}

.policy-section ul {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.policy-section ul li {
    padding: 6px 0 6px 28px;
    position: relative;
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.7;
}

.policy-section ul li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #f17833;
    font-weight: 700;
}

/* Payment Info Badges */
.payment-info {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 12px 0;
}

.payment-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8fafc;
    padding: 10px 18px;
    border-radius: 50px;
    border: 1px solid #e9edf2;
    font-size: 0.85rem;
    color: #0f172a;
    font-weight: 500;
}

.payment-badge i {
    color: #16a34a;
    font-size: 1.1rem;
}

/* Contact Details Box */
.contact-details-box {
    background: #f8fafc;
    border-radius: 16px;
    padding: 24px;
    margin-top: 12px;
    border: 1px solid #e9edf2;
}

.contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item i {
    color: #f17833;
    font-size: 1.2rem;
    width: 20px;
    margin-top: 2px;
}

.contact-item strong {
    display: block;
    font-size: 0.85rem;
    color: #0f172a;
}

.contact-item a,
.contact-item span {
    font-size: 0.9rem;
    color: #475569;
    text-decoration: none;
}

.contact-item a:hover {
    color: #f17833;
}

/* Legal Note */
.legal-note {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 12px;
    padding: 16px 20px;
    font-size: 0.9rem !important;
    color: #475569 !important;
    margin-top: 12px !important;
}

/* ----- Policy Acknowledgment ----- */
.policy-acknowledgment {
    padding: 60px 0 80px;
    background: #f8fafc;
}

.acknowledgment-box {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid #e9edf2;
    box-shadow: 0 12px 40px rgba(0,0,0,0.04);
}

.acknowledgment-box i {
    font-size: 3rem;
    color: #16a34a;
    display: block;
    margin-bottom: 12px;
}

.acknowledgment-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.acknowledgment-box p {
    font-size: 1.05rem;
    color: #64748b;
    max-width: 550px;
    margin: 0 auto 24px;
    line-height: 1.7;
}

.acknowledgment-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.acknowledgment-buttons .btn2 {
    background: transparent !important;
    color: #0f172a !important;
    border: 1px solid #e9edf2 !important;
    border-radius: 50px !important;
    padding: 14px 34px !important;
    font-weight: 600 !important;
}

.acknowledgment-buttons .btn2:hover {
    background: #f8fafc !important;
}

/* ============================================================ */
/* RESPONSIVE                                                    */
/* ============================================================ */

@media (max-width: 991.98px) {
    .policy-hero h1 {
        font-size: 2.4rem;
    }
    .policy-section h2 {
        font-size: 1.4rem;
    }
}

@media (max-width: 767.98px) {
    .policy-hero {
        padding: 40px 0;
    }
    .policy-hero h1 {
        font-size: 2rem;
    }
    .policy-subtitle {
        font-size: 1rem;
    }
    .policy-content {
        padding: 40px 0 60px;
    }
    .policy-section {
        margin-bottom: 24px;
        padding-bottom: 24px;
    }
    .policy-section h2 {
        font-size: 1.2rem;
    }
    .policy-section ul li {
        font-size: 0.9rem;
        padding: 4px 0 4px 24px;
    }
    .payment-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
    }
    .contact-details-box {
        padding: 16px;
    }
    .contact-item {
        padding: 6px 0;
        flex-direction: column;
        align-items: flex-start;
    }
    .acknowledgment-box {
        padding: 24px 20px;
    }
    .acknowledgment-box h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 575.98px) {
    .policy-hero h1 {
        font-size: 1.6rem;
    }
    .policy-effective {
        font-size: 0.75rem;
    }
    .policy-section h2 {
        font-size: 1.1rem;
    }
    .payment-info {
        gap: 10px;
    }
    .acknowledgment-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================================ */
/* REFUND POLICY PAGE                                           */
/* ============================================================ */

/* ----- Refund Hero ----- */
.refund-hero {
    background: linear-gradient(135deg, #fff8f0 0%, #ffffff 100%);
    padding: 60px 0;
    border-bottom: 1px solid #f3e2c8;
}

.refund-badge {
    display: inline-block;
    background: #fcecd2;
    color: #f17833;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.refund-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 12px;
}
.refund-hero h1 span {
    color: #f17833;
}

.refund-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

.refund-effective {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-top: 12px;
}

/* ----- Refund Content ----- */
.refund-content {
    padding: 60px 0 80px;
    background: #ffffff;
}

.refund-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e9edf2;
}

.refund-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.refund-section h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
}

.refund-section h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #0f172a;
    margin-top: 16px;
    margin-bottom: 8px;
}

.refund-section p {
    font-size: 1rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 12px;
}

.refund-section a {
    color: #f17833;
    text-decoration: none;
}

.refund-section a:hover {
    text-decoration: underline;
}

.refund-section ul {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.refund-section ul li {
    padding: 6px 0 6px 28px;
    position: relative;
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.7;
}

.refund-section ul li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #f17833;
    font-weight: 700;
}

/* Payment Info Badges */
.payment-info {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 12px 0 20px;
}

.payment-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8fafc;
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid #e9edf2;
    font-size: 0.8rem;
    color: #0f172a;
    font-weight: 500;
}

.payment-badge i {
    color: #16a34a;
    font-size: 1rem;
}

/* Contact Details Box */
.contact-details-box {
    background: #f8fafc;
    border-radius: 16px;
    padding: 24px;
    margin-top: 12px;
    border: 1px solid #e9edf2;
}

.contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item i {
    color: #f17833;
    font-size: 1.2rem;
    width: 20px;
    margin-top: 2px;
}

.contact-item strong {
    display: block;
    font-size: 0.85rem;
    color: #0f172a;
}

.contact-item a,
.contact-item span {
    font-size: 0.9rem;
    color: #475569;
    text-decoration: none;
}

.contact-item a:hover {
    color: #f17833;
}

/* ----- Refund Acknowledgment ----- */
.refund-acknowledgment {
    padding: 60px 0 80px;
    background: #f8fafc;
}

.acknowledgment-box {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid #e9edf2;
    box-shadow: 0 12px 40px rgba(0,0,0,0.04);
}

.acknowledgment-box i {
    font-size: 3rem;
    color: #f17833;
    display: block;
    margin-bottom: 12px;
}

.acknowledgment-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.acknowledgment-box p {
    font-size: 1.05rem;
    color: #64748b;
    max-width: 550px;
    margin: 0 auto 24px;
    line-height: 1.7;
}

.acknowledgment-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.acknowledgment-buttons .btn2 {
    background: transparent !important;
    color: #0f172a !important;
    border: 1px solid #e9edf2 !important;
    border-radius: 50px !important;
    padding: 14px 34px !important;
    font-weight: 600 !important;
}

.acknowledgment-buttons .btn2:hover {
    background: #f8fafc !important;
}

/* ----- Gateway Compliance ----- */
.gateway-compliance {
    padding: 60px 0 80px;
    background: #ffffff;
}

.compliance-card {
    text-align: center;
    padding: 28px 20px;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #e9edf2;
    transition: all 0.3s ease;
    height: 100%;
}

.compliance-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.compliance-card i {
    font-size: 2.6rem;
    color: #f17833;
    display: block;
    margin-bottom: 10px;
}

.compliance-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}

.compliance-card p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 12px;
}

.compliance-status {
    display: inline-block;
    background: #dcfce7;
    color: #16a34a;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 14px;
    border-radius: 50px;
}

/* ============================================================ */
/* RESPONSIVE                                                    */
/* ============================================================ */

@media (max-width: 991.98px) {
    .refund-hero h1 {
        font-size: 2.4rem;
    }
    .refund-section h2 {
        font-size: 1.4rem;
    }
}

@media (max-width: 767.98px) {
    .refund-hero {
        padding: 40px 0;
    }
    .refund-hero h1 {
        font-size: 2rem;
    }
    .refund-subtitle {
        font-size: 1rem;
    }
    .refund-content {
        padding: 40px 0 60px;
    }
    .refund-section {
        margin-bottom: 24px;
        padding-bottom: 24px;
    }
    .refund-section h2 {
        font-size: 1.2rem;
    }
    .refund-section ul li {
        font-size: 0.9rem;
        padding: 4px 0 4px 24px;
    }
    .payment-badge {
        font-size: 0.7rem;
        padding: 4px 12px;
    }
    .contact-details-box {
        padding: 16px;
    }
    .contact-item {
        padding: 6px 0;
        flex-direction: column;
        align-items: flex-start;
    }
    .acknowledgment-box {
        padding: 24px 20px;
    }
    .acknowledgment-box h3 {
        font-size: 1.2rem;
    }
    .gateway-compliance {
        padding: 40px 0 60px;
    }
    .compliance-card {
        padding: 20px 16px;
    }
}

@media (max-width: 575.98px) {
    .refund-hero h1 {
        font-size: 1.6rem;
    }
    .refund-effective {
        font-size: 0.75rem;
    }
    .refund-section h2 {
        font-size: 1.1rem;
    }
    .acknowledgment-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    .compliance-card i {
        font-size: 2rem;
    }
}

/* ============================================================ */
/* TERMS OF USE PAGE                                            */
/* ============================================================ */

/* ----- Terms Hero ----- */
.terms-hero {
    background: linear-gradient(135deg, #fff8f0 0%, #ffffff 100%);
    padding: 60px 0;
    border-bottom: 1px solid #f3e2c8;
}

.terms-badge {
    display: inline-block;
    background: #fcecd2;
    color: #f17833;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.terms-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 12px;
}
.terms-hero h1 span {
    color: #f17833;
}

.terms-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

.terms-effective {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-top: 12px;
}

/* ----- Terms Content ----- */
.terms-content {
    padding: 60px 0 80px;
    background: #ffffff;
}

.terms-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e9edf2;
}

.terms-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.terms-section h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
}

.terms-section h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #0f172a;
    margin-top: 16px;
    margin-bottom: 8px;
}

.terms-section p {
    font-size: 1rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 12px;
}

.terms-section a {
    color: #f17833;
    text-decoration: none;
}

.terms-section a:hover {
    text-decoration: underline;
}

.terms-section ul {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.terms-section ul li {
    padding: 6px 0 6px 28px;
    position: relative;
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.7;
}

.terms-section ul li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #f17833;
    font-weight: 700;
}

/* Contact Details Box */
.contact-details-box {
    background: #f8fafc;
    border-radius: 16px;
    padding: 24px;
    margin-top: 12px;
    border: 1px solid #e9edf2;
}

.contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item i {
    color: #f17833;
    font-size: 1.2rem;
    width: 20px;
    margin-top: 2px;
}

.contact-item strong {
    display: block;
    font-size: 0.85rem;
    color: #0f172a;
}

.contact-item a,
.contact-item span {
    font-size: 0.9rem;
    color: #475569;
    text-decoration: none;
}

.contact-item a:hover {
    color: #f17833;
}

/* ----- Terms Acknowledgment ----- */
.terms-acknowledgment {
    padding: 60px 0 80px;
    background: #f8fafc;
}

.acknowledgment-box {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid #e9edf2;
    box-shadow: 0 12px 40px rgba(0,0,0,0.04);
}

.acknowledgment-box i {
    font-size: 3rem;
    color: #16a34a;
    display: block;
    margin-bottom: 12px;
}

.acknowledgment-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.acknowledgment-box p {
    font-size: 1.05rem;
    color: #64748b;
    max-width: 550px;
    margin: 0 auto 24px;
    line-height: 1.7;
}

.acknowledgment-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.acknowledgment-buttons .btn2 {
    background: transparent !important;
    color: #0f172a !important;
    border: 1px solid #e9edf2 !important;
    border-radius: 50px !important;
    padding: 14px 34px !important;
    font-weight: 600 !important;
}

.acknowledgment-buttons .btn2:hover {
    background: #f8fafc !important;
}

/* ============================================================ */
/* RESPONSIVE                                                    */
/* ============================================================ */

@media (max-width: 991.98px) {
    .terms-hero h1 {
        font-size: 2.4rem;
    }
    .terms-section h2 {
        font-size: 1.4rem;
    }
}

@media (max-width: 767.98px) {
    .terms-hero {
        padding: 40px 0;
    }
    .terms-hero h1 {
        font-size: 2rem;
    }
    .terms-subtitle {
        font-size: 1rem;
    }
    .terms-content {
        padding: 40px 0 60px;
    }
    .terms-section {
        margin-bottom: 24px;
        padding-bottom: 24px;
    }
    .terms-section h2 {
        font-size: 1.2rem;
    }
    .terms-section ul li {
        font-size: 0.9rem;
        padding: 4px 0 4px 24px;
    }
    .contact-details-box {
        padding: 16px;
    }
    .contact-item {
        padding: 6px 0;
        flex-direction: column;
        align-items: flex-start;
    }
    .acknowledgment-box {
        padding: 24px 20px;
    }
    .acknowledgment-box h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 575.98px) {
    .terms-hero h1 {
        font-size: 1.6rem;
    }
    .terms-effective {
        font-size: 0.75rem;
    }
    .terms-section h2 {
        font-size: 1.1rem;
    }
    .acknowledgment-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================================ */
/* CAREERS PAGE                                                 */
/* ============================================================ */

/* ----- Careers Hero ----- */
.careers-hero {
    background: linear-gradient(135deg, #fff8f0 0%, #ffffff 100%);
    padding: 60px 0;
    border-bottom: 1px solid #f3e2c8;
}

.careers-badge {
    display: inline-block;
    background: #fcecd2;
    color: #f17833;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.careers-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 12px;
}
.careers-hero h1 span {
    color: #f17833;
}

.careers-subtitle {
    font-size: 1.1rem;
    color: #475569;
    max-width: 500px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.careers-quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.careers-hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #e9edf2;
    box-shadow: 0 8px 30px rgba(0,0,0,0.04);
}

.career-stat {
    text-align: center;
}

.career-stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
}

.career-stat-label {
    display: block;
    font-size: 0.75rem;
    color: #64748b;
}

/* ----- Benefits ----- */
.careers-benefits {
    padding: 80px 0;
    background: #ffffff;
}

.benefits-intro {
    font-size: 1.05rem;
    color: #64748b;
    max-width: 550px;
    margin: 0 auto 40px;
}

.benefit-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    border: 1px solid #e9edf2;
    transition: all 0.3s ease;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.benefit-icon {
    font-size: 2.4rem;
    color: #f17833;
    margin-bottom: 10px;
}

.benefit-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}

.benefit-card p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* ----- Culture ----- */
.careers-culture {
    padding: 80px 0;
    background: #f8fafc;
}

.culture-intro {
    font-size: 1.05rem;
    color: #475569;
    margin-bottom: 20px;
}

.culture-values {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.culture-value {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #475569;
}

.culture-value i {
    color: #16a34a;
    font-size: 1.2rem;
}

.culture-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.culture-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.culture-overlay {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: rgba(15,23,42,0.85);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 20px 24px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
}

.culture-overlay i {
    color: #f17833;
    font-size: 1.2rem;
    opacity: 0.5;
}

.culture-overlay p {
    font-size: 0.95rem;
    font-style: italic;
    margin: 4px 0 6px;
    line-height: 1.5;
}

.culture-overlay span {
    font-size: 0.8rem;
    color: #94a3b8;
}

/* ----- Openings ----- */
.careers-openings {
    padding: 80px 0;
    background: #ffffff;
}

.openings-intro {
    font-size: 1.05rem;
    color: #64748b;
    max-width: 550px;
    margin: 0 auto 40px;
}

.opening-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #e9edf2;
    transition: all 0.3s ease;
    height: 100%;
}

.opening-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.opening-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.opening-header h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.opening-type {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.opening-type.full-time {
    background: #dcfce7;
    color: #16a34a;
}

.opening-type.part-time {
    background: #fef3c7;
    color: #d97706;
}

.opening-location {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-bottom: 8px;
}

.opening-location i {
    color: #f17833;
    margin-right: 4px;
}

.opening-desc {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 12px;
}

.opening-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.tag {
    background: #ffffff;
    color: #475569;
    font-size: 0.7rem;
    font-weight: 500;
    padding: 3px 12px;
    border-radius: 50px;
    border: 1px solid #e9edf2;
}

.opening-link {
    color: #f17833;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.opening-link:hover {
    color: #d96a2a;
}

.openings-note {
    font-size: 0.95rem;
    color: #64748b;
}
.openings-note a {
    color: #f17833;
    font-weight: 600;
    text-decoration: none;
}
.openings-note a:hover {
    text-decoration: underline;
}

/* ----- Internships ----- */
.careers-internships {
    padding: 80px 0;
    background: #f8fafc;
}

.internships-intro {
    font-size: 1.05rem;
    color: #64748b;
    max-width: 550px;
    margin: 0 auto 40px;
}

.internship-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    border: 1px solid #e9edf2;
    transition: all 0.3s ease;
    height: 100%;
}

.internship-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.internship-icon {
    font-size: 2.4rem;
    color: #f17833;
    margin-bottom: 10px;
}

.internship-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}

.internship-card p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 10px;
}

.internship-duration {
    display: inline-block;
    background: #fcecd2;
    color: #f17833;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 14px;
    border-radius: 50px;
}

/* ----- Testimonials ----- */
.careers-testimonials {
    padding: 80px 0;
    background: #ffffff;
}

/* ----- Apply Form ----- */
.careers-apply {
    padding: 80px 0;
    background: #f8fafc;
}

.apply-intro {
    font-size: 1.05rem;
    color: #64748b;
    max-width: 550px;
    margin: 0 auto 40px;
}

.apply-form-wrapper {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid #e9edf2;
}

.careers-form label {
    font-weight: 600;
    font-size: 0.85rem;
    color: #0f172a;
}

.careers-form .form-control {
    border-radius: 12px;
    border: 1px solid #e9edf2;
    padding: 12px 16px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.careers-form .form-control:focus {
    border-color: #f17833;
    box-shadow: 0 0 0 4px rgba(241,120,51,0.1);
}

.careers-form .btn1 {
    padding: 14px !important;
    font-size: 1.05rem !important;
}

/* ----- Talent Pool ----- */
.careers-talent {
    padding: 80px 0;
    background: #ffffff;
}

.talent-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.talent-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 0.95rem;
    color: #475569;
}

.talent-benefits i {
    color: #16a34a;
    font-size: 1.1rem;
}

.talent-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.talent-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.talent-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(15,23,42,0.8);
    color: #fff;
    padding: 16px 20px;
    border-radius: 12px;
    text-align: center;
}

.talent-overlay span {
    font-size: 1.1rem;
    font-weight: 700;
}

/* ============================================================ */
/* RESPONSIVE                                                    */
/* ============================================================ */

@media (max-width: 991.98px) {
    .careers-hero h1 {
        font-size: 2.4rem;
    }
    .careers-hero-stats {
        margin-top: 20px;
    }
    .career-stat-number {
        font-size: 1.5rem;
    }
    .culture-image img {
        height: 300px;
        margin-top: 20px;
    }
    .opening-header {
        flex-direction: column;
        gap: 6px;
    }
    .apply-form-wrapper {
        padding: 28px;
    }
}

@media (max-width: 767.98px) {
    .careers-hero {
        text-align: center;
    }
    .careers-hero h1 {
        font-size: 2rem;
    }
    .careers-subtitle {
        margin: 0 auto 20px;
    }
    .careers-quick-actions {
        justify-content: center;
    }
    .careers-quick-actions .btn {
        width: 100%;
        justify-content: center;
    }
    .careers-hero-stats {
        grid-template-columns: 1fr 1fr 1fr;
        padding: 16px;
    }
    .career-stat-number {
        font-size: 1.3rem;
    }
    .career-stat-label {
        font-size: 0.65rem;
    }
    .careers-benefits {
        padding: 60px 0;
    }
    .benefit-card {
        padding: 20px 16px;
    }
    .careers-culture {
        padding: 60px 0;
        text-align: center;
    }
    .culture-values {
        align-items: center;
    }
    .culture-image img {
        height: 240px;
    }
    .culture-overlay {
        left: 16px;
        right: 16px;
        bottom: 16px;
        padding: 16px;
    }
    .careers-openings {
        padding: 60px 0;
    }
    .opening-card {
        padding: 20px 16px;
    }
    .careers-internships {
        padding: 60px 0;
    }
    .internship-card {
        padding: 20px 16px;
    }
    .careers-testimonials {
        padding: 60px 0;
    }
    .careers-apply {
        padding: 60px 0;
    }
    .apply-form-wrapper {
        padding: 24px 16px;
    }
    .careers-talent {
        padding: 60px 0;
        text-align: center;
    }
    .talent-benefits {
        text-align: left;
    }
    .talent-image img {
        height: 220px;
        margin-top: 20px;
    }
}

@media (max-width: 575.98px) {
    .careers-hero h1 {
        font-size: 1.6rem;
    }
    .careers-hero-stats {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 8px;
        padding: 12px;
    }
    .career-stat-number {
        font-size: 1.1rem;
    }
    .career-stat-label {
        font-size: 0.55rem;
    }
    .opening-tags {
        gap: 4px;
    }
    .tag {
        font-size: 0.6rem;
        padding: 2px 8px;
    }
    .talent-image img {
        height: 180px;
    }
}