/* ============================================================
   Highland Estates — Coming Soon
   style.css | Premium Luxury Real Estate Landing Page
   ============================================================ */

/* ── CSS Custom Properties ───────────────────────────────── */
:root {
    --gold: #d3a73f;
    --gold-light: #cda03c;
    --gold-dark: #9e7c48;
  --white:         #ffffff;
  --white-90:      rgba(255, 255, 255, 0.90);
  --white-70:      rgba(255, 255, 255, 0.70);
  --white-50:      rgba(255, 255, 255, 0.50);
  --white-20:      rgba(255, 255, 255, 0.20);
  --white-10:      rgba(255, 255, 255, 0.10);
  --white-05:      rgba(255, 255, 255, 0.05);
  --glass-bg:      rgba(255, 255, 255, 0.07);
  --glass-border:  rgba(255, 255, 255, 0.18);
  --glass-shadow:  rgba(0, 0, 0, 0.35);
  --font-serif:    'Cormorant Garamond', Georgia, serif;
  --font-sans:     'Montserrat', sans-serif;
  --transition:    0.45s cubic-bezier(0.23, 1, 0.32, 1);
}

/* ── Reset & Base ────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overscroll-behavior: none;
  background-color: #0a1628;
  width: 100%;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--white);
  overscroll-behavior: none;
  min-height: 100vh;
  min-height: 100dvh;
  width: 100%;
  background: #0a1628;
}

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

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

/* ── Particle Canvas ─────────────────────────────────────── */
#particles-canvas {
  position: fixed;
  top: -10vh;
  left: -10vw;
  width: 120vw;
  height: 120vh;
  z-index: 0;
  pointer-events: none;
}

/* ── Background & Overlay ────────────────────────────────── */
.bg-overlay {
  position: fixed;
  top: -10vh;
  left: -10vw;
  width: 120vw;
  height: 120vh;
  z-index: 1;

  /* Layered gradients for depth and drama */
  background:
    linear-gradient(
      to bottom,
      rgba(5, 12, 28, 0.55) 0%,
      rgba(5, 12, 28, 0.35) 30%,
      rgba(5, 12, 28, 0.45) 60%,
      rgba(5, 12, 28, 0.75) 100%
    );

  /* Hill-station scene via CSS gradients */
  background-image:
    radial-gradient(ellipse at 50% 0%, rgba(255, 180, 80, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 100%, rgba(10, 40, 80, 0.5) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 100%, rgba(10, 40, 80, 0.5) 0%, transparent 60%),
    linear-gradient(
      180deg,
      #0d1b2a 0%,
      #1a2f4a 15%,
      #253d5b 28%,
      #3a5068 40%,
      #2d4a3e 55%,
      #1e3a2e 70%,
      #0f2218 85%,
      #081510 100%
    );

  pointer-events: none;



}

/* Mountain silhouette layer */
.bg-overlay::before {
content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: /* Misty foreground pines */ radial-gradient(ellipse at 50% 115%, rgba(20, 55, 30, 0.7) 0%, transparent 50%), /* Sunrise glow */ radial-gradient(ellipse at 50% 30%, rgba(255, 160, 60, 0.12) 0%, transparent 45%), /* Mist layer */ radial-gradient(ellipse at 50% 55%, rgba(180, 210, 230, 0.07) 0%, transparent 40%);
    pointer-events: none;
    background-image: linear-gradient(rgb(7 41 15 / 70%), rgb(59 76 29 / 25%)), radial-gradient(circle at top, rgb(212 175 55 / 0%), transparent 45%), url(./img/foggy-spanish-mountains-after-forest.jpg);
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
}

/* ── Page Wrapper ─────────────────────────────────────────── */
.page-wrapper {
  position: relative;
  z-index: 2;
  height: 100vh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  width: 100%;
  /* padding: 2.5rem 0 1.5rem; */
}

/* ── Glassmorphism Base ──────────────────────────────────── */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  box-shadow:
    0 8px 32px var(--glass-shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

/* ── HEADER ──────────────────────────────────────────────── */
.site-header {
  padding: 0 0 2rem;
}

.logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.logo-icon {
  font-size: 2.4rem;
  color: var(--gold);
  margin-bottom: 0.4rem;
  filter: drop-shadow(0 0 12px rgba(201, 169, 110, 0.5));
}

.logo-main {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--white-90);
  line-height: 1;
}

.logo-sub {
  display: block;
  font-family: var(--font-sans);
  font-size: clamp(0.55rem, 1.4vw, 0.75rem);
  font-weight: 400;
  letter-spacing: 0.55em;
  color: var(--gold);
  line-height: 1;
}

.logo-tagline {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.4em;
  color: var(--white-50);
  margin-top: 0.15rem;
}

/* Header divider line */
/* .site-header::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.2rem auto 0;
} */

/* ── PROPERTY CATEGORIES ─────────────────────────────────── */
.categories-section {
  padding: 0.5rem 0 2.5rem;
}

.category-card {
  padding: 2rem 1.5rem;
  cursor: default;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.category-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(201, 169, 110, 0.45);
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.45),
    0 0 24px rgba(201, 169, 110, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.card-icon-wrap {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.2rem;
  border: 1px solid rgba(201, 169, 110, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.category-card:hover .card-icon-wrap {
  background: rgba(201, 169, 110, 0.12);
  border-color: var(--gold);
  transform: scale(1.1) rotate(5deg);
}

.card-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--white-90);
  margin-bottom: 0.5rem;
}

.card-desc {
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--white-50);
  line-height: 1.7;
  margin: 0;
}

/* ── HERO SECTION ────────────────────────────────────────── */
.hero-section {
  /* padding: 1rem 0 3rem; */
  flex: 1;
    margin-top: 132px;
}

.coming-soon-badge {
  display: inline-block;
  margin-bottom: 1.5rem;
}

.coming-soon-badge span {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 169, 110, 0.4);
  padding: 0.4rem 1.2rem;
  border-radius: 100px;
  background: rgba(201, 169, 110, 0.08);
}

