/* ==========================================================================
   Frontline Enterprises LLC - Sub-Page Layout Styles (v3/css/sub.css)
   ========================================================================== */

/* Main content adjustments for sub-pages */
.main-content {
    margin-top: 30px;
}

/* Service title sections */
.main-content section {
    margin-bottom: 40px;
    padding: 10px 0;
}

/* ==========================================================================
   Section 1: Highlighted Corporate Philosophy Hub (Blue Header Box)
   ========================================================================== */
.philosophy-hub {
    background-color: #134263 !important;
    padding: 40px !important;
    border-radius: 6px !important;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15) !important;
    border-top: 4px solid #e68906 !important;
    color: #ffffff !important;
    margin-bottom: 45px !important;
}

.philosophy-hub h3 {
    color: #e68906 !important;
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    margin-bottom: 15px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.philosophy-hub p {
    font-size: 1.05rem !important;
    line-height: 1.7 !important;
    color: #ffffff !important;
    margin-bottom: 0 !important;
}

/* ==========================================================================
   Section 2: Unified Solid Light Content Box (Grey Content Box Matrices)
   ========================================================================== */
.content-wrapper-box {
    background-color: #dbe2ef !important;
    padding: 45px !important;
    border-radius: 6px !important;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08) !important;
    border-left: 6px solid #134263 !important;
    margin-bottom: 60px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 40px !important;
}

.content-wrapper-box h3 {
    color: #134263 !important;
    font-size: 1.45rem !important;
    font-weight: 700 !important;
    margin-bottom: 15px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.3px !important;
}

.content-wrapper-box p {
    margin-bottom: 15px !important;
    color: #1a202c !important;
}

.content-wrapper-box ul {
    padding-left: 20px !important;
    margin-bottom: 0 !important;
    line-height: 1.7 !important;
    color: #1a202c !important;
}

/* ==========================================================================
   Section 3: Trusted Partners & Joint Ventures Layout (v3/partners.htm)
   ========================================================================== */

/* Main wrapper padding for the partners content area */
.partners-section {
    padding: 20px 0 60px 0;
}

.partners-intro-lead {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 45px;
}

/* Symmetric logo grid canvas layout */
.partners-logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Individual white tile cards to make colored logos pop cleanly */
.partner-logo-card {
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 6px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    min-height: 140px;
    transition: var(--transition-smooth);
}

.partner-logo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
    border-color: rgba(19, 66, 99, 0.2);
}

/* Individual card blocks converted to vertical alignment frames */
.partner-logo-card {
    background-color: #ffffff !important;
    
    /* Permanent subtle grey side borders with a locked-in Navy top bar */
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-top: 4px solid var(--primary-navy) !important; 
    
    border-radius: 6px !important;
    padding: 25px !important;
    display: flex !important;
    flex-direction: column !important; 
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04) !important;
    min-height: 180px !important; 
    transition: var(--transition-smooth) !important;
}

/* Dynamic Hover State - Triggers the card lift and deepens the shadow */
.partner-logo-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12) !important;
    border-color: rgba(19, 66, 99, 0.2) !important;
    border-top-color: var(--primary-navy) !important; 
}

/* Bounding box wrapper for the graphic layer */
.partner-logo-card img {
    max-width: 100%;
    max-height: 70px; /* Marginally compacted to guarantee text footprint balance */
    object-fit: contain;
    display: block;
    margin-bottom: 12px; /* Visual cushion separating the image from description text */
}

/* Clean corporate partner layout description typography tracking */
.partner-logo-card span {
    font-size: 0.8rem;
    font-weight: 600;
    color: #4a5568; /* Crisp slate grey for excellent readability */
    text-align: center;
    line-height: 1.3;
    width: 100%;
    display: block;
}
/* Responsive screen overrides */
@media (max-width: 768px) {
    .partners-logo-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 20px;
    }
    .partner-logo-card {
        padding: 20px;
        min-height: 110px;
    }
    .partner-logo-card img {
        max-height: 55px;
    }
}