:root{
  --bg: #0b1020;
  --panel: rgba(255,255,255,.06);
  --panel2: rgba(255,255,255,.09);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.66);
  --line: rgba(255,255,255,.14);
  --blue: #3b82f6;
  --purple:#8b5cf6;
  --rose:#fb7185;
  --gray:#9ca3af;
  --shadow: 0 18px 50px rgba(0,0,0,.45);
  --radius: 18px;
  --radius2: 24px;
  --max: 1150px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background:
    radial-gradient(1100px 600px at 15% 10%, rgba(59,130,246,.25), transparent 60%),
    radial-gradient(900px 520px at 90% 25%, rgba(139,92,246,.22), transparent 60%),
    radial-gradient(900px 520px at 60% 90%, rgba(251,113,133,.16), transparent 60%),
    linear-gradient(180deg, #070a14, #0b1020 40%, #070a14);
  overflow-x:hidden;
}
a{color:inherit;text-decoration:none}
.container{max-width:var(--max); margin:0 auto; padding:0 20px}

/* Topbar */
.topbar{
  position:sticky; top:0; z-index:40;
  backdrop-filter: blur(12px);
  background: rgba(7,10,20,.55);
  border-bottom:1px solid var(--line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{
  display:flex; gap:10px; align-items:center;
  font-weight:800; letter-spacing:.6px;
}
.logo{
  width:38px; height:38px; border-radius:12px;
  background: linear-gradient(135deg, var(--blue), var(--purple) 55%, var(--rose));
  box-shadow: 0 12px 30px rgba(59,130,246,.25);
  position:relative;
}
.logo:after{
  content:""; position:absolute; inset:9px;
  border-radius:10px; border:2px solid rgba(255,255,255,.55);
}
.navlinks{display:flex; gap:14px; align-items:center; flex-wrap:wrap}
.pill{
  padding:10px 12px; border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  color:var(--muted);
  font-weight:600; font-size:14px;
  transition:.18s ease;
}
.pill:hover{transform: translateY(-1px); background: rgba(255,255,255,.07); color:var(--text)}
.pill.active{background: rgba(255,255,255,.10); color:var(--text)}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:11px 14px; border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background: linear-gradient(135deg, rgba(59,130,246,.95), rgba(139,92,246,.95) 55%, rgba(251,113,133,.92));
  color:white;
  font-weight:800;
  box-shadow: 0 14px 35px rgba(139,92,246,.22);
  transition:.18s ease;
}
.btn:hover{transform: translateY(-1px); filter:saturate(1.05)}
.btn.ghost{
  background: rgba(255,255,255,.06);
  box-shadow:none;
  color:var(--text);
}
.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:7px 10px; border-radius:999px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  color:var(--muted);
  font-weight:700;
  font-size:13px;
}

/* Hero */
.hero{padding:54px 0 18px}
.grid-hero{
  display:grid; grid-template-columns: 1.2fr .8fr; gap:26px;
  align-items:stretch;
}
.card{
  background: var(--panel);
  border:1px solid var(--line);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
}
.card.pad{padding:26px}
.h1{
  font-size: clamp(34px, 4vw, 54px);
  line-height:1.05;
  margin:10px 0 12px;
  letter-spacing:-.6px;
}
.grad{
  background: linear-gradient(135deg, #ffffff, rgba(59,130,246,.95) 30%, rgba(139,92,246,.95) 60%, rgba(251,113,133,.95));
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.lead{color:var(--muted); font-size:16px; line-height:1.6; max-width: 60ch}
.cta{display:flex; gap:12px; flex-wrap:wrap; margin-top:18px}
.stats{display:grid; grid-template-columns: repeat(3,1fr); gap:10px; margin-top:22px}
.stat{
  padding:14px; border-radius: 16px;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.12);
}
.stat b{font-size:18px}
.stat span{display:block; color:var(--muted); font-weight:700; margin-top:4px; font-size:13px}
.preview{
  height:100%;
  background:
    radial-gradient(450px 240px at 30% 20%, rgba(59,130,246,.25), transparent 60%),
    radial-gradient(450px 240px at 85% 35%, rgba(251,113,133,.18), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.14);
  overflow:hidden;
  position:relative;
}
.preview .shine{
  position:absolute; inset:-120px;
  background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,.10), transparent 60%);
  transform: rotate(12deg);
  animation: sweep 4.6s linear infinite;
}
@keyframes sweep{0%{left:-60%} 100%{left:60%}}
.preview .inner{
  position:absolute; inset:18px;
  border-radius: 18px;
  background: rgba(7,10,20,.45);
  border:1px solid rgba(255,255,255,.12);
  padding:18px;
  display:flex; flex-direction:column; gap:10px;
}
.kv{display:flex; align-items:center; justify-content:space-between; gap:10px}
.kv .tag{font-weight:900; letter-spacing:.8px; opacity:.92}
.kv .chip{
  padding:6px 10px; border-radius: 999px; font-size:12px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.86);
  font-weight:800;
}
.lines{display:grid; gap:9px; margin-top:6px}
.line{
  height:12px; border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
  border:1px solid rgba(255,255,255,.10);
}
.line:nth-child(2){width:88%}
.line:nth-child(3){width:74%}
.line:nth-child(4){width:92%}