.hero-heading {
font-family: var(--font-serif);
    font-size: clamp(4rem, 12vw, 9rem);
    font-weight: 300;
    letter-spacing: 0.14em;
    color: var(--white);
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 60px rgba(255, 255, 255, 0.08), 0 4px 30px rgba(0, 0, 0, 0.4);
    font-size: 25px;
    margin-top: 0px;
}

.logo-text img{
  max-width: 250px; 
    margin-top: 139px;
}
.coming-soon-section {
  display: flex !important;
      justify-content: center;
}

/* ── Animated Divider ──────────────────────────────────────── */
.animated-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0 auto 1.8rem;
  max-width: 320px;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  position: relative;
  overflow: hidden;
}

.divider-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
  animation: shimmer-line 3s ease-in-out infinite;
}

@keyframes shimmer-line {
  0%   { left: -100%; }
  50%, 100% { left: 100%; }
}

.divider-diamond {
  font-size: 0.5rem;
  color: var(--gold);
  animation: pulse-diamond 2.5s ease-in-out infinite;
}

@keyframes pulse-diamond {
  0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
  50%       { opacity: 0.6; transform: scale(1.3) rotate(45deg); }
}

/* ── Hero Typography ─────────────────────────────────────── */
.hero-subheading {
font-family: var(--font-serif);
    font-size: clamp(1rem, 2.8vw, 1.6rem);
    font-weight: 500;
    font-style: italic;
    letter-spacing: 0.05em;
    color: var(--white-70);
    /* margin-bottom: 1.2rem; */
    line-height: 30px;
      color: rgb(216 183 101);
    font-size: 40px;
}

.hero-description {
    font-family: sans-serif;
    font-size: clamp(0.7rem, 1.6vw, 0.85rem);
    font-weight: 500;
    letter-spacing: 0.12em;
    color: #fff;
    line-height: 2;
    /* max-width: 520px; */
    /* margin: 0 auto 2.5rem; */
    font-size: 15px;
        margin-left: 24px;
            margin-bottom: 30px;
}

/* .highland{
  display: flex;
}
.highland h5{
  font-size: 14px;
  margin: 0px 3px;
 
  font-family: sans-serif;

    font-weight: 400;
    letter-spacing: 0.12em;
} */

.highland{
    display: flex;
    align-items: center;
}

.highland h5{
    font-size: 14px;
    margin: 0 4px;
    font-family: sans-serif;
    font-weight: 400;
    letter-spacing: 0.12em;
    position: relative;
    color: #fff;
}



