 

/* ============ PAGE HERO (Internal Pages) ============ */
.page-hero {
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 50%, #FFF5E0 100%);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.04;
    top: -150px;
    right: -100px;
}

.page-hero::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.03;
    bottom: -100px;
    left: -80px;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero .breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--gray);
}

.page-hero .breadcrumb-nav a {
    color: var(--gold);
    font-weight: 600;
}

.page-hero .breadcrumb-nav a:hover {
    color: var(--gold-dark);
}

.page-hero .breadcrumb-nav .separator {
    color: var(--gray-light);
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 16px;
    line-height: 1.3;
}

.page-hero .page-subtitle {
    font-size: 20px;
    color: var(--gray);
    max-width: 650px;
    line-height: 1.8;
}

/* ============ CONTENT SECTIONS ============ */
.content-section {
    padding: 80px 0; overflow: hidden;
}

    .content-section.bg-cream {
        background: var(--cream);
        overflow-x: hidden;
        height: auto;
    } }
    .content-section.bg-light {
        background: var(--bg-light);
    }

.content-block {
    margin-bottom: 48px;
}

.content-block:last-child {
    margin-bottom: 0;
}

.content-block h2 {
    font-size: 32px;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 20px;
}

.content-block h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 16px;
}

.content-block p {
    font-size: 17px;
    color: var(--gray);
    line-height: 1.9;
    margin-bottom: 16px;
}

.content-block p:last-child {
    margin-bottom: 0;
}

/* ============ INFO CARDS ============ */
.info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
    height: 100%;
 
}

.info-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(245, 166, 35, 0.2);
}

    .info-card .card-icon {
        width: 64px;
        height: 64px;
        background: linear-gradient(135deg, var(--cream), var(--cream-dark));
        border-radius: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        transition: var(--transition);
    }

.info-card .card-icon i {
    font-size: 28px;
    color: var(--gold);
    transition: var(--transition);
}

.info-card:hover .card-icon {
    background: var(--gold);
}

.info-card:hover .card-icon i {
    color: var(--white);
}

.info-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
}

    .info-card p {
        font-size: 15px; 
        color: var(--gray);
        line-height: 1.8;
    }

/* ============ TIMELINE / STEPS ============ */
.timeline {
    position: relative;
    padding-right: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    right: 15px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--gold), var(--cream-dark));
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    padding-bottom: 40px;
    padding-right: 40px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item .timeline-dot {
    position: absolute;
    right: -40px;
    top: 4px;
    width: 32px;
    height: 32px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 0 0 6px rgba(245, 166, 35, 0.15);
    z-index: 2;
}

.timeline-item h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 8px;
}

.timeline-item p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
}

/* ============ FEATURE LIST (Checkmarks) ============ */
.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 16px;
    color: var(--dark);
    line-height: 1.7;
}

.check-list li i {
    color: var(--gold);
    font-size: 18px;
    margin-top: 4px;
    flex-shrink: 0;
}

.cross-list li i {
    color: var(--red);
}

/* ============ HIGHLIGHT BOX ============ */
.highlight-box {
    background: linear-gradient(135deg, var(--cream), #FFF5E0);
    border-radius: var(--radius-lg);
    padding: 32px;
    border-right: 4px solid var(--gold);
    margin: 24px 0;
}

.highlight-box.dark {
    background: linear-gradient(135deg, var(--black), var(--dark));
    color: var(--white);
    border-right-color: var(--gold);
}

.highlight-box.dark p {
    color: rgba(255, 255, 255, 0.8);
}

.highlight-box.dark .check-list li,
.highlight-box.dark .cross-list li {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.highlight-box.dark .check-list li i,
.highlight-box.dark .cross-list li i {
    color: #E74C3C;
}

.highlight-box.dark h3 {
    color: var(--white);
}

.highlight-box h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
}

.highlight-box p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 0;
}

/* ============ PRINCIPLES CARDS ============ */
.principle-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
    height: 100%;
}

.principle-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.principle-number {
    width: 48px;
    height: 48px;
    background: var(--gold);
    color: var(--white);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 900;
    margin: 0 auto 16px;
}

.principle-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
}

.principle-card p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
}

/* ============ COMPARISON TABLE ============ */
.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.comparison-table thead th {
    background: var(--black);
    color: var(--white);
    padding: 16px 24px;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
}

.comparison-table thead th:first-child {
    text-align: right;
}

.comparison-table tbody td {
    padding: 14px 24px;
    font-size: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    text-align: center;
}

