/* Template: Security Policy Styles */

:root {
    --vbbk-luxury-gold: #B88E2F;
    --vbbk-brand-navy: #132a4a;
    --vbbk-text-dark: #222222;
    --vbbk-text-muted: #676767;
}

.template-security-page {
    padding-bottom: 80px;
}

/* Hero Section (About Style) */
.security-hero {
    position: relative;
    height: 50vh;
    min-height: 350px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 !important;
}

.security-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.security-hero .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.security-hero .vbbk-breadcrumb {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    font-size: 13px;
}

.vbbk-breadcrumb a { color: inherit; text-decoration: none; }
.vbbk-breadcrumb .sep { margin: 0 10px; }

.security-hero .page-title {
    color: #fff;
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.security-hero .hero-desc {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Sections General */
.security-section {
    padding-bottom: 40px; /* Reduced gap between sections */
}

.section-title {
    font-family: var(--font-heading), serif;
    font-size: 32px;
    color: var(--vbbk-brand-navy);
    margin-bottom: 25px;
}

.text-center { text-align: center; }

/* Grid Layouts */
.sec-grid-2-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-top: 60px;
}

/* List Styles */
.security-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.security-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 16px;
    color: var(--vbbk-text-dark);
}

.security-list li i {
    font-size: 22px;
    color: var(--vbbk-luxury-gold);
}

.security-list.check-list li i {
    color: #27ae60;
}

/* Storage Box */
.storage-box {
    background: #f4f7fb;
    padding: 30px 40px !important;
    border-radius: 15px;
    border-left: 5px solid var(--vbbk-brand-navy);
    margin-bottom: 40px !important;
}

.storage-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.storage-content i {
    font-size: 48px;
    color: var(--vbbk-brand-navy);
}

.storage-content .section-title {
    margin-bottom: 10px;
}

.storage-content p {
    margin: 0;
    font-size: 16px;
    color: var(--vbbk-text-muted);
}

/* Commitment Grid */
.security-commitment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.commit-card {
    background: #fff;
    padding: 40px 30px;
    border: 1px solid #f2f2f2;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.commit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    border-color: var(--vbbk-luxury-gold);
}

.commit-icon {
    width: 60px;
    height: 60px;
    background: #FFFAF0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 28px;
    color: var(--vbbk-luxury-gold);
}

.commit-card h3 {
    font-size: 18px;
    color: var(--vbbk-brand-navy);
    margin-bottom: 15px;
}

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

/* Support CTA Section */
.security-support-cta {
    padding: var(--section-padding);
    background: #fdfdfd;
}

.support-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

.support-text { flex: 1; }
.support-text h2 { font-family: var(--font-heading), serif; font-size: 42px; color: var(--brand-navy); margin-bottom: 15px; }
.support-text p { color: var(--vbbk-text-muted); font-size: 16px; }

.support-card {
    flex: 0 0 450px;
    background: #fff;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
    border-radius: 20px;
}

.support-card h3 { font-size: 22px; margin-bottom: 25px; color: var(--vbbk-brand-navy); }

.contact-list .contact-item { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
.contact-item i { width: 32px; height: 32px; background: #FFFAF0; color: var(--vbbk-luxury-gold); display: flex; align-items: center; justify-content: center; border-radius: 50%; }
.c-info span { display: block; font-size: 11px; color: var(--vbbk-text-muted); }
.c-info strong { font-size: 14px; }

/* Responsive */
@media (max-width: 991px) {
    .sec-grid-2-col, .security-commitment-grid { grid-template-columns: 1fr; gap: 30px; }
    .support-flex { flex-direction: column; text-align: center; }
    .support-card { width: 100%; max-width: 500px; flex: none; }
}

@media (max-width: 767px) {
    .template-security-page {
        padding-bottom: 56px;
    }

    .security-hero {
        min-height: 320px;
    }

    .security-hero .page-title {
        font-size: 36px;
        line-height: 1.25;
    }

    .security-hero .hero-desc {
        font-size: 16px;
    }

    .sec-grid-2-col {
        margin-top: 40px;
        gap: 24px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .security-list li {
        align-items: flex-start;
        margin-bottom: 14px;
    }

    .storage-box {
        padding: 24px 22px !important;
        margin-bottom: 24px !important;
    }

    .storage-content {
        align-items: flex-start;
        gap: 18px;
    }

    .security-commitment-grid {
        gap: 18px;
        margin-top: 24px;
    }

    .commit-card {
        padding: 26px 22px;
    }

    .support-text h2 {
        font-size: 34px;
    }

    .support-card {
        padding: 28px 24px;
        border-radius: 16px;
    }
}

@media (max-width: 430px) {
    html,
    body {
        overflow-x: hidden;
    }

    .template-security-page {
        padding-bottom: 44px;
        overflow-x: hidden;
    }

    .security-hero {
        height: auto;
        min-height: 280px;
        padding: 56px 0 42px !important;
    }

    .security-hero .container {
        padding: 0 16px;
    }

    .security-hero .vbbk-breadcrumb {
        font-size: 12px;
        margin-bottom: 14px;
    }

    .vbbk-breadcrumb .sep {
        margin: 0 6px;
    }

    .security-hero .page-title,
    .page-title {
        font-size: 26px;
        line-height: 1.25;
        margin-bottom: 10px;
        word-break: break-word;
    }

    .security-hero .hero-desc {
        font-size: 14px;
        line-height: 1.6;
    }

    .security-content-wrapper {
        padding-top: 24px;
    }

    .sec-grid-2-col {
        gap: 20px;
        margin-top: 30px;
    }

    .security-section {
        padding-bottom: 24px;
    }

    .section-title {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 14px;
    }

    .section-desc {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 14px;
    }

    .security-list li {
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 12px;
        font-size: 14px;
        line-height: 1.5;
    }

    .security-list li i {
        font-size: 18px;
        margin-top: 2px;
        flex-shrink: 0;
    }

    .storage-box {
        padding: 18px 14px !important;
        border-left-width: 3px;
        border-radius: 12px;
        margin-bottom: 20px !important;
    }

    .storage-content {
        align-items: flex-start;
        gap: 12px;
    }

    .storage-content i {
        font-size: 30px;
        margin-top: 2px;
    }

    .storage-content p {
        font-size: 14px;
        line-height: 1.6;
    }

    .security-commitment-grid {
        gap: 12px;
        margin-top: 16px;
    }

    .commit-card {
        padding: 20px 14px;
        border-radius: 10px;
    }

    .commit-icon {
        width: 46px;
        height: 46px;
        margin: 0 auto 12px;
        font-size: 20px;
    }

    .commit-card h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .commit-card p {
        font-size: 13px;
        line-height: 1.55;
    }

    .security-support-cta {
        padding: 42px 0;
    }

    .support-flex {
        gap: 22px;
        text-align: left;
    }

    .support-text h2 {
        font-size: 28px;
        line-height: 1.25;
        margin-bottom: 10px;
    }

    .support-text p {
        font-size: 14px;
        line-height: 1.6;
        margin: 0;
    }

    .support-card {
        padding: 20px 16px;
        border-radius: 14px;
    }

    .support-card h3 {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .contact-list .contact-item {
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 14px;
    }

    .contact-item i {
        width: 34px;
        height: 34px;
        font-size: 16px;
        flex-shrink: 0;
    }

    .c-info span {
        font-size: 11px;
    }

    .c-info strong {
        font-size: 14px;
        line-height: 1.45;
        word-break: break-word;
    }
}