/* Resorts ke baad line */
.highland h5:not(:last-child)::after{
    content: "";
    position: absolute;
    right: -4px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 13px;
    background: #d9b865;
}

/* ── CTA Button ──────────────────────────────────────────── */
.cta-wrap {
  margin-bottom: 0.5rem;
}

.btn-luxury {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 0.9rem 2.5rem;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
  transition:
    background var(--transition),
    border-color var(--transition),
    color var(--transition),
    gap var(--transition),
    box-shadow var(--transition),
    transform 0.2s ease;
}

.btn-luxury:hover {
  background: rgba(201, 169, 110, 0.18);
  border-color: var(--gold);
  color: var(--gold-light);
  gap: 1.1rem;
  box-shadow: 0 0 30px rgba(201, 169, 110, 0.2);
  transform: translateY(-2px);
}

.btn-luxury:active {
  transform: translateY(0);
}

.btn-luxury i {
  font-size: 0.7rem;
  transition: transform var(--transition);
}

.btn-luxury:hover i {
  transform: translateX(4px);
}

/* ── CONTACT SECTION ─────────────────────────────────────── */
.contact-section {
  padding: 0 0 2.5rem;
}

/* .contact-glass-card {
  padding: 2rem 2.5rem;
} */

.contact-label {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 1.5rem;
  display: none;
}

.contact-items {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  /* padding: 0.6rem 0.8rem; */
  border-radius: 10px;
  transition: background var(--transition);
  /* flex: 1; */
  min-width: 0px;
  text-decoration: none;
}
.contact-icon-wrap i{
  color: #fff;
}



/* .contact-item:hover {
  background: rgba(255, 255, 255, 0.06);
} */

.contact-icon-wrap {
     /* width: 35px; */
    /* height: 35px; */
    /* min-width: 35px; */
    border-radius: 50%;
    /* border: 1px solid rgb(203 177 107); */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    /* color: var(--gold); */
    transition: background var(--transition), border-color var(--transition);
}

.contact-item:hover .contact-icon-wrap {
  background: rgba(201, 169, 110, 0.12);
  border-color: var(--gold);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.contact-type {
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #fff;
}

.contact-value {
     font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: #fff;
  transition: color var(--transition);
}

.contact-item:hover .contact-value {
  color: var(--gold-light);
}

.contact-separator {
  width: 1px;
  height: 42px;
  background: rgba(255, 255, 255, 0.12);
}

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  /* padding: 1.5rem 0 0.5rem; */
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: auto;
}

.footer-launching {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--white-50);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.pulse-dot {
  color: #4caf6e;
  font-size: 0.5rem;
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 1; filter: drop-shadow(0 0 3px #4caf6e); }
  50%       { opacity: 0.5; filter: drop-shadow(0 0 8px #4caf6e); }
}

/* Social Nav */
.social-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--white-50);
  transition:
    border-color var(--transition),
    color var(--transition),
    background var(--transition),
    transform var(--transition);
}

.social-icon:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 169, 110, 0.1);
  transform: translateY(-3px);
}

.footer-copy {
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--white-20);
  margin: 0;
}

/* ── ANIMATIONS ──────────────────────────────────────────── */
.animate-fade-in {
  opacity: 0;
  animation: fadeIn 1.2s ease forwards;
  animation-delay: 0.1s;
}

.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s cubic-bezier(0.23, 1, 0.32, 1) forwards;
  animation-delay: var(--delay, 0.3s);
}

@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── PARALLAX HINT ───────────────────────────────────────── */
.bg-overlay {
  will-change: transform;
  transition: transform 0.1s linear;
}

/* ── SCROLLBAR ───────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #0a1628;
}

::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 10px;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */

