/* ===== SERVICES PAGE BANNER ===== */
.services-banner {
    background: linear-gradient(135deg, rgba(13,43,5,0.85), rgba(42,90,21,0.7)),
                url('https://images.unsplash.com/photo-1532094349884-543bc11b234d?w=1600&h=500&fit=crop') center/cover;
    padding: 120px 0 80px;
    text-align: center;
    color: var(--white);
}
.services-banner h1 {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}
.services-banner .banner-subtitle {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 12px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}
.services-banner .breadcrumb {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}
.services-banner .breadcrumb a {
    color: var(--green-light);
}
.services-banner .breadcrumb a:hover {
    color: var(--white);
}

/* ===== SERVICES OVERVIEW ===== */
.services-overview {
    padding: 80px 0;
    background: var(--white);
}
.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 10px;
}
.svc-card {
    background: var(--light-bg);
    padding: 35px 25px;
    border-radius: 5px;
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.svc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--green-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}
.svc-card:hover::before {
    transform: scaleX(1);
}
.svc-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}
.svc-card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--green-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 28px;
    color: var(--green-primary);
    transition: var(--transition);
}
.svc-card:hover .svc-card-icon {
    background: var(--green-primary);
    color: var(--white);
}
.svc-card h3 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.svc-card p {
    font-size: 13px;
    color: var(--text);
    line-height: 1.7;
}

/* ===== METHODOLOGY (reuse about-page styles) ===== */
.methodology-section {
    padding: 80px 0;
    background: var(--light-bg);
}
.method-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}
.method-card {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: var(--white);
    border-radius: 5px;
    border: 1px solid var(--border);
    transition: var(--transition);
}
.method-card:hover {
    box-shadow: var(--shadow);
}
.method-icon {
    width: 60px;
    height: 60px;
    background: var(--green-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.method-icon i {
    color: var(--white);
    font-size: 22px;
}
.method-info h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}
.method-info p {
    font-size: 13px;
    color: var(--text);
    line-height: 1.7;
}

/* ===== THE CORYMBIA ADVANTAGE TABLE ===== */
.advantage-section {
    padding: 80px 0;
    background: var(--white);
}
.advantage-label {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--green-primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 8px;
}
.advantage-heading {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 15px;
}
.advantage-heading em {
    font-style: italic;
    color: var(--dark);
}
.advantage-table-wrap {
    max-width: 950px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.08);
    overflow: hidden;
    border: 1px solid var(--border);
}
.advantage-table {
    width: 100%;
    border-collapse: collapse;
}
.advantage-table thead tr {
    background: linear-gradient(135deg, #3a6b3a, #4a8a3a);
}
.advantage-table th {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 18px 24px;
    color: var(--white);
}
.advantage-table th.cap-col {
    text-align: left;
    width: 55%;
}
.advantage-table th.corymbia-col {
    text-align: center;
    width: 22%;
}
.advantage-table th.other-col {
    text-align: center;
    width: 23%;
}
.advantage-table td {
    padding: 16px 24px;
    font-size: 14px;
    color: var(--dark);
    border-bottom: 1px solid #ececec;
    font-weight: 500;
}
.advantage-table tbody tr:last-child td {
    border-bottom: none;
}
.advantage-table tbody tr:hover {
    background: #f9fdf6;
}
.row-icon {
    color: var(--green-primary);
    margin-right: 10px;
    font-size: 14px;
    width: 18px;
    text-align: center;
}
.check-cell {
    text-align: center;
    vertical-align: middle;
}
.check-yes {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #e8f5e0;
    color: #4a9a2b;
    font-size: 14px;
}
.check-no {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fde8e8;
    color: #c0392b;
    font-size: 14px;
}

/* First Nations highlight rows */
.highlight-row td {
    background: linear-gradient(90deg, rgba(92,178,54,0.04), rgba(92,178,54,0.08));
}
.highlight-row td:first-child {
    font-weight: 600;
}
.highlight-row .row-icon {
    color: #d4a34a;
}
.advantage-table .highlight-row:hover td {
    background: linear-gradient(90deg, rgba(92,178,54,0.08), rgba(92,178,54,0.12));
}

/* ===== QUALITY ASSURANCE ===== */
.qa-section {
    padding: 80px 0;
    background: var(--dark-bg);
    color: var(--white);
}
.qa-section .section-title h2 {
    color: var(--white);
}
.qa-section .section-title p {
    color: rgba(255,255,255,0.7);
}
.qa-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}
.qa-card {
    background: #383838;
    padding: 30px;
    border-radius: 5px;
    border-left: 4px solid var(--green-primary);
}
.qa-card h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
}
.qa-card ul {
    list-style: none;
}
.qa-card li {
    padding: 6px 0;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.qa-card li i {
    color: var(--green-primary);
    font-size: 12px;
    margin-top: 5px;
    flex-shrink: 0;
}

/* ===== SERVICES CTA ===== */
.services-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(92,178,54,0.92), rgba(61,133,34,0.95)),
                url('https://images.unsplash.com/photo-1518531933037-91b2f5f229cc?w=1600&h=600&fit=crop') center/cover;
    text-align: center;
    color: var(--white);
}
.services-cta h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}
.services-cta p {
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.9;
    font-size: 16px;
    line-height: 1.8;
}
.services-cta .btn-primary {
    background: var(--white);
    color: var(--green-primary);
    border-color: var(--white);
    font-size: 14px;
    padding: 16px 40px;
}
.services-cta .btn-primary:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .services-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .method-grid {
        grid-template-columns: 1fr;
    }
    .qa-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .services-banner h1 {
        font-size: 28px;
    }
    .services-banner {
        padding: 100px 0 60px;
    }
    .services-cards-grid {
        grid-template-columns: 1fr;
    }
    .advantage-heading {
        font-size: 28px;
    }
    .advantage-table-wrap {
        overflow-x: auto;
    }
    .advantage-table th,
    .advantage-table td {
        padding: 12px 14px;
        font-size: 13px;
    }
    .advantage-table th.cap-col {
        min-width: 250px;
    }
}
