/* =========================================================
   DESIGN TOKENS
   ========================================================= */
:root {
  /* Brand */
  --c-primary: #0A4FB3;
  --c-primary-dark: #0B1F3A;
  --c-accent: #1C7CFF;

  /* Text */
  --c-text-main: #0F172A;
  --c-text-muted: #64748B;
  --c-text-light: #9CA3AF;

  /* Backgrounds */
  --c-bg-main: #FFFFFF;
  --c-bg-soft: #F8FAFC;
  --c-bg-section: #F1F5F9;

  /* Borders */
  --c-border: #E5E7EB;

  /* Radius */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;

  /* Shadows */
  --shadow-sm: 0 2px 6px rgba(0,0,0,.04);
  --shadow-md: 0 10px 30px rgba(0,0,0,.08);
  --shadow-lg: 0 20px 50px rgba(0,0,0,.12);

  /* Layout */
  --container-width: 1200px;
}

/* =========================================================
   RESET
   ========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body, html{
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Arial, sans-serif;
}

input, button, textarea{
  font-family: 'Inter'
}

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

i{
  margin-right: 5px;
}

body {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-text-main);
  background: var(--c-bg-main);
}

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

a {
  color: var(--c-primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* =========================================================
   TYPOGRAPHY
   ========================================================= */
h1, h2, h3, h4 {
  margin: 0 0 16px;
  line-height: 1.25;
  color: var(--c-text-main);
}

h1 { font-size: 40px; }
h2 { font-size: 32px; }
h3 { font-size: 20px; }
h4 { font-size: 16px; }

p {
  margin: 0 0 14px;
  color: var(--c-text-main);
}

small {
  font-size: 13px;
  color: var(--c-text-muted);
}

input[name="putcode"]{
  display: none;
}

/* =========================================================
   LAYOUT
   ========================================================= */
.container {
  max-width: var(--container-width);
  margin-inline: auto;
  padding-inline: 20px;
}

section {
  padding: 80px 0;
}

section.bg-soft {
  background: var(--c-bg-section);
}

/* =========================================================
   HEADER
   ========================================================= */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--c-bg-main);
  border-bottom: 1px solid var(--c-border);
  box-shadow: var(--shadow-sm);
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-right{

}
  
  .header-right a{
    text-decoration: none;
  }
  .header-right .btn-primary{
    margin-left: 10px;
  }

.languages a {
  font-size: 14px;
  color: var(--c-text-muted);
}

.languages a.active {
  font-weight: 600;
  color: var(--c-primary);
}

nav a {
  margin: 0 14px;
  font-weight: 500;
  color: var(--c-text-main);
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all .25s ease;
}

.btn-primary {
  background: var(--c-primary);
  color: #fff;
  padding: 10px 15px;
  border-radius: 6px;
  border: none;
  text-decoration: none !important;
}

.btn-primary:hover {
  background: var(--c-accent);
}

.btn-outline {
  background: transparent;
  color: #FCD34D;
  border: 2px solid #FCD34D;
  padding: 10px 15px;
  border-radius: 6px;
  text-decoration: none !important;
}

.btn-outline:hover {
  background: #FCD34D;
  color: #0B1F3A;
}

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

/* =========================================================
   HERO
   ========================================================= */
.hero {
  background: linear-gradient(135deg, var(--c-primary-dark), var(--c-primary));
  color: #fff;
}

.hero h1,
.hero p {
  color: #fff;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 48px;
}

.badge {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 14px;
  font-size: 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.15);
}

.hero-actions{
  margin-top: 30px;
}

p.muted{
  color: #333;
}

.icon-list{
  list-style: none;
  padding-left: 0;
}
  .icon-list i{
    margin-right: 7px;
    color: #f4d939;
  }

/* =========================================================
   CALCULATOR
   ========================================================= */
.calc-box {
  background: var(--c-bg-main);
  padding: 32px;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  color: var(--c-text-main);
}