.comparison-table tbody td:first-child {
    text-align: right;
    font-weight: 600;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background: var(--cream);
}

.comparison-table .icon-check {
    color: var(--green);
    font-size: 20px;
}

.comparison-table .icon-cross {
    color: var(--red);
    font-size: 20px;
}

/* ============ COVERAGE MAP PLACEHOLDER ============ */
.coverage-map {
    background: linear-gradient(135deg, #E8F4E8, #D4E8D4);
    background: linear-gradient(135deg, var(--black) 0%, var(--dark) 100%);
    border-radius: var(--radius-lg);
    padding: 60px 30px; 
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .coverage-map i {
        font-size: 64px;
        color: var(--gold);
        margin-bottom: 5px;
        vertical-align: middle;
    }

    .coverage-map h3 {
        font-size: 22px;
        font-weight: 800;
        margin-bottom: 8px;
        color: #fff;
    }

    .coverage-map p {
        font-size: 16px;
        color: rgba(255, 255, 255, 0.8);
    }

/* ============ LEGAL PAGE STYLES ============ */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 26px;
    font-weight: 800;
    color: var(--black);
    margin-top: 40px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--cream-dark);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.9;
    margin-bottom: 12px;
}

.legal-content ul {
    list-style: none;
    padding: 0;
    margin: 12px 0 20px;
}

.legal-content ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 15px;
    color: var(--dark);
    line-height: 1.7;
}

.legal-content ul li::before {
    content: '\F26A';
    font-family: 'bootstrap-icons';
    color: var(--gold);
    font-size: 14px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* ============ CONTACT PAGE ============ */
.contact-info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(245, 166, 35, 0.2);
}

.contact-info-card .icon-wrap {
    width: 72px;
    height: 72px;
    background: var(--cream);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.contact-info-card .icon-wrap i {
    font-size: 32px;
    color: var(--gold);
    transition: var(--transition);
}

.contact-info-card:hover .icon-wrap {
    background: var(--gold);
}

.contact-info-card:hover .icon-wrap i {
    color: var(--white);
}

.contact-info-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 8px;
}

.contact-info-card p {
    font-size: 15px;
    color: var(--gray);
    margin-bottom: 16px;
    line-height: 1.7;
}

.contact-info-card .contact-value {
    display: inline-block;
    color: var(--gold);
    font-weight: 700;
    font-size: 17px;
    transition: var(--transition-fast);
}

.contact-info-card .contact-value:hover {
    color: var(--gold-dark);
}

/* ============ CTA BANNER (Internal Pages) ============ */
.page-cta {
    background: linear-gradient(135deg, var(--black) 0%, var(--dark) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.page-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(245, 166, 35, 0.08) 0%, transparent 50%),
                       radial-gradient(circle at 80% 50%, rgba(245, 166, 35, 0.05) 0%, transparent 50%);
}

.page-cta .container {
    position: relative;
    z-index: 2;
}

.page-cta h2 {
    font-size: 36px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 16px;
}

.page-cta h2 span {
    color: var(--gold);
}

.page-cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
}

/* ============ INTERNAL PAGES RESPONSIVE ============ */
@media (max-width: 991px) {
    .page-hero {
        padding: 120px 0 60px;
    }

    .page-hero h1 {
        font-size: 36px;
    }

    .content-section {
        padding: 60px 0;
    }

    .timeline {
        padding-right: 30px;
    }
}

@media (max-width: 767px) {
    .page-hero {
        padding: 110px 0 50px;
    }

    .page-hero h1 {
        font-size: 30px;
    }

    .page-hero .page-subtitle {
        font-size: 17px;
    }

    .content-block h2 {
        font-size: 26px;
    }

    .content-block h3 {
        font-size: 20px;
    }

    .page-cta h2 {
        font-size: 28px;
    }

    .highlight-box {
        padding: 24px;
    }

    .legal-content h2 {
        font-size: 22px;
    }
}
@media (max-width: 575px) {
    .content-section {
        padding: 45px 0;
    }
  
    .timeline-item .timeline-dot {
        right: -28px;
    }
    .timeline-item { 
        padding-right: 20px;
    }
    .principle-card { 
        padding: 22px 12px;
    }
    .info-card {  
        padding: 22px 14px;
    }
        .info-card .card-icon i {
            font-size: 20px;
        }
        .info-card .card-icon {
            width: 52px;
            height: 52px;
            border-radius: 10px;
        }
        .info-card h3 {
            font-size: 20px;
        }
        }