/* ============================================================
   UrgentRishta.pk — Global Stylesheet
   Include this on every page:
   <link rel="stylesheet" href="assets/css/global.css">
   ============================================================ */

/* ── Google Fonts (must also be in <head>) ──────────────────
   <link rel="preconnect" href="https://fonts.googleapis.com">
   <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
   <link href="https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=DM+Sans:wght@300;400;500;600&display=swap" rel="stylesheet">
   ──────────────────────────────────────────────────────────── */

/* ────────────────────────────────────────────────────────────
   1. DESIGN TOKENS
   ──────────────────────────────────────────────────────────── */
:root {
  /* Brand palette */
  --rose:        #C0395B;
  --rose-dark:   #8B1A3A;
  --rose-light:  #F2718A;
  --gold:        #C9993A;
  --gold-light:  #F0C97A;
  --cream:       #FFF6EF;
  --blush:       #FFE8EF;
  --ink:         #2C1A22;
  --muted:       #8A6B75;
  --white:       #FFFFFF;

  /* Glass / Shadow */
  --glass:       rgba(255, 255, 255, 0.78);
  --shadow-sm:   0 4px 16px rgba(139, 26, 58, 0.10);
  --shadow-md:   0 12px 36px rgba(139, 26, 58, 0.14);
  --shadow-lg:   0 24px 64px rgba(139, 26, 58, 0.18);

  /* Borders */
  --border-soft: rgba(192, 57, 91, 0.14);
  --border-mid:  rgba(192, 57, 91, 0.24);

  /* Typography */
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'DM Sans', system-ui, sans-serif;

  /* Spacing scale */
  --sp-xs:  4px;
  --sp-sm:  8px;
  --sp-md:  16px;
  --sp-lg:  24px;
  --sp-xl:  40px;
  --sp-2xl: 64px;

  /* Radius */
  --r-sm:  8px;
  --r-md:  13px;
  --r-lg:  20px;
  --r-xl:  32px;
  --r-pill:50px;

  /* Transitions */
  --ease:    all 0.22s ease;
  --ease-lg: all 0.35s ease;

  /* Navbar height (used by pages for padding-top) */
  --nav-h: 70px;
}


/* ────────────────────────────────────────────────────────────
   2. RESET & BASE
   ──────────────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.65;
  min-height: 100vh;
}

img, svg, video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, select, textarea {
  font-family: var(--font-sans);
}

ul, ol { list-style: none; }


/* ────────────────────────────────────────────────────────────
   3. TYPOGRAPHY
   ──────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--ink);
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem);  font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); font-weight: 600; }
h4 { font-size: 1.2rem; font-weight: 600; }
h5 { font-size: 1rem;   font-weight: 600; }

p  {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.72;
}

.text-rose      { color: var(--rose); }
.text-rose-dark { color: var(--rose-dark); }
.text-gold      { color: var(--gold); }
.text-muted     { color: var(--muted); }
.text-ink       { color: var(--ink); }
.text-white     { color: var(--white); }

.serif          { font-family: var(--font-serif); }
.italic         { font-style: italic; }

/* Eyebrow label */
.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: var(--sp-sm);
}


/* ────────────────────────────────────────────────────────────
   4. LAYOUT HELPERS
   ──────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--sp-lg);
}

.container-sm {
  width: 100%;
  max-width: 800px;
  margin-inline: auto;
  padding-inline: var(--sp-lg);
}

.section {
  padding-block: var(--sp-2xl);
}

.section-sm {
  padding-block: var(--sp-xl);
}

.flex        { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between{ display: flex; align-items: center; justify-content: space-between; }
.flex-col    { display: flex; flex-direction: column; }
.gap-sm      { gap: var(--sp-sm); }
.gap-md      { gap: var(--sp-md); }
.gap-lg      { gap: var(--sp-lg); }
.gap-xl      { gap: var(--sp-xl); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-lg); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-lg); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-lg); }

.text-center { text-align: center; }
.text-right  { text-align: right; }

.mt-xs { margin-top: var(--sp-xs); }
.mt-sm { margin-top: var(--sp-sm); }
.mt-md { margin-top: var(--sp-md); }
.mt-lg { margin-top: var(--sp-lg); }
.mt-xl { margin-top: var(--sp-xl); }

.mb-xs { margin-bottom: var(--sp-xs); }
.mb-sm { margin-bottom: var(--sp-sm); }
.mb-md { margin-bottom: var(--sp-md); }
.mb-lg { margin-bottom: var(--sp-lg); }
.mb-xl { margin-bottom: var(--sp-xl); }


/* ────────────────────────────────────────────────────────────
   5. BUTTONS
   ──────────────────────────────────────────────────────────── */