.calc-box input {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 14px;
  border-radius: var(--r-sm);
  border: 1px solid var(--c-border);
}

  #calc form{
    margin-bottom: 10px;
  }
  #calc i{
    margin-right: 5px;
  }
  #calc button{
    width: 100%;
    font-size: 16px;
    cursor: pointer;
    padding: 15px 15px;
  }

/* =========================================================
   TRUST BLOCK — KPI / CORPORATE STYLE
   ========================================================= */

.trust-p {
  padding: 80px 0;
  background: linear-gradient(
    180deg,
    #0B1F3A 0%,
    #0C2E66 100%
  );
}

/* grid */
.trust-p .grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
}

/* item */
.trust-item {
  text-align: center;
  padding: 24px 20px;
  position: relative;
}

/* vertical separators */
.trust-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 20%;
  right: 0;
  width: 1px;
  height: 60%;
  background: rgba(255, 255, 255, 0.15);
}

/* number */
.trust-item strong {
  display: block;
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
  color: #ffffff;
  letter-spacing: -1px;
}

/* label */
.trust-item span {
  font-size: 14px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.75);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {
  .trust-p .grid-4 {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 32px;
  }

  .trust-item::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .trust-p {
    padding: 60px 0;
  }

  .trust-p .grid-4 {
    grid-template-columns: 1fr;
    row-gap: 28px;
  }

  .trust-item strong {
    font-size: 46px;
  }
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {
  .trust-p .grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .trust-item strong {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .trust-p .grid-4 {
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   GRID & CARDS
   ========================================================= */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 32px;
}

.card {
  background: var(--c-bg-main);
  border: 1px solid var(--c-border);
  padding: 28px;
  border-radius: var(--r-md);
  transition: all .3s ease;
}

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

#services .grid-3{
  grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
}

/* =========================================================
   LISTS
   ========================================================= */
ul {
  padding-left: 18px;
}

li {
  margin-bottom: 8px;
}

/* =========================================================
   CTA
   ========================================================= */
.cta {
  background: linear-gradient(135deg, var(--c-accent), var(--c-primary));
  color: #fff;
  text-align: center;
}

.cta h2,
.cta p {
  color: #fff;
}

/* =========================================================
   FOOTER
   ========================================================= */
footer {
  background: var(--c-primary-dark);
  color: var(--c-text-light);
  padding: 50px 0;
  text-align: center;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  nav {
    display: none;
  }
}

/* ===== Sections ===== */
.section {
  padding: 90px 0;
}

.section-soft {
  background: var(--c-bg-section);
}

.section-head {
  max-width: 760px;
  margin-bottom: 50px;
}

.section-desc {
  color: var(--c-text-muted);
  font-size: 18px;
}

/* ===== Feature / Route / Transport Cards ===== */
.feature-card,
.route-card,
.transport-card,
.service-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 30px;
  transition: all .3s ease;
}

.feature-card:hover,
.route-card:hover,
.transport-card:hover,
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.route-card a{
  text-decoration: none;
}

/* ===== Lists ===== */
.check-list {
  list-style: none;
  padding-left: 0;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
}

.check-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--c-primary);
  font-weight: bold;
}

/* ===== Steps ===== */
.steps {
  counter-reset: step;
  list-style: none;
  padding-left: 0;
}

.steps li {
  counter-increment: step;
  position: relative;
  padding-left: 48px;
  margin-bottom: 18px;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--c-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}




/* ===== Page CN-KZ ===== */

.cnkz-hero {
  background: linear-gradient(135deg, var(--c-primary-dark), var(--c-primary));
  color: #fff;
}

.cnkz-hero h1,
.cnkz-hero p {
  color: #fff;
}

.hero-list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.hero-list li {
  margin-bottom: 10px;
}

.hero-list i {
  color: #A5C8FF;
  margin-right: 8px;
}

/* ===== Narrow content ===== */
.container.narrow {
  max-width: 860px;
}

/* ===== Soft section ===== */
.section-soft {
  background: var(--c-bg-section);
}

/* ===== Lists ===== */
.check-list {
  list-style: none;
  padding-left: 0;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}

.check-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--c-primary);
  font-weight: 600;
}

