/* ===================================================================
   BALVIRT — GLOBAL POLISH CSS
   Consistent, professional design system across all pages
   =================================================================== */

/* ---- 1. CONSISTENT SECTION HEADINGS WITH GRADIENT ACCENT ---- */
.sec-heading {
    text-align: center;
    margin-bottom: 50px;
}
.sec-heading h2 {
    font-size: 2.1rem;
    color: #0a2463;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0;
}
.sec-heading .bv-divider {
    width: 65px;
    height: 4px;
    background: linear-gradient(90deg, #0074D9, #f4c406);
    border-radius: 2px;
    margin: 14px auto 16px;
}
.sec-heading p {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 680px;
    margin: 0 auto;
}

/* Standalone divider bar */
.bv-divider {
    width: 65px;
    height: 4px;
    background: linear-gradient(90deg, #0074D9, #f4c406);
    border-radius: 2px;
    margin: 14px auto 16px;
}
.bv-divider-left {
    margin-left: 0;
    margin-right: auto;
}

/* ---- 2. HERO SLIDE SUBTITLE + CTA ---- */
.slide-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 10px auto 28px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
    max-width: 580px;
    line-height: 1.65;
}
.slide-cta-btn {
    display: inline-block;
    background: #f4c406;
    color: #0a2463;
    padding: 13px 34px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.3px;
}
.slide-cta-btn:hover {
    background: #ffd230;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* ---- 3. ENHANCED CONTENT BOXES (vision section) ---- */
.content-box-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 14px;
    flex-shrink: 0;
}
.cbi-blue   { background: linear-gradient(135deg, #0a2463, #0074D9); color: white; }
.cbi-gold   { background: linear-gradient(135deg, #f4c406, #f8a700); color: #0a2463; }
.cbi-green  { background: linear-gradient(135deg, #28a745, #20c997); color: white; }
.cbi-purple { background: linear-gradient(135deg, #6f42c1, #a855f7); color: white; }

/* ---- 4. COMMITMENT ITEM ICONS ---- */
.commit-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0a2463, #0074D9);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* ---- 5. SCROLL REVEAL ANIMATIONS ---- */
.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}
.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}
/* Stagger delays */
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }

/* ---- 6. IMPROVED CARD HOVER ---- */
.bv-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}
.bv-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 16px 40px rgba(0, 116, 217, 0.14);
    border-color: rgba(0, 116, 217, 0.18);
}

/* ---- 7. GLOBAL BUTTONS ---- */
.btn-gold {
    display: inline-block;
    background: #f4c406;
    color: #0a2463;
    padding: 13px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(244, 196, 6, 0.4);
}
.btn-gold:hover {
    background: #ffd230;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(244, 196, 6, 0.5);
}
.btn-blue {
    display: inline-block;
    background: linear-gradient(135deg, #0074D9, #0a2463);
    color: white;
    padding: 13px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 116, 217, 0.35);
}
.btn-blue:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 116, 217, 0.5);
}
.btn-outline {
    display: inline-block;
    background: transparent;
    color: #0074D9;
    border: 2px solid #0074D9;
    padding: 11px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-outline:hover {
    background: #0074D9;
    color: white;
    transform: translateY(-2px);
}

/* ---- 8. SECTION BADGE (small label above heading) ---- */
.sec-badge {
    display: inline-block;
    background: rgba(0, 116, 217, 0.1);
    color: #0074D9;
    border: 1px solid rgba(0, 116, 217, 0.25);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* ---- 9. FEATURE LIST (with colored checkmarks) ---- */
.bv-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.bv-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.97rem;
    color: #444;
    line-height: 1.6;
}
.bv-feature-list li:last-child { border-bottom: none; }
.bv-feature-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #0074D9;
    font-size: 0.85rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* ---- 10. PAGE HERO IMPROVEMENTS (all non-home pages) ---- */
.bv-page-hero {
    position: relative;
    min-height: 260px;
    background: linear-gradient(135deg, #0a2463 0%, #0074D9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    margin-top: 80px;
    padding: 50px 20px;
}
.bv-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.bv-page-hero h1 {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}
.bv-page-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.65;
    position: relative;
    z-index: 1;
}
/* Floating circles in page hero */
.bv-page-hero .hero-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}
.bv-page-hero .hero-circle-1 {
    width: 200px; height: 200px;
    top: -50px; left: -60px;
}
.bv-page-hero .hero-circle-2 {
    width: 300px; height: 300px;
    bottom: -100px; right: -80px;
}

/* ---- 11. STAT CARD (modern, for all pages) ---- */
.bv-stat-card {
    background: white;
    border-radius: 16px;
    padding: 28px 22px;
    text-align: center;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    border-bottom: 4px solid #0074D9;
    transition: transform 0.3s ease;
}
.bv-stat-card:hover { transform: translateY(-5px); }
.bv-stat-card .stat-num {
    font-size: 2.6rem;
    font-weight: 700;
    color: #0a2463;
    line-height: 1;
}
.bv-stat-card .stat-unit { color: #f4c406; }
.bv-stat-card .stat-lbl {
    font-size: 0.9rem;
    color: #666;
    margin-top: 8px;
}

/* ---- 12. FOOTER IMPROVEMENTS ---- */
.simple-footer .footer-box .footer-col p {
    line-height: 1.75;
}

/* ---- 13. NAVBAR SUBTLE IMPROVEMENT ---- */
.navbar {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* ---- 14. DETAILS / FAQ ACCORDION ---- */
details summary::-webkit-details-marker { display: none; }
details[open] summary span:last-child { content: '−'; }
details summary { user-select: none; }
details[open] {
    border-color: #0074D9 !important;
    box-shadow: 0 4px 18px rgba(0, 116, 217, 0.12) !important;
}

/* ---- 15. PARTNER BADGE STRIP IMPROVEMENTS ---- */
div[style*="ORACLE NETSUITE ALLIANCE PARTNER"],
div:has(> span[style*="ORACLE"]) {
    position: relative;
}

/* ---- 16. MOBILE RESPONSIVE POLISH ---- */
@media (max-width: 768px) {
    .sec-heading h2 { font-size: 1.7rem; }
    .slide-subtitle { font-size: 0.95rem; }
    .bv-page-hero h1 { font-size: 1.9rem; }
    .bv-page-hero p { font-size: 0.95rem; }
}

/* ---- 17. UPGRADED 4-COLUMN FOOTER ---- */
.bv-footer {
    padding: 60px 40px 0 !important;
}
.bv-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 44px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.bv-footer-col img { display: block; }
.bv-footer-col > p {
    font-size: 0.9rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.65);
    margin-top: 4px;
}
.bv-footer-col h4 {
    color: white;
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f4c406;
    display: inline-block;
}
.bv-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.bv-footer-col ul li { margin-bottom: 9px; }
.bv-footer-col ul li a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s, padding-left 0.2s;
    display: flex;
    align-items: center;
    gap: 7px;
}
.bv-footer-col ul li a::before {
    content: '\203A';
    color: #f4c406;
    font-size: 1.1rem;
    line-height: 1;
}
.bv-footer-col ul li a:hover {
    color: #f4c406;
    padding-left: 4px;
}
.bv-footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}
.bv-footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.88rem;
    text-decoration: none;
    transition: background 0.25s, color 0.25s, transform 0.25s;
}
.bv-footer-socials a:hover {
    background: #f4c406;
    color: #0a2463;
    border-color: #f4c406;
    transform: translateY(-3px);
}
.bv-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(255,255,255,0.65);
    font-size: 0.88rem;
    line-height: 1.65;
}
.bv-footer-contact-item i {
    color: #f4c406;
    font-size: 0.95rem;
    margin-top: 3px;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}
.bv-footer-contact-item a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.2s;
}
.bv-footer-contact-item a:hover { color: #f4c406; }
.bv-footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.83rem;
    color: rgba(255,255,255,0.4);
}
.bv-footer-bottom a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
}
.bv-footer-bottom a:hover { color: #f4c406; }
@media (max-width: 960px) {
    .bv-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .bv-footer { padding: 50px 24px 0 !important; }
}
@media (max-width: 540px) {
    .bv-footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .bv-footer-bottom { flex-direction: column; text-align: center; }
}