/* ═════════════════════════════════════════════════════
   iGOLD Communications Inc. — Professional Theme
   Enterprise tokens: Gold #EAB308 · Navy #1E3A8A · Sky #0284C7
   ═════════════════════════════════════════════════════ */

/* ===================== BASE ===================== */
:root {
  --gold:       #EAB308;
  --gold-light: #FEF9C3;
  --navy:       #1E3A8A;
  --navy-light: #1E40AF;
  --blue:       #0284C7;
  --text:       #0F172A;
  --text-muted: #64748B;
  --bg:         #FFFFFF;
  --bg-light:   #F8FAFC;
  --radius:     14px;
  --shadow-sm:  0 2px 4px rgba(15, 23, 42, 0.04), 0 8px 16px rgba(15, 23, 42, 0.04);
  --shadow-md:  0 8px 30px rgba(15, 23, 42, 0.08);
  --shadow-lg:  0 20px 50px rgba(15, 23, 42, 0.12);
  --transition: all 0.3s cubic-bezier(.4,0,.2,1);
  --font-brand: 'Sora', 'Poppins', sans-serif;
  /* Canonical enterprise tokens */
  --color-canvas: #F8FAFC;
  --color-surface: #FFFFFF;
  --color-border: #E2E8F0;
  --color-structural: #1E3A8A;
  --color-header: #0F172A;
  --color-interactive: #0284C7;
  --color-action: #EAB308;
  --color-ink: #0F172A;
  --color-muted: #64748B;
  --shadow-surface: 0 2px 4px rgba(15, 23, 42, 0.04), 0 8px 16px rgba(15, 23, 42, 0.04);
}

* { box-sizing: border-box; }
*:focus { outline: none !important; box-shadow: none !important; }
*:focus-visible { outline: none !important; box-shadow: none !important; }

html {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

main {
  display: block;
  margin: 0;
  padding: 0;
}

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

img { max-width: 100%; }

/* ===================== NAVBAR ===================== */
.navbar {
  background-color: #ffffff !important;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
  padding: 0.6rem 0 !important;
  transition: var(--transition);
}

.navbar-brand {
  font-size: 1.35rem;
  font-weight: 800;
  font-family: var(--font-brand);
  color: var(--navy) !important;
  letter-spacing: -0.5px;
}

.navbar-brand .brand-gold {
  color: var(--gold);
}

.nav-link {
  color: #555 !important;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 1.1rem !important;
  border-radius: 8px;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--navy) !important;
  background: var(--bg-light);
}

.nav-link.fw-semibold {
  color: var(--navy) !important;
  background: rgba(212,175,55,0.08);
}

.btn-outline-dark {
  border-color: #ddd;
  color: var(--navy) !important;
  font-weight: 600;
  border-radius: 8px;
  font-size: 0.85rem;
  padding: 0.45rem 1.2rem;
  transition: var(--transition);
}
.btn-outline-dark:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff !important;
}

.btn-dark {
  background: var(--navy) !important;
  border-color: var(--navy) !important;
  font-weight: 600;
  border-radius: 8px;
  font-size: 0.85rem;
  padding: 0.45rem 1.2rem;
  transition: var(--transition);
}
.btn-dark:hover {
  background: var(--blue) !important;
  border-color: var(--blue) !important;
}

/* ===================== HERO SECTION (HOME) ===================== */
.hero-section {
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border);
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  pointer-events: none;
}

.min-vh-85 { min-height: 75vh; }

.hero-left { position: relative; z-index: 1; }

.hero-title {
  color: var(--color-header);
}

.hero-subtitle {
  color: var(--text-muted);
}

.hero-highlight {
  color: var(--gold);
}

.hero-buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--color-header);
  border-radius: 9999px;
  border: none;
  transition: background-color 0.15s ease-in-out, transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.01em;
  text-decoration: none;
  white-space: nowrap;
}
.btn-hero-primary:hover {
  color: var(--color-header);
  background: #CA8A04;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.12), 0 4px 6px -4px rgba(15, 23, 42, 0.08);
}

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--navy);
  border-radius: 9999px;
  border: 2px solid var(--navy);
  transition: background-color 0.15s ease-in-out, transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.15s ease-in-out, color 0.15s ease-in-out;
  text-decoration: none;
  white-space: nowrap;
}
.btn-hero-outline:hover {
  border-color: var(--navy);
  color: #fff;
  transform: translateY(-2px);
  background: var(--navy);
}

/* ===================== STATS (HOME) ===================== */
.hero-stats {
  width: 100%;
}

.stat-item {
  text-align: center;
}

.stat-item h3 {
  color: var(--gold);
}

.stat-item p {
  color: var(--text-muted);
}

