/* ===================================
   Policy Pages – Shared Stylesheet
   Volantix Flights Private Limited
====================================== */

/* ─── PAGE HERO ─────────────────────── */
.policy-hero {
    position: relative;
    padding: 9rem 0 4rem;
    background: url('../images/bg-img2.jpg') center center / cover no-repeat;
    overflow: hidden;
}
.policy-hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.6rem;
}
.policy-hero p {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 1.2rem;
}
@media (max-width: 767px) {
    .policy-hero { padding: 7rem 0 3rem; }
    .policy-hero h1 { font-size: 30px; }
}

/* ─── BREADCRUMB ────────────────────── */
.policy-breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
    font-size: 13px;
}
.policy-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.5);
    content: "›";
}

/* ─── CONTENT SECTION ───────────────── */
.policy-content {
    padding: 5rem 0;
    background: #f8f9fc;
}

/* ─── POLICY BOX ────────────────────── */
.policy-box {
    background: #ffffff;
    border-radius: 16px;
    padding: 3rem 3.5rem;
    box-shadow: 0 4px 32px rgba(0,0,0,0.07);
}
@media (max-width: 767px) {
    .policy-box { padding: 2rem 1.5rem; }
}

/* ─── INTRO BLOCK ───────────────────── */
.policy-intro {
    background: linear-gradient(135deg, rgba(50,100,245,0.07), rgba(114,2,187,0.07));
    border-left: 4px solid #3264f5;
    border-radius: 0 8px 8px 0;
    padding: 1.4rem 1.8rem;
    margin-bottom: 2.5rem;
}
.policy-intro p {
    margin: 0;
    font-size: 15px;
    color: #444;
    line-height: 26px;
}

/* ─── POLICY SECTIONS ───────────────── */
.policy-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #f0f0f0;
}
.policy-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.policy-section h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}
.policy-section p {
    font-size: 14px;
    color: #666;
    line-height: 26px;
    margin-bottom: 0.8rem;
}
.policy-section ul {
    padding-left: 0;
    list-style: none;
    margin: 0.5rem 0 0;
}
.policy-section ul li {
    font-size: 14px;
    color: #666;
    padding: 6px 0 6px 22px;
    position: relative;
    line-height: 24px;
    border-bottom: 1px solid #f8f8f8;
}
.policy-section ul li::before {
    content: '›';
    position: absolute;
    left: 6px;
    color: #3264f5;
    font-weight: 700;
    font-size: 16px;
}
.policy-section a { color: #3264f5; text-decoration: none; font-weight: 500; }
.policy-section a:hover { color: #7202bb; }

/* ─── POLICY SECTION NUMBER ─────────── */
.policy-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3264f5, #7202bb);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    flex-shrink: 0;
}

/* ─── TABLE ─────────────────────────── */
.policy-table-wrap {
    overflow-x: auto;
    margin: 1rem 0;
    border-radius: 8px;
    border: 1px solid #eee;
}
.policy-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}
.policy-table thead tr {
    background: linear-gradient(90deg, #3264f5, #7202bb);
    color: #fff;
}
.policy-table th {
    padding: 12px 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-align: left;
    font-size: 13px;
}
.policy-table tbody tr:nth-child(even) { background: #f8f9fc; }
.policy-table tbody tr:hover { background: rgba(50,100,245,0.05); }
.policy-table td {
    padding: 12px 16px;
    color: #555;
    border-bottom: 1px solid #eee;
}

/* ─── NOTE BOX ──────────────────────── */
.policy-note {
    background: #fff8e1;
    border: 1px solid #ffe082;
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 13px;
    color: #7a6000;
    margin-top: 1rem;
}
.policy-note i { margin-right: 6px; color: #f59e0b; }
.policy-note a { color: #3264f5; }

/* ─── CONTACT CTA BOX ───────────────── */
.policy-contact-box {
    background: linear-gradient(135deg, #3264f5, #7202bb);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    margin-top: 2.5rem;
    color: #fff;
}
.policy-contact-box i {
    font-size: 36px;
    color: #FFD166;
    margin-bottom: 1rem;
    display: block;
}
.policy-contact-box h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}
.policy-contact-box p { color: rgba(255,255,255,0.85); font-size: 14px; margin: 0; }

/* ─── CONTACT PAGE CARDS ─────────────── */
.contact-info-card {
    background: #fff;
    border-radius: 14px;
    padding: 2.5rem 1.5rem;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    height: 100%;
    transition: transform 0.3s;
}
.contact-info-card:hover { transform: translateY(-6px); }
.contact-info-card h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 1rem 0 0.5rem;
}
.contact-info-card p {
    font-size: 14px;
    color: #777;
    line-height: 24px;
    margin: 0;
}
.contact-info-card a { color: #3264f5; text-decoration: none; }
.contact-info-card a:hover { color: #7202bb; }

.contact-info-icon {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3264f5, #7202bb);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
.contact-info-icon i { font-size: 24px; color: #fff; }

/* ─── CAREERS PAGE ──────────────────── */
.career-role-card {
    background: #f8f9fc;
    border-radius: 12px;
    padding: 1.8rem 2rem;
    margin-bottom: 1.2rem;
    border-left: 4px solid #3264f5;
    transition: box-shadow 0.3s;
}
.career-role-card:hover { box-shadow: 0 4px 24px rgba(50,100,245,0.12); }
.career-role-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.8rem;
    flex-wrap: wrap;
}
.career-role-card h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 6px;
}
.career-role-card p {
    font-size: 14px;
    color: #777;
    line-height: 24px;
    margin: 0;
}
.career-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.career-tag {
    font-size: 11px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    padding: 3px 10px;
    border-radius: 20px;
    background: linear-gradient(90deg, rgba(50,100,245,0.12), rgba(114,2,187,0.12));
    color: #3264f5;
}

/* ─── FOOTER (policy pages) ─────────── */
.policy-footer-min {
    padding: 2.5rem 0 !important;
}
.policy-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0 18px;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: flex-end;
}
.policy-footer-links li a {
    font-size: 12px;
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
}
.policy-footer-links li a:hover { color: #3264f5; }
@media (max-width: 767px) {
    .policy-footer-links { justify-content: center; margin-bottom: 10px; }
}