/* Primary */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  height: 52px;
  padding-inline: 28px;
  border-radius: var(--r-md);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
  border: none;
  transition: var(--ease);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(192, 57, 91, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(192, 57, 91, 0.45);
}
.btn-primary:active { transform: none; }

/* Outline */
.btn-outline {
  background: transparent;
  color: var(--rose);
  border: 1.5px solid var(--rose);
}
.btn-outline:hover {
  background: var(--blush);
  border-color: var(--rose-dark);
  color: var(--rose-dark);
}

/* Ghost (white — for use on dark/rose backgrounds) */
.btn-ghost {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* Gold accent */
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #a67a20 100%);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(201, 153, 58, 0.35);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(201, 153, 58, 0.45);
}

/* Size modifiers */
.btn-sm {
  height: 40px;
  padding-inline: 18px;
  font-size: 0.84rem;
  border-radius: var(--r-sm);
}
.btn-lg {
  height: 60px;
  padding-inline: 36px;
  font-size: 1.05rem;
  border-radius: var(--r-lg);
}
.btn-full { width: 100%; }


/* ────────────────────────────────────────────────────────────
   6. FORM ELEMENTS
   ──────────────────────────────────────────────────────────── */
.field {
  position: relative;
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--rose-dark);
  margin-bottom: 7px;
}

.field .input-wrap {
  position: relative;
}

.field .input-wrap .fi {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--rose-light);
  font-size: 0.95rem;
  pointer-events: none;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 44px 0 42px;
  background: rgba(255, 255, 255, 0.95);
  border: 1.5px solid var(--border-soft);
  border-radius: var(--r-md);
  font-family: var(--font-sans);
  font-size: 0.93rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.22s, box-shadow 0.22s;
}

.field textarea {
  padding: 14px 16px 14px 42px;
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.field select { cursor: pointer; appearance: none; }

.field input::placeholder,
.field textarea::placeholder { color: #C0A0AA; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(192, 57, 91, 0.10);
}

/* no-icon variant */
.field input.no-icon,
.field select.no-icon,
.field textarea.no-icon {
  padding-left: 16px;
}

/* Password toggle */
.pw-eye {
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.9rem;
  padding: 4px;
  transition: var(--ease);
}
.pw-eye:hover { color: var(--rose); }

/* Checkbox / Radio */
input[type="checkbox"],
input[type="radio"] {
  accent-color: var(--rose);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

/* Error / Success states */
.field.is-error input,
.field.is-error select,
.field.is-error textarea {
  border-color: var(--rose);
  background: #fff5f7;
}

.field-error-msg {
  font-size: 0.78rem;
  color: var(--rose);
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Alert banners */
.alert {
  border-radius: var(--r-md);
  padding: 12px 16px;
  font-size: 0.87rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  animation: ur-slideDown 0.3s ease;
}

.alert-error {
  background: #ffe4ea;
  border: 1px solid #f5b3c2;
  color: var(--rose-dark);
}

.alert-success {
  background: #e6f9ef;
  border: 1px solid #86e0aa;
  color: #1a6a3a;
}

.alert-info {
  background: #fff3e0;
  border: 1px solid #f5d07a;
  color: #7a5500;
}

@keyframes ur-slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: none; }
}


/* ────────────────────────────────────────────────────────────
   7. CARD COMPONENT
   ──────────────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-soft);
  overflow: hidden;
  transition: var(--ease-lg);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card-body {
  padding: var(--sp-lg);
}

.card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}


/* ────────────────────────────────────────────────────────────
   8. BADGE / PILL
   ──────────────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  border-radius: var(--r-pill);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.badge-rose {
  background: var(--blush);
  color: var(--rose-dark);
  border: 1px solid rgba(192, 57, 91, 0.18);
}

.badge-gold {
  background: #fff8e6;
  color: #8a6200;
  border: 1px solid rgba(201, 153, 58, 0.22);
}

.badge-glass {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.badge-green {
  background: #e6f9ef;
  color: #1a6a3a;
  border: 1px solid #86e0aa;
}


/* ────────────────────────────────────────────────────────────
   9. DIVIDER
   ──────────────────────────────────────────────────────────── */
.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-block: var(--sp-md);
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-soft);
}
.divider span {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
  white-space: nowrap;
}