@media (min-width: 1024px) {
  .stat-item {
    text-align: left;
  }
}

/* ===================== HERO 3D STACK CAROUSEL ===================== */
.hero-right {
  position: relative;
  z-index: 1;
}

.hero-stack__stage {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: visible;
}

.hero-stack {
  width: 100%;
  overflow: visible;
}

.hero-stack__card {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  height: 100%;
  min-height: inherit;
  overflow: hidden;
  background: #fff;
  transform-origin: center center;
  transition:
    transform 700ms ease-in-out,
    opacity 700ms ease-in-out;
  will-change: transform, opacity;
  box-shadow: 0 12px 28px -10px rgba(15, 23, 42, 0.12);
}

.hero-stack__card--front {
  box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.18);
  border: 1px solid rgba(234, 179, 8, 0.2);
}

.hero-stack__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===================== FOOTER ===================== */
footer {
  background: var(--color-header);
  color: #CBD5E1;
  padding: 56px 0 28px;
  margin-top: 0;
  border-top: 3px solid var(--gold);
}

footer h5 {
  color: #F8FAFC;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
}

footer h5 .footer-gold {
  color: var(--gold);
}

footer h6 {
  color: #F8FAFC;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

footer p,
footer li {
  color: #94A3B8;
}

footer p.small { color: #64748B; }

footer a {
  color: #CBD5E1;
  transition: var(--transition);
}

footer a:hover {
  color: var(--gold);
}

.social-icons {
  margin-top: 1rem;
}

.social-icons a {
  color: #64748B;
  margin: 0 10px 0 0;
  font-size: 1.15rem;
  transition: var(--transition);
}
.social-icons a:hover {
  color: var(--gold);
  transform: translateY(-2px);
}

.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
  padding-top: 1.25rem;
  color: #64748B;
}

.footer-divider a {
  color: #94A3B8;
}

.footer-divider a:hover {
  color: var(--gold);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 576px) {
  footer .row { text-align: center; }
}

/* ===================== ABOUT PAGE ===================== */

/* ── Hero ── */
.about-hero {
  background: #0F172A;
  color: #fff;
  padding: 2.5rem 0 2.25rem;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid #EAB308;
}
.about-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.12);
  pointer-events: none;
}
.about-hero .badge-gold {
  background: var(--gold);
  color: var(--navy);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 20px;
}
.about-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}
.about-hero h1 span { color: var(--gold); }
.about-hero p.lead {
  font-size: 1.125rem;
  color: rgba(255,255,255,.78);
  max-width: 560px;
}
.about-hero .hero-img {
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0,0,0,.4);
  width: 100%;
  object-fit: cover;
  max-height: 420px;
}

/* ── Section Common ── */
section { padding: 2.75rem 0; }
.section-eyebrow {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-title {
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}
.section-lead {
  color: #555;
  max-width: 640px;
}
.divider {
  width: 56px; height: 4px;
  background: var(--gold);
  border-radius: 2px;
  margin: 0 auto 40px;
}

/* ── Page Hero (Products / Contact) ── */
.page-hero {
  background: #0F172A;
  color: #fff;
  padding: 2.5rem 0 2.25rem;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid #EAB308;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(212,175,55,0.1);
  pointer-events: none;
}
.page-hero-title {
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 800;
  margin-bottom: 0.65rem;
  line-height: 1.15;
}
.page-hero-title span { color: var(--gold); }
.page-hero-lead {
  font-size: 0.95rem;
  color: #94A3B8;
  max-width: 36rem;
  margin: 0 auto;
  line-height: 1.65;
}

/* ── Story ── */
.story-section { background: var(--bg-light); }
.story-section img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  width: 100%;
  object-fit: cover;
  max-height: 400px;
}

