﻿/* ============================================================
   SERVICES PAGE  (servicelisting + services detail)
   ============================================================ */

/* ── SHARED PAGE HEADER ──────────────────────────────────── */
.services-page-header {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    background-color: var(--bank-maroon);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.services-page-header::before { display: none; }
.services-page-header::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}
.services-page-header .container {
    position: relative;
    z-index: 2;
    padding-top: 80px;
    padding-bottom: 50px;
}
.services-page-header h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.15;
    margin: 0;
    letter-spacing: -0.3px;
}
.services-page-header p {
    font-size: 1.05rem;
    color: rgba(0,0,0,0.75);
    margin: 0;
}
.services-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: rgba(0,0,0,0.65);
    margin-top: 10px;
    flex-wrap: wrap;
}
.services-breadcrumb a { color: var(--bank-maroon); text-decoration: none; }
.services-breadcrumb a:hover { color: #111; }
.services-breadcrumb .sep { color: rgba(0,0,0,0.35); font-size: 0.7rem; }

/* ── SECTION HEADINGS ────────────────────────────────────── */
.section-eyebrow {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--gold);
}
.section-title-lg {
    font-weight: 800;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: var(--bank-maroon);
    margin-top: 4px;
    margin-bottom: 8px;
}

/* ── SERVICE LISTING ─────────────────────────────────────── */
.services-main {
    flex: 1;
    padding: 60px 0;
    background: var(--page-bg);
}

.service-card {
    background: var(--page-bg);
    border: 1px solid #eee;
    border-left: 4px solid var(--gold);
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-left-color: var(--bank-maroon);
}
.service-card-img-wrap {
    overflow: hidden;
    height: 200px;
}
.service-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}
.service-card:hover .service-card-img {
    transform: scale(1.05);
}
.service-card-body {
    padding: 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.service-card-body h5 {
    font-weight: 700;
    font-size: 1rem;
    color: var(--bank-maroon);
    margin: 0;
}
.service-card-body p {
    font-size: 0.875rem;
    color: #000;
    margin: 0;
    line-height: 1.7;
}
.btn-service-know-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #ff8c00, #ff6b00);
    border: none;
    color: #fff;
    border-radius: 50px;
    padding: 10px 22px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    margin-top: 4px;
    transition: all 0.3s;
    align-self: flex-start;
    box-shadow: 0 4px 14px rgba(255,140,0,0.3);
}
.btn-service-know-more:hover {
    background: linear-gradient(135deg, #ff6b00, #ff8c00);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255,140,0,0.4);
}

/* ── SERVICE DETAIL PAGE ─────────────────────────────────── */
.service-detail-main {
    padding: 60px 0;
    background: #f4f6fa;
    flex: 1;
}
.service-desc-card {
    background: var(--page-bg);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.9;
}
.service-desc-card h1,
.service-desc-card h2,
.service-desc-card h3 { color: var(--bank-maroon); }
.service-desc-card table { width: 100%; border-collapse: collapse; margin: 16px 0; }
.service-desc-card table th,
.service-desc-card table td { border: 1px solid #e8e0d5; padding: 10px 14px; font-size: 0.875rem; }
.service-desc-card table th { background: var(--bank-maroon); color: #fff; font-weight: 600; }
.service-desc-card table tr:nth-child(even) td { background: var(--page-bg); }
.service-desc-card table tbody tr:hover td { background-color: #e8f4ff !important; transition: background-color 0.2s ease; }

.service-section-card {
    background: var(--page-bg);
    padding: 35px 40px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.07);
    margin-bottom: 30px;
    border-top: 3px solid var(--gold);
}
.service-section-title {
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--bank-maroon);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0ebe4;
}

/* Special Features list */
.special-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.special-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: #000;
    line-height: 1.6;
}
.special-features-list li::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    min-width: 8px;
    border-radius: 50%;
    background: var(--gold);
    margin-top: 7px;
}

/* Details accordion */
.detail-accordion-item {
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.detail-accordion-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}
.detail-accordion-btn {
    width: 100%;
    background: var(--page-bg);
    border: none;
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--bank-maroon);
    cursor: pointer;
    text-align: left;
    transition: background 0.2s;
}
.detail-accordion-btn:hover { background: #f5ede3; }
.detail-accordion-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s;
    flex-shrink: 0;
    color: var(--gold);
}
.detail-accordion-btn[aria-expanded="true"] i { transform: rotate(180deg); }
.detail-accordion-body {
    padding: 16px 20px;
    font-size: 0.875rem;
    color: #000;
    line-height: 1.8;
    background: var(--page-bg);
}
.detail-accordion-body table { width: 100%; border-collapse: collapse; margin: 10px 0; }
.detail-accordion-body table th,
.detail-accordion-body table td { border: 1px solid #e8e0d5; padding: 8px 12px; font-size: 0.85rem; }
.detail-accordion-body table th { background: var(--bank-maroon); color: #fff; font-weight: 600; }
.detail-accordion-body table tbody tr:hover td { background-color: #e8f4ff !important; transition: background-color 0.2s ease; }

/* Tables section */
.service-table-wrap .table thead { background: var(--bank-maroon); color: white; }
.service-table-wrap .table th,
.service-table-wrap .table td { vertical-align: middle; font-size: 0.875rem; }
.service-table-wrap .table tbody tr:hover td { background-color: #e8f4ff !important; transition: background-color 0.2s ease; }

/* Images grid */
.service-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 10px;
}
.service-images-grid img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}
.service-images-grid img:hover { transform: scale(1.03); }

/* Useful links */
.useful-links-wrap a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--bank-maroon);
    font-weight: 600;
    font-size: 0.9rem;
    margin-right: 16px;
    margin-bottom: 10px;
    text-decoration: none;
    transition: color 0.2s;
}
.useful-links-wrap a:hover { color: var(--gold); }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 991px) {
    .services-main,
    .service-detail-main { padding: 40px 0; }
}
@media (max-width: 575px) {
    .service-desc-card,
    .service-section-card { padding: 20px 16px; }
    .service-card-body { padding: 16px; }
}