/* Tablet */
@media (max-width: 991.98px) {
  .contact-separator {
    display: none;
  }

  .contact-items {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-item {
    width: 100%;
    min-width: unset;
  }
}

/* Mobile */
@media (max-width: 767.98px) {
  .page-wrapper {
    padding: 0rem 0 0rem;
  }

  .hero-heading {
    letter-spacing: 0.12em;
  }

  .contact-glass-card {
    padding: 1.5rem 1.25rem;
  }

  .category-card {
    padding: 1.5rem 1.25rem;
  }
}

/* Small mobile */
@media (max-width: 479.98px) {
  .social-nav {
    gap: 0.5rem;
  }

  .social-icon {
    width: 34px;
    height: 34px;
    font-size: 0.75rem;
  }

  .btn-luxury {
    padding: 0.8rem 1.8rem;
    font-size: 0.65rem;
  }
  .hero-section {

    margin-top: 85px;
}

.contact-item {
    justify-content: center;
}
    .contact-glass-card {
        padding: 10px 0px 20px 0px;
    }
    .logo-text img {
    max-width: 203px;
    margin-top: 139px;
}
}

/* Large screens */
@media (min-width: 1400px) {
  .categories-section {
    padding-bottom: 3rem;
  }

  /* .hero-section {
    padding: 1.5rem 0 4rem;
  } */
}





.header-actions{
    position: absolute;
    top: calc(20px + env(safe-area-inset-top));
    right: max(30px, env(safe-area-inset-right));
    display: flex;
    gap: 10px;
    z-index: 99;
}

.btn-login,
.btn-register{
    text-decoration: none;
    padding: 3px 16px;
    border-radius: 30px;
    transition: all .3s ease;
}

.btn-login{
    color: #fff;
    border: 1px solid rgba(255,255,255,.4);
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(10px);
}

.btn-register{
    color: #ffffff;
    background: #d9b865;
    border: 1px solid #d9b865;
}

.btn-login:hover{
    background: rgba(255,255,255,.15);
}

.btn-register:hover{
    transform: translateY(-2px);
}

/* ===== CUSTOM VARIABLES FOR MODAL & DASHBOARD ===== */
:root {
  --text-primary: #1A1A1A;
  --text-secondary: #4D4D4D;
  --text-muted: #808080;
  --gold-accent: #d3a73f;
  --gold-light: #cda03c;
  --gold-muted: rgba(211, 167, 63, 0.4);
  --dash-bg: #F7F7F5;
  --dash-surface: #FFFFFF;
  --dash-border: #E6E6E6;
  --dash-hover: #F0F0EE;
}

/* ===== LEAD GENERATION MODAL (PORTED) ===== */
.custom-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.custom-modal.hidden {
  display: none;
}
.custom-modal-backdrop {
  position: absolute;
  inset: 0;
  /* background: rgba(5, 7, 4, 0.75); */
  z-index: 0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.custom-modal .modal-content {
  position: relative;
  width: 100%;
  max-width: 520px;
  background: rgba(15, 18, 14, 0.65);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 3.5rem 3rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), inset 0 1px 2px rgba(255, 255, 255, 0.05);
  z-index: 1001;
  overflow: hidden;
  animation: modalIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--white-50);
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.3s ease;
  z-index: 10;
}
.modal-close:hover {
  color: var(--gold-accent);
  transform: scale(1.1);
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@media (max-width: 480px) {
  .custom-modal .modal-content { padding: 2.5rem 1.5rem; border-radius: 20px; }
}

/* ===== MODAL STEPS ===== */
.step { display: flex; flex-direction: column; gap: 1.5rem; }
.step.hidden { display: none; }
.step-title { font-family: var(--font-serif); font-size: 2.2rem; color: #fff; margin-bottom: 0.2rem; text-align: center; }
.step-desc { font-size: 0.95rem; color: var(--white-70); text-align: center; margin-bottom: 1rem; font-weight: 300; }
.step-alt { font-size: 0.85rem; color: var(--white-50); text-align: center; }
.auth-switch { display: flex; align-items: center; justify-content: center; gap: 0.6rem; margin: 0.5rem 0 1rem; }
.auth-switch .step-alt { margin: 0; font-size: 0.95rem; color: var(--white-70); }
.login-link { color: var(--gold-light); text-decoration: none; font-weight: 500; font-size: 0.95rem; padding: 0.4rem 0.8rem; border-radius: 6px; transition: all 0.3s ease; background: rgba(212, 175, 55, 0.08); border: 1px solid rgba(212, 175, 55, 0.2); }
.login-link:hover { background: rgba(212, 175, 55, 0.15); border-color: var(--gold-accent); color: var(--gold-accent); }

/* ===== FORM ELEMENTS ===== */
.form-container { display: flex; flex-direction: column; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group-row { display: flex; gap: 1rem; }
.form-group-row .form-group { flex: 1; }
.custom-modal label { font-size: 0.85rem; color: var(--white-70); font-weight: 400; letter-spacing: 0.05em; }
.custom-modal input[type="text"], .custom-modal input[type="email"], .custom-modal input[type="tel"], .custom-modal input[type="number"] { width: 100%; background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 12px; padding: 1rem 1.2rem; color: #fff; font-family: var(--font-sans); font-size: 1.05rem; transition: all 0.3s ease; }
.custom-modal input:focus { outline: none; background: rgba(255, 255, 255, 0.08); border-color: var(--gold-accent); box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15); }
.custom-modal input:disabled { opacity: 0.6; cursor: not-allowed; }
.input-wrapper { position: relative; display: flex; align-items: center; }
.mobile-input-wrapper .country-code { position: absolute; left: 1rem; color: var(--white-70); font-size: 1rem; display: flex; align-items: center; gap: 0.4rem; }
.mobile-input-wrapper .flag-icon { width: 20px; height: auto; border-radius: 2px; }
.custom-modal .mobile-input-wrapper input[type="tel"] { padding-left: 5rem; letter-spacing: 0.1em; }

/* ===== OTP INPUTS ===== */
.otp-container { display: flex; justify-content: center; gap: 0.5rem; margin-bottom: 0.5rem; }
.otp-input { width: 45px !important; height: 55px; text-align: center; font-size: 1.5rem !important; font-weight: 500; padding: 0 !important; }
.timer-text, .demo-text { text-align: center; font-size: 0.85rem; color: var(--white-50); }
.demo-text { color: var(--gold-muted); margin-top: -0.5rem; }

/* ===== RADIO BUTTONS ===== */
.radio-group { display: flex; flex-direction: column; gap: 0.8rem; }
.radio-group.horizontal { flex-direction: row; flex-wrap: wrap; }
.radio-label { display: flex; align-items: center; gap: 0.8rem; cursor: pointer; font-size: 0.95rem; color: #fff; background: rgba(0, 0, 0, 0.2); padding: 0.8rem 1rem; border-radius: 8px; border: 1px solid rgba(255, 255, 255, 0.05); transition: all 0.3s ease; }
.radio-label:hover { background: rgba(212, 175, 55, 0.05); }
.radio-label input { display: none; }
.radio-custom { width: 18px; height: 18px; border-radius: 50%; border: 2px solid rgba(255, 255, 255, 0.3); display: inline-block; position: relative; transition: border-color 0.3s ease; }
.radio-label input:checked + .radio-custom { border-color: var(--gold-accent); }
.radio-label input:checked + .radio-custom::after { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 8px; height: 8px; background: var(--gold-accent); border-radius: 50%; }
.radio-label:has(input:checked) { border-color: rgba(212, 175, 55, 0.3); background: rgba(212, 175, 55, 0.05); }

/* ===== CHECKBOXES ===== */
.checkbox-label { display: flex; align-items: center; gap: 0.8rem; cursor: pointer; font-size: 0.95rem; color: #fff; background: rgba(0, 0, 0, 0.2); padding: 0.8rem 1rem; border-radius: 8px; border: 1px solid rgba(255, 255, 255, 0.05); transition: all 0.3s ease; }
.checkbox-label:hover { background: rgba(212, 175, 55, 0.05); }
.checkbox-label input { display: none; }
.checkbox-custom { width: 18px; height: 18px; border-radius: 4px; border: 2px solid rgba(255, 255, 255, 0.3); display: inline-block; position: relative; transition: all 0.3s ease; }
.checkbox-label input:checked + .checkbox-custom { border-color: var(--gold-accent); background: var(--gold-accent); }
.checkbox-label input:checked + .checkbox-custom::after { content: ''; position: absolute; top: 1px; left: 5px; width: 5px; height: 10px; border: solid #000; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.checkbox-label:has(input:checked) { border-color: rgba(212, 175, 55, 0.3); background: rgba(212, 175, 55, 0.05); }

/* ===== BUTTONS ===== */
.btn { font-family: var(--font-sans); font-weight: 500; font-size: 1rem; letter-spacing: 0.08em; padding: 1.1rem; border-radius: 12px; cursor: pointer; text-transform: uppercase; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); width: 100%; border: none; }
.btn-primary { background: linear-gradient(135deg, var(--gold-light), var(--gold-accent)); color: #000; box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2); }
.btn-primary:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4); }
.btn-primary:disabled { background: rgba(255, 255, 255, 0.08); color: rgba(255, 255, 255, 0.3); box-shadow: none; cursor: not-allowed; }
.btn-secondary { background: rgba(255, 255, 255, 0.03); color: #fff; border: 1px solid rgba(255, 255, 255, 0.1); }
.btn-secondary:hover { border-color: rgba(255, 255, 255, 0.3); background: rgba(255, 255, 255, 0.08); transform: translateY(-2px); }
.btn-group { display: flex; gap: 1rem; margin-top: 0.5rem; }

/* ===== SUCCESS SCREEN ===== */
.success-icon { width: 80px; height: 80px; background: rgba(212, 175, 55, 0.1); color: var(--gold-accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; margin: 0 auto 1rem; border: 2px solid var(--gold-accent); }

/* ===== KASPR-INSPIRED DASHBOARD (DARK LUXURY THEME) ===== */
body.dashboard-active {
  background-image: none !important;
  background-color: #0a0a0a !important;
}

.dashboard-section {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: #0a0a0a; /* Sleek dark background */
  display: flex;
  color: #fff;
  font-family: var(--font-sans), -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.dashboard-section.hidden {
  display: none !important;
}

/* Sidebar */
.dashboard-sidebar {
  width: 250px;
  background: #111111;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  z-index: 101;
}
.sidebar-header {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.dash-logo {
  max-width: 140px;
}
.dash-mobile-close {
  display: none;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.2rem;
  cursor: pointer;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  padding: 1.5rem 0;
  flex: 1;
  gap: 0.2rem;
}
.nav-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.75rem 1.5rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}
.nav-item i {
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
}
.nav-item:hover {
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
}
.nav-item.active {
  background: rgba(217, 184, 101, 0.08);
  color: #d9b865;
  border-left-color: #d9b865;
}
.nav-item.active i {
  color: #d9b865;
}
.sidebar-footer {
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Dashboard Main Content */
.dashboard-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #0a0a0a;
  overflow: hidden;
}

/* Topbar */
.dash-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2rem;
  background: #111111;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.dash-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
}
.dash-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0;
  color: #fff;
}
.topbar-right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

/* Buttons & Elements */
.dash-btn {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
  border: none;
}
.dash-btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.dash-btn-outline:hover,
.dash-btn-outline.active {
  background: rgba(255, 255, 255, 0.05);
  border-color: #d9b865;
}
.dash-btn-outline i {
  transition: color 0.3s ease;
}
.dash-btn-outline:hover i,
.dash-btn-outline.active i {
  color: #d9b865;
}
.dash-btn-primary {
  background: linear-gradient(135deg, #d3a73f, #cda03c);
  color: #000;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}
.dash-btn-primary:disabled, .dash-btn-primary.is-disabled {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.3);
  box-shadow: none;
  cursor: not-allowed;
}
.dash-btn-primary:hover:not(:disabled):not(.is-disabled) {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}
.invalid-input {
  border-color: #ff4d4d !important;
  box-shadow: 0 0 5px rgba(255, 77, 77, 0.2) !important;
}
.error-text {
  color: #ff4d4d;
  font-size: 0.75rem;
  margin-top: 4px;
  display: block;
}
.dash-btn-pill {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border-radius: 50px;
  padding: 0.4rem 1rem 0.4rem 0.4rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.credits-badge {
  background: #4F46E5;
  color: #fff;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: bold;
}
.dash-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: transparent;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
}
.dash-icon-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
}
.notification-dot {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #E11D48;
  color: #fff;
  font-size: 0.65rem;
  font-weight: bold;
  padding: 2px 5px;
  border-radius: 10px;
  border: 2px solid #111111;
}

/* User Profile */
.dash-user-profile {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  padding-left: 1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
}
.user-info {
  display: flex;
  flex-direction: column;
}
.user-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
}
.user-role {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
}

/* Content Area */
.dash-content-area {
  flex: 1;
  overflow-y: auto;
  padding: 2rem;
  position: relative;
}
.dash-tab {
  display: none;
  animation: fadeIn 0.3s ease;
}
.dash-tab.active {
  display: block;
}

/* Table Toolbar */
.dash-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.toolbar-left, .toolbar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.dash-select-wrap {
  display: flex;
  align-items: center;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 0.5rem 1rem;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
}
.dash-select {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 0.9rem;
  outline: none;
  cursor: pointer;
  appearance: none;
}
.dash-search-wrap {
  display: flex;
  align-items: center;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 0.5rem 1rem;
  gap: 0.5rem;
  width: 250px;
  transition: all 0.3s ease;
}
.dash-search-wrap:hover,
.dash-search-wrap:focus-within {
  border-color: #d9b865;
}
.dash-search-wrap i {
  transition: color 0.3s ease;
}
.dash-search-wrap:hover i,
.dash-search-wrap:focus-within i {
  color: #d9b865;
}
.dash-search-input {
  background: transparent;
  border: none;
  color: #fff;
  outline: none;
  width: 100%;
  font-size: 0.9rem;
}
.dash-search-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

/* Table Card */
.dash-table-header {
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: none;
  border-radius: 12px 12px 0 0;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.table-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.lead-count {
  font-weight: 600;
  font-size: 1.1rem;
  color: rgb(242, 237, 237);
}
.sort-info {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}
.sort-info a {
  color: #d9b865;
  text-decoration: none;
  margin-left: 0.3rem;
}
.table-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Data Table */
.dash-table-wrapper {
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0 0 12px 12px;
  overflow-x: auto;
}
.dash-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.dash-table th {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.dash-table td {
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.95);
  vertical-align: middle;
}
.dash-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}
.dash-table .empty-cell {
  padding: 4rem 1rem;
}

/* Leads Grid Empty State (Reused) */
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
}
.empty-icon {
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.2);
  margin-bottom: 1rem;
}
.empty-state h3 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

/* Pagination */
.dash-bottom-pagination {
  display: flex;
  justify-content: center;
  padding: 1.5rem 0;
}
.pagination-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.5);
}
.page-num {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.9rem;
  cursor: pointer;
}
.page-num.active {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* Add Client Tab */
.add-client-container {
  max-width: 800px;
  margin: 0 auto;
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Progress */
.ac-progress-wrapper {
  margin-bottom: 2.5rem;
}
.ac-progress-track {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 0.8rem;
}
.ac-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #d3a73f, #cda03c);
  width: 33.33%;
  transition: width 0.4s ease;
}
.ac-progress-text {
  font-size: 0.85rem;
  color: #d9b865;
  font-weight: 500;
  text-align: right;
}

/* Step Header */
.ac-step-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2rem;
}
.ac-icon-box {
  width: 50px;
  height: 50px;
  background: rgba(217, 184, 101, 0.1);
  color: #d9b865;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.ac-step-header h3 {
  font-size: 1.4rem;
  margin: 0 0 0.3rem 0;
  color: #fff;
}
.ac-step-header p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* Form Grid */
.ac-step { display: none; }
.ac-step.active { display: block; animation: fadeIn 0.4s ease; }
.ac-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.ac-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.ac-field.full-width {
  grid-column: 1 / -1;
}
.ac-field label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}
.ac-field label span {
  color: #E11D48;
}
.ac-field input[type="text"],
.ac-field input[type="email"],
.ac-field input[type="tel"],
.ac-field textarea {
  background: #1A1A1A;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 0.9rem 1.2rem;
  color: #fff;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
}
.ac-field input:focus, .ac-field textarea:focus {
  border-color: #d9b865;
}
.ac-field textarea {
  resize: vertical;
}