/* ── Mission / Vision cards ── */
.mv-card {
  border: none;
  border-radius: var(--radius);
  padding: 36px 32px;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  background: #fff;
}
.mv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.mv-card .icon-wrap {
  width: 56px; height: 56px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.card-mission .icon-wrap { background: #fff3cd; color: var(--gold); }
.card-vision  .icon-wrap { background: #e8f4fd; color: var(--blue); }

/* ── Values ── */
.values-section {
  background: #1E3A8A;
  color: #fff;
  padding: 2.75rem 0;
}
.values-section .section-eyebrow { color: var(--gold); }
.values-section .section-title { color: #fff; }
.values-section__head { margin-bottom: 2.5rem; }
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 72rem;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .values-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 992px) {
  .values-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.value-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  min-height: 11rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.value-item .v-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
  line-height: 1;
}
.value-item h5 {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: #fff;
}
.value-item p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  max-width: 16rem;
}

.contact-page-link {
  color: var(--blue, #0284C7);
  font-weight: 600;
  text-decoration: none;
}
.contact-page-link:hover { text-decoration: underline; }

/* ── Stats ── */
.stats-section { background: var(--gold); }
.stat-box { text-align: center; padding: 20px; }
.stat-box h2 { font-size: 2.6rem; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.stat-box p  { font-size: .9rem; color: var(--navy); font-weight: 600; margin: 0; }

/* ── Team ── */
.team-card {
  border: none;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
  background: #fff;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-card img { width: 100%; height: 230px; object-fit: cover; }
.team-card .card-body { padding: 20px; }
.team-card h6 { font-weight: 700; margin-bottom: 2px; }
.team-card .role { font-size: .8rem; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* ── CTA ── */
.cta-section {
  background: #0F172A;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}
.cta-section h2 { font-size: 2.2rem; font-weight: 700; margin-bottom: 1rem; }
.cta-section p  { color: rgba(255,255,255,.68); font-size: 1.05rem; margin-bottom: 2rem; }

/* ── Gold Buttons ── */
.btn-gold {
  background: var(--gold); color: var(--navy);
  font-weight: 700; padding: 12px 36px;
  border-radius: 30px; border: none;
  transition: var(--transition);
  font-size: 0.95rem;
}
.btn-gold:hover { opacity: .88; color: var(--navy); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212,175,55,0.3); }
.btn-outline-gold {
  border: 2px solid var(--gold); color: var(--gold);
  font-weight: 700; padding: 12px 36px;
  border-radius: 30px; background: transparent;
  transition: var(--transition);
  font-size: 0.95rem;
}
.btn-outline-gold:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }

/* ===================== PRODUCT CARDS ===================== */
.product-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.product-card-img-wrap {
  position: relative;
  overflow: hidden;
}
.product-card-img-wrap img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card-img-wrap img {
  transform: scale(1.05);
}
.product-badges {
  position: absolute;
  top: 14px; left: 14px;
  display: flex; gap: 6px;
}
.product-badges .badge {
  font-size: 0.72rem;
  padding: 5px 10px;
  border-radius: 20px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.product-rating {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.product-card-body {
  padding: 20px 24px 24px;
}
.product-card-body h5 {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  font-size: 1.1rem;
}
.product-card-body p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 14px;
}
.product-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.product-price small {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}
.product-price strong {
  font-size: 1.3rem;
  color: var(--gold);
  font-weight: 800;
}

/* ===================== CONTACT PAGE ===================== */
.contact-info-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.05);
  height: 100%;
  transition: var(--transition);
}
.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.contact-info-card .icon-circle {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(212,175,55,0.12);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.4rem;
  color: var(--gold);
}
.contact-info-card h6 {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.contact-info-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.contact-form-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.05);
}
.contact-form-card .form-control {
  border-radius: 10px;
  border: 1.5px solid #e2e5ea;
  padding: 12px 16px;
  font-size: 0.9rem;
  transition: var(--transition);
}
.contact-form-card .form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.12);
}
.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.05);
}

/* ===================== SITE NAVBAR (unified typography) ===================== */
.site-navbar {
  /* Fluid typography — scales smoothly with viewport width instead of snapping at breakpoints */
  --nav-brand-fs: clamp(0.95rem, 0.62rem + 0.6vw, 1.0625rem);
  --nav-link-fs: clamp(0.78rem, 0.45rem + 0.5vw, 0.9375rem);
  --nav-user-fs: clamp(0.78rem, 0.45rem + 0.5vw, 0.9375rem);
  --nav-btn-fs: clamp(0.72rem, 0.5rem + 0.35vw, 0.8125rem);
  --nav-icon-fs: clamp(1rem, 0.78rem + 0.45vw, 1.125rem);
}

.site-nav-brand {
  font-size: var(--nav-brand-fs);
  font-family: var(--font-brand);
}

.site-nav-link,
.cust-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
  font-size: var(--nav-link-fs);
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
  text-decoration: none;
}

.site-nav-guest-link {
  display: block;
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
  font-size: var(--nav-link-fs);
  font-weight: 500;
  transition: background 0.15s ease, color 0.15s ease;
  text-decoration: none;
}

.site-nav-user {
  font-size: var(--nav-user-fs);
}

.site-nav-logout {
  font-size: var(--nav-btn-fs);
}

.site-nav-auth-link {
  font-size: var(--nav-link-fs);
}

.site-nav-cta {
  font-size: var(--nav-link-fs);
}

.site-nav-mobile-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  font-size: var(--nav-link-fs);
  font-weight: 500;
  color: #cbd5e1;
  text-decoration: none;
}

.site-nav-icon-btn {
  font-size: var(--nav-icon-fs);
}

