/* ==========================================================================
   STATIC PAGES STYLES - PREMIUM MODERN AESTHETIC
   ========================================================================== */

:root {
    --brand-primary: #AF2032;
    --brand-primary-soft: rgba(175, 32, 50, 0.08);
    --brand-secondary: #8c1a28;
    --brand-bg: #f8faff;
    --brand-card-bg: #ffffff;
    --brand-text-main: #1e293b;
    --brand-text-muted: #64748b;
    --brand-border: #f1f5f9;
    --brand-shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --brand-shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --brand-bg-alt: #fbfcfe;
}

.static-page-wrapper {
    background-color: var(--brand-bg);
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: 80px;
    font-family: 'Archivo', sans-serif;
}

/* Typography Helpers */
.fw-800 {
    font-weight: 800 !important;
}

.fs-16 {
    font-size: 16px !important;
}

.lh-1-6 {
    line-height: 1.6 !important;
}

.lh-1-8 {
    line-height: 1.8 !important;
}

.hover-brand:hover {
    color: var(--brand-primary) !important;
}

.last-child-border-0:last-child {
    border-bottom: 0 !important;
}

.static-hero {
    padding: 60px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 10% 20%, rgba(175, 32, 50, 0.02) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(175, 32, 50, 0.02) 0%, transparent 40%);
}

.static-hero h1 {
    font-size: 52px;
    font-weight: 700;
    color: var(--brand-text-main);
    margin-bottom: 24px;
    letter-spacing: -0.04em;
}

.static-hero p {
    font-size: 19px;
    color: var(--brand-text-muted);
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Category Grid */
.category-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 40px;
    position: relative;
    z-index: 10;
}

.cat-nav-card {
    background: var(--brand-card-bg);
    border: 1px solid var(--brand-border);
    border-radius: 24px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--brand-shadow-sm);
    text-decoration: none;
    color: inherit;
    display: block;
}

.cat-nav-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--brand-shadow-md);
    border-color: var(--brand-primary-soft);
}

.cat-nav-card .cat-icon {
    width: 56px;
    height: 56px;
    background: var(--brand-primary-soft);
    color: var(--brand-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.cat-nav-card h5 {
    font-weight: 700;
    margin-bottom: 4px;
}

.cat-nav-card span {
    font-size: 13px;
    color: var(--brand-text-muted);
}

/* Benefit Cards Section */
.static-section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--brand-text-main);
    margin-bottom: 40px;
    text-align: center;
}

.benefit-card {
    background: var(--brand-card-bg);
    border: 1px solid var(--brand-border);
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: var(--brand-shadow-sm);
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--brand-shadow-md);
    border-color: rgba(175, 32, 50, 0.1);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    background: rgba(175, 32, 50, 0.05);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--brand-primary);
}

.benefit-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--brand-text-main);
}

.benefit-card p {
    color: var(--brand-text-muted);
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Apply Section */
.apply-section {
    margin-top: 80px;
    padding: 60px;
    background: var(--brand-card-bg);
    border-radius: 30px;
    border: 1px solid var(--brand-border);
    box-shadow: var(--brand-shadow-md);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.apply-section::after {
    content: "";
    position: absolute;
    bottom: -20%;
    right: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(175, 32, 50, 0.04) 0%, transparent 70%);
    z-index: 0;
}

.apply-content {
    position: relative;
    z-index: 1;
}

.apply-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.apply-section p {
    font-size: 16px;
    color: var(--brand-text-muted);
    margin-bottom: 32px;
}

.apply-btn {
    background: var(--brand-primary);
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(175, 32, 50, 0.15);
}

.apply-btn:hover {
    background: var(--brand-secondary);
    color: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(175, 32, 50, 0.25);
}

.apply-footer {
    margin-top: 24px;
    color: var(--brand-text-muted);
    font-size: 14px;
}

/* Utility */
.brand-accent {
    color: var(--brand-primary);
}

.fw-700 {
    font-weight: 700;
}

.fs-13 {
    font-size: 13px !important;
}

.fs-14 {
    font-size: 14px !important;
}

.fs-42 {
    font-size: 42px !important;
}

.lh-1 {
    line-height: 1 !important;
}

.text-main {
    color: var(--brand-text-main) !important;
}

.text-white-important {
    color: #fff !important;
}

.bg-brand-primary {
    background-color: var(--brand-primary) !important;
}

.ls-2 {
    letter-spacing: 2px;
}

.bg-soft-primary {
    background-color: var(--brand-primary-soft) !important;
}

.bg-alt {
    background-color: var(--brand-bg-alt) !important;
}

/* Static Content Typography */
.static-content h1,
.static-content h2,
.static-content h3,
.static-content h4,
.static-content h5,
.static-content h6 {
    color: var(--brand-text-main);
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1.2rem;
}

.static-content p {
    margin-bottom: 1.2rem;
    line-height: 1.7;
    color: var(--brand-text-muted);
}

.static-content ul,
.static-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.static-content li {
    margin-bottom: 0.5rem;
    color: var(--brand-text-muted);
}

.static-content a {
    color: var(--brand-primary);
    text-decoration: underline;
}

/* Accordion Overrides 2.0 */
.faq-accordion .accordion-item {
    border: 1px solid var(--brand-border);
    border-radius: 20px !important;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fff;
}

.faq-accordion .accordion-item:has(.accordion-button:not(.collapsed)) {
    border-color: var(--brand-primary-soft);
    box-shadow: var(--brand-shadow-md);
}

.faq-accordion .accordion-button {
    padding: 24px 32px;
    font-weight: 700;
    font-size: 17px;
    background: transparent;
    color: var(--brand-text-main);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--brand-primary);
}