/* Sections */
.section{padding:18px 0 60px}
.section h2{margin:0 0 10px; font-size:28px}
.section p{margin:0; color:var(--muted); line-height:1.7}
.grid-3{display:grid; grid-template-columns: repeat(3,1fr); gap:14px; margin-top:18px}
.feature{padding:18px}
.icon{
  width:42px; height:42px; border-radius:14px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  display:flex; align-items:center; justify-content:center;
  font-weight:900;
}
.feature h3{margin:10px 0 8px}
.feature p{font-size:14px}

/* Cards / products */
.toolbar{
  display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap;
  margin:18px 0 10px;
}
.search{
  flex:1; min-width: 220px;
  display:flex; gap:10px; align-items:center;
  padding:12px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.14);
}
.search input{
  width:100%; border:none; outline:none;
  background: transparent; color:var(--text);
  font-weight:700;
}
.grid-products{display:grid; grid-template-columns: repeat(3,1fr); gap:14px; margin-top:12px}
.product{padding:18px; position:relative}
.product .price{font-weight:900; font-size:18px}
.product small{color:var(--muted); font-weight:700}
.product .buy{margin-top:12px; width:100%}
.pdot{position:absolute; top:16px; right:16px; width:12px; height:12px; border-radius:999px;
  background: linear-gradient(135deg, var(--blue), var(--purple), var(--rose));
  box-shadow: 0 0 0 6px rgba(255,255,255,.05);
}

/* Forms */
.form{display:grid; gap:12px; margin-top: 14px}
.field{display:grid; gap:8px}
label{font-weight:800; color:rgba(255,255,255,.82); font-size:13px}
input, textarea, select{
  padding:12px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.14);
  color: var(--text);
  outline:none;
  font-weight:700;
}
textarea{min-height:140px; resize:vertical}
/* ===== CLEAN NOTICE / GRAND COMMANDS ===== */
.notice {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 14px 16px;
    color: rgba(255, 255, 255, 0.88);
    box-shadow: none;
}

/* remove weird gradient separators */
.notice::before,
.notice::after {
    display: none !important;
}
.notice{
  padding:12px 14px;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  color: var(--muted);
  line-height:1.6;
  font-weight:700;
}
.success{border-color: rgba(34,197,94,.35)}
.warn{border-color: rgba(251,113,133,.35)}

/* Footer */
.footer{
  padding:28px 0 46px;
  border-top: 1px solid var(--line);
  background: rgba(7,10,20,.40);
}
.footgrid{
  display:grid; grid-template-columns: 1.2fr .8fr; gap:18px; align-items:start;
}
.footlinks{display:flex; gap:12px; flex-wrap:wrap; justify-content:flex-end}
.mini{font-size:13px; color:var(--muted); line-height:1.6}
hr.sep{border:none; border-top:1px solid var(--line); margin:18px 0}

