/* =========================================================
   MTRS CLUB - Main Stylesheet
   Theme: Premium Dark Public Site (navy + gold CTAs only)
========================================================= */

:root {
  --navy-900: #020617;
  --navy-800: #0f172a;
  --navy-700: #1e293b;
  --navy-600: #334155;
  --gold-500: #f5b942;
  --gold-400: #fcd34d;
  --gold-100: #fef9c3;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-300: #cbd5e1;
  --gray-600: #64748b;
  --gray-800: #1e293b;
  --white: #ffffff;
  --radius: 12px;
  --shadow-sm: 0 2px 12px rgba(2, 6, 23, 0.06);
  --shadow-md: 0 12px 40px rgba(2, 6, 23, 0.12);
  --transition: all 0.25s ease;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Poppins', 'Inter', sans-serif;
  color: var(--navy-800);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 16px;
}

p { margin: 0 0 16px; color: var(--gray-600); }

a { text-decoration: none; color: inherit; transition: var(--transition); }

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

ul { padding: 0; margin: 0; list-style: none; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.bg-light { background: var(--gray-50); }
.bg-navy { background: linear-gradient(135deg, var(--navy-900), var(--navy-700)); color: var(--white); }
.bg-navy h1, .bg-navy h2, .bg-navy h3, .bg-navy p { color: var(--white); }

.section-tag {
  display: inline-block;
  color: var(--navy-600);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 12px;
}
.bg-navy .section-tag,
.hero .section-tag,
.page-header .section-tag,
.cta-banner .section-tag { color: var(--gold-400); }

.section-header { max-width: 680px; margin: 0 auto 50px; text-align: center; }
.section-header h2 { font-size: 34px; }
.section-header.align-left { margin: 0 0 40px; text-align: left; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-500), #e8a317);
  color: var(--navy-900);
  box-shadow: 0 4px 14px rgba(245, 185, 66, 0.35);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 185, 66, 0.45);
}
.btn-outline { background: transparent; border-color: var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--navy-800); }
.btn-navy { background: var(--navy-800); color: var(--white); }
.btn-navy:hover { background: var(--navy-700); transform: translateY(-2px); }
.btn-block { width: 100%; }

/* =============== HEADER =============== */
.topbar {
  background: var(--navy-900);
  color: var(--gray-300);
  font-size: 13px;
  padding: 8px 0;
}
.topbar .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.topbar a { color: var(--gray-300); }
.topbar .topbar-item { display: inline-flex; align-items: center; gap: 6px; margin-right: 20px; }
.topbar .topbar-item i { color: var(--gold-500); }
.topbar .socials a { margin-left: 12px; color: var(--gray-300); }
.topbar .socials a:hover { color: var(--gold-500); }
.topbar .socials a.member-login-link { font-weight: 600; padding-right: 12px; border-right: 1px solid rgba(255,255,255,0.2); }

.site-header {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 999;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; padding-bottom: 14px; }

.logo { display: flex; align-items: center; gap: 10px; }
.logo .logo-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  color: var(--gold-400);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.logo .logo-text { line-height: 1.1; }
.logo .logo-text strong { display: block; font-family: 'Poppins', sans-serif; font-size: 22px; font-weight: 800; color: var(--navy-800); letter-spacing: 1px; }
.logo .logo-text span { display: block; font-size: 11px; letter-spacing: 2px; color: var(--navy-600); font-weight: 600; text-transform: uppercase; }

.main-nav ul { display: flex; align-items: center; gap: 34px; }
.main-nav a {
  font-weight: 600;
  font-size: 15px;
  color: var(--navy-800);
  padding: 6px 0;
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute; left: 0; bottom: -4px;
  width: 0; height: 2px; background: var(--navy-800);
  transition: var(--transition);
}
.main-nav a:hover::after, .main-nav li.active a::after { width: 100%; }
.main-nav li.active a { color: var(--navy-800); }
.main-nav li.mobile-only-nav-item { display: none; }

