
  :root {
    --red: #c8102e;
    --red-light: #fdf0f2;
    --navy: #0d1f4e;
    --text: #1a1a1a;
    --muted: #6b7280;
    --border: #e5e7eb;
    --bg: #f5f4f0;
    --card: #ffffff;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }

  body {
    font-family: 'Inter', 'Noto Sans Tamil', sans-serif;
    background: var(--bg);
    color: var(--text);
    font-size: 14px;
    line-height: 1.6;
  }

  

  /* CONTAINER */
  .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 32px 20px 60px;
  }

  /* TOP GRID — 3 columns */
  .top-grid {
          margin-top: 1px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
  }

  /* CARD BASE */
  .card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
  }

  .card-heading {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--red-light);
  }

  /* CONTACT DETAILS */
  .address-block {
    margin-bottom: 18px;
  }
  .block-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--muted);
    margin-bottom: 6px;
  }
  .address-text {
    font-size: 14px;
    color: var(--text);
    line-height: 1.7;
  }
  .phone-link {
    display: inline-block;
    color: var(--red);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    margin-top: 4px;
  }
  .phone-link:hover { text-decoration: underline; }

  .social-row {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  font-size: 16px;
  transition: 0.3s ease;
}

/* Brand Colors */
.social-btn.facebook { background: #1877f2; }
.social-btn.twitter { background: #000000; }
.social-btn.google { background: #db4437; }
.social-btn.youtube { background: #ff0000; }
.social-btn.linkedin { background: #0a66c2; }

/* Hover effect */
.social-btn:hover {
  transform: translateY(-3px) scale(1.05);
  opacity: 0.9;
}
  .action-btns {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
  }
  .btn-wa {
    display: flex;
    align-items: center;
    gap: 7px;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    text-decoration: none;
    transition: background .2s;
  }
  .btn-wa:hover { background: #1eb854; }
  .btn-support {
    display: flex;
    align-items: center;
    gap: 7px;
    background: var(--red);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    text-decoration: none;
    transition: background .2s;
  }
  .btn-support:hover { background: #a00d24; }

  /* SUPPORT */
  .contact-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
  }
  .contact-row:last-of-type { border-bottom: none; }
  .contact-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    min-width: 110px;
  }
  .contact-phone {
    font-size: 14px;
    color: var(--red);
    font-weight: 500;
    text-decoration: none;
  }
  .contact-phone:hover { text-decoration: underline; }

  .team-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 18px;
  }
  .team-photo {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
    text-align: center;
  }
  .team-photo img {
    width: 100%;
    height: 192px;
    object-fit: cover;
    object-position: top;
    display: block;
  }
  .team-photo span {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    padding: 6px 4px;
    color: var(--muted);
    background: #fafafa;
  }

  /* ONLINE TRANSFER */
  .gpay-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 18px;
  }
  .gpay-box {
    background: var(--red-light);
    border: 1px solid #f0c0c8;
    border-radius: 8px;
    padding: 10px 12px;
  }
  .gpay-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--red);
    margin-bottom: 2px;
  }
  .gpay-num {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
  }

  .bank-block {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 14px;
    margin-bottom: 10px;
  }
  .bank-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
  }
  .bank-note {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 8px;
  }
  .bank-detail-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    padding: 3px 0;
    border-bottom: 1px solid #f3f3f3;
  }
  .bank-detail-row:last-child { border-bottom: none; }
  .bd-label { color: var(--muted); }
  .bd-val { font-weight: 600; color: var(--text); }

  /* MAP SECTION */
  .map-section {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--card);
  }
  .map-header {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--border);
  }
  .map-header-icon {
    width: 32px;
    height: 32px;
    background: var(--red-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
  }
  .map-header-text h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
  }
  .map-header-text p {
    font-size: 12px;
    color: var(--muted);
  }
  .map-frame {
    width: 100%;
    height: 360px;
    border: none;
    display: block;
  }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    .top-grid {
      grid-template-columns: 1fr 1fr;
    }
    .card:last-child {
      grid-column: 1 / -1;
    }
  }

  @media (max-width: 600px) {
    .page-header h1 { font-size: 22px; }
    .container { padding: 20px 14px 50px; }
    .top-grid {
      grid-template-columns: 1fr;
      gap: 14px;
    }
    .card:last-child { grid-column: auto; }
    .gpay-row { grid-template-columns: 1fr 1fr; }
    .map-frame { height: 280px; }
    .action-btns { flex-direction: column; }
    .action-btns a { justify-content: center; }
  }
  
  
  
  .contact-phone {
  text-decoration: none;
}

.contact-phone:hover {
  text-decoration: none;
}
.phone-link {
  text-decoration: none;
}

.phone-link:hover {
  text-decoration: none;
}
