/* ================= VARIABLES ================= */
:root {
  --bg0: #060a14;
  --bg1: #080f22;
  --stroke: rgba(255, 255, 255, 0.10);
  --text: #f5f7ff;
  --muted: rgba(245, 247, 255, 0.68);
  --a1: #6d7bff; /* Indigo */
  --a2: #21d4fd; /* Cyan (Primary) */
  --a3: #2ee59d; /* Green (Success) */
  --danger: #ff4f6d;
  --warn: #ffcc66;
  --sidebarW: 270px;
  --r1: 18px; /* Card Radius */
}

/* ================= WHATSAPP FLOATING ICON ================= */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  box-shadow: 0px 5px 20px rgba(37, 211, 102, 0.4);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0px 10px 30px rgba(37, 211, 102, 0.6);
}

/* ================= CUSTOM SCROLLBARS ================= */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg0); }
::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.15); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--a2); box-shadow: 0 0 10px var(--a2); }
* { scrollbar-width: thin; scrollbar-color: rgba(255, 255, 255, 0.15) var(--bg0); }

/* ================= BASE RESET ================= */
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--text);
  background: var(--bg0);
  background-image: 
    radial-gradient(1100px 520px at 18% 4%, rgba(109,123,255,.15), transparent 55%),
    radial-gradient(900px 540px at 92% 10%, rgba(33,212,253,.10), transparent 60%);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ================= LAYOUT ================= */
.app { display: flex; min-height: 100vh; }
.content { flex: 1; padding: 30px; max-width: 1400px; margin: 0 auto; width: 100%; position: relative; z-index: 1; }

/* ================= SIDEBAR ================= */
.sidebar {
  width: var(--sidebarW); padding: 20px; border-right: 1px solid var(--stroke);
  background: rgba(8, 15, 34, 0.85); backdrop-filter: blur(20px); position: sticky;
  top: 0; height: 100vh; display: flex; flex-direction: column; z-index: 100;
  overflow-y: auto; flex-shrink: 0;
}

.brand { 
  font-size: 22px; font-weight: 800; margin-bottom: 30px; letter-spacing: -0.5px; 
  background: linear-gradient(90deg, #fff, var(--a2)); -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent; padding-left: 10px;
}

.nav a {
  display: flex; align-items: center; gap: 12px; padding: 14px 16px; margin-bottom: 8px;
  border-radius: 14px; color: var(--muted); font-weight: 500; transition: all 0.2s ease;
  border: 1px solid transparent;
}
.nav a:hover { background: rgba(255,255,255,0.05); color: #fff; transform: translateX(3px); }
.nav a.active { 
  background: linear-gradient(90deg, rgba(33, 212, 253, 0.15), rgba(33, 212, 253, 0.05)); 
  color: var(--a2); border: 1px solid rgba(33, 212, 253, 0.15); font-weight: 600;
}

/* ================= MOBILE HEADER ================= */
.mobile-header { 
  display: none; align-items: center; justify-content: space-between; padding: 15px 20px; 
  background: rgba(8, 15, 34, 0.95); border-bottom: 1px solid var(--stroke); position: sticky; 
  top: 0; z-index: 950; backdrop-filter: blur(10px);
}
.menu-btn { font-size: 24px; cursor: pointer; color: #fff; padding: 5px; line-height: 1; }
.overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.8); z-index: 1000; backdrop-filter: blur(4px); }

@media(max-width: 900px) {
  .app { flex-direction: column; }
  .sidebar { 
      position: fixed; top: 0; bottom: 0; left: -100%; width: 280px; 
      transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 20px 0 50px rgba(0,0,0,0.5);
      z-index: 1001; background: #080f22; height: 100%;
  }
  .sidebar.active { left: 0; }
  .mobile-header { display: flex; }
  .overlay.active { display: block; }
  .desktop-head { display: none !important; }
  .content { padding: 15px; }
  .col-12, .col-7, .col-6, .col-5, .col-3 { grid-column: span 12 !important; }
}

/* ================= GRID SYSTEM ================= */
.grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; }
.col-12 { grid-column: span 12; }
.col-7 { grid-column: span 7; }
.col-6 { grid-column: span 6; }
.col-5 { grid-column: span 5; }
.col-3 { grid-column: span 3; }