.faq-accordion .accordion-button::after {
    background-image: none;
    content: "+";
    font-size: 24px;
    font-weight: 400;
    width: auto;
    height: auto;
    transition: transform 0.3s ease;
    color: var(--brand-text-muted);
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    content: "−";
    color: var(--brand-primary);
}

.faq-accordion .accordion-body {
    padding: 0 32px 32px;
    color: var(--brand-text-muted);
    font-size: 16px;
    line-height: 1.6;
}

/* Support CTA Block - Refined Colors */
.support-cta-block {
    margin-top: 80px;
    padding: 60px;
    background: #fff;
    border: 1px solid var(--brand-border);
    border-radius: 40px;
    text-align: center;
    box-shadow: var(--brand-shadow-md);
}

.support-cta-block h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--brand-text-main);
}

.support-cta-block p {
    font-size: 17px;
    color: var(--brand-text-muted);
    margin-bottom: 32px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-support-call {
    background: var(--brand-primary);
    color: #fff;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-support-call:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(175, 32, 50, 0.15);
    color: #fff;
}

.btn-support-mail {
    background: var(--brand-primary-soft);
    color: var(--brand-primary);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-support-mail:hover {
    background: rgba(175, 32, 50, 0.12);
    color: var(--brand-primary);
}

/* Contact Page Enhancements */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.contact-info-card {
    background: var(--brand-card-bg);
    border: 1px solid var(--brand-border);
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: var(--brand-shadow-sm);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--brand-shadow-md);
    border-color: var(--brand-primary-soft);
}

.contact-info-card .icon-box {
    width: 64px;
    height: 64px;
    background: var(--brand-primary-soft);
    color: var(--brand-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 28px;
    transition: all 0.3s ease;
}

.contact-info-card:hover .icon-box {
    background: var(--brand-primary);
    color: #fff;
    transform: scale(1.1) rotate(5deg);
}

.contact-info-card h4 {
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--brand-text-main);
}

.contact-info-card p {
    font-size: 15px;
    color: var(--brand-text-muted);
    margin-bottom: 16px;
}

.contact-info-card .info-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--brand-text-main);
    transition: color 0.3s ease;
    word-break: break-word;
    line-height: 1.5;
}

.contact-info-card:hover .info-value {
    color: var(--brand-primary);
}

/* Contact Form Center Layout */
.contact-entry-card {
    background: var(--brand-card-bg);
    border: 1px solid var(--brand-border);
    border-radius: 32px;
    padding: 48px;
    box-shadow: var(--brand-shadow-md);
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .contact-entry-card {
        padding: 32px 24px;
    }
}

.form-premium .form-group {
    margin-bottom: 24px;
}

.form-premium .form-label {
    font-weight: 700;
    color: var(--brand-text-main);
    margin-bottom: 8px;
    font-size: 14px;
    display: block;
}

.form-premium .form-control {
    border: 1px solid var(--brand-border);
    border-radius: 14px;
    padding: 14px 20px;
    font-size: 15px;
    background: #fcfdfe;
    transition: all 0.3s ease;
    width: 100%;
}

.form-premium .form-control:focus {
    border-color: var(--brand-primary);
    background: #fff;
    box-shadow: 0 0 0 4px var(--brand-primary-soft);
    outline: none;
}

.btn-contact-submit {
    background: var(--brand-primary);
    color: #fff !important;
    border: none;
    border-radius: 50px;
    padding: 18px 40px;
    font-weight: 700;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(175, 32, 50, 0.15);
}

.btn-contact-submit:hover {
    background: var(--brand-secondary);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(175, 32, 50, 0.25);
}

.btn-contact-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* About Us Enhancements */
.stats-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.stat-card-premium {
    background: var(--brand-card-bg);
    border: 1px solid var(--brand-border);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: var(--brand-shadow-sm);
}

.stat-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: var(--brand-shadow-md);
    border-color: var(--brand-primary-soft);
}

.stat-card-premium .stat-icon {
    width: 60px;
    height: 60px;
    background: var(--brand-primary-soft);
    color: var(--brand-primary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 28px;
}

.stat-card-premium h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--brand-primary);
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.stat-card-premium p {
    font-size: 15px;
    font-weight: 600;
    color: var(--brand-text-muted);
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vision-mission-card {
    background: var(--brand-card-bg);
    border: 1px solid var(--brand-border);
    border-radius: 32px;
    padding: 50px;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.about-brand-box {
    background: #fff;
    border-radius: 40px;
    padding: 80px 60px;
    box-shadow: var(--brand-shadow-md);
    border: 1px solid var(--brand-border);
    position: relative;
    overflow: hidden;
}

.about-brand-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--brand-primary);
}