/* ===================== CUSTOMER PORTAL NAV ===================== */
.cust-nav-list {
  display: flex;
  align-items: center;
  gap: clamp(0.05rem, 0.3vw, 0.25rem);
  list-style: none;
  margin: 0;
  padding: 0;
  min-width: 0;
  flex: 1 1 auto;
  justify-content: flex-start;
}

.cust-nav-link {
  display: inline-flex;
  align-items: center;
  gap: clamp(0.2rem, 0.4vw, 0.4rem);
  padding: 0.4rem clamp(0.3rem, 0.55vw, 0.75rem);
  border-radius: 8px;
  font-size: var(--nav-link-fs, 0.9375rem);
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
  text-decoration: none;
}

.cust-nav-cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 8px;
  color: #cbd5e1;
  border: 1px solid rgba(255, 255, 255, 0.15);
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.cust-nav-cart:hover,
.cust-nav-cart.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(234, 179, 8, 0.35);
}

.cust-nav-cart__badge {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  border-radius: 999px;
  background: #EAB308;
  color: #0F172A;
  font-size: 10px;
  font-weight: 700;
  line-height: 17px;
  text-align: center;
}

.cust-mobile-nav {
  background: #0F172A;
  border-top: 1px solid rgba(234, 179, 8, 0.2);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

/* ===================== AUTH PAGES ===================== */
.auth-section {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  position: relative;
  background: var(--bg-light);
  padding: 60px 0;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border);
}

.auth-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  pointer-events: none;
}

.auth-section .container {
  position: relative;
  z-index: 1;
}

.auth-card {
  background: #fff;
  border-radius: 1.25rem;
  box-shadow:
    0 20px 40px -15px rgba(15, 23, 42, 0.12),
    0 8px 16px -8px rgba(15, 23, 42, 0.06);
  border: 1px solid var(--color-border);
  overflow: hidden;
}

.auth-card .card-body {
  padding: 48px 40px;
}

.auth-card .auth-logo {
  font-size: 1.6rem;
  font-weight: 800;
  font-family: var(--font-brand);
  color: var(--color-header);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.auth-card .auth-logo span {
  color: var(--gold);
}

.auth-card .auth-subtitle {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.auth-link {
  color: var(--navy);
  font-weight: 600;
  transition: var(--transition);
}

.auth-link:hover {
  color: var(--gold);
}

.auth-card .form-label {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text);
  margin-bottom: 6px;
}

.auth-card .form-control {
  border-radius: 10px;
  border: 1.5px solid #e2e5ea;
  padding: 12px 16px;
  font-size: 0.9rem;
  transition: var(--transition);
}
.auth-card .form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(234, 179, 8, 0.15);
}

.auth-card input[type="email"]:focus,
.auth-card input[type="password"]:focus,
.auth-card input[type="text"]:focus {
  border-color: var(--gold) !important;
  outline: none;
  box-shadow: 0 0 0 3px rgba(234, 179, 8, 0.12);
}

.btn-auth {
  background: var(--gold);
  color: var(--color-header);
  font-weight: 700;
  padding: 13px 16px;
  border-radius: 0.75rem;
  border: 1px solid rgba(234, 179, 8, 0.45);
  font-size: 0.95rem;
  width: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.1);
  letter-spacing: 0.01em;
}
.btn-auth:hover {
  background: #CA8A04;
  color: var(--color-header);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.14);
}
.btn-auth:active {
  transform: translateY(0);
  background: #A16207;
}

.auth-side {
  position: relative;
  width: 100%;
  background: var(--color-header);
  color: #F8FAFC;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 36px;
  text-align: center;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.auth-side::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  pointer-events: none;
}

.auth-side > div {
  position: relative;
  z-index: 1;
}

.auth-side h3 {
  font-weight: 700;
  font-size: 1.65rem;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  line-height: 1.2;
  color: #F8FAFC;
}

.auth-side p {
  color: #94A3B8;
  font-size: 0.9375rem;
  line-height: 1.65;
  max-width: 16rem;
  margin-inline: auto;
}

.auth-side .gold-line {
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto 22px;
  border-radius: 999px;
}

.quick-login-panel {
  border-top: 1px solid var(--color-border);
  padding-top: 1rem;
}
.quick-login-divider {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.quick-login-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.quick-login-btn {
  background: rgba(30, 58, 138, 0.06);
  border: 1px solid rgba(30, 58, 138, 0.18);
  color: var(--navy);
  border-radius: 6px;
  padding: 0.45rem 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  letter-spacing: 0.02em;
}
.quick-login-btn:hover {
  background: rgba(234, 179, 8, 0.12);
  border-color: rgba(234, 179, 8, 0.45);
  color: var(--color-header);
}
.ql-icon {
  font-size: 0.5rem;
  vertical-align: middle;
  margin-right: 2px;
  color: var(--gold);
}