/* ================= CARDS ================= */
.card {
  background: var(--bg1); border: 1px solid var(--stroke); border-radius: var(--r1);
  padding: 24px; box-shadow: 0 10px 40px rgba(0,0,0,0.2); display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.cardTitle { font-size: 16px; font-weight: 700; margin: 0 0 10px 0; color: #fff; }
.cardSub { font-size: 13px; color: var(--muted); margin: 0 0 15px 0; line-height: 1.5; }
.divider { height: 1px; background: var(--stroke); margin: 15px 0; width: 100%; }

/* ================= DASHBOARD STATS ================= */
.stat.card {
  flex-direction: row !important;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}

.stat > div:first-child { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.stat b { font-size: 20px; font-weight: 800; line-height: 1; margin-bottom: 6px; display: block; color: #fff; }
.stat small { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.8px; font-weight: 700; opacity: 0.8; }

.stat-icon { 
  width: 54px; height: 54px; border-radius: 14px; display: flex; align-items: center; justify-content: center; 
  font-size: 24px; flex-shrink: 0; box-shadow: 0 5px 15px rgba(0,0,0,0.2); backdrop-filter: blur(5px); margin-left: 15px;
}

.col-3 .card { transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s; }
.col-3 .card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,0.3); border-color: rgba(255,255,255,0.25); }

/* ================= FORM INPUTS ================= */
.form { display: grid; gap: 18px; }
.field label { display: block; font-size: 12px; color: var(--muted); margin-bottom: 8px; font-weight: 600; padding-left: 2px; }

.input, .textarea, select.input {
  width: 100%; padding: 14px 16px; border-radius: 14px;
  background: rgba(0,0,0,0.3); border: 1px solid var(--stroke);
  color: #fff; outline: none; font-size: 14px; font-family: inherit; 
  transition: 0.2s; box-shadow: inset 0 2px 4px rgba(0,0,0,0.1); line-height: normal;
}
.input:focus, .textarea:focus, select.input:focus { border-color: var(--a2); box-shadow: 0 0 0 4px rgba(33, 212, 253, 0.1); background: rgba(0,0,0,0.5); }
.textarea { min-height: 120px; resize: vertical; line-height: 1.5; }

select.input {
  appearance: none; -webkit-appearance: none; -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2321d4fd' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat; background-position: right 15px center; background-size: 16px; padding-right: 45px; cursor: pointer;
}
select.input option { background: #080f22; color: #fff; padding: 10px; }

/* ================= DROP ZONE ================= */
.drop-zone {
  width: 100%; min-height: 140px; padding: 20px; display: flex; align-items: center; justify-content: center; text-align: center;
  border: 2px dashed var(--stroke); border-radius: 16px; background: rgba(255,255,255,0.02); cursor: pointer; transition: 0.2s;
  color: var(--muted); flex-direction: column; gap: 10px;
}
.drop-zone:hover, .drop-zone.dragover { border-color: var(--a2); background: rgba(33, 212, 253, 0.05); color: #fff; }
.drop-zone input { display: none; }
.drop-icon { font-size: 32px; color: var(--a2); margin-bottom: 5px; opacity: 0.8; }

/* ================= BUTTONS ================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; height: 48px; padding: 0 28px; border-radius: 14px;
  font-weight: 700; font-size: 14px; cursor: pointer; border: 1px solid var(--stroke); background: rgba(255,255,255,0.05); color: #fff;
  transition: all 0.2s; text-transform: capitalize; user-select: none; line-height: 1; text-align: center;
}
.btn:hover { transform: translateY(-2px); background: rgba(255,255,255,0.1); }
.btn:active { transform: scale(0.98); }

.btnPrimary { background: linear-gradient(135deg, var(--a1), var(--a2)); color: #000; border: none; box-shadow: 0 5px 15px rgba(33, 212, 253, 0.2); }
.btnPrimary:hover { opacity: 0.95; box-shadow: 0 8px 25px rgba(33, 212, 253, 0.4); }

.btnDanger { background: rgba(255, 79, 109, 0.15); color: var(--danger); border-color: rgba(255, 79, 109, 0.3); }
.btnDanger:hover { background: rgba(255, 79, 109, 0.25); box-shadow: 0 5px 15px rgba(255, 79, 109, 0.2); }

/* ================= TABLES ================= */
.tableWrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: 14px; border: 1px solid var(--stroke); width: 100%; background: rgba(0,0,0,0.2); }
table { width: 100%; border-collapse: collapse; min-width: 600px; }
th { text-align: left; font-size: 11px; text-transform: uppercase; color: var(--muted); padding: 16px 20px; border-bottom: 1px solid var(--stroke); font-weight: 700; letter-spacing: 0.5px; white-space: nowrap; background: rgba(255,255,255,0.02); }
td { padding: 18px 20px; border-bottom: 1px solid rgba(255,255,255,0.03); font-size: 13px; color: rgba(255,255,255,0.9); vertical-align: middle; }
tr:last-child td { border-bottom: none; }

/* ================= COMPONENTS ================= */
.badge { padding: 5px 10px; border-radius: 8px; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; white-space: nowrap; }
.badge.ok { background: rgba(46, 229, 157, 0.15); color: var(--a3); border: 1px solid rgba(46, 229, 157, 0.2); }
.badge.fail { background: rgba(255, 79, 109, 0.15); color: var(--danger); border: 1px solid rgba(255, 79, 109, 0.2); }
.badge.run { background: rgba(33, 212, 253, 0.15); color: var(--a2); }

.pill { background: rgba(255,255,255,0.08); padding: 6px 14px; border-radius: 20px; display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; border: 1px solid rgba(255,255,255,0.05); white-space: nowrap; }
.dot { width: 8px; height: 8px; border-radius: 50%; box-shadow: 0 0 5px currentColor; }
.dot.green { background: var(--a3); color: var(--a3); }
.dot.red { background: var(--danger); color: var(--danger); }
.dot.yellow { background: var(--warn); color: var(--warn); }

.progressWrap { height: 6px; background: rgba(255,255,255,0.1); border-radius: 10px; overflow: hidden; width: 100%; }
.progressBar { height: 100%; background: var(--a2); border-radius: 10px; transition: 0.3s; box-shadow: 0 0 10px var(--a2); }

.alert { padding: 16px; border-radius: 12px; margin-bottom: 20px; font-size: 14px; border-left: 4px solid; background: var(--bg1); line-height: 1.5; }
.alert-danger { border-color: var(--danger); color: #ff99aa; }
.alert-success { border-color: var(--a3); color: #aaffcc; }

/* ================= PRICING ================= */
.pricing-card { text-align: center; height: 100%; }
.pricing-card.recommended { 
  border: 1px solid var(--a2); position: relative; transform: scale(1.05); box-shadow: 0 0 30px rgba(33, 212, 253, 0.1); 
  z-index: 2; background: linear-gradient(160deg, #0b152e 0%, #080f22 100%);
}
@media(max-width: 900px) { .pricing-card.recommended { transform: none; z-index: 1; } }

.recommended-badge { 
  position: absolute; top: -3px; left: 50%; transform: translateX(-50%); background: var(--a2); color: #000; padding: 4px 12px; 
  border-radius: 20px; font-size: 11px; font-weight: 800; text-transform: uppercase; box-shadow: 0 0 10px var(--a2);
}
.price { font-size: 2.2rem; font-weight: 800; margin: 20px 0; color: #fff; text-shadow: 0 0 20px rgba(255,255,255,0.1); }
.price small { font-size: 0.8rem; color: var(--muted); font-weight: 500; opacity: 0.8; display: block; margin-top: 5px; }
.features { list-style: none; padding: 0; margin: 20px 0; text-align: left; flex-grow: 1; }
.features li { margin-bottom: 12px; display: flex; align-items: center; gap: 12px; font-size: 14px; }
.features li::before { content: '✓'; color: var(--a3); font-weight: 900; font-size: 16px; flex-shrink: 0; }

input[type="range"] { -webkit-appearance: none; appearance: none; width: 100%; height: 8px; background: rgba(255,255,255,0.1); border-radius: 5px; outline: none; margin: 25px 0; }
input[type="range"]::-webkit-slider-thumb { 
  -webkit-appearance: none; appearance: none; width: 24px; height: 24px; background: var(--a2); cursor: pointer; border-radius: 50%; 
  border: 4px solid var(--bg1); box-shadow: 0 0 15px rgba(33, 212, 253, 0.8); transition: 0.2s; 
}
input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.15); box-shadow: 0 0 25px var(--a2); }

/* ================= PRICING TOGGLE SWITCH ================= */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    font-size: 16px;
    font-weight: 600;
}
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}
.switch input { opacity: 0; width: 0; height: 0; }
.slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(255,255,255,0.1);
    transition: .4s;
    border-radius: 34px;
    border: 1px solid var(--stroke);
}
.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}
input:checked + .slider { background-color: var(--a2); border-color: var(--a2); }
input:checked + .slider:before { transform: translateX(29px); }
.toggle-label { color: var(--muted); transition: 0.3s; }
.toggle-label.active { color: #fff; text-shadow: 0 0 10px rgba(255,255,255,0.3); }

/* ================= REVIEW GRID ================= */
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; max-width: 1200px; margin: 0 auto; }
.review-card { background: var(--bg1); padding: 30px; border-radius: 16px; border: 1px solid var(--stroke); text-align: left; transition: transform 0.3s; }
.review-card:hover { transform: translateY(-5px); border-color: var(--a2); }
.stars { color: #FFD700; margin-bottom: 15px; font-size: 18px; }

/* ================= BRAND LOGO STYLES ================= */

/* Logo Container */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 8px; /* Gap between icon and text */
  text-decoration: none;
  cursor: pointer;
}

/* 1. The Animated Icon (Sound Wave Bars) */
.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  height: 24px;
}