/* ===== Steps ===== */
.steps {
  list-style: none;
  counter-reset: step;
  padding-left: 0;
}

.steps li {
  counter-increment: step;
  position: relative;
  padding-left: 44px;
  margin-bottom: 14px;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--c-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
}

/* ===== Turkey Page ===== */

.turkey-hero {
  background: linear-gradient(135deg, #7C2D12, #B45309);
}

.turkey-hero h1,
.turkey-hero p {
  color: #fff;
}

.turkey-hero .hero-list i {
  color: #FCD34D;
}

/* ===== Kazakhstan → Russia Page ===== */

.kzru-hero {
  background: linear-gradient(135deg, #1E293B, #334155);
}

.kzru-hero h1,
.kzru-hero p {
  color: #fff;
}

.kzru-hero .hero-list i {
  color: #93C5FD;
}

/* ===== Kaspi Delivery Page ===== */

.kaspi-hero {
  background: linear-gradient(135deg, #7F1D1D, #DC2626);
}

.kaspi-hero h1,
.kaspi-hero p {
  color: #fff;
}

.kaspi-hero .hero-list i {
  color: #FCA5A5;
}


/* =========================================================
   FOOTER — CORPORATE / LOGISTICS
   ========================================================= */

.footer-p {
  background: linear-gradient(
    180deg,
    #081A33 0%,
    #07162A 100%
  );
  color: rgba(255,255,255,.85);
  padding: 80px 0 28px;
  position: relative;
}

/* subtle top line */
.footer-p::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.15),
    transparent
  );
}

/* GRID */
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 56px;
  align-items: flex-start;
  margin-bottom: 48px;
  text-align: left;
}

/* BRAND */
.footer-logo {
  height: 36px;
  margin-bottom: 18px;
  opacity: .9;
}

.footer-p p {
  max-width: 360px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,.7);
}

.footer-p img{
  margin-bottom: 10px;
}

/* TITLES */
.footer-p strong {
  display: block;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* LINKS */
.footer-p a {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  transition: color .2s ease, opacity .2s ease;
}

.footer-p a:hover {
  color: #ffffff;
  opacity: 1;
}

/* CONTACT META */
.footer-p span {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,.65);
  margin-top: 6px;
}

/* BOTTOM */
.footer-bottom {
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.08);
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,.55);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .footer-p p {
    margin-inline: auto;
  }

  .footer-p strong {
    margin-bottom: 12px;
  }
}

/* =========================================================
   CABINET PAGE (wrapper + spacing + form styles)
   ========================================================= */

.cabinet-page{
  background: var(--c-bg-soft);
  padding-block: 40px; /* отступы сверху/снизу */
}

.cabinet-wrap{
  max-width: 1100px;
}

/* Top header in cabinet */
.cabinet-top{
  display:flex;
  align-items:flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.cabinet-title h1{
  margin: 0;
  font-size: 28px;
}

.cabinet-subtitle{
  margin: 6px 0 0;
  color: var(--c-text-muted);
  font-size: 15px;
}

.cabinet-actions{
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap: wrap;
}

/* KPI */
.kpi-grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 14px;
  margin: 18px 0;
}

.kpi{
  background: var(--c-bg-main);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 16px;
  box-shadow: var(--shadow-sm);
}

.kpi .label{
  color: var(--c-text-muted);
  font-size: 13px;
  margin-bottom: 8px;
  display:flex;
  align-items:center;
  gap: 8px;
}

.kpi .value{
  font-size: 26px;
  font-weight: 800;
  line-height: 1.1;
}

.kpi .hint{
  margin-top: 8px;
  color: var(--c-text-muted);
  font-size: 13px;
}

