/**
 * KapCook Shared Styles
 * Common navigation, theme, and component styles extracted from individual pages
 * Last updated: 2026-03-19
 */

/* ===== HEADER STYLES ===== */

.site-header {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a87 100%);
    position: relative;
    z-index: 1000;
}

.header-top {
    background: rgba(0, 0, 0, 0.2);
    padding: 8px 0;
    font-size: 0.85rem;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.header-contact {
    display: flex;
    gap: 20px;
}

.header-contact a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.header-contact a:hover {
    color: #f5a623;
}

.header-contact i {
    color: #f5a623;
    margin-right: 6px;
}

.header-credentials {
    display: flex;
    gap: 10px;
}

.credential-badge {
    background: rgba(255, 255, 255, 0.1);
    color: #f5a623;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.credential-badge i {
    margin-right: 4px;
}

/* Navbar styling */
.site-header .navbar {
    background: transparent;
    border: none;
    margin-bottom: 0;
    border-radius: 0;
}

.site-header .navbar .container {
    border: none !important;
}

.site-header .navbar-brand {
    padding: 10px 15px;
}

.site-header .logo {
    max-height: 60px;
    width: auto;
    object-fit: contain;
}

.site-header .navbar-inverse .navbar-nav > li > a {
    color: #FFF;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    padding: 20px 25px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.site-header .navbar-inverse .navbar-nav > li > a:hover,
.site-header .navbar-inverse .navbar-nav > li > a:focus,
.site-header .navbar-inverse .navbar-nav > li.active > a {
    color: #f5a623;
    background: transparent;
}

.site-header .navbar-inverse .navbar-toggle {
    border-color: rgba(255, 255, 255, 0.3);
    margin-top: 15px;
}

.site-header .navbar-inverse .navbar-toggle:hover,
.site-header .navbar-inverse .navbar-toggle:focus {
    background: rgba(255, 255, 255, 0.1);
}

.site-header .navbar-inverse .navbar-collapse {
    border-color: rgba(255, 255, 255, 0.1);
}

/* Mobile header adjustments */
@media (max-width: 768px) {
    .header-top .container {
        flex-direction: column;
        gap: 10px;
    }
    
    .header-contact {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .header-credentials {
        justify-content: center;
    }
    
    .site-header .navbar-inverse .navbar-nav > li > a {
        padding: 15px 20px;
    }
    
    .site-header .logo {
        max-height: 50px;
    }
}

/* ===== SHARED NAVIGATION STYLES (for pages without header-top) ===== */

/* Remove bordered box from navigation */
.navbar .container {
    border: none !important;
}

.navbar-header img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
}

.navbar-brand {
    padding: 10px 15px;
    border-right: none !important;
}

/* Consistent nav link styling */
.navbar-inverse .navbar-nav > li > a {
    color: #FFF;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    padding: 20px 25px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus,
.navbar-inverse .navbar-nav > li.active > a {
    color: #fbb217;
    background: transparent;
}

/* Mobile navigation */
@media (max-width: 768px) {
    .navbar {
        position: relative;
        top: 0;
        background: rgba(30, 58, 95, 0.95);
    }
    .navbar-header img {
        max-height: 50px;
    }
    .navbar-inverse .navbar-collapse {
        border-color: rgba(238, 238, 238, 0.2);
    }
    .navbar-inverse .navbar-nav > li > a {
        padding: 15px 20px;
    }
}

/* ===== SHARED COLOR PALETTE ===== */

/*
Primary Blue: #1e3a5f
Secondary Blue: #2d5a87, #3d7ab5
Accent Gold: #f5a623, #f7931e, #fbb217
Text: #4a5568, #5a6c7d
Background: #fafbfc, #f5f7fa, #e8f4f8
*/

/* ===== SHARED HERO SECTION STYLES ===== */

.hero-section,
.about-hero,
.services-hero,
.pillars-section,
.cta-section {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a87 50%, #3d7ab5 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section::before,
.about-hero::before,
.services-hero::before,
.pillars-section::before,
.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 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.03'%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");
    pointer-events: none;
}

.hero-section h1,
.about-hero h1,
.services-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-section .subtitle,
.about-hero .subtitle,
.services-hero .subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 25px;
    font-weight: 300;
    line-height: 1.6;
}

/* ===== SHARED SECTION STYLES ===== */

.section-pad {
    padding: 80px 0;
}

.section-warm {
    background: linear-gradient(180deg, #fafbfc 0%, #f5f7fa 100%);
}

.section-alt {
    background: white;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1e3a5f;
}

.section-title span {
    color: #2d5a87;
}

.section-subtitle {
    font-size: 1.15rem;
    color: #5a6c7d;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== SHARED PILLAR CARD STYLES ===== */

.pillar-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.pillar-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.pillar-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #f5a623 0%, #f7931e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.2rem;
    color: #1e3a5f;
    box-shadow: 0 8px 25px rgba(245, 166, 35, 0.3);
}

.pillar-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: white;
}

.pillar-card p {
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    margin-bottom: 15px;
}

.pillar-card ul {
    text-align: left;
    color: rgba(255,255,255,0.85);
    padding-left: 20px;
    margin-bottom: 0;
}

.pillar-card li {
    margin-bottom: 8px;
}

/* Pillars Section Dark Background */
.pillars-section {
    background: linear-gradient(180deg, #1e3a5f 0%, #2d5a87 100%);
    color: white;
    position: relative;
}

.pillars-section .section-title {
    color: white;
}

.pillars-section .section-title span {
    color: #f5a623;
}

/* ===== SHARED CARD STYLES ===== */

.service-card,
.support-card,
.why-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(61, 122, 181, 0.1);
}

.service-card:hover,
.support-card:hover,
.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.service-card h4,
.support-card h4,
.why-card h4 {
    color: #1e3a5f;
    font-size: 1.1rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.service-card h4 i,
.support-card h4 i {
    color: #3d7ab5;
    margin-right: 12px;
    font-size: 1.3rem;
    width: 30px;
}

.service-card p,
.support-card p,
.why-card p {
    color: #5a6c7d;
    line-height: 1.6;
}

/* ===== SHARED CTA STYLES ===== */

.cta-section h2 {
    font-size: 2.25rem;
    margin-bottom: 20px;
}

.cta-section .lead {
    font-size: 1.2rem;
    opacity: 0.9;
}

.btn-cta-primary {
    background: linear-gradient(135deg, #f5a623 0%, #f7931e 100%);
    border: none;
    color: #1e3a5f;
    font-weight: 600;
    padding: 14px 32px;
    font-size: 1.05rem;
    border-radius: 30px;
    margin: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(245, 166, 35, 0.4);
    color: #1e3a5f;
}

.btn-cta-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 14px 32px;
    font-size: 1.05rem;
    border-radius: 30px;
    margin: 8px;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: white;
    color: #1e3a5f;
}

.contact-info {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.contact-info a {
    color: #f5a623;
}

.contact-info a:hover {
    color: white;
}

/* ===== SHARED HIGHLIGHT STYLES ===== */

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 25px 0;
}

.highlight-item {
    background: rgba(255,255,255,0.15);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.95rem;
    color: white;
    display: inline-flex;
    align-items: center;
    backdrop-filter: blur(5px);
}

.highlight-item i {
    color: #f5a623;
    margin-right: 8px;
}

/* ===== SHARED CREDENTIAL BADGES ===== */

.credential-badges {
    margin-top: 30px;
}

.badge-sdvosb,
.badge-mbe {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    margin: 6px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.badge-sdvosb {
    background: linear-gradient(135deg, #f5a623 0%, #f7931e 100%);
    color: #1a237e;
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
}

.badge-mbe {
    background: rgba(255,255,255,0.95);
    color: #1e3a5f;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.badge-sdvosb:hover,
.badge-mbe:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* ===== SHARED ASSET GRID ===== */

.asset-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.asset-item {
    background: linear-gradient(135deg, #f8fafc 0%, #e8f4f8 100%);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    border: 1px solid rgba(61, 122, 181, 0.1);
    transition: all 0.3s ease;
}

.asset-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.asset-item .icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3d7ab5 0%, #2d5a87 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 1.5rem;
}

.asset-item h5 {
    color: #1e3a5f;
    margin-bottom: 8px;
}

.asset-item p {
    color: #5a6c7d;
    font-size: 0.9rem;
    margin: 0;
}

/* ===== SHARED WHY CARDS ===== */

.why-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f5a623 0%, #f7931e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: #1e3a5f;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
    flex-shrink: 0;
}

/* ===== SHARED CLIENT/LEADER CARDS ===== */

.leader-card,
.company-info-box {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(61, 122, 181, 0.1);
    transition: box-shadow 0.3s;
}

.leader-card:hover,
.company-info-box:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.leader-avatar {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #3d7ab5 0%, #2d5a87 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 3rem;
    box-shadow: 0 8px 25px rgba(61, 122, 181, 0.3);
}

.client-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e8f4f8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: #3d7ab5;
    font-size: 2rem;
    border: 2px solid rgba(61, 122, 181, 0.2);
}

.client-card:hover {
    transform: scale(1.05);
}

/* ===== SHARED LIFECYCLE PHASES ===== */

.lifecycle-phase {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    height: 100%;
    text-align: center;
    transition: transform 0.3s ease;
}

.lifecycle-phase:hover {
    transform: translateY(-5px);
}

.lifecycle-phase .phase-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.lifecycle-phase.before .phase-icon {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.3);
}

.lifecycle-phase.during .phase-icon {
    background: linear-gradient(135deg, #dc3545 0%, #fd7e14 100%);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.3);
}

.lifecycle-phase.after .phase-icon {
    background: linear-gradient(135deg, #007bff 0%, #17a2b8 100%);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
}

.lifecycle-phase h3 {
    color: #1e3a5f;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.lifecycle-phase ul {
    text-align: left;
    color: #5a6c7d;
    padding-left: 20px;
    margin-bottom: 0;
}

.lifecycle-phase li {
    margin-bottom: 8px;
}

/* ===== SHARED MISSION/HIGHLIGHT BOXES ===== */

.mission-box {
    background: linear-gradient(135deg, #f8fafc 0%, #e8f4f8 100%);
    border-left: 5px solid #3d7ab5;
    padding: 30px;
    border-radius: 0 16px 16px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.mission-box h3 {
    color: #1e3a5f;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.mission-box blockquote {
    font-style: italic;
    font-size: 1.05rem;
    color: #4a5568;
    margin: 0;
    border: none;
    padding: 0;
    line-height: 1.7;
}

.highlight-box {
    background: linear-gradient(135deg, #fef9e7 0%, #fff8e1 100%);
    border-left: 4px solid #f5a623;
    padding: 20px 25px;
    border-radius: 0 12px 12px 0;
    margin-top: 25px;
}

.highlight-box strong {
    color: #1e3a5f;
    font-size: 1.05rem;
}

/* ===== SHARED FOOTER SPACING ===== */

.footer-space {
    height: 40px;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */

@media (max-width: 992px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-section h1,
    .about-hero h1,
    .services-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .section-pad {
        padding: 60px 0;
    }
    
    .pillar-card {
        padding: 25px 20px;
    }
    
    .pillar-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
}

/* ===== INNER PAGE HEADER STYLES ===== */

/* Inner pages (about, partner, contact, services) need solid background header */
.inner-page-header {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a87 50%, #3d7ab5 100%);
    position: relative;
    z-index: 100;
}

.inner-page-header .navbar-inverse {
    position: relative;
    top: 0;
    background: transparent;
}

.inner-page-header .navbar .container {
    border: none !important;
}

/* ===== FOOTER STYLES ===== */

.site-footer {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a87 100%);
    color: #fff;
    font-size: 0.95rem;
}

.footer-main {
    padding: 60px 0 40px;
}

.footer-col {
    margin-bottom: 30px;
}

.footer-col h4 {
    color: #f5a623;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col p {
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 15px;
}

.footer-credentials {
    margin-top: 15px;
}

.footer-credentials .badge {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    color: #f5a623;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-right: 10px;
    margin-bottom: 5px;
}

.footer-credentials .badge i {
    margin-right: 5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #f5a623;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.footer-contact i {
    color: #f5a623;
    width: 20px;
    margin-right: 10px;
}

.footer-contact a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #f5a623;
}

.footer-social {
    margin-top: 20px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #f5a623;
    color: #1e3a5f;
}

.footer-copyright {
    background: rgba(0,0,0,0.2);
    padding: 15px 0;
    font-size: 0.9rem;
}

.footer-copyright p {
    margin: 0;
    color: rgba(255,255,255,0.7);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f5a623 0%, #f7931e 100%);
    color: #1e3a5f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(245, 166, 35, 0.4);
    color: #1e3a5f;
}

.back-to-top i {
    font-size: 1.2rem;
}

/* ===== SERVICE PAGE STYLES ===== */

.service-hero {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a87 50%, #3d7ab5 100%);
    color: white;
    padding: 100px 0 60px;
    position: relative;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 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.03'%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");
    pointer-events: none;
}

.service-hero h1 {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-hero .lead {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 25px;
}

.hero-cta {
    margin-top: 25px;
}

.hero-credentials {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 25px;
}

.cred-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: rgba(255,255,255,0.9);
}

.cred-item i {
    color: #f5a623;
    margin-right: 12px;
    width: 20px;
}

.cred-item:last-child {
    margin-bottom: 0;
}

/* Service Cards with Equal Height */
.service-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(61, 122, 181, 0.1);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.service-card .service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f5a623 0%, #f7931e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: #1e3a5f;
    flex-shrink: 0;
}

.service-card h3 {
    color: #1e3a5f;
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.service-card p {
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 15px;
}

.service-card ul.service-details {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #5a6c7d;
    font-size: 0.9rem;
}

.service-card ul.service-details li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.service-card ul.service-details li::before {
    content: '•';
    color: #f5a623;
    position: absolute;
    left: 0;
}

/* Row with equal height columns */
.row {
    display: flex;
    flex-wrap: wrap;
}

.row > [class*='col-'] {
    display: flex;
    flex-direction: column;
}

.row > [class*='col-'] > .service-card,
.row > [class*='col-'] > .pillar-card,
.row > [class*='col-'] > .client-card,
.row > [class*='col-'] > .related-card {
    flex: 1;
}

/* Credentials Box */
.credentials-box {
    background: linear-gradient(135deg, #f8fafc 0%, #e8f4f8 100%);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(61, 122, 181, 0.1);
}

.credentials-box h3 {
    color: #1e3a5f;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.credentials-box h3 i {
    color: #f5a623;
    margin-right: 10px;
}

.credentials-table {
    margin-bottom: 15px;
}

.credentials-table td {
    padding: 10px;
    border-bottom: 1px solid rgba(61, 122, 181, 0.1);
}

.sdvosb-note {
    background: linear-gradient(135deg, #fef9e7 0%, #fff8e1 100%);
    padding: 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-top: 15px;
}

.sdvosb-note i {
    color: #f5a623;
    margin-right: 8px;
}

/* Related Card */
.related-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid rgba(61, 122, 181, 0.1);
    transition: all 0.3s ease;
}

.related-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.related-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e8f4f8 0%, #d4e8f0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: #3d7ab5;
}

.related-card h4 {
    color: #1e3a5f;
    margin-bottom: 12px;
}

.related-card p {
    color: #5a6c7d;
    margin-bottom: 20px;
}

.btn-outline {
    background: transparent;
    border: 2px solid #3d7ab5;
    color: #3d7ab5;
    padding: 10px 24px;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #3d7ab5;
    color: white;
}

/* Stat Card */
.stat-card {
    background: white;
    border-radius: 12px;
    padding: 30px 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f5a623;
    margin-bottom: 5px;
}

.stat-label {
    color: #5a6c7d;
    font-size: 0.95rem;
}

/* Phase/Process Card */
.phase-card,
.process-step {
    background: white;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    height: 100%;
}

.phase-card h4,
.process-step h4 {
    color: #1e3a5f;
    margin-bottom: 15px;
}

.phase-card ul,
.process-step p {
    color: #5a6c7d;
    text-align: left;
    padding-left: 20px;
    margin: 0;
}

/* Equipment Card */
.equipment-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e8f4f8 100%);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(61, 122, 181, 0.1);
}

.equipment-card h4 {
    color: #1e3a5f;
    margin-bottom: 15px;
}

.equipment-card i {
    color: #f5a623;
    margin-right: 8px;
}

.equipment-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.equipment-card li {
    padding: 6px 0;
    color: #5a6c7d;
}

/* Pillar Link in Cards */
.pillar-link {
    display: inline-flex;
    align-items: center;
    color: #f5a623;
    text-decoration: none;
    font-weight: 500;
    margin-top: 10px;
    transition: color 0.3s ease;
}

.pillar-link:hover {
    color: #f7931e;
}

.pillar-link i {
    margin-left: 6px;
    font-size: 0.9rem;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-main {
        padding: 40px 0 20px;
    }
    
    .footer-col {
        margin-bottom: 25px;
    }
    
    .footer-copyright .text-right {
        text-align: left;
        margin-top: 10px;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .service-hero h1 {
        font-size: 2rem;
    }
    
    .hero-credentials {
        margin-top: 30px;
    }
}