/* ────────────────────────────────────────────────────────────
   10. FLOATING HEARTS (decorative animation)
   ──────────────────────────────────────────────────────────── */
.float-heart {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  animation: ur-floatUp linear infinite;
  opacity: 0;
}
@keyframes ur-floatUp {
  0%   { transform: translateY(0) rotate(0deg) scale(0.6);   opacity: 0; }
  10%  { opacity: 0.5; }
  90%  { opacity: 0.25; }
  100% { transform: translateY(-110vh) rotate(25deg) scale(1); opacity: 0; }
}


/* ────────────────────────────────────────────────────────────
   11. NAVBAR
   ──────────────────────────────────────────────────────────── */
.ur-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255, 246, 239, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-soft);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.ur-nav.scrolled {
  box-shadow: 0 4px 24px rgba(139, 26, 58, 0.10);
  background: rgba(255, 246, 239, 0.97);
}

.ur-nav__inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--sp-lg);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-lg);
}

/* Logo */
.ur-nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.ur-nav__logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(192, 57, 91, 0.3);
  transition: transform 0.22s;
}
.ur-nav__logo:hover .ur-nav__logo-icon { transform: scale(1.08) rotate(-5deg); }

.ur-nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.ur-nav__logo-text strong {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--rose-dark);
  letter-spacing: -0.2px;
}
.ur-nav__logo-text span {
  font-size: 0.64rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-top: 1px;
}

/* Links */
.ur-nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.ur-nav__link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 13px;
  border-radius: var(--r-sm);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  transition: var(--ease);
  position: relative;
  white-space: nowrap;
}
.ur-nav__link:hover {
  color: var(--rose);
  background: var(--blush);
}
.ur-nav__link.active {
  color: var(--rose);
  background: var(--blush);
  font-weight: 600;
}
.ur-nav__link i { font-size: 0.82rem; }

/* Dropdown */
.ur-nav__dropdown {
  position: relative;
}
.ur-nav__dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-md);
  padding: 10px;
  min-width: 200px;
  z-index: 100;
  animation: ur-fadeIn 0.18s ease;
}
.ur-nav__dropdown:hover .ur-nav__dropdown-menu { display: block; }

.ur-nav__dropdown-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  border-radius: var(--r-sm);
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  transition: var(--ease);
}
.ur-nav__dropdown-item:hover {
  background: var(--blush);
  color: var(--rose);
}
.ur-nav__dropdown-item i {
  color: var(--rose-light);
  width: 16px;
  text-align: center;
}

@keyframes ur-fadeIn {
  from { opacity: 0; transform: translateX(-50%) translateY(6px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* Nav CTA buttons */
.ur-nav__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  flex-shrink: 0;
}

.ur-nav__btn-login {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  border-radius: var(--r-sm);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--rose);
  border: 1.5px solid var(--rose);
  background: transparent;
  text-decoration: none;
  transition: var(--ease);
  cursor: pointer;
}
.ur-nav__btn-login:hover {
  background: var(--blush);
  border-color: var(--rose-dark);
  color: var(--rose-dark);
}

.ur-nav__btn-register {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  border-radius: var(--r-sm);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
  border: none;
  text-decoration: none;
  transition: var(--ease);
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(192, 57, 91, 0.3);
}
.ur-nav__btn-register:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(192, 57, 91, 0.42);
}

/* Hamburger */
.ur-nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  border-radius: var(--r-sm);
  transition: var(--ease);
}
.ur-nav__hamburger:hover { background: var(--blush); }
.ur-nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: var(--ease);
}
.ur-nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ur-nav__hamburger.open span:nth-child(2) { opacity: 0; }
.ur-nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.ur-nav__mobile {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: rgba(255, 246, 239, 0.97);
  backdrop-filter: blur(18px);
  padding: var(--sp-lg);
  flex-direction: column;
  gap: var(--sp-sm);
  z-index: 999;
  overflow-y: auto;
  border-top: 1px solid var(--border-soft);
  animation: ur-slideIn 0.22s ease;
}
.ur-nav__mobile.open { display: flex; }

@keyframes ur-slideIn {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: none; }
}

