/* ═══════════════════════════════════════════
   E-MAX CAPITAL — LUXURY BLACK + GOLD THEME
   ═══════════════════════════════════════════ */

:root {
  --black: #0a0a0a;
  --black-2: #111111;
  --black-3: #1a1a1a;
  --black-card: #141414;
  --gold-light: #FFE566;
  --gold: #FFD700;
  --gold-mid: #D4A017;
  --gold-dark: #8B6914;
  --silver: #C8B882;
  --white: #ffffff;
  --muted: #7a6b44;
  --text: #e8e0c4;
  --shadow-gold: 0 0 25px rgba(255, 215, 0, 0.15);
  --shadow-gold-strong: 0 0 35px rgba(255, 215, 0, 0.3);
  --grad-gold: linear-gradient(135deg, #FFD700 0%, #FFE566 50%, #D4A017 100%);
  --grad-gold-emboss: linear-gradient(180deg, #5A3D00 0%, #C8920A 18%, #FFD700 38%, #FFF5A0 50%, #FFD700 62%, #C8920A 82%, #5A3D00 100%);
  --grad-dark: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', 'Helvetica Neue', sans-serif;
  background: var(--black);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
}

a { color: var(--gold); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--gold-light); }

/* ═══════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  padding: 0.85rem 0;
  transition: all 0.3s ease;
}
.navbar.scrolled {
  background: rgba(10, 10, 10, 0.97);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.nav-logo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
  box-shadow: 0 0 12px rgba(255,215,0,0.4);
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo-text .brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 800;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 2px;
}
.nav-logo-text .tagline {
  font-size: 0.65rem;
  color: var(--silver);
  letter-spacing: 3px;
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.2rem;
  align-items: center;
}
.nav-menu a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--gold);
}
.nav-menu a:hover::after,
.nav-menu a.active::after { width: 100%; }

.nav-cta {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  font-family: inherit;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--black);
}
.btn-gold {
  background: var(--grad-gold);
  color: var(--black);
  box-shadow: 0 4px 15px rgba(255,215,0,0.4);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255,215,0,0.6);
  color: var(--black);
}
.btn-lg { padding: 1rem 2.2rem; font-size: 1rem; }

.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.hamburger span {
  width: 28px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
  transition: 0.3s;
}

/* ═══════════════════════════════════════════
   HERO SLIDER
   ═══════════════════════════════════════════ */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  margin-top: 80px;
}

.slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.slide.active { opacity: 1; z-index: 2; }

.slide-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: kenburns 8s ease-out forwards;
}
.slide.active .slide-image {
  animation: kenburns 8s ease-out forwards;
}

@keyframes kenburns {
  0%   { transform: scale(1.0); }
  100% { transform: scale(1.12); }
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.55) 50%, rgba(0,0,0,0.7) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.8) 100%);
}

.slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  z-index: 3;
}
.slide-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}
.slide-text {
  max-width: 650px;
  animation: fadeInLeft 1.2s ease;
}
.slide.active .slide-text { animation: fadeInLeft 1.2s ease; }

@keyframes fadeInLeft {
  0%   { opacity: 0; transform: translateX(-40px); }
  100% { opacity: 1; transform: translateX(0); }
}

.slide-badge {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  background: rgba(255,215,0,0.15);
  border: 1px solid var(--gold);
  border-radius: 30px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.slide-title {
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--white);
}
.slide-title .gold {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.slide-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--silver);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.slide-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Slider controls */
.slider-controls {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.7rem;
  z-index: 5;
}
.slider-dot {
  width: 40px;
  height: 4px;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.3s;
}
.slider-dot.active {
  background: var(--gold);
  width: 60px;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 55px;
  height: 55px;
  background: rgba(0,0,0,0.5);
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  z-index: 5;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}
.slider-arrow:hover {
  background: var(--gold);
  color: var(--black);
  box-shadow: var(--shadow-gold-strong);
}
.slider-arrow.prev { left: 2rem; }
.slider-arrow.next { right: 2rem; }

/* ═══════════════════════════════════════════
   SECTIONS / GENERAL
   ═══════════════════════════════════════════ */