/* Responsive */
@media (max-width: 980px){
  .grid-hero{grid-template-columns:1fr}
  .grid-3{grid-template-columns:1fr}
  .grid-products{grid-template-columns:1fr}
  .stats{grid-template-columns:1fr}
  .footgrid{grid-template-columns:1fr}
  .footlinks{justify-content:flex-start}
}
/* ===== DARK SELECT FIX ===== */
select {
  background-color: rgba(20, 22, 35, 0.95);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.2);
}

select option {
  background-color: #0f1220; /* dark background */
  color: #ffffff;            /* white text */
}

/* hover / focus */
select:focus {
  outline: none;
  border-color: #7c7cff;
  box-shadow: 0 0 0 2px rgba(124,124,255,0.25);
}
/* ===== SOFT DEGREE GRADIENT FIX ===== */

/* General section background smoothing */
.section {
  background: linear-gradient(
    135deg,
    rgba(20, 30, 60, 0.35) 0%,
    rgba(40, 20, 80, 0.25) 50%,
    rgba(15, 18, 32, 0.9) 100%
  );
}

/* Cards (features, popular, services, etc.) */
.card,
.product {
  background: linear-gradient(
    160deg,
    rgba(255,255,255,0.06) 0%,
    rgba(255,255,255,0.03) 40%,
    rgba(0,0,0,0.25) 100%
  );
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

/* Remove any hard separators */
.card::before,
.card::after,
.product::before,
.product::after {
  display: none !important;
}

/* Popular / Highlight sections */
.notice {
  background: linear-gradient(
    135deg,
    rgba(124,124,255,0.12),
    rgba(255,124,200,0.08),
    rgba(20,20,40,0.85)
  );
  border: 1px solid rgba(255,255,255,0.15);
}

/* Feature boxes (Clear packages / Trust first / Fast ordering) */
.feature,
.features .card {
  background: linear-gradient(
    145deg,
    rgba(30,40,90,0.35),
    rgba(80,40,120,0.25),
    rgba(15,18,32,0.95)
  );
}
/* ===== REMOVE BAND LINES (CHECKOUT + ALL PAGES) ===== */

/* Kill any linear banding backgrounds */
body {
  background: #0b1020 !important;
}

/* Soft blob background instead of stripes */
body::before {
  content: "";
  position: fixed;
  inset: -20%;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(45% 35% at 18% 22%, rgba(70,120,255,0.35), transparent 60%),
    radial-gradient(40% 30% at 82% 25%, rgba(190,90,255,0.28), transparent 60%),
    radial-gradient(45% 35% at 55% 70%, rgba(255,90,170,0.22), transparent 65%),
    radial-gradient(55% 55% at 50% 50%, rgba(255,255,255,0.05), transparent 70%);
  filter: blur(22px);
  transform: translate3d(0,0,0);
}

/* Ensure sections don't add stripes */
.section {
  background: transparent !important;
}

/* If any container has gradient overlay, neutralize it */
.container, .card {
  background-clip: padding-box;
}

/* Form fields: consistent dark */
input, textarea, select {
  background: rgba(15,18,32,0.80) !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.14) !important;
}

/* Dropdown options readable */
select option {
  background: #0f1220 !important;
  color: #fff !important;
}
/* ORDER FLOW steps */
.of-steps{
  margin-top: 14px;
  padding-left: 18px;
  color: rgba(255,255,255,.85);
  line-height: 1.7;
  font-weight: 700;
}
.of-steps li{
  margin: 8px 0;
}
.of-steps b{
  color: rgba(255,255,255,.95);
}
.of-steps .muted{
  color: rgba(255,255,255,.65);
}
/* ===== MODERN ORDER FLOW (smooth + stylish) ===== */
.preview .inner { padding: 18px; }

.kv { display:flex; align-items:center; justify-content:space-between; gap:12px; }

.kv .tag{
  font-weight: 900;
  letter-spacing: .12em;
  font-size: 12px;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
}

.kv .chip{
  font-weight: 900;
  font-size: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: linear-gradient(135deg, rgba(124,124,255,.18), rgba(255,124,200,.12));
  backdrop-filter: blur(10px);
}

/* Steps container */
.of-steps{
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 10px;
}