.header-actions { display: flex; align-items: center; gap: 18px; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span { width: 26px; height: 3px; background: var(--navy-800); border-radius: 2px; }

/* =============== HERO =============== */
.hero {
  position: relative;
  background:
    linear-gradient(125deg, rgba(2, 6, 23, 0.94) 0%, rgba(15, 23, 42, 0.82) 45%, rgba(30, 41, 59, 0.75) 100%),
    url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  color: var(--white);
  padding: 130px 0 150px;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 20% 100%, rgba(245, 185, 66, 0.08), transparent 60%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero .hero-inner { max-width: 680px; }
.hero .section-tag { color: var(--gold-400); }
.hero h1 { color: var(--white); font-size: 48px; margin-bottom: 20px; }
.hero p.lead { color: var(--gray-300); font-size: 18px; max-width: 560px; margin-bottom: 34px; }
.hero .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  margin-top: -60px;
  position: relative;
  z-index: 2;
}
.hero-stats .container {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-wrap: wrap;
  padding: 34px 20px;
}
.hero-stats .stat { flex: 1; min-width: 150px; text-align: center; padding: 10px 15px; border-right: 1px solid var(--gray-100); }
.hero-stats .stat:last-child { border-right: none; }
.hero-stats .stat h3 { color: var(--navy-800); font-size: 32px; margin-bottom: 4px; }
.hero-stats .stat span { color: var(--gray-600); font-size: 14px; font-weight: 600; }

/* =============== PAGE HEADER (inner pages) =============== */
.page-header {
  background:
    linear-gradient(125deg, rgba(2, 6, 23, 0.94), rgba(15, 23, 42, 0.88)),
    url('https://images.unsplash.com/photo-1553440569-bcc63803a83d?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}
.page-header h1 { color: var(--white); font-size: 38px; margin-bottom: 12px; }
.breadcrumb { display: inline-flex; gap: 8px; color: var(--gray-300); font-size: 14px; }
.breadcrumb a { color: var(--gold-400); font-weight: 600; }

/* =============== ABOUT / INTRO SPLIT =============== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius); box-shadow: var(--shadow-md); }
.split-media .media-badge {
  position: absolute; bottom: -20px; left: -20px;
  background: var(--navy-800); color: var(--white);
  padding: 20px 26px; border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.split-media .media-badge h3 { color: var(--gold-400); font-size: 28px; margin-bottom: 0; }
.split-media .media-badge span { font-size: 13px; color: var(--gray-300); }
.split-content .check-list li { display: flex; gap: 10px; margin-bottom: 12px; color: var(--gray-800); font-weight: 500; }
.split-content .check-list i { color: var(--navy-700); margin-top: 3px; }

/* =============== FEATURE / WHY CHOOSE US CARDS =============== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }

.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--navy-300, var(--gray-300)); }
.feature-card .icon {
  width: 68px; height: 68px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  color: var(--gold-400);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin: 0 auto 22px;
}
.feature-card h3 { font-size: 19px; }
.feature-card p { margin-bottom: 0; font-size: 14.5px; }

/* =============== SERVICE CARDS =============== */
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--navy-800);
  height: 100%;
  transition: var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-6px); }
.service-card .icon {
  width: 56px; height: 56px;
  background: var(--navy-800);
  color: var(--gold-400);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}
.service-card h3 { font-size: 19px; margin-bottom: 10px; }
.service-card p { font-size: 14.5px; margin-bottom: 0; }
.service-card a.more { display: inline-block; margin-top: 14px; font-weight: 700; color: var(--navy-800); font-size: 13.5px; }
.service-card a.more:hover { color: var(--navy-600); }

/* =============== CTA BANNER =============== */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 50%, var(--navy-700) 100%);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 55px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 26px;
  color: var(--white);
}
.cta-banner h2 { color: var(--white); margin-bottom: 8px; font-size: 28px; }
.cta-banner p { color: var(--gray-300); margin-bottom: 0; }

/* =============== PRICING / PLAN CARDS =============== */
.plan-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 40px 32px;
  text-align: center;
  border: 2px solid var(--gray-100);
  height: 100%;
  transition: var(--transition);
  position: relative;
}
.plan-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.plan-card.featured { border-color: var(--gold-500); }
.plan-card .badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold-500); color: var(--navy-900);
  padding: 6px 18px; border-radius: 50px; font-size: 12px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase;
}
.plan-card h3 { font-size: 20px; margin-bottom: 6px; }
.plan-card .price { font-size: 40px; color: var(--navy-800); font-weight: 800; margin: 16px 0; font-family: 'Poppins', sans-serif; }
.plan-card .price span { font-size: 15px; color: var(--gray-600); font-weight: 500; }
.plan-card ul { text-align: left; margin: 24px 0; }
.plan-card ul li { display: flex; gap: 10px; padding: 8px 0; border-bottom: 1px dashed var(--gray-100); font-size: 14.5px; color: var(--gray-800); }
.plan-card ul li i { color: var(--gold-500); margin-top: 3px; }
.plan-card .note { font-size: 12.5px; color: var(--gray-600); margin-top: 14px; }

/* =============== FAQ ACCORDION =============== */
.accordion-item {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 10px;
  margin-bottom: 16px;
  overflow: hidden;
}
.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 700;
  color: var(--navy-800);
  font-size: 16px;
}
.accordion-header .plus {
  width: 30px; height: 30px; min-width: 30px;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--navy-700);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.accordion-item.open .accordion-header .plus { background: var(--navy-800); color: var(--white); transform: rotate(45deg); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; padding: 0 24px; }