.section {
  padding: 6rem 2rem;
  position: relative;
}
.container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-badge {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  background: rgba(255,215,0,0.1);
  border: 1px solid var(--gold);
  border-radius: 30px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-family: 'Playfair Display', serif;
  margin-bottom: 1rem;
  font-weight: 800;
}
.section-title .gold {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-subtitle {
  color: var(--silver);
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════
   FEATURE CARDS
   ═══════════════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: var(--black-card);
  border: 1px solid rgba(255,215,0,0.2);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-gold-emboss);
}
.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold-strong);
}
.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--black-3);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--gold);
  box-shadow: 0 0 20px rgba(255,215,0,0.3);
}
.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--gold);
}
.feature-card p {
  color: var(--silver);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════════ */
.stats-bar {
  background: var(--black-2);
  padding: 4rem 2rem;
  border-top: 1px solid rgba(255,215,0,0.15);
  border-bottom: 1px solid rgba(255,215,0,0.15);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}
.stat-item .stat-value {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.stat-item .stat-label {
  color: var(--silver);
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

/* ═══════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════ */
.cta-section {
  background:
    linear-gradient(135deg, rgba(255,215,0,0.05) 0%, rgba(0,0,0,0) 100%),
    var(--black-2);
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255,215,0,0.1) 0%, transparent 60%);
}
.cta-content { position: relative; z-index: 2; }
.cta-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}
.cta-content p {
  color: var(--silver);
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
footer {
  background: #050505;
  padding: 4rem 2rem 2rem;
  border-top: 2px solid var(--gold);
}
.footer-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-col h4 {
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  margin-bottom: 1.2rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.footer-brand img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  margin-bottom: 1rem;
}
.footer-brand p {
  color: var(--silver);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.7rem; }
.footer-col ul a {
  color: var(--silver);
  font-size: 0.95rem;
}
.footer-col ul a:hover {
  color: var(--gold);
  padding-left: 5px;
}
.social-links {
  display: flex;
  gap: 0.7rem;
  margin-top: 1rem;
}
.social-links a {
  width: 40px;
  height: 40px;
  background: var(--black-3);
  border: 1px solid var(--gold-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all 0.3s;
}
.social-links a:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
}
.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,215,0,0.15);
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

/* ═══════════════════════════════════════════
   PAGE HERO (non-homepage)
   ═══════════════════════════════════════════ */
.page-hero {
  margin-top: 80px;
  padding: 8rem 2rem 5rem;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(255,215,0,0.08) 0%, rgba(0,0,0,0.95) 100%),
    var(--black);
  border-bottom: 1px solid rgba(255,215,0,0.2);
  position: relative;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255,215,0,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255,215,0,0.08) 0%, transparent 50%);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
}
.page-hero p {
  color: var(--silver);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--muted);
}
.breadcrumb a { color: var(--gold); }

/* ═══════════════════════════════════════════
   ABOUT US
   ═══════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-gold-strong);
}
.about-image img {
  width: 100%;
  display: block;
}
.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}
.about-content p {
  color: var(--silver);
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
}

/* Vision Mission */
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
.vm-card {
  background: var(--black-card);
  border: 1px solid rgba(255,215,0,0.25);
  border-radius: 16px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
}
.vm-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-gold-emboss);
}
.vm-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold-strong);
}
.vm-card .icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.vm-card h3 {
  color: var(--gold);
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.vm-card p {
  color: var(--silver);
  line-height: 1.8;
}

/* ═══════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════ */
.service-card {
  background: var(--black-card);
  border: 1px solid rgba(255,215,0,0.2);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s;
  position: relative;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-gold-emboss);
  z-index: 2;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold-strong);
}
.service-icon-wrap {
  background: linear-gradient(135deg, rgba(255,215,0,0.1) 0%, transparent 100%);
  padding: 3rem 2rem 1rem;
  text-align: center;
}
.service-icon-wrap .icon {
  font-size: 3.5rem;
  color: var(--gold);
}
.service-body { padding: 2rem; }
.service-body h3 {
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.service-body p {
  color: var(--silver);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.service-features {
  list-style: none;
  padding: 0;
}
.service-features li {
  color: var(--text);
  padding: 0.5rem 0;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255,215,0,0.1);
  position: relative;
  padding-left: 1.5rem;
}
.service-features li:last-child { border-bottom: none; }
.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
}

/* ═══════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
}
.contact-info {
  background: var(--black-card);
  border: 1px solid rgba(255,215,0,0.2);
  border-radius: 16px;
  padding: 2.5rem;
}
.contact-info h3 {
  color: var(--gold);
  margin-bottom: 2rem;
  font-size: 1.5rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.8rem;
}
.contact-item .icon {
  width: 50px;
  height: 50px;
  background: rgba(255,215,0,0.1);
  border: 1px solid var(--gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-item .info-label {
  display: block;
  color: var(--silver);
  font-size: 0.85rem;
  margin-bottom: 3px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.contact-item .info-value {
  color: var(--text);
  font-weight: 500;
}
.contact-item .info-value a {
  color: var(--gold);
}

.contact-form {
  background: var(--black-card);
  border: 1px solid rgba(255,215,0,0.2);
  border-radius: 16px;
  padding: 2.5rem;
}
.contact-form h3 {
  color: var(--gold);
  margin-bottom: 2rem;
  font-size: 1.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  color: var(--silver);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.form-control {
  width: 100%;
  background: var(--black-2);
  border: 1px solid rgba(255,215,0,0.2);
  border-radius: 10px;
  padding: 0.9rem 1.2rem;
  color: var(--white);
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s;
}
.form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255,215,0,0.15);
}
textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

/* ═══════════════════════════════════════════
   AUTH (LOGIN / REGISTER)
   ═══════════════════════════════════════════ */