.ur-nav__mobile-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--r-md);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  transition: var(--ease);
  border-left: 3px solid transparent;
}
.ur-nav__mobile-link:hover,
.ur-nav__mobile-link.active {
  background: var(--blush);
  color: var(--rose);
  border-left-color: var(--rose);
}
.ur-nav__mobile-link i {
  color: var(--rose-light);
  width: 18px;
  text-align: center;
  font-size: 0.9rem;
}

.ur-nav__mobile-divider {
  height: 1px;
  background: var(--border-soft);
  margin-block: var(--sp-xs);
}

.ur-nav__mobile-actions {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  margin-top: var(--sp-sm);
}


/* ────────────────────────────────────────────────────────────
   12. FOOTER
   ──────────────────────────────────────────────────────────── */
.ur-footer {
  background: linear-gradient(160deg, var(--rose-dark) 0%, #6B0F2A 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

/* Top wave */
.ur-footer::before {
  content: '';
  display: block;
  height: 60px;
  background: var(--cream);
  clip-path: ellipse(55% 100% at 50% 0%);
  margin-bottom: -1px;
}

.ur-footer__pattern {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 10 C30 10 20 0 10 10 C0 20 10 30 30 40 C50 30 60 20 50 10 C40 0 30 10 30 10Z' fill='rgba(255,255,255,0.03)'/%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

.ur-footer__main {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin-inline: auto;
  padding: var(--sp-2xl) var(--sp-lg) var(--sp-xl);
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
}

/* Brand column */
.ur-footer__brand {}

.ur-footer__logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  margin-bottom: var(--sp-lg);
}
.ur-footer__logo-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--white);
  flex-shrink: 0;
}
.ur-footer__logo-text strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
}
.ur-footer__logo-text span {
  display: block;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 1px;
}

.ur-footer__tagline {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.70);
  line-height: 1.7;
  margin-bottom: var(--sp-lg);
  max-width: 280px;
}

/* Social */
.ur-footer__social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: var(--sp-lg);
}
.ur-footer__social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.80);
  font-size: 0.88rem;
  text-decoration: none;
  transition: var(--ease);
}
.ur-footer__social-btn:hover {
  background: var(--rose-light);
  border-color: var(--rose-light);
  color: var(--white);
  transform: translateY(-2px);
}

/* Trust badges row */
.ur-footer__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.ur-footer__trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--r-pill);
  padding: 5px 12px;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
}
.ur-footer__trust-badge i { color: var(--gold-light); font-size: 0.75rem; }

/* Footer columns */
.ur-footer__col {}

.ur-footer__col-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--sp-md);
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  gap: 8px;
}
.ur-footer__col-title i { color: var(--gold-light); font-size: 0.85rem; }

.ur-footer__col-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.ur-footer__col-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: var(--ease);
  padding: 2px 0;
}
.ur-footer__col-link::before {
  content: '›';
  color: var(--rose-light);
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.2s;
}
.ur-footer__col-link:hover {
  color: var(--white);
  padding-left: 4px;
}
.ur-footer__col-link:hover::before {
  transform: translateX(2px);
}

/* Contact info */
.ur-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 12px;
  line-height: 1.5;
}
.ur-footer__contact-item i {
  color: var(--gold-light);
  margin-top: 2px;
  width: 14px;
  text-align: center;
  flex-shrink: 0;
}
.ur-footer__contact-item a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.ur-footer__contact-item a:hover { color: var(--white); }

/* Stats strip in footer */
.ur-footer__stats {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--sp-lg);
  padding-bottom: var(--sp-xl);
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.ur-footer__stat {
  text-align: center;
  flex: 1;
  min-width: 100px;
}
.ur-footer__stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 4px;
}
.ur-footer__stat span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}

/* Newsletter */
.ur-footer__newsletter {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.06);
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}
.ur-footer__newsletter-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding: var(--sp-lg);
  display: flex;
  align-items: center;
  gap: var(--sp-xl);
  flex-wrap: wrap;
}
.ur-footer__newsletter-text strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 2px;
}
.ur-footer__newsletter-text p {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.6);
}
.ur-footer__newsletter-form {
  display: flex;
  gap: 10px;
  flex: 1;
  min-width: 260px;
  max-width: 480px;
}
.ur-footer__newsletter-input {
  flex: 1;
  height: 46px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--r-sm);
  color: var(--white);
  font-size: 0.88rem;
  font-family: var(--font-sans);
  outline: none;
  transition: var(--ease);
}
.ur-footer__newsletter-input::placeholder { color: rgba(255, 255, 255, 0.45); }
.ur-footer__newsletter-input:focus {
  border-color: var(--rose-light);
  background: rgba(255, 255, 255, 0.18);
}
.ur-footer__newsletter-btn {
  height: 46px;
  padding-inline: 22px;
  border-radius: var(--r-sm);
  background: linear-gradient(135deg, var(--rose-light) 0%, var(--rose) 100%);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--ease);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.ur-footer__newsletter-btn:hover { opacity: 0.9; transform: translateY(-1px); }