.vision-mission-card:hover {
    box-shadow: var(--brand-shadow-md);
    border-color: var(--brand-primary-soft);
}

.vision-mission-card .card-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--brand-primary);
}

.feature-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.feature-item-premium {
    background: #fff;
    border: 1px solid var(--brand-border);
    border-radius: 24px;
    padding: 32px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-item-premium:hover {
    transform: translateY(-5px);
    box-shadow: var(--brand-shadow-sm);
    border-color: var(--brand-primary-soft);
}

.feature-item-premium .icon-box {
    width: 56px;
    height: 56px;
    background: var(--brand-primary-soft);
    color: var(--brand-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
}

.feature-item-premium h5 {
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--brand-text-main);
}

.feature-item-premium p {
    font-size: 14px;
    color: var(--brand-text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Blog Listing & Details */
.blog-card-premium {
    background: #fff;
    border: 1px solid var(--brand-border);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: var(--brand-shadow-sm);
}

.blog-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: var(--brand-shadow-md);
    border-color: var(--brand-primary-soft);
}

.blog-card-img-wrap {
    position: relative;
    padding-top: 60%;
    /* 16:9 approx */
    overflow: hidden;
    background: var(--brand-bg);
}

.blog-card-img-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card-premium:hover .blog-card-img-wrap img {
    transform: scale(1.08);
}

.blog-card-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.meta-tag-pill {
    background: var(--brand-primary-soft);
    color: var(--brand-primary);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.meta-date {
    font-size: 13px;
    color: var(--brand-text-muted);
    font-weight: 500;
}

.blog-card-premium h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
    color: var(--brand-text-main);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-vertical: vertical;
    overflow: hidden;
}

.blog-card-premium p {
    font-size: 14px;
    color: var(--brand-text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-read-more {
    margin-top: auto;
    color: var(--brand-primary);
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.btn-read-more:hover {
    gap: 10px;
    color: var(--brand-secondary);
}

/* Blog Details */
.blog-details-premium .blog-main-img {
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--brand-shadow-md);
    margin-bottom: 40px;
}

.blog-article-content {
    font-size: 17px;
    line-height: 1.8;
    color: var(--brand-text-main);
}

.blog-article-content p {
    margin-bottom: 24px;
    color: var(--brand-text-muted);
}

.blog-article-content h2,
.blog-article-content h3 {
    font-weight: 700;
    margin: 40px 0 20px;
    color: var(--brand-text-main);
}

.blog-article-content blockquote {
    border-left: 4px solid var(--brand-primary);
    padding: 24px 32px;
    background: var(--brand-primary-soft);
    border-radius: 0 24px 24px 0;
    font-style: italic;
    color: var(--brand-text-main);
    margin: 32px 0;
}

/* Sidebar Widgets */
.sidebar-widget-premium {
    background: #fff;
    border: 1px solid var(--brand-border);
    border-radius: 24px;
    padding: 32px;
    margin-bottom: 30px;
    box-shadow: var(--brand-shadow-sm);
}

.widget-title-premium {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--brand-primary-soft);
    position: relative;
}

.widget-title-premium::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--brand-primary);
}

.recent-post-item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--brand-border);
}

.recent-post-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-post-thumb {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
}

.recent-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-info h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
    line-height: 1.4;
}

.recent-post-info h4 a {
    color: var(--brand-text-main);
    text-decoration: none;
}

.recent-post-info h4 a:hover {
    color: var(--brand-primary);
}

.recent-post-info .post-date {
    font-size: 12px;
    color: var(--brand-text-muted);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .static-hero h1 {
        font-size: 40px;
    }

    .about-brand-box {
        padding: 60px 30px;
        border-radius: 32px;
    }

    .about-brand-box h2 {
        font-size: 32px !important;
    }
}

@media (max-width: 767px) {
    .static-page-wrapper {
        padding-top: 80px;
    }

    .static-hero {
        padding: 100px 0 70px;
    }

    .static-hero h1 {
        font-size: 32px;
    }

    .static-hero p {
        font-size: 17px;
    }

    .about-brand-box {
        padding: 40px 20px;
        border-radius: 24px;
    }

    .about-brand-box h2 {
        font-size: 28px !important;
    }

    .stat-card-premium {
        padding: 30px 20px;
    }

    .stat-card-premium h2 {
        font-size: 32px;
    }

    .vision-mission-card {
        padding: 32px;
    }

    /* Blog Responsive */
    .blog-card-premium h3 {
        font-size: 18px;
    }

    .blog-article-content {
        font-size: 16px;
    }

    .blog-article-content h2 {
        font-size: 24px;
    }

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

    .sidebar-widget-premium {
        padding: 24px;
    }
}