.auth-wrapper {
  min-height: calc(100vh - 80px);
  margin-top: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,215,0,0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(255,215,0,0.05) 0%, transparent 50%),
    var(--black);
}
.auth-card {
  background: var(--black-card);
  border: 1px solid rgba(255,215,0,0.3);
  border-radius: 20px;
  padding: 3rem;
  width: 100%;
  max-width: 480px;
  box-shadow: var(--shadow-gold-strong);
  position: relative;
  overflow: hidden;
}
.auth-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad-gold-emboss);
}
.auth-logo {
  text-align: center;
  margin-bottom: 1.5rem;
}
.auth-logo img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  box-shadow: 0 0 20px rgba(255,215,0,0.4);
}
.auth-card h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.auth-card .subtitle {
  text-align: center;
  color: var(--silver);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}
.auth-card .btn {
  width: 100%;
  margin-top: 0.5rem;
}
.auth-divider {
  display: flex;
  align-items: center;
  margin: 1.5rem 0;
  color: var(--muted);
  font-size: 0.85rem;
}
.auth-divider::before, .auth-divider::after {
  content: '';
  flex: 1;
  border-top: 1px solid rgba(255,215,0,0.15);
}
.auth-divider span { padding: 0 1rem; }
.social-auth {
  display: flex;
  gap: 0.8rem;
}
.social-auth button {
  flex: 1;
  background: var(--black-2);
  border: 1px solid rgba(255,215,0,0.2);
  border-radius: 10px;
  padding: 0.75rem;
  color: var(--text);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: inherit;
}
.social-auth button:hover {
  border-color: var(--gold);
  background: var(--black-3);
}
.auth-footer {
  text-align: center;
  margin-top: 1.5rem;
  color: var(--silver);
  font-size: 0.9rem;
}
.checkbox-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
.checkbox-row label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--silver);
  cursor: pointer;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 968px) {
  .nav-menu, .nav-cta { display: none; }
  .nav-menu.show {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(10,10,10,0.98);
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(255,215,0,0.2);
  }
  .nav-menu.show li { padding: 0.7rem 0; border-bottom: 1px solid rgba(255,215,0,0.08); }
  .hamburger { display: flex; }
  .about-grid, .contact-grid, .vm-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .slider-arrow { width: 45px; height: 45px; }
  .slider-arrow.prev { left: 1rem; }
  .slider-arrow.next { right: 1rem; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 4rem 1.5rem; }
  .nav-container { padding: 0 1rem; }
  .auth-card { padding: 2rem 1.5rem; }
}

/* ═══════════════════════════════════════════
   PHONE INPUT (country code + number)
   ═══════════════════════════════════════════ */
.phone-input {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 0.6rem;
}
.phone-input .phone-code {
  padding-left: 0.6rem;
  padding-right: 0.4rem;
  width: max-content !important;
}

/* ═══════════════════════════════════════════
   STATUS PAGES (success / failure / verify)
   ═══════════════════════════════════════════ */
.status-card {
  text-align: center;
  padding: 3rem 2.5rem;
}
.status-icon {
  width: 110px;
  height: 110px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
}
.status-icon.success {
  background: rgba(0, 230, 118, 0.12);
  border: 3px solid #00E676;
  color: #00E676;
  box-shadow: 0 0 35px rgba(0, 230, 118, 0.45);
  animation: pulseSuccess 2s ease-in-out infinite;
}
.status-icon.failure {
  background: rgba(255, 60, 100, 0.12);
  border: 3px solid #FF3C64;
  color: #FF3C64;
  box-shadow: 0 0 35px rgba(255, 60, 100, 0.45);
  animation: pulseFail 2s ease-in-out infinite;
}
.status-icon.pending {
  background: rgba(255, 215, 0, 0.12);
  border: 3px solid var(--gold);
  color: var(--gold);
  box-shadow: var(--shadow-gold-strong);
}
@keyframes pulseSuccess {
  0%, 100% { box-shadow: 0 0 35px rgba(0, 230, 118, 0.45); }
  50%      { box-shadow: 0 0 50px rgba(0, 230, 118, 0.75); }
}
@keyframes pulseFail {
  0%, 100% { box-shadow: 0 0 35px rgba(255, 60, 100, 0.45); }
  50%      { box-shadow: 0 0 50px rgba(255, 60, 100, 0.75); }
}

.status-card h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.status-card .status-msg {
  color: var(--silver);
  margin-bottom: 2rem;
  font-size: 1.05rem;
  line-height: 1.7;
}
.status-card .actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* ═══════════════════════════════════════════
   OTP INPUT
   ═══════════════════════════════════════════ */
.otp-row {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin: 1.5rem 0 1rem;
}
.otp-row input {
  width: 55px;
  height: 65px;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  background: var(--black-2);
  border: 1.5px solid rgba(255, 215, 0, 0.25);
  border-radius: 12px;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  transition: all 0.3s;
}
.otp-row input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.18);
  background: var(--black-3);
}
.resend-row {
  text-align: center;
  color: var(--silver);
  font-size: 0.92rem;
  margin-top: 1rem;
}
.resend-row a {
  color: var(--gold);
  font-weight: 600;
}