.accordion-item.open .accordion-body { max-height: 400px; padding: 0 24px 22px; }
.accordion-body p { margin-bottom: 0; }

/* =============== TESTIMONIALS =============== */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  height: 100%;
}
.testimonial-card .stars { color: var(--gold-500); margin-bottom: 14px; }
.testimonial-card .person { display: flex; align-items: center; gap: 14px; margin-top: 20px; }
.testimonial-card .avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--navy-800); color: var(--gold-400);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}
.testimonial-card .person strong { display: block; color: var(--navy-800); font-size: 14.5px; }
.testimonial-card .person span { font-size: 12.5px; color: var(--gray-600); }

/* =============== STATS COUNTER =============== */
.stats-strip { background: var(--navy-800); padding: 50px 0; }
.stats-strip .grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stats-strip h3 { color: var(--gold-400); font-size: 36px; margin-bottom: 6px; }
.stats-strip span { color: var(--gray-300); font-size: 14px; font-weight: 600; }

/* =============== CONTACT PAGE =============== */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.3fr; gap: 40px; align-items: start; }
.contact-info-card {
  background: var(--navy-800);
  color: var(--white);
  border-radius: var(--radius);
  padding: 40px 30px;
}
.contact-info-card h3 { color: var(--white); }
.contact-info-card p { color: var(--gray-300); }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 26px; }
.contact-info-item .icon {
  width: 46px; height: 46px; min-width: 46px;
  background: rgba(255,255,255,0.1);
  color: var(--gold-400);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.contact-info-item strong { display: block; color: var(--white); font-size: 14.5px; margin-bottom: 3px; }
.contact-info-item span, .contact-info-item a { color: var(--gray-300); font-size: 14px; }
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 8px; color: var(--navy-800); }
.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  font-size: 14.5px;
  font-family: inherit;
  transition: var(--transition);
}
.form-control:focus { outline: none; border-color: var(--navy-600); box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.1); }
textarea.form-control { resize: vertical; min-height: 130px; }
.error-text { color: #d64545; font-size: 12.5px; margin-top: 6px; display: block; }
.alert { padding: 16px 20px; border-radius: 8px; margin-bottom: 24px; font-size: 14.5px; font-weight: 600; }
.alert-success { background: #e6f6ec; color: #1c7a3d; border: 1px solid #b9e6c8; }
.alert-error { background: #fdeaea; color: #b93030; border: 1px solid #f5c2c2; }

/* =============== TOAST NOTIFICATIONS =============== */
.mtrs-toast-container {
	position: fixed;
	top: 24px;
	right: 24px;
	z-index: 9999;
	display: flex;
	flex-direction: column;
	gap: 14px;
	width: min(420px, calc(100vw - 32px));
	pointer-events: none;
}
.mtrs-toast {
	position: relative;
	overflow: hidden;
	border-radius: 14px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.06);
	pointer-events: auto;
	animation: mtrsToastIn 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}
.mtrs-toast-success {
	background: linear-gradient(145deg, #14532d 0%, #0f3d22 100%);
}
.mtrs-toast-warning {
	background: linear-gradient(145deg, #92400e 0%, #713f12 100%);
}
.mtrs-toast-danger {
	background: linear-gradient(145deg, #991b1b 0%, #7f1d1d 100%);
}
.mtrs-toast-info {
	background: linear-gradient(145deg, #1e3a8a 0%, #1e40af 100%);
}
.mtrs-toast.is-leaving {
	animation: mtrsToastOut 0.24s ease forwards;
}
.mtrs-toast-content {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 18px 18px 16px;
}
.mtrs-toast-icon {
	width: 42px;
	height: 42px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 18px;
}
.mtrs-toast-body { flex: 1; min-width: 0; padding-top: 3px; }
.mtrs-toast-title {
	display: block;
	font-size: 15px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 5px;
	letter-spacing: 0.01em;
}
.mtrs-toast-message {
	margin: 0;
	font-size: 14.5px;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.88);
	font-weight: 500;
}
.mtrs-toast-close {
	border: none;
	background: rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.75);
	width: 32px;
	height: 32px;
	border-radius: 8px;
	cursor: pointer;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition);
	font-size: 14px;
}
.mtrs-toast-close:hover {
	background: rgba(255, 255, 255, 0.16);
	color: #ffffff;
}
.mtrs-toast-progress {
	height: 5px;
	background: rgba(255, 255, 255, 0.1);
	overflow: hidden;
}
.mtrs-toast-progress span {
	display: block;
	height: 100%;
	width: 100%;
	transform-origin: left center;
	animation-name: mtrsToastProgress;
	animation-timing-function: linear;
	animation-fill-mode: forwards;
	will-change: transform;
}
.mtrs-toast-success .mtrs-toast-icon { background: rgba(255, 255, 255, 0.14); color: #bbf7d0; }
.mtrs-toast-success .mtrs-toast-progress span { background: linear-gradient(90deg, rgba(255,255,255,0.45), #bbf7d0); }
.mtrs-toast-warning .mtrs-toast-icon { background: rgba(255, 255, 255, 0.14); color: #fde68a; }
.mtrs-toast-warning .mtrs-toast-progress span { background: linear-gradient(90deg, rgba(255,255,255,0.45), #fde68a); }
.mtrs-toast-danger .mtrs-toast-icon { background: rgba(255, 255, 255, 0.14); color: #fecaca; }
.mtrs-toast-danger .mtrs-toast-progress span { background: linear-gradient(90deg, rgba(255,255,255,0.45), #fecaca); }
.mtrs-toast-info .mtrs-toast-icon { background: rgba(255, 255, 255, 0.14); color: #bfdbfe; }
.mtrs-toast-info .mtrs-toast-progress span { background: linear-gradient(90deg, rgba(255,255,255,0.45), #bfdbfe); }

@keyframes mtrsToastIn {
	from { opacity: 0; transform: translateX(28px) scale(0.96); }
	to { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes mtrsToastOut {
	from { opacity: 1; transform: translateX(0) scale(1); }
	to { opacity: 0; transform: translateX(28px) scale(0.96); }
}
@keyframes mtrsToastProgress {
	from { transform: scaleX(1); }
	to { transform: scaleX(0); }
}

@media (max-width: 768px) {
	.mtrs-toast-container {
		top: auto;
		bottom: 20px;
		right: 16px;
		left: 16px;
		width: auto;
	}
}

.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); margin-top: 30px; }
.map-embed iframe { width: 100%; height: 320px; border: 0; display: block; }

/* =============== FOOTER =============== */
.site-footer { background: var(--navy-900); color: var(--gray-300); padding-top: 70px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; }
.footer-col h4 { color: var(--white); font-size: 16px; margin-bottom: 22px; }
.footer-col p { color: var(--gray-300); font-size: 14px; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { color: var(--gray-300); font-size: 14px; }
.footer-col ul li a:hover { color: var(--gold-400); padding-left: 4px; }
.footer-col .contact-line { display: flex; gap: 10px; margin-bottom: 14px; font-size: 14px; }
.footer-col .contact-line i { color: var(--gold-400); margin-top: 4px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.footer-logo strong { color: var(--white); font-family: 'Poppins', sans-serif; font-size: 20px; letter-spacing: 1px; }
.footer-logo span { display: block; font-size: 11px; color: var(--gold-500); letter-spacing: 2px; }
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.footer-socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
}
.footer-socials a:hover { background: var(--gold-500); color: var(--navy-900); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: var(--gray-300);
}
.footer-bottom a { color: var(--gray-300); }
.footer-bottom a:hover { color: var(--gold-400); }

/* =============== BACK TO TOP =============== */
.back-to-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 48px; height: 48px;
  background: var(--gold-500);
  color: var(--navy-900);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 998;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }

/* =============== RESPONSIVE =============== */
@media (max-width: 991px) {
  .split { grid-template-columns: 1fr; }
  .grid-3, .grid-2 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .stats-strip .grid-4 { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 38px; }
}

@media (max-width: 768px) {
  .topbar { display: none; }
  .main-nav { position: fixed; top: 0; right: -300px; width: 280px; height: 100vh; background: var(--white); box-shadow: -4px 0 20px rgba(0,0,0,0.1); padding: 90px 24px; transition: right 0.3s ease; z-index: 1000; }
  .main-nav.open { right: 0; }
  .main-nav ul { flex-direction: column; align-items: flex-start; gap: 22px; }
  .nav-toggle { display: flex; }
  .header-actions .btn-gold { display: none; }
  .main-nav li.mobile-only-nav-item { display: block; border-top: 1px solid var(--gray-100); padding-top: 18px; margin-top: 6px; width: 100%; }
  .main-nav li.mobile-only-nav-item i { color: var(--gold-500); margin-right: 6px; }
  .grid-3, .grid-2, .footer-grid, .stats-strip .grid-4 { grid-template-columns: 1fr; }
  .hero-stats .stat { border-right: none; border-bottom: 1px solid var(--gray-100); }
  .hero-stats .stat:last-child { border-bottom: none; }
  .cta-banner { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .section-header h2, .hero h1 { font-size: 28px; }
  .split-media .media-badge { position: static; margin-top: -40px; margin-left: 20px; display: inline-block; }
}

.nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 999; }
.nav-overlay.show { display: block; }
