/* ======================================================
   IMPORT CENTRALIZED COLOR PALETTE
====================================================== */
@import url('theme.css');

/* ======================================================
   RESET & BASE
====================================================== */
* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background: var(--gradient-body);
  color: var(--uh-navy);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ======================================================
   FLYER WRAPPER (FULL WIDTH + EQUAL HEIGHT)
====================================================== */
.flyer {
  width: 100%;
  min-height: 100vh;
  margin: 0 auto;
  padding: clamp(0.75rem, 2vw, 1.25rem);

  display: flex;
  flex-direction: column;
  align-items: stretch; /* 🔥 critical */

  gap: 1rem;

  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(10px);
  border-radius: 22px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.18);
}

@media (min-width: 768px) {
  .flyer {
    flex-direction: row;
    align-items: stretch; /* 🔥 equal height */
  }
}

/* ======================================================
   LEFT & RIGHT SECTIONS (AUTO HEIGHT SYNC)
====================================================== */
.left-section,
.right-section {
  flex: 1;
  width: 100%;
  min-height: 100%;        /* 🔥 stretch */
  height: auto;

  border-radius: 20px;
  padding: 1.2rem;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1rem;

  position: relative;
}

.left-section {
  background: color-mix(in srgb, var(--uh-navy) 5%, var(--uh-white));
}

.right-section {
  background: color-mix(in srgb, var(--uh-mint) 5%, var(--uh-white));
}

/* Divider */
@media (min-width: 768px) {
  .left-section::after {
    content: "";
    position: absolute;
    top: 6%;
    right: -8px;
    width: 2px;
    height: 88%;
    background: linear-gradient(
      to bottom,
      transparent,
      var(--border-strong),
      transparent
    );
    opacity: 0.35;
  }
}

/* ======================================================
   OFFER (HERO CARD)
====================================================== */
.offer {
  background: var(--gradient-offer);
  color: var(--uh-white);
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 700;
  padding: 2rem 1.5rem;
  border-radius: 22px;
  cursor: pointer;

  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0,0,0,0.3);
  transition: transform .25s ease, box-shadow .25s ease;
}

.offer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top left,
    rgba(255,255,255,0.25),
    transparent 55%
  );
}

.offer:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.35);
}

/* ===== OFFER TEXT HIERARCHY ===== */
.price {
  margin-top: 0.8rem;
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #FFEB3B;
  letter-spacing: 0.3px;
}

.offer-sub {
  margin-top: 0.4rem;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-weight: 600;
  opacity: 0.95;
}

.offer-note {
  margin-top: 0.2rem;
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  font-weight: 500;
  opacity: 0.85;
}

/* ======================================================
   BENEFITS
====================================================== */
.benefits-heading {
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
}

.benefits {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.white-card {
  background: var(--uh-white);
  padding: 1rem;
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  font-weight: 600;
  border-left: 6px solid var(--card-left-accent);
  border-radius: 14px;
}

.white-card.yellow {
  background: #FFEB3B;
  color: #000;
  font-weight: 900;
  text-align: center;
  border: 2px solid #000;
  text-transform: uppercase;
}

/* ======================================================
   TERMS
====================================================== */
.terms-link {
  text-align: center;
  font-size: 0.85rem;
  font-style: italic;
  text-decoration: underline;
}

/* ======================================================
   MEMBERSHIP CTA
====================================================== */
.membership-box {
  background: linear-gradient(
    135deg,
    var(--membership-box-bg),
    color-mix(in srgb, var(--membership-box-bg) 85%, #000)
  );

  color: var(--black);
  text-align: center;
  padding: 1.8rem 1.4rem;
  border-radius: 26px;
  cursor: pointer;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;

  font-size: clamp(1.8rem, 3vw, 2.5rem); /* Bigger & bold */
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.4px;

  box-shadow:
    0 22px 50px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.35);

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.membership-box span {
  display: block;
}

/* Hover */
.membership-box:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow:
    0 30px 70px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.4);
}

/* Click feedback */
.membership-box:active {
  transform: scale(0.98);
}




.members-login-btn {
  width: 100%;
  background: var(--uh-white);
  color: var(--uh-navy);
  border: 2px solid var(--uh-navy);
  padding: 0.85rem;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 700;
  border-radius: 18px;
}

/* Call */
.call-box {
  text-align: center;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 800;
  margin-top: 0.8rem;
}

/* ======================================================
   HEART CHECKUP (HIERARCHY)
====================================================== */
.heart-checkup-box {
  background: var(--uh-white);
  padding: 1.6rem;
  border-radius: 18px;
  border-left: 6px solid var(--uh-mint);
}

.checkup-title {
  text-align: center;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 800;
}

.checkup-value {
  text-align: center;
  font-size: clamp(1.2rem, 2.5vw, 1.45rem);
  font-weight: 700;
  color: var(--uh-blue);
}

.checkup-subtitle {
  text-align: center;
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 600;
  opacity: 0.9;
}