/* Each step as a modern pill card */
.of-steps li{
  display:flex;
  align-items:flex-start;
  gap: 12px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  box-shadow: 0 12px 30px rgba(0,0,0,.22);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.of-steps li:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.20);
  background: rgba(255,255,255,.07);
}

/* Number bubble */
.of-steps li::before{
  content: attr(data-step);
  display:flex;
  align-items:center;
  justify-content:center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 10px;
  font-weight: 900;
  font-size: 12px;
  color: rgba(255,255,255,.92);
  background: linear-gradient(135deg, rgba(70,130,255,.85), rgba(190,90,255,.65), rgba(255,90,170,.55));
  box-shadow: 0 10px 20px rgba(0,0,0,.25);
}

/* Text */
.of-steps .txt{
  color: rgba(255,255,255,.86);
  line-height: 1.5;
  font-weight: 750;
}
.of-steps .txt b{
  color: rgba(255,255,255,.96);
}
.of-steps .muted{
  color: rgba(255,255,255,.65);
  font-weight: 800;
}

/* Optional: make preview card smoother */
.preview{
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(160deg, rgba(255,255,255,.05), rgba(255,255,255,.02), rgba(0,0,0,.28));
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
}
/* ===== USER DROPDOWN MENU ===== */
.user-menu{
  position: relative;
  display: inline-block;
}

.user-btn{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
  font-weight: 900;
  cursor: pointer;
}

.user-btn .dot{
  width:10px;
  height:10px;
  border-radius:999px;
  background: linear-gradient(135deg, rgba(70,130,255,1), rgba(190,90,255,1), rgba(255,90,170,1));
  box-shadow: 0 10px 20px rgba(0,0,0,.25);
}

.user-btn .chev{
  opacity: .75;
  font-weight: 900;
}

.user-dd{
  position:absolute;
  right:0;
  top: calc(100% + 10px);
  min-width: 200px;
  padding: 10px;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(15,18,32,.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 30px 80px rgba(0,0,0,.45);
  display:none;
  z-index: 50;
}

.user-dd a{
  display:block;
  padding:10px 12px;
  border-radius: 12px;
  color: rgba(255,255,255,.88);
  font-weight: 800;
  text-decoration:none;
}

.user-dd a:hover{
  background: rgba(255,255,255,.07);
}

.user-dd .sep{
  height:1px;
  background: rgba(255,255,255,.12);
  margin: 8px 6px;
}

/* show dropdown when toggled (click) */
.user-menu.open .user-dd { display: block; }

/* remove the gap issue */
.user-dd { margin-top: 0; }
/* ===== TOPBAR LOGO ANIMATION + REVEAL TEXT ===== */

.brand-anim {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.brand-logo {
    width: 34px;
    height: 34px;
    object-fit: contain;
    transform-origin: 50% 50%;
    will-change: transform;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, .35));
}

/* النص اللي غادي يخرج من بعد 3 ثواني */
.brand-reveal {
    opacity: 0;
    transform: translateX(-8px) scale(.98);
    color: rgba(80, 160, 255, .95);
    /* أزرق */
    font-weight: 1000;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-size: 12px;
    user-select: none;

    /* عمودي جهة اليمين */
    writing-mode: vertical-rl;
    text-orientation: mixed;

    /* باش يبان ناعم */
    padding: 6px 8px;
    border-radius: 14px;
    border: 1px solid rgba(120, 170, 255, .25);
    background: rgba(10, 14, 28, .35);
    backdrop-filter: blur(10px);
}

/* Hover: اللوغو يدور 3 ثواني مرة وحدة */
.brand-anim:hover .brand-logo {
    animation: upSpin 3s ease-in-out 1;
}

/* من بعد 3 ثواني: يخرج النص */
.brand-anim:hover .brand-reveal {
    animation: revealName .55s ease forwards;
    animation-delay: 3s;
}