.ac-input-prefix {
  display: flex;
  background: #1A1A1A;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  overflow: hidden;
}
.ac-input-prefix span {
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.6);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.ac-input-prefix input {
  flex: 1;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
}

.ac-select-wrapper {
  position: relative;
}
.ac-select-wrapper select {
  width: 100%;
  background: #1A1A1A;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 0.9rem 1.2rem;
  color: #fff;
  font-size: 0.95rem;
  appearance: none;
  outline: none;
}
.ac-select-arrow {
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

.ac-chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.ac-chip {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s;
}
.ac-chip:hover {
  background: rgba(255, 255, 255, 0.1);
}
.ac-chip.active {
  background: rgba(217, 184, 101, 0.15);
  border-color: #d9b865;
  color: #d9b865;
}

.ac-divider {
  display: flex;
  align-items: center;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  margin: 1rem 0;
}
.ac-divider::before, .ac-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.ac-divider span {
  padding: 0 1rem;
}

.ac-form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
  .dashboard-sidebar {
    position: fixed;
    top: 0;
    left: -250px;
    bottom: 0;
    box-shadow: 5px 0 25px rgba(0,0,0,0.5);
  }
  .dashboard-sidebar.show {
    transform: translateX(250px);
  }
  .dash-mobile-toggle, .dash-mobile-close {
    display: block;
  }
  .dash-content-area {
    padding: 1rem;
  }
  .dash-toolbar {
    flex-direction: column;
    align-items: stretch;
  }
  .toolbar-left, .toolbar-right {
    flex-wrap: wrap;
  }
  .dash-search-wrap {
    width: 100%;
  }
  .table-actions {
    display: none; /* Hide complex actions on mobile */
  }
  .add-client-container {
    padding: 1.5rem;
  }
  .ac-form-grid {
    grid-template-columns: 1fr;
  }

  /* Responsive Table */
  .dash-table thead {
    display: none;
  }
  .dash-table tbody tr {
    display: flex;
    flex-direction: column;
    background: #111111;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    margin-bottom: 1rem;
    padding: 1rem;
    position: relative;
  }
  .dash-table tbody tr:hover {
    background: rgba(217,184,101,0.05);
  }
  .dash-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.9rem;
    text-align: right;
  }
  .dash-table td:last-child {
    border-bottom: none;
  }
  .dash-table td::before {
    content: attr(data-label);
    font-weight: 600;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    text-align: left;
    margin-right: 1rem;
  }
  .dash-table td[data-label="SELECT"] {
    justify-content: flex-start;
    border-bottom: none;
    padding-bottom: 0;
  }
  .dash-table td[data-label="SELECT"]::before {
    display: none;
  }
  .dash-table td[data-label="SELECT"] input {
    margin-right: 0.5rem;
  }
  .dash-table td[data-label="NAME"] .client-name {
    text-align: right;
  }
  .dash-table .empty-cell {
    display: block;
    justify-content: center;
    border: none;
    padding: 2rem 1rem;
  }
  .dash-table .empty-cell::before {
    display: none;
  }
  /* Improve toolbar on mobile */
  .dash-btn-outline {
    width: 100%;
    justify-content: center;
  }
  .toolbar-left, .toolbar-right {
    width: 100%;
    justify-content: space-between;
  }
  #dash-filter-dropdown {
    width: 100%;
  }
}