.wave-bar {
  width: 4px;
  background: linear-gradient(to top, #6d7bff, #21d4fd);
  border-radius: 4px;
  animation: soundWave 1s infinite ease-in-out;
}

/* Alag alag bars ki height aur timing */
.wave-bar:nth-child(1) { height: 12px; animation-delay: 0.0s; }
.wave-bar:nth-child(2) { height: 20px; animation-delay: 0.1s; }
.wave-bar:nth-child(3) { height: 16px; animation-delay: 0.2s; }
.wave-bar:nth-child(4) { height: 22px; animation-delay: 0.3s; }
.wave-bar:nth-child(5) { height: 14px; animation-delay: 0.4s; }

/* 2. The Text (Shining Effect) */
.logo-text {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.5px;
  /* Glowing Gradient Text */
  background: linear-gradient(90deg, #ffffff, #21d4fd, #6d7bff, #ffffff);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shineText 6s infinite linear;
}

/* Animations Keyframes */
@keyframes soundWave {
  0%, 100% { transform: scaleY(1); opacity: 0.8; }
  50% { transform: scaleY(1.8); opacity: 1; box-shadow: 0 0 10px rgba(33, 212, 253, 0.4); }
}

@keyframes shineText {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
/* ================= VARIABLES (RAMADAN THEME) ================= */
:root {
  --bg0: #040814; /* Deep Night Sky */
  --bg1: #091325;
  --stroke: rgba(255, 223, 0, 0.15); /* Golden Stroke */
  --text: #f5f7ff;
  --muted: rgba(245, 247, 255, 0.68);
  --a1: #d4af37; /* Metallic Gold */
  --a2: #ffdf00; /* Glowing Yellow Gold */
  --a3: #2ee59d; /* Emerald Green (Islamic Touch) */
  --danger: #ff4f6d;
  --warn: #ffcc66;
  --sidebarW: 270px;
  --r1: 18px; /* Card Radius */
}

/* ================= WHATSAPP FLOATING ICON ================= */
.whatsapp-float {
  position: fixed; width: 60px; height: 60px; bottom: 30px; right: 30px;
  background-color: #25d366; color: #FFF; border-radius: 50px; text-align: center;
  box-shadow: 0px 5px 20px rgba(37, 211, 102, 0.4); z-index: 2000; display: flex;
  align-items: center; justify-content: center; transition: all 0.3s ease;
}
.whatsapp-float:hover { transform: scale(1.1) translateY(-5px); box-shadow: 0px 10px 30px rgba(37, 211, 102, 0.6); }

/* ================= CUSTOM SCROLLBARS ================= */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg0); }
::-webkit-scrollbar-thumb { background: rgba(255, 223, 0, 0.2); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--a2); box-shadow: 0 0 10px var(--a2); }