@keyframes upSpin {
    0% {
        transform: rotate(0deg) scale(1);
    }

    40% {
        transform: rotate(320deg) scale(1.08);
    }

    70% {
        transform: rotate(390deg) scale(1.02);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}

@keyframes revealName {
    from {
        opacity: 0;
        transform: translateX(-8px) scale(.98);
    }

    to {
        opacity: 1;
        transform: translateX(0px) scale(1);
    }
}
/* FIX: prevent logo from becoming huge */
.brand-anim { display:flex; align-items:center; gap:10px; }
.brand-anim img.brand-logo{
  width: 34px !important;
  height: 34px !important;
  max-width: 34px !important;
  max-height: 34px !important;
  object-fit: contain !important;
  display: block;
}
.brand-anim:hover .brand-logo{ animation: upSpin 3s ease-in-out 1; }
.brand-anim.open .brand-reveal,
.brand-anim:hover .brand-reveal{
  animation: revealName .55s ease forwards;
  animation-delay: 3s;
}
/* Optional: make preview card smoother */
.preview {
  border: 1px solid rgba(255, 255, 255, .10);
  background: linear-gradient(160deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .02), rgba(0, 0, 0, .28));
  box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
}

/* ===== USER DROPDOWN MENU ===== */
.user-menu {
  position: relative;
  display: inline-block;
}

.user-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .92);
  font-weight: 900;
  cursor: pointer;
}

.user-btn .dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(70, 130, 255, 1), rgba(190, 90, 255, 1), rgba(255, 90, 170, 1));
  box-shadow: 0 10px 20px rgba(0, 0, 0, .25);
}

.user-btn .chev {
  opacity: .75;
  font-weight: 900;
}

.user-dd {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  min-width: 200px;
  padding: 10px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(15, 18, 32, .92);
  backdrop-filter: blur(14px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .45);
  display: none;
  z-index: 50;
}

.user-dd a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  color: rgba(255, 255, 255, .88);
  font-weight: 800;
  text-decoration: none;
}

.user-dd a:hover {
  background: rgba(255, 255, 255, .07);
}

.user-dd .sep {
  height: 1px;
  background: rgba(255, 255, 255, .12);
  margin: 8px 6px;
}

/* show dropdown when toggled (click) */
.user-menu.open .user-dd {
  display: block;
}

/* remove the gap issue */
.user-dd {
  margin-top: 0;
}

/* ===== TOPBAR LOGO ANIMATION + REVEAL TEXT ===== */

.brand-anim {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
  transform-origin: 50% 50%;
  will-change: transform;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, .35));
}

/* النص اللي غادي يخرج من بعد 3 ثواني */
.brand-reveal {
  opacity: 0;
  transform: translateX(-8px) scale(.98);
  color: rgba(80, 160, 255, .95);
  /* أزرق */
  font-weight: 1000;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 12px;
  user-select: none;

  /* عمودي جهة اليمين */
  writing-mode: vertical-rl;
  text-orientation: mixed;

  /* باش يبان ناعم */
  padding: 6px 8px;
  border-radius: 14px;
  border: 1px solid rgba(120, 170, 255, .25);
  background: rgba(10, 14, 28, .35);
  backdrop-filter: blur(10px);
}

/* Hover: اللوغو يدور 3 ثواني مرة وحدة */
.brand-anim:hover .brand-logo {
  animation: upSpin 3s ease-in-out 1;
}

/* من بعد 3 ثواني: يخرج النص */
.brand-anim:hover .brand-reveal {
  animation: revealName .55s ease forwards;
  animation-delay: 3s;
}

@keyframes upSpin {
  0% {
    transform: rotate(0deg) scale(1);
  }

  40% {
    transform: rotate(320deg) scale(1.08);
  }

  70% {
    transform: rotate(390deg) scale(1.02);
  }

  100% {
    transform: rotate(360deg) scale(1);
  }
}

@keyframes revealName {
  from {
    opacity: 0;
    transform: translateX(-8px) scale(.98);
  }

  to {
    opacity: 1;
    transform: translateX(0px) scale(1);
  }
}

