:root {
    --green: #0f6b3e;
    --cream: #fbfbef;
    --card-surface: #ffffff;
    --card-surface-soft: #f4f8f6;
    --card-border: rgba(15, 107, 62, 0.12);
    --card-shadow: 0 18px 40px rgba(10, 20, 14, 0.10);
    --card-shadow-hover: 0 28px 56px rgba(10, 20, 14, 0.16);
}
*{
      padding: 0;
      margin: 0;
}

body{
      background-color: var(--cream);
}

/* Branch hero for static (non-slider) layout */
.branch-hero {
    position: relative;
    height: min(62vh, 620px);
    min-height: 360px;
    overflow: hidden;
    border-bottom: 1px solid rgba(15, 107, 62, 0.16);
}

.branch-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    display: block;
}

.desktop-hero-img {
    display: block;
}

.mobile-hero-img {
    display: none;
}

.branch-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(7, 24, 15, 0.12) 0%, rgba(7, 24, 15, 0.55) 68%, rgba(7, 24, 15, 0.72) 100%),
        radial-gradient(circle at 12% 18%, rgba(15, 107, 62, 0.35), rgba(15, 107, 62, 0) 40%);
}

.branch-hero-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding: 0 18px;
}

.branch-hero-kicker {
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.90);
}

.branch-hero-title {
    margin: 0;
    font-size: clamp(38px, 8vw, 96px);
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    line-height: 1.03;
    text-shadow: 0 12px 34px rgba(0, 0, 0, 0.45);
}






.branchCard {
    position: relative;
    isolation: isolate;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), #ffffff);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.branchCard::before {
    content: '';
    position: absolute;
    inset: 0 auto auto 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(15, 107, 62, 0.14), rgba(15, 107, 62, 0));
    pointer-events: none;
}

.branchCard::after {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 5px;
    background: linear-gradient(90deg, #0f6b3e, #46a86d, #d4ebdf);
    pointer-events: none;
}

.branchCard > * {
    position: relative;
    z-index: 1;
}

.branchCard:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-shadow-hover);
}

.branchCard-media {
    padding: 10px 10px 0;
    background: linear-gradient(180deg, rgba(15, 107, 62, 0.05), rgba(15, 107, 62, 0));
}

.branchCard img {
    width: 100%;
    height: 205px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(10, 20, 14, 0.10);
}

.branch-card-image--featured {
    object-position: center;
}

.branchBody {
    padding: 14px 14px 16px;
}

.branchBody-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.branchTitleBlock {
    min-width: 0;
}

.branch-kicker {
    margin: 0 0 2px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6d7f75;
}

.branchBody h5 {
    font-weight: 700;
    font-size: 20px;
    color: var(--green);
    margin-bottom: 0;
    line-height: 1.2;
}

.branch-chip {
    flex: 0 0 auto;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(15, 107, 62, 0.10);
    color: var(--green);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.branch-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 10px 0 10px;
}

.branch-meta-item {
    padding: 10px 12px;
    border-radius: 16px;
    background: linear-gradient(180deg, #fff, var(--card-surface-soft));
    border: 1px solid rgba(15, 107, 62, 0.09);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.branch-meta-label {
    display: block;
    margin-bottom: 3px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6d7f75;
}

.branch-meta-item strong {
    font-size: 13px;
    font-weight: 700;
    color: #183525;
}

.branch-quick-points {
    margin-top: 4px;
}

.branch-feature-list {
    display: grid;
    gap: 8px;
}

.branch-feature-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 3px 12px;
    border-radius: 8px;
    font-size: 14px;
    background: rgba(15, 107, 62, 0.05);
    color: #24352c;
    border: 1px solid rgba(15, 107, 62, 0.08);
}

.branch-point-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    min-width: 24px;
    margin-top: 1px;
    font-size: 16px;
}

.branch-feature-text {
    display: block;
    line-height: 1.3;
}

.branch-social-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 8px 0 10px;
}

.branch-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(15, 107, 62, 0.06);
    border: 1px solid rgba(15, 107, 62, 0.08);
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.branch-social-btn i {
    margin: 0;
    font-size: 21px;
}

.branch-social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(10, 20, 14, 0.16);
}

.branch-social-btn.social-youtube {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(220, 38, 38, 0.35);
}

.branch-social-btn.social-youtube i {
    color: #dc2626;
}

.branch-social-btn.social-youtube:hover {
    background: rgba(220, 38, 38, 0.16);
    border-color: rgba(185, 28, 28, 0.45);
}

.branchCard a i {
    font-size: 25px;
    margin: 6px;
    transition: 0.3s ease;
}

.branchCard .branch-social-btn i {
    font-size: 21px;
    margin: 0;
}

.branchCard a i:hover {
    transform: scale(1.2);
}

.insta{
      background: radial-gradient(
      circle at 30% 107%,
      #fdf497 0%,
      #fdf497 5%,
      #fd5949 45%,
      #d6249f 60%,
      #285AEB 90%
      );
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-weight: bold;
}
.branch1{
      width: 60% !important; 
      object-fit: cover;
}
.location {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
}

.key-points {
    list-style: none;
    padding: 0;
    font-size: 14px;
}

.key-points li {
    margin-bottom: 6px;
    color: #444;
}

.btn-branch {
      width: 100%;
      border-radius: 30px;
      background: linear-gradient(180deg, #147547, var(--green));
      color: #fff;
      font-weight: 700;
      border: none;
    padding: 10px 0;
      transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
      box-shadow: 0 12px 24px rgba(15, 107, 62, 0.18);
}

.btn-branch:hover {
      background: linear-gradient(180deg, #0f6b3e, #0c5b33);
      transform: translateY(-2px);
      box-shadow: 0 16px 32px rgba(15, 107, 62, 0.24);
      color: #fff;
}


/* EXPAND */
.branch-details {
    margin-top: 10px;
}

.branch-details-card {
    background: linear-gradient(180deg, #ffffff, #f6faf7);
    border: 1px solid rgba(15, 107, 62, 0.10);
    border-radius: 18px;
    padding: 12px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
    margin-bottom: 10px;
}

.branch-details-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.branch-details-header h6 {
    margin: 0;
    font-size: 15px;
    font-weight: 800;
    color: #183525;
}

.branch-details-header span {
    font-size: 12px;
    font-weight: 700;
    color: var(--green);
    background: rgba(15, 107, 62, 0.08);
    padding: 6px 10px;
    border-radius: 999px;
}

.expand-list li {
    font-size: 14px;
    margin-bottom: 6px;
    color: #35463d;
}
.small-text {
      font-size: .85rem;
      color: #555;
}

.expand-map {
      width: 100%;
    height: 190px;
      border: 0;
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .14);
}

.branch-details .expand-map {
    margin-top: 6px;
}


@media (max-width:575px){
    .branch-hero {
        min-height: 40vh;
        height: 40vh;
        display: flex;
        align-items: center;
        padding: 20px 0;
        text-align: center;
    }

    .branch-hero-image {
        object-position: center;
    }

    .branch-hero-kicker {
        margin-bottom: 8px;
        font-size: 11px;
        letter-spacing: 0.12em;
    }

    .branch-hero-title {
        font-size: clamp(28px, 11vw, 44px);
        letter-spacing: 0.05em;
    }
}