/* Services Page Styles - Bento Grid Redesign */

/* Page Background */
body {
    background-color: #f8fbff; /* Very light blue tint */
}

/* Service Split Layout */
.services-split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
    padding: 6rem 0;
    max-width: 1400px;
    margin: 0 auto;
}

/* Left Column: Content List */
.services-content-col {
    padding-right: 2rem;
}

.services-intro-label {
    font-size: 1.5rem; /* "Services" grey label */
    color: #64748b;
    font-weight: 500;
    margin-bottom: 2rem;
    display: block;
}

.services-main-title {
    font-size: 3.5rem;
    line-height: 1.1;
    color: #0f172a;
    font-weight: 700;
    margin-bottom: 4rem;
    letter-spacing: -0.02em;
}

/* Service List Items */
.service-list-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.service-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon-box.blue-light { background: #e0f2fe; color: #0284c7; }
.service-icon-box.indigo-light { background: #eef2ff; color: #4f46e5; }
.service-icon-box.sky-light { background: #f0f9ff; color: #0ea5e9; }

.service-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #0f172a;
}

.service-info p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.btn-get-started {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #0066ff;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-top: 1rem;
    box-shadow: 0 4px 12px rgba(0,102,255,0.25);
}

.btn-get-started:hover {
    background: #0052cc;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,102,255,0.3);
}

/* Right Column: Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 300px 320px;
    gap: 1.5rem;
}

/* Top Card: Full Width */
.bento-card-top {
    grid-column: 1 / -1;
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.bento-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

.bento-content-top {
    position: relative;
    z-index: 2;
    color: #fff;
}

.bento-title-large {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.bento-tags {
    display: flex;
    gap: 0.75rem;
    margin-top: auto;
    position: relative;
    z-index: 2;
}

.bento-tag {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: #fff;
    font-size: 0.85rem;
    border: 1px solid rgba(255,255,255,0.3);
}

/* Bottom Left: Blue Card */
.bento-card-blue {
    background: #0066ff;
    border-radius: 30px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,102,255,0.25);
}

.bento-blue-title {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    color: #ffffff !important;
}

.bento-blue-desc {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.5;
    position: relative;
    z-index: 2;
    color: #ffffff !important;
    margin-bottom: 2rem;
}

/* Bottom Right: Image Card */
.bento-card-image {
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

/* New Accreditation Section (Reference Match) */
.section-accreditation {
    background-color: #ffffff;
    padding: 8rem 0;
}

.accred-ref-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 6rem;
    align-items: flex-start;
}

.accred-left-col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.accred-ref-label {
    font-size: 1.1rem;
    color: #64748b;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.accred-image-card-new {
    width: 100%;
    aspect-ratio: 4 / 5;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.accred-badge-minimal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 0.6rem 1.2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.accred-badge-minimal span {
    font-size: 0.85rem;
    font-weight: 700;
    color: #0f172a;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.accred-right-col {
    display: flex;
    flex-direction: column;
}

.accred-main-heading {
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1.15;
    color: #0f172a;
    font-weight: 700;
    margin-bottom: 3rem;
    letter-spacing: -0.01em;
}

.accred-heading-dim {
    color: #94a3b8;
}

.accred-action-row {
    margin-bottom: 2rem;
}

.accred-learn-more {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.2s ease;
}

.accred-arrow {
    width: 36px;
    height: 36px;
    background: #0066ff;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.accred-learn-more:hover .accred-arrow {
    transform: rotate(45deg);
}

.accred-divider {
    width: 100%;
    height: 1px;
    background-color: #e2e8f0;
    margin-bottom: 4rem;
}

.accred-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.accred-feature-item {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.accred-icon-sm {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accred-icon-sm.blue { background-color: #dbeafe; color: #1d4ed8; }
.accred-icon-sm.sky { background-color: #e0f2fe; color: #0369a1; }

.accred-feature-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
}

.accred-feature-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #64748b;
}

/* Responsive */
@media (max-width: 1024px) {
    .services-split-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 4rem 1.5rem;
    }
    
    .services-content-col {
        padding-right: 0;
        max-width: 100%;
    }
    
    .services-main-title {
        font-size: 2.75rem;
    }
    
    .bento-grid {
        grid-template-rows: 250px 300px; 
    }

    .accred-ref-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .accred-left-col {
        order: 2;
    }
    
    .accred-right-col {
        order: 1;
    }

    .accred-main-heading {
        font-size: 2.5rem;
    }
    
    .accred-image-card-new {
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 768px) {
    .accred-feature-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .accred-divider {
        margin-bottom: 3rem;
    }
    
    .section-accreditation {
        padding: 5rem 0;
    }
}

@media (max-width: 600px) {
    .bento-grid {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .bento-card-top, .bento-card-blue, .bento-card-image {
        min-height: 250px;
    }
}