/* FIX: prevent logo from becoming huge */
.brand-anim {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-anim img.brand-logo {
  width: 34px !important;
  height: 34px !important;
  max-width: 34px !important;
  max-height: 34px !important;
  object-fit: contain !important;
  display: block;
}

.brand-anim:hover .brand-logo {
  animation: upSpin 3s ease-in-out 1;
}

.brand-anim.open .brand-reveal,
.brand-anim:hover .brand-reveal {
  animation: revealName .55s ease forwards;
  animation-delay: 3s;
}
/* =========================================================
   ADMIN UI (Offers / Orders Management)  ✅ ADDED
   ========================================================= */
.admin-wrap {
    max-width: var(--max);
    margin: 0 auto;
    padding: 26px 18px 60px;
}

.admin-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
}

.admin-top h1 {
    margin: 0;
    font-size: 28px;
    letter-spacing: -.02em;
}

.admin-table {
    margin-top: 16px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 18px;
    background: rgba(255, 255, 255, .04);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
    overflow: hidden;
}

.admin-table .row {
    display: grid;
    grid-template-columns: 170px 110px 1fr 140px 120px 240px;
    gap: 12px;
    padding: 14px 14px;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.admin-table .row.head {
    border-top: none;
    background: rgba(255, 255, 255, .05);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 900;
    color: rgba(255, 255, 255, .70);
}

.admin-table code {
    padding: 4px 8px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(0, 0, 0, .25);
    color: rgba(255, 255, 255, .85);
    font-weight: 800;
}

.admin-table .actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.admin-table .empty {
    padding: 18px;
    color: var(--muted);
    font-weight: 800;
}

.admin-form {
    margin-top: 16px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 18px;
    background: rgba(255, 255, 255, .04);
    padding: 16px;
}

.admin-form label {
    display: block;
    font-weight: 900;
    color: rgba(255, 255, 255, .86);
    margin: 10px 0 6px;
}

.admin-form input,
.admin-form textarea,
.admin-form select {
    width: 100%;
    padding: 12px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(0, 0, 0, .22);
    color: rgba(255, 255, 255, .92);
    outline: none;
}

.admin-form textarea {
    min-height: 120px;
}

.admin-form input:focus,
.admin-form textarea:focus,
.admin-form select:focus {
    border-color: rgba(139, 92, 246, .55);
    box-shadow: 0 0 0 4px rgba(139, 92, 246, .18);
}

.admin-form .grid2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.admin-actions {
    margin-top: 14px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.pill.good {
    border-color: rgba(34, 197, 94, .45);
    background: rgba(34, 197, 94, .12);
    color: rgba(187, 255, 210, .95);
}

.pill.bad {
    border-color: rgba(244, 63, 94, .40);
    background: rgba(244, 63, 94, .12);
    color: rgba(255, 205, 215, .95);
}

.btn.danger {
    border: 1px solid rgba(244, 63, 94, .45);
    background: linear-gradient(135deg, rgba(244, 63, 94, .92), rgba(251, 113, 133, .90));
    box-shadow: 0 14px 35px rgba(244, 63, 94, .18);
}

.btn.danger:hover {
    transform: translateY(-1px);
}

.notice.danger {
    border-color: rgba(244, 63, 94, .35);
    background: rgba(244, 63, 94, .10);
}

.notice.good {
    border-color: rgba(34, 197, 94, .35);
    background: rgba(34, 197, 94, .10);
}

@media (max-width: 980px) {
    .admin-table .row {
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .admin-table .actions {
        justify-content: flex-start;
    }

    .admin-form .grid2 {
        grid-template-columns: 1fr;
    }
}
/* ===============================
   SERVICES – PREMIUM CARDS GRID
================================ */

.grid.cards{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(280px,1fr));
  gap:22px;
  margin-top:20px;
}

/* card */
.grid.cards .card{
  position:relative;
  background:
    radial-gradient(120% 120% at 100% 0%,
      rgba(140,120,255,.25),
      transparent 40%
    ),
    linear-gradient(
      180deg,
      rgba(255,255,255,.06),
      rgba(255,255,255,.02)
    );
  border:1px solid rgba(255,255,255,.08);
  border-radius:20px;
  padding:20px;
  box-shadow:0 30px 60px rgba(0,0,0,.45);
  backdrop-filter: blur(14px);
  transition:transform .25s ease, box-shadow .25s ease;
}

.grid.cards .card:hover{
  transform:translateY(-6px);
  box-shadow:0 45px 90px rgba(0,0,0,.65);
}

/* top */
.card-top{
  display:flex;
  justify-content:space-between;
  gap:14px;
  margin-bottom:10px;
}

.card-title{
  font-size:18px;
  font-weight:700;
  line-height:1.2;
}

.card-sub{
  margin-top:4px;
  font-size:13px;
  color:var(--muted);
}

/* price */
.card-price{
  font-size:15px;
  font-weight:800;
  white-space:nowrap;
  background:linear-gradient(135deg,#7c7cff,#ff77c6);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

/* bullets */
.bullets{
  margin:14px 0;
  padding-left:18px;
  font-size:14px;
  line-height:1.6;
}

.bullets li{
  margin-bottom:6px;
  opacity:.9;
}

/* CTA */
.grid.cards .btn{
  display:block;
  margin-top:14px;
  width:100%;
  text-align:center;
  padding:12px 14px;
  border-radius:999px;
  font-weight:700;
  background:linear-gradient(135deg,#5b7cfa,#c77dff);
  box-shadow:0 10px 30px rgba(124,124,255,.35);
  transition:.2s ease;
}

.grid.cards .btn:hover{
  transform:translateY(-1px);
  box-shadow:0 16px 40px rgba(124,124,255,.55);
}

/* small glowing dot (top-right) */
.grid.cards .card::after{
  content:"";
  position:absolute;
  top:14px;
  right:14px;
  width:10px;
  height:10px;
  border-radius:50%;
  background:linear-gradient(135deg,#7c7cff,#ff77c6);
  box-shadow:0 0 14px rgba(124,124,255,.9);
}
/* ===== Feedbacks Section ===== */
.sec-head{
  display:flex;
  flex-direction:column;
  gap:6px;
  margin-bottom:16px;
}

.fb-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(280px,1fr));
  gap:18px;
}

.fb-card{
  position:relative;
  border-radius:18px;
  padding:18px;
  border:1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(120% 120% at 100% 0%,
      rgba(140,120,255,.25),
      transparent 45%
    ),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  box-shadow:0 28px 60px rgba(0,0,0,.45);
  backdrop-filter: blur(14px);
}

.fb-top{
  display:flex;
  align-items:center;
  gap:12px;
}

.fb-avatar{
  width:38px;
  height:38px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  background:linear-gradient(135deg,#5b7cfa,#c77dff);
  box-shadow:0 10px 30px rgba(124,124,255,.35);
}

.fb-name{
  font-weight:800;
}

.fb-meta{
  font-size:12px;
  color:var(--muted);
  margin-top:2px;
}

.fb-stars{
  margin-left:auto;
  letter-spacing:1px;
  font-size:13px;
  background:linear-gradient(135deg,#7c7cff,#ff77c6);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  font-weight:900;
}

.fb-text{
  margin:12px 0 0;
  color:rgba(255,255,255,.86);
  line-height:1.6;
  font-size:14px;
}
/* =========================
   FEEDBACKS PAGE (Premium)
========================= */

.fb-hero{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:22px;
  align-items:stretch;
}

@media (max-width: 980px){
  .fb-hero{ grid-template-columns: 1fr; }
}

.fb-kicker{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.04);
  color:rgba(255,255,255,.8);
  font-weight:800;
  width:fit-content;
}

.fb-title{
  margin:10px 0 0;
  font-size:44px;
  line-height:1.05;
}

@media (max-width: 700px){
  .fb-title{ font-size:34px; }
}

.fb-lead{
  margin:10px 0 0;
  color:rgba(255,255,255,.78);
  line-height:1.7;
  max-width: 62ch;
}

.fb-hero-actions{
  display:flex;
  gap:12px;
  margin-top:14px;
  flex-wrap:wrap;
}

.fb-stats{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:12px;
  margin-top:16px;
}

.fb-stat{
  border-radius:16px;
  border:1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(120% 120% at 100% 0%,
      rgba(140,120,255,.20),
      transparent 45%
    ),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  padding:14px;
  backdrop-filter: blur(12px);
}

.fb-stat-big{
  font-size:22px;
  font-weight:900;
}

.fb-stat-sub{
  margin-top:4px;
  font-size:12px;
  color:var(--muted);
  font-weight:700;
}

.fb-panel{
  border-radius:18px;
  border:1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(120% 120% at 100% 0%,
      rgba(140,120,255,.25),
      transparent 45%
    ),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  box-shadow:0 30px 60px rgba(0,0,0,.45);
  padding:18px;
  backdrop-filter: blur(14px);
  opacity:0;
  transform: translateY(10px);
  transition: .5s ease;
}

.fb-panel.inview{ opacity:1; transform:none; }

.fb-panel-title{
  font-weight:900;
  margin-bottom:12px;
}

.fb-steps{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.fb-step{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color:rgba(255,255,255,.82);
  line-height:1.6;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.18);
}

.fb-badge{
  width:22px;
  height:22px;
  border-radius:8px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
  font-weight:900;
  background: linear-gradient(135deg,#5b7cfa,#c77dff);
  box-shadow:0 10px 30px rgba(124,124,255,.25);
  flex:0 0 auto;
}

.fb-toolbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}

.fb-search input{
  min-width: 320px;
}

.fb-filters{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.chip{
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.82);
  font-weight:800;
  padding:10px 12px;
  cursor:pointer;
  transition:.2s ease;
}

.chip:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.06);
}

.chip.active{
  border-color: rgba(124,124,255,.55);
  background: linear-gradient(135deg, rgba(91,124,250,.35), rgba(199,125,255,.28));
}

.fb-grid{
  display:grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap:18px;
}

.fb-card{
  position:relative;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(120% 120% at 100% 0%,
      rgba(140,120,255,.22),
      transparent 45%
    ),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  box-shadow:0 28px 60px rgba(0,0,0,.45);
  padding:18px;
  backdrop-filter: blur(14px);
  opacity:0;
  transform: translateY(10px);
  transition: .5s ease;
}

.fb-card.inview{
  opacity:1;
  transform:none;
}

.fb-top{
  display:flex;
  align-items:center;
  gap:12px;
}

.fb-avatar{
  width:40px;
  height:40px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  background: linear-gradient(135deg,#5b7cfa,#c77dff);
  box-shadow:0 10px 30px rgba(124,124,255,.35);
}

.fb-who{ min-width: 0; }

.fb-name{
  font-weight:900;
  line-height:1.1;
}

.fb-meta{
  margin-top:3px;
  font-size:12px;
  color:var(--muted);
  font-weight:700;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  max-width: 230px;
}

.fb-stars{
  margin-left:auto;
  font-weight:900;
  letter-spacing:1px;
  background: linear-gradient(135deg,#7c7cff,#ff77c6);
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
  white-space:nowrap;
}

.fb-text{
  margin:12px 0 0;
  color: rgba(255,255,255,.86);
  line-height:1.7;
}

.fb-form-wrap{
  border-radius:18px;
  border:1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(120% 120% at 100% 0%,
      rgba(140,120,255,.22),
      transparent 45%
    ),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  box-shadow:0 28px 60px rgba(0,0,0,.45);
  padding:18px;
  backdrop-filter: blur(14px);
  opacity:0;
  transform: translateY(10px);
  transition: .5s ease;
}

.fb-form-wrap.inview{ opacity:1; transform:none; }

.fb-form-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}

.fb-form{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.fb-grid2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}

@media (max-width: 850px){
  .fb-grid2{ grid-template-columns: 1fr; }
  .fb-search input{ min-width: 240px; }
}

.fb-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

/* if you don’t already have .notice.danger */
.notice.danger{
  border:1px solid rgba(239,68,68,.55);
  background: rgba(239,68,68,.10);
  color: rgba(254,202,202,.95);
}
.card-focus {
    outline: 2px solid rgba(255, 255, 255, .45);
    box-shadow: 0 0 0 6px rgba(255, 255, 255, .08);
    transform: translateY(-2px);
    animation: focusPulse 1.2s ease-in-out;
}

@keyframes focusPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }

    40% {
        box-shadow: 0 0 0 12px rgba(255, 255, 255, .15);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}