/* ================= BASE RESET ================= */
* { box-sizing: border-box; }
body {
  margin: 0; font-family: system-ui, -apple-system, sans-serif;
  color: var(--text); background: var(--bg0);
  background-image: 
    radial-gradient(1100px 520px at 18% 4%, rgba(212, 175, 55, 0.15), transparent 55%),
    radial-gradient(900px 540px at 92% 10%, rgba(46, 229, 157, 0.10), transparent 60%);
  min-height: 100vh; -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ================= LAYOUT ================= */
.app { display: flex; min-height: 100vh; }
.content { flex: 1; padding: 30px; max-width: 1400px; margin: 0 auto; width: 100%; position: relative; z-index: 1; }

/* ================= SIDEBAR ================= */
.sidebar {
  width: var(--sidebarW); padding: 20px; border-right: 1px solid var(--stroke);
  background: rgba(4, 8, 20, 0.85); backdrop-filter: blur(20px); position: sticky;
  top: 0; height: 100vh; display: flex; flex-direction: column; z-index: 100;
  overflow-y: auto; flex-shrink: 0;
}

.brand { 
  font-size: 22px; font-weight: 800; margin-bottom: 30px; letter-spacing: -0.5px; 
  background: linear-gradient(90deg, #fff, var(--a2)); -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent; padding-left: 10px;
}

.nav a {
  display: flex; align-items: center; gap: 12px; padding: 14px 16px; margin-bottom: 8px;
  border-radius: 14px; color: var(--muted); font-weight: 500; transition: all 0.2s ease;
  border: 1px solid transparent;
}
.nav a:hover { background: rgba(255, 223, 0, 0.05); color: #fff; transform: translateX(3px); }
.nav a.active { 
  background: linear-gradient(90deg, rgba(255, 223, 0, 0.15), rgba(255, 223, 0, 0.05)); 
  color: var(--a2); border: 1px solid rgba(255, 223, 0, 0.15); font-weight: 600;
}

/* ================= MOBILE HEADER ================= */
.mobile-header { 
  display: none; align-items: center; justify-content: space-between; padding: 15px 20px; 
  background: rgba(4, 8, 20, 0.95); border-bottom: 1px solid var(--stroke); position: sticky; 
  top: 0; z-index: 950; backdrop-filter: blur(10px);
}
.menu-btn { font-size: 24px; cursor: pointer; color: #fff; padding: 5px; line-height: 1; }
.overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.8); z-index: 1000; backdrop-filter: blur(4px); }

@media(max-width: 900px) {
  .app { flex-direction: column; }
  .sidebar { 
      position: fixed; top: 0; bottom: 0; left: -100%; width: 280px; 
      transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 20px 0 50px rgba(0,0,0,0.5);
      z-index: 1001; background: #040814; height: 100%;
  }
  .sidebar.active { left: 0; }
  .mobile-header { display: flex; }
  .overlay.active { display: block; }
  .desktop-head { display: none !important; }
  .content { padding: 15px; }
  .col-12, .col-7, .col-6, .col-5, .col-3 { grid-column: span 12 !important; }
}

/* ================= GRID SYSTEM ================= */
.grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; }
.col-12 { grid-column: span 12; }
.col-7 { grid-column: span 7; }
.col-6 { grid-column: span 6; }
.col-5 { grid-column: span 5; }
.col-3 { grid-column: span 3; }

/* ================= CARDS ================= */
.card {
  background: var(--bg1); border: 1px solid var(--stroke); border-radius: var(--r1);
  padding: 24px; box-shadow: 0 10px 40px rgba(0,0,0,0.2); display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.cardTitle { font-size: 16px; font-weight: 700; margin: 0 0 10px 0; color: #fff; }
.cardSub { font-size: 13px; color: var(--muted); margin: 0 0 15px 0; line-height: 1.5; }
.divider { height: 1px; background: var(--stroke); margin: 15px 0; width: 100%; }

/* ================= FORM INPUTS ================= */
.form { display: grid; gap: 18px; }
.field label { display: block; font-size: 12px; color: var(--muted); margin-bottom: 8px; font-weight: 600; padding-left: 2px; }

.input, .textarea, select.input {
  width: 100%; padding: 14px 16px; border-radius: 14px;
  background: rgba(0,0,0,0.3); border: 1px solid var(--stroke);
  color: #fff; outline: none; font-size: 14px; font-family: inherit; 
  transition: 0.2s; box-shadow: inset 0 2px 4px rgba(0,0,0,0.1); line-height: normal;
}
.input:focus, .textarea:focus, select.input:focus { border-color: var(--a2); box-shadow: 0 0 0 4px rgba(255, 223, 0, 0.1); background: rgba(0,0,0,0.5); }
.textarea { min-height: 120px; resize: vertical; line-height: 1.5; }

/* ================= DROP ZONE ================= */
.drop-zone {
  width: 100%; min-height: 140px; padding: 20px; display: flex; align-items: center; justify-content: center; text-align: center;
  border: 2px dashed var(--stroke); border-radius: 16px; background: rgba(255,255,255,0.02); cursor: pointer; transition: 0.2s;
  color: var(--muted); flex-direction: column; gap: 10px;
}
.drop-zone:hover, .drop-zone.dragover { border-color: var(--a2); background: rgba(255, 223, 0, 0.05); color: #fff; }
.drop-zone input { display: none; }
.drop-icon { font-size: 32px; color: var(--a2); margin-bottom: 5px; opacity: 0.8; }

/* ================= BUTTONS (Gold Touch) ================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; height: 48px; padding: 0 28px; border-radius: 14px;
  font-weight: 700; font-size: 14px; cursor: pointer; border: 1px solid var(--stroke); background: rgba(255,255,255,0.05); color: #fff;
  transition: all 0.2s; text-transform: capitalize; user-select: none; line-height: 1; text-align: center;
}
.btn:hover { transform: translateY(-2px); background: rgba(255,255,255,0.1); }
.btn:active { transform: scale(0.98); }

.btnPrimary { background: linear-gradient(135deg, var(--a1), var(--a2)); color: #000; border: none; box-shadow: 0 5px 15px rgba(255, 223, 0, 0.2); }
.btnPrimary:hover { opacity: 0.95; box-shadow: 0 8px 25px rgba(255, 223, 0, 0.4); }

.btnDanger { background: rgba(255, 79, 109, 0.15); color: var(--danger); border-color: rgba(255, 79, 109, 0.3); }
.btnDanger:hover { background: rgba(255, 79, 109, 0.25); box-shadow: 0 5px 15px rgba(255, 79, 109, 0.2); }

/* ================= TABLES ================= */
.tableWrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: 14px; border: 1px solid var(--stroke); width: 100%; background: rgba(0,0,0,0.2); }
table { width: 100%; border-collapse: collapse; min-width: 600px; }
th { text-align: left; font-size: 11px; text-transform: uppercase; color: var(--muted); padding: 16px 20px; border-bottom: 1px solid var(--stroke); font-weight: 700; letter-spacing: 0.5px; background: rgba(255,255,255,0.02); }
td { padding: 18px 20px; border-bottom: 1px solid rgba(255,255,255,0.03); font-size: 13px; color: rgba(255,255,255,0.9); vertical-align: middle; }

/* ================= BADGES & PILLS ================= */
.badge { padding: 5px 10px; border-radius: 8px; font-size: 10px; font-weight: 800; text-transform: uppercase; }
.badge.ok { background: rgba(46, 229, 157, 0.15); color: var(--a3); border: 1px solid rgba(46, 229, 157, 0.2); }
.badge.fail { background: rgba(255, 79, 109, 0.15); color: var(--danger); border: 1px solid rgba(255, 79, 109, 0.2); }
.badge.run { background: rgba(255, 223, 0, 0.15); color: var(--a2); }

.pill { background: rgba(255,255,255,0.08); padding: 6px 14px; border-radius: 20px; display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; border: 1px solid rgba(255,255,255,0.05); }
.dot { width: 8px; height: 8px; border-radius: 50%; box-shadow: 0 0 5px currentColor; }
.dot.green { background: var(--a3); color: var(--a3); }
.dot.red { background: var(--danger); color: var(--danger); }
.dot.yellow { background: var(--warn); color: var(--warn); }

.progressWrap { height: 6px; background: rgba(255,255,255,0.1); border-radius: 10px; overflow: hidden; width: 100%; }
.progressBar { height: 100%; background: var(--a2); border-radius: 10px; transition: 0.3s; box-shadow: 0 0 10px var(--a2); }

.alert { padding: 16px; border-radius: 12px; margin-bottom: 20px; font-size: 14px; border-left: 4px solid; background: var(--bg1); line-height: 1.5; }
.alert-danger { border-color: var(--danger); color: #ff99aa; }
.alert-success { border-color: var(--a3); color: #aaffcc; }

/* ================= LOGO ANIMATION (RAMADAN CRESCENT & GOLD WAVES) ================= */
.brand-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; cursor: pointer; }
.logo-icon { display: flex; align-items: center; justify-content: center; gap: 3px; height: 28px; }

/* The Crescent */
.ramadan-crescent { font-size: 24px; color: var(--a2); line-height: 1; text-shadow: 0 0 15px rgba(255, 223, 0, 0.6); animation: softGlow 3s infinite alternate; }

.wave-bar {
  width: 4px;
  background: linear-gradient(to top, #d4af37, #ffdf00); /* Gold Soundwaves */
  border-radius: 4px;
  animation: soundWave 1s infinite ease-in-out;
}
.wave-bar:nth-child(2) { height: 12px; animation-delay: 0.0s; }
.wave-bar:nth-child(3) { height: 20px; animation-delay: 0.1s; }
.wave-bar:nth-child(4) { height: 16px; animation-delay: 0.2s; }
.wave-bar:nth-child(5) { height: 22px; animation-delay: 0.3s; }
.wave-bar:nth-child(6) { height: 14px; animation-delay: 0.4s; }

.logo-text {
  font-size: 19px; font-weight: 800; letter-spacing: -0.5px;
  background: linear-gradient(90deg, #ffffff, #ffdf00, #d4af37, #ffffff);
  background-size: 300% 100%; -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  animation: shineText 6s infinite linear;
}

@keyframes soundWave {
  0%, 100% { transform: scaleY(1); opacity: 0.8; }
  50% { transform: scaleY(1.8); opacity: 1; box-shadow: 0 0 10px rgba(255, 223, 0, 0.4); }
}
@keyframes shineText { 0% { background-position: 0% 50%; } 100% { background-position: 100% 50%; } }
@keyframes softGlow { 0% { text-shadow: 0 0 5px rgba(255, 223, 0, 0.4); } 100% { text-shadow: 0 0 20px rgba(255, 223, 0, 0.8); } }

/* ================= JHOOMTE HUE LANTERNS ================= */
.hanging-lanterns { position: absolute; top: 0; left: 0; width: 100%; height: 0; z-index: 1001; pointer-events: none; }
.jhoomta-lantern {
  position: absolute; top: -15px; font-size: 45px; transform-origin: top center;
  animation: jhoom 4s infinite ease-in-out alternate;
  filter: drop-shadow(0 15px 20px rgba(255, 223, 0, 0.4));
}
@keyframes jhoom { 0% { transform: rotate(10deg); } 100% { transform: rotate(-10deg); } }

/* Custom Inputs Range Override for Gold */
input[type="range"]::-webkit-slider-thumb { 
  background: var(--a2); border: 4px solid var(--bg1); box-shadow: 0 0 15px rgba(255, 223, 0, 0.8); 
}
.switch input:checked + .slider { background-color: var(--a2); border-color: var(--a2); }