﻿  :root {
    --primary: #0A2540;          /* Deep premium navy */
    --primary-light: #123456;    /* Slightly lighter navy */
    --secondary: #C9A84C;        /* Rich gold */
    --secondary-dark: #A98138;   /* Darker gold */
    --white: #ffffff;
    --light: #F4F7FB;
    --border: #E2E8F0;
    --text: #1A2A3A;
    --muted: #5A6A7A;
  }

  * {/* margin: 0; *//* padding: 0; *//* box-sizing: border-box; */}

  body {
    /* font-family: 'Segoe UI', system-ui, -apple-system, sans-serif; */
    background: #d7dce3;
    /* color: var(--text); */
    /* line-height: 1.5; */
    /* padding: 24px 12px 50px; */
  }

  .container {
    /* max-width: 1180px; */
    /* margin: 0 auto; */
    /* background: var(--white); */
    /* border-radius: 20px; */
    /* box-shadow: 0 10px 40px rgba(10, 37, 64, 0.1); */
    /* overflow: hidden; */
    /* padding: 0px; */
  }
  

.container1 {
  
    margin: 0 auto;
    background: var(--white);
    border-radius: 14px 14px 10px 10px;
    box-shadow: 0 8px 28px rgba(10, 37, 64, 0.12), 0 1px 3px rgba(10, 37, 64, 0.06);
    overflow: hidden;
    padding: 0px;
}

  /* Header */
  .header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 7px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 13px;
    flex-wrap: wrap;
  }

  .header-left h1 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #fff;
  }

  .header-left h1 span {
    color: var(--secondary);
  }

  .header-left p {
    margin-top: 1px;
    font-size: 0.85rem;
    opacity: 0.88;
    margin-bottom: 3px;
  }

  .header-right {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 13px;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
  }

  .btn i { font-size: 0.95rem; }

  .btn-download {
    background: #81741d;
    color: #ffffff;
  }

  .btn-download:hover {
    background:  #81741d;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(201, 168, 76, 0.4);
    color:#ffffff;
  }

  .btn-banking {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.28);
  }

  .btn-banking:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
     color:#ffffff;
  }

  /* Map */
  #map {
    width: 100%;
    height: 440px;
    background: var(--white);
    border-bottom: 1px solid var(--border);
  }

  /* Section Title */
  .section-title {
    text-align: center;
    padding: 24px 9px 1px;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    background: #fff;
    margin-bottom: 0px;
  }

  .section-title span {
    color: var(--secondary-dark);
  }

  /* Cards */
  .cards-section {
    padding: 20px 22px 40px;
    background: var(--white);
  }

  .offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
  }

.office-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 22px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

  .office-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--border);
    border-radius: 12px 0 0 12px;
    transition: background 0.3s;
  }

  .office-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(10, 37, 64, 0.1);
    border-color: var(--secondary);
  }

  .office-card:hover::before {
    background: var(--secondary);
  }

  .office-card.head-office {
    border-color: #837938;
    background: linear-gradient(145deg, #FDFBF5, #ffffff);
  }

  .office-card.head-office::before {
    background: var(--secondary);
    width: 5px;
  }

  .card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
  }

  .icon-wrap {
    width: 32px;
    height: 31px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    color: var(--white);
    background: var(--primary);
  }

  .icon-wrap.head {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: var(--primary);
  }

  .card-header h3 {
    font-size: 1.05rem;
    font-weight: 650;
    color: var(--primary);
    line-height: 1.3;
  }

  .badge {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: var(--secondary);
    color: var(--primary);
    padding: 2px 8px;
    border-radius: 20px;
    margin-left: 5px;
    vertical-align: middle;
  }

  .office-card ul {
    list-style: none;
    padding-left: 0px;
  }

  .office-card li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.5;
  }

  .office-card li i {
    color: var(--secondary-dark);
    font-size: 0.85rem;
    margin-top: 3px;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
  }

  .office-card li span {
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .office-card li a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
  }

  .office-card li a:hover {
    color: var(--secondary-dark);
    text-decoration: underline;
  }

.map-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: auto;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--white);
    background: #837938;
    padding: 7px 8px;
    border-radius: 7px;
    text-decoration: none;
    transition: all 0.25s ease;
    align-self: flex-start;
}

  .map-link-btn:hover {
    background: var(--secondary-dark);
    transform: translateY(-1px);
  }

  /* Map Markers */
  .custom-marker {
    background: transparent !important;
    border: none !important;
  }

  .pin {
    width: 38px;
    height: 38px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .pin-body {
    width: 30px;
    height: 30px;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2.5px solid #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    background: #c9a84c;
    animation: popIn 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) both, float 3s ease-in-out infinite;
  }

  .pin-body i {
    transform: rotate(45deg);
    color: #fff;
    font-size: 11px;
  }

  .pin.head .pin-body {
    background: linear-gradient(135deg, #F44336, #ff1400);
  }

  .pin.head .pin-body i {
    color: var(--primary);
  }

  .pin.head .pin-body::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50% 50% 50% 0;
    border: 2px solid red;
    animation: pulse 2s ease-out infinite;
  }

  .pin.d1 .pin-body { animation-delay: 0.05s, 0.05s; }
  .pin.d2 .pin-body { animation-delay: 0.12s, 0.12s; }
  .pin.d3 .pin-body { animation-delay: 0.19s, 0.19s; }
  .pin.d4 .pin-body { animation-delay: 0.26s, 0.26s; }
  .pin.d5 .pin-body { animation-delay: 0.33s, 0.33s; }
  .pin.d6 .pin-body { animation-delay: 0.40s, 0.40s; }
  .pin.d7 .pin-body { animation-delay: 0.47s, 0.47s; }
  .pin.d8 .pin-body { animation-delay: 0.54s, 0.54s; }
  .pin.d9 .pin-body { animation-delay: 0.61s, 0.61s; }
  .pin.d10 .pin-body { animation-delay: 0.68s, 0.68s; }

  @keyframes popIn {
    0%   { opacity: 0; transform: rotate(-45deg) scale(0) translateY(-30px); }
    70%  { opacity: 1; transform: rotate(-45deg) scale(1.12); }
    100% { opacity: 1; transform: rotate(-45deg) scale(1); }
  }

  @keyframes float {
    0%, 100% { transform: rotate(-45deg) translateY(0); }
    50%      { transform: rotate(-45deg) translateY(-5px); }
  }

  @keyframes pulse {
    0%   { transform: scale(1); opacity: 0.65; }
    100% { transform: scale(1.7); opacity: 0; }
  }

  .leaflet-popup-content-wrapper {
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(10,37,64,0.12);
    border: 1px solid var(--border);
  }

  .leaflet-popup-content {
    margin: 12px 14px;
    font-size: 0.87rem;
    line-height: 1.5;
    color: var(--muted);
  }

  .leaflet-popup-content strong {
    display: block;
    color: var(--primary);
    font-size: 0.93rem;
    margin-bottom: 4px;
  }

  .footer-note {
    text-align: center;
    padding: 14px;
    font-size: 0.8rem;
    color: var(--muted);
    border-top: 1px solid var(--border);
    background: var(--light);
  }

  @media (max-width: 640px) {
    .header {
      flex-direction: column;
      align-items: flex-start;
      padding: 18px 20px;
    }
    .header-right { width: 100%; }
    .btn { flex: 1; justify-content: center; }
  }