.checkup-tech {
  text-align: center;
  font-size: clamp(0.85rem, 1.6vw, 0.95rem);
  opacity: 0.7;
}

.checkup-details-btn {
  display: block;
  margin: 1rem auto;
  padding: 0.75rem 1.4rem;
  background: var(--uh-navy);
  color: var(--uh-white);
  border-radius: 14px;
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
}

/* ======================================================
   LOCATIONS
====================================================== */
.locations-section {
  padding: 1rem;
}

.location-heading {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.locations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 1rem;
}

.location-card {
  background: var(--uh-white);
  display: flex;
  justify-content: space-between;
  padding: 1rem;
  border-radius: 16px;
  border: 1px solid var(--border-rgba);
}

.map-link {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.map-link img {
  width: 34px;
  height: 34px;
}

/* ======================================================
   FOOTER (WHATSAPP FIX)
====================================================== */
.footer-contact {
  background: var(--uh-navy);
  color: var(--uh-white);
  padding: 1rem;
  text-align: center;
  border-radius: 14px;
  margin: 1.5rem auto;
  overflow: hidden;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.whatsapp-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

/* ======================================================
   PREMIUM LOCATIONS SECTION (NO CONTENT CHANGE)
====================================================== */

.locations-section {
  margin-top: 2rem;
  padding: 1.5rem 1rem;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.6),
    rgba(255,255,255,0.9)
  );
  border-radius: 24px;
}

.location-heading {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--uh-navy);
  margin-bottom: 1.5rem;
}

.location-heading small {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.7;
  margin-top: 0.3rem;
}

/* GRID */
.locations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.4rem;
}

/* CARD */
.location-card {
  background: var(--uh-white);
  border-radius: 20px;
  padding: 1.2rem 1.3rem;

  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;

  box-shadow:
    0 12px 30px rgba(0,0,0,0.12),
    inset 0 1px 0 rgba(255,255,255,0.6);

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.location-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 20px 45px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.6);
}

/* LEFT CONTENT */
.location-left {
  flex: 1;
}

.location-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--uh-navy);
  margin-bottom: 0.4rem;
}

/* ADDRESS */
.location-left small {
  display: block;
  font-size: 0.92rem;
  line-height: 1.45;
  color: rgba(0,0,0,0.7);
  margin-bottom: 0.6rem;
}

/* PHONE NUMBERS */
.location-phone {
  margin-top: 0.5rem;
}

.location-phone a {
  display: inline-block;
  margin-right: 0.6rem;
  margin-top: 0.25rem;
  padding: 0.3rem 0.6rem;

  font-size: 0.9rem;
  font-weight: 700;
  color: var(--uh-blue);
  text-decoration: none;

  background: rgba(0,114,206,0.08);
  border-radius: 999px;
}

/* MAP ICON AS CTA */
.map-link {
  width: 44px;
  height: 44px;
  border-radius: 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(0,114,206,0.1);
  box-shadow: inset 0 0 0 1px rgba(0,114,206,0.25);

  transition: background 0.2s ease, transform 0.2s ease;
}

.map-link:hover {
  background: rgba(0,114,206,0.2);
  transform: scale(1.08);
}

.map-link img {
  width: 26px;
  height: 26px;
}

/* ======================================================
   MEMBERS LOGIN BUTTON – ALIGNMENT + FINTECH ANIMATION
====================================================== */

.members-login-btn {
  display: flex;                 /* 🔥 ensures perfect centering */
  align-items: center;
  justify-content: center;

  width: 100%;
  min-height: 54px;              /* consistent button height */

  background: var(--uh-white);
  color: var(--uh-navy);
  border: 2px solid var(--uh-navy);

  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 700;
  text-align: center;

  border-radius: 18px;
  cursor: pointer;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}

/* Hover – subtle fintech lift */
.members-login-btn:hover {
  background: var(--uh-navy);
  color: var(--uh-white);

  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.18);
}

/* Active / tap feedback */
.members-login-btn:active {
  transform: scale(0.98);
  box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}

/* Focus (keyboard / accessibility) */
.members-login-btn:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(0,114,206,0.35),
    0 10px 22px rgba(0,0,0,0.18);
}
/* ======================================================
   LEFT SECTION – BENEFITS SPACING TIGHTEN
====================================================== */

/* Reduce overall vertical gap inside left section */
.left-section {
  gap: 0.8rem; /* was ~1rem */
}

/* Heading spacing */
.benefits-heading {
  margin-top: 0.2rem;
  margin-bottom: 0.5rem; /* reduce gap below heading */
}

/* Benefits list spacing */
.benefits {
  gap: 0.6rem; /* tighter cards */
}

/* Individual benefit cards (optional micro tighten) */
.white-card {
  padding: 0.85rem 1rem;
}

/* Terms link spacing */
.terms-link {
  margin-top: 0.4rem; /* remove extra blank space */
  font-size: 0.8rem;
}