/* ===== PREMIUM POLISH (TOASTS, LOADERS, SKELETONS) ===== */

/* Toast Notification System */
#toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}
.toast {
  background: #111111;
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #d3a73f;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 280px;
  transform: translateX(120%);
  opacity: 0;
  animation: slideInToast 0.4s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  pointer-events: auto;
}
.toast.toast-error { border-left-color: #E11D48; }
.toast.toast-success { border-left-color: #10B981; }
.toast.fade-out { animation: fadeOutToast 0.3s ease forwards; }
@keyframes slideInToast {
  to { transform: translateX(0); opacity: 1; }
}
@keyframes fadeOutToast {
  to { transform: translateX(100%); opacity: 0; }
}

/* Premium Spinners */
.spinner-icon {
  animation: rotateSpinner 1s linear infinite;
  width: 1.2rem;
  height: 1.2rem;
  display: inline-block;
}
.spinner-icon circle {
  stroke: currentColor;
  stroke-width: 4;
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  animation: dashSpinner 1.5s ease-in-out infinite;
  stroke-linecap: round;
}
@keyframes rotateSpinner {
  100% { transform: rotate(360deg); }
}
@keyframes dashSpinner {
  0% { stroke-dasharray: 1, 200; stroke-dashoffset: 0; }
  50% { stroke-dasharray: 90, 200; stroke-dashoffset: -35px; }
  100% { stroke-dasharray: 90, 200; stroke-dashoffset: -124px; }
}

/* Skeletons */
.skeleton {
  background: #222;
  background-image: linear-gradient(90deg, #222 0px, #333 40px, #222 80px);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite linear;
  border-radius: 4px;
}
.skeleton-text {
  height: 1rem;
  width: 100%;
  display: inline-block;
}
.skeleton-text.short { width: 60%; }
.skeleton-text.medium { width: 80%; }
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
/* Fix iOS Zoom Issue */
@media screen and (max-width: 768px) {
  input, select, textarea {
    font-size: 16px !important;
  }
}