/* Panels */
.panel{
  background: var(--c-bg-main);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.panel-spaced{
  margin-top: 14px;
}

.panel-head{
  padding: 14px 16px;
  border-bottom: 1px solid var(--c-border);
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  background: linear-gradient(180deg, #fff, var(--c-bg-soft));
}

.panel-head h3{
  margin: 0;
  font-size: 16px;
}

.panel-body{
  padding: 16px;
}

/* pill */
.pill{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--c-border);
  background: var(--c-bg-soft);
  font-size: 12px;
  font-weight: 600;
}

/* Notices */
.notice{
  border-radius: 14px;
  padding: 12px 14px;
  border: 1px solid var(--c-border);
  margin-bottom: 14px;
}

.notice strong{
  display:flex;
  align-items:center;
  gap: 8px;
  margin-bottom: 6px;
}

.notice small{
  color: var(--c-text-muted);
}

.notice-success{
  border-color: rgba(34,197,94,.25);
  background: rgba(34,197,94,.06);
}

.notice-error{
  border-color: rgba(239,68,68,.25);
  background: rgba(239,68,68,.06);
}

/* Form */
.cabinet-form{
  margin-top: 6px;
}

.form-grid{
  display:grid;
  gap: 14px;
  margin-top: 14px;
}

.form-grid-3{
  grid-template-columns: repeat(3, minmax(0,1fr));
}

.form-grid-2{
  grid-template-columns: 1.2fr .8fr;
}

.form-card{
  background: var(--c-bg-main);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 16px;
}

.form-card h4{
  margin: 0 0 10px;
  font-size: 14px;
  color: var(--c-text-main);
}

.form-card p.muted,
.muted{
  color: var(--c-text-muted);
  margin: 0 0 10px;
}

.form-card small{
  display:block;
  margin-top: 8px;
  color: var(--c-text-muted);
}

/* Inputs */
.cabinet-page input[type="text"],
.cabinet-page input[type="email"],
.cabinet-page input[type="password"],
.cabinet-page textarea,
.cabinet-page select{
  width: 100%;
  padding: 12px 12px;
  border: 1px solid var(--c-border);
  border-radius: 12px;
  background: var(--c-bg-soft);
  outline: none;
  transition: box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

.cabinet-page input:focus,
.cabinet-page textarea:focus,
.cabinet-page select:focus{
  background: #fff;
  border-color: rgba(28,124,255,.45);
  box-shadow: 0 0 0 4px rgba(28,124,255,.12);
}

/* Checkbox rows */
.check-row{
  display:flex;
  align-items:center;
  gap: 10px;
  margin: 10px 0;
  color: var(--c-text-main);
}

.check-row input[type="checkbox"]{
  width: 18px;
  height: 18px;
  accent-color: var(--c-primary);
  cursor: pointer;
}

/* Actions */
.form-actions{
  margin-top: 16px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Danger */
.form-card-danger{
  border-color: rgba(239,68,68,.22);
  background: rgba(239,68,68,.04);
}

.btn-danger{
  border-color:#ef4444 !important;
  color:#ef4444 !important;
}

/* Responsive */
@media (max-width: 1100px){
  .kpi-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 900px){
  .cabinet-top{
    flex-direction: column;
    align-items: flex-start;
  }
  .form-grid-3{ grid-template-columns: 1fr; }
  .form-grid-2{ grid-template-columns: 1fr; }
}

@media (max-width: 520px){
  .cabinet-page{ padding-block: 24px; }
  .kpi-grid{ grid-template-columns: 1fr; }
}

/* =========================================================
   ACTIVE ORDERS BLOCK
   ========================================================= */

.link-more{
  font-size: 14px;
  color: var(--c-primary);
  font-weight: 600;
  text-decoration: none;
}

.orders-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
}

.order-card{
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 16px;
  background: var(--c-bg-main);
  transition: all .25s ease;
}

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

/* Top */
.order-top{
  display:flex;
  justify-content: space-between;
  align-items:flex-start;
  margin-bottom: 14px;
}

.order-id{
  font-weight: 700;
  font-size: 15px;
}

.order-route{
  font-size: 13px;
  color: var(--c-text-muted);
  margin-top: 4px;
}

/* Status badge */
.order-status{
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid var(--c-border);
  background: var(--c-bg-soft);
}

.status-ok{
  background: rgba(34,197,94,.10);
  border-color: rgba(34,197,94,.25);
  color: #166534;
}

.status-warn{
  background: rgba(245,158,11,.12);
  border-color: rgba(245,158,11,.30);
  color: #92400e;
}

.status-bad{
  background: rgba(239,68,68,.10);
  border-color: rgba(239,68,68,.25);
  color: #991b1b;
}

/* Info */
.order-info{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  font-size: 14px;
  margin-bottom: 14px;
}

.order-info strong{
  display:block;
  margin-top: 4px;
}

/* Bottom */
.order-bottom{
  display:flex;
  justify-content: space-between;
  align-items:center;
  font-size: 13px;
}

/* Empty state */
.orders-empty{
  text-align:center;
  padding: 30px 20px;
  color: var(--c-text-muted);
}

.orders-empty i{
  font-size: 28px;
  margin-bottom: 10px;
  color: var(--c-text-light);
}

/* Small button */
.btn-sm{
  padding: 8px 14px;
  font-size: 13px;
  border-radius: 8px;
}

/* Responsive */
@media (max-width: 1100px){
  .orders-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px){
  .orders-grid{
    grid-template-columns: 1fr;
  }

  .order-info{
    grid-template-columns: 1fr;
  }
}



/* =========================================================
   LOGIN PAGE
   ========================================================= */

.auth-page{
  background: var(--c-bg-soft);
  padding-block: 60px;
  min-height: 80vh;
  display:flex;
  align-items:center;
}

.auth-container{
  max-width: 480px;
}

.auth-box{
  background: var(--c-bg-main);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  padding: 28px;
}

/* Header */
.auth-header{
  text-align:center;
  margin-bottom: 20px;
}

.auth-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 999px;
  background: rgba(28,124,255,.10);
  border: 1px solid rgba(28,124,255,.25);
  color: var(--c-primary);
  margin-bottom: 14px;
}

.auth-header h1{
  font-size: 24px;
  margin-bottom: 6px;
}

.auth-subtitle{
  font-size: 14px;
  color: var(--c-text-muted);
}

/* Notice */
.auth-notice{
  display:flex;
  align-items:center;
  gap:8px;
  padding: 10px 14px;
  border-radius: 12px;
  margin-bottom: 16px;
  font-size: 14px;
}

.auth-error{
  background: rgba(239,68,68,.08);
  border: 1px solid rgba(239,68,68,.25);
  color: #991b1b;
}

/* Form */
.form-group{
  margin-bottom: 16px;
}

.form-group label{
  display:block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
}

.input-wrap{
  position: relative;
}

.input-wrap i{
  position:absolute;
  left:12px;
  top:50%;
  transform: translateY(-50%);
  color: var(--c-text-light);
}

.input-wrap input{
  width:100%;
  padding: 12px 12px 12px 40px;
  border: 1px solid var(--c-border);
  border-radius: 12px;
  background: var(--c-bg-soft);
  outline:none;
  transition: all .2s ease;
}

.input-wrap input:focus{
  background:#fff;
  border-color: rgba(28,124,255,.45);
  box-shadow: 0 0 0 4px rgba(28,124,255,.12);
}

/* Submit */
.auth-submit{
  width:100%;
  margin-top: 6px;
  padding: 12px;
  border-radius: 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
}

/* Footer */
.auth-footer{
  margin-top: 14px;
  text-align:center;
  font-size: 13px;
}

.auth-footer a{
  color: var(--c-primary);
  font-weight: 500;
}

/* =========================================================
   FLOATING WHATSAPP
   ========================================================= */

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 33px;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  z-index: 1200;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: whatsapp-pulse 2.8s infinite;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.24);
  text-decoration: none;
}

.whatsapp-float i {
  margin-right: 0;
}

@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18), 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  70% {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18), 0 0 0 14px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18), 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-float {
    animation: none;
  }
}

/* Responsive */
@media (max-width: 600px){
  .auth-page{
    padding-block: 30px;
  }
  .auth-box{
    padding: 22px;
  }
  .whatsapp-float{
    width: 58px;
    height: 58px;
    right: 14px;
    bottom: 14px;
    font-size: 30px;
  }
}