/* Bottom bar */
.ur-footer-bar {
  background: rgba(0, 0, 0, 0.25);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 1;
}
.ur-footer-bar__inner {
  max-width: 1200px;
  margin-inline: auto;
  padding: var(--sp-md) var(--sp-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-md);
  flex-wrap: wrap;
}
.ur-footer-bar__copy {
  font-size: 0.80rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
}
.ur-footer-bar__copy a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.ur-footer-bar__copy a:hover { color: var(--white); }

.ur-footer-bar__links {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  flex-wrap: wrap;
}
.ur-footer-bar__link {
  font-size: 0.80rem;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.ur-footer-bar__link:hover { color: var(--white); }
.ur-footer-bar__sep {
  color: rgba(255, 255, 255, 0.20);
  font-size: 0.72rem;
}

.ur-footer-bar__heart {
  color: var(--rose-light);
  animation: ur-heartbeat 1.4s ease-in-out infinite;
}
@keyframes ur-heartbeat {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.25); }
}


/* ────────────────────────────────────────────────────────────
   13. SECTION HEADING HELPER
   ──────────────────────────────────────────────────────────── */
.section-heading {
  text-align: center;
  margin-bottom: var(--sp-2xl);
}
.section-heading .eyebrow { margin-bottom: var(--sp-sm); }
.section-heading h2 {
  margin-bottom: var(--sp-sm);
}
.section-heading h2 em {
  font-style: italic;
  color: var(--rose);
}
.section-heading p {
  max-width: 540px;
  margin-inline: auto;
}


/* ────────────────────────────────────────────────────────────
   14. UTILITY
   ──────────────────────────────────────────────────────────── */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only { @extend .visually-hidden; }

.d-none    { display: none !important; }
.d-block   { display: block !important; }
.d-flex    { display: flex !important; }

.overflow-hidden { overflow: hidden; }
.rounded         { border-radius: var(--r-md); }
.rounded-full    { border-radius: var(--r-pill); }
.shadow          { box-shadow: var(--shadow-md); }
.w-full          { width: 100%; }

/* Page offset for sticky nav */
.has-sticky-nav { padding-top: var(--nav-h); }

/* Scroll-to-top button */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--rose);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  box-shadow: 0 6px 20px rgba(192, 57, 91, 0.4);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: var(--ease);
  z-index: 500;
}
.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.scroll-top:hover { transform: translateY(-2px); }


/* ────────────────────────────────────────────────────────────
   15. RESPONSIVE BREAKPOINTS
   ──────────────────────────────────────────────────────────── */

/* Tablet */
@media (max-width: 1024px) {
  .ur-footer__main {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .ur-footer__brand { grid-column: 1 / -1; }

  .ur-nav__links { display: none; }
  .ur-nav__actions .ur-nav__btn-register { display: none; }
  .ur-nav__hamburger { display: flex; }
}

/* Mobile */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .ur-nav__actions { gap: var(--sp-xs); }
  .ur-nav__btn-login { padding: 7px 13px; font-size: 0.82rem; }

  .ur-footer__main {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: var(--sp-xl);
  }
  .ur-footer__brand { grid-column: 1; }

  .ur-footer__stats {
    gap: 16px;
    justify-content: center;
  }

  .ur-footer__newsletter-inner {
    flex-direction: column;
    gap: var(--sp-md);
  }
  .ur-footer__newsletter-form { max-width: 100%; width: 100%; }

  .ur-footer-bar__inner {
    flex-direction: column;
    text-align: center;
    gap: var(--sp-sm);
  }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }

  .scroll-top { bottom: 18px; right: 18px; }
}

@media (max-width: 480px) {
  .container { padding-inline: var(--sp-md); }
  .ur-nav__inner { padding-inline: var(--sp-md); }
}
