/* ══════════════════════════════════════════════
   U-SECRETS — Global Stylesheet
   Design: Dark Navy + Cyan/Teal accent
   ══════════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
  --bg: #060b18;
  --bg2: #0a1628;
  --bg3: #0d1b2a;
  --card: #0f1d32;
  --card-hover: #132640;
  --border: rgba(0, 180, 216, 0.12);
  --border-hover: rgba(0, 180, 216, 0.35);
  --accent: #00b4d8;
  --accent2: #0077b6;
  --accent-glow: rgba(0, 180, 216, 0.15);
  --cta-red: #e63946;
  --cta-red-hover: #d62839;
  --gold: #f0c040;
  --text: #e2e8f0;
  --text-light: #8899aa;
  --white: #f0f4f8;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 30px rgba(0, 180, 216, 0.08);
  --radius: 14px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; min-width: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { overflow-x: hidden; max-width: 100vw; }
body {
  font-family: 'Tajawal', 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}
[dir="rtl"] body { direction: rtl; }
[dir="ltr"] body { direction: ltr; }

::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(0, 180, 216, 0.3); border-radius: 3px; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

/* ══════════ NAVBAR ══════════ */
.contact-bar {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 0.4rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.contact-bar a {
  color: var(--text-light);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  transition: color var(--transition);
}
.contact-bar a[href^="https://wa.me"],
.contact-bar a[href^="tel:"] {
  direction: ltr;
  unicode-bidi: bidi-override;
}
.contact-bar a:hover { color: var(--accent); }

nav {
  background: rgba(6, 11, 24, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  position: sticky;
  top: 0;
  z-index: 9999;
  border-bottom: 1px solid var(--border);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo img { height: 44px; width: auto; }
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-name {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 1px;
}
.logo-sub {
  font-size: 0.65rem;
  color: var(--text-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links li a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-links li a:hover,
.nav-links li a.active {
  color: var(--accent);
  background: var(--accent-glow);
}

.nav-btn {
  background: var(--cta-red) !important;
  color: #fff !important;
  border-radius: 10px !important;
  padding: 0.5rem 1.2rem !important;
  font-weight: 700 !important;
  transition: all var(--transition) !important;
}
.nav-btn:hover {
  background: var(--cta-red-hover) !important;
  transform: translateY(-1px);
}

.lang-switch {
  color: var(--text-light);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.35rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all var(--transition);
  text-decoration: none;
}
.lang-switch:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  padding: 8px;
  z-index: 10001;
  -webkit-tap-highlight-color: transparent;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════ HERO ══════════ */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg2) 50%, var(--bg3) 100%);
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
}
.hero-content { z-index: 1; }
.hero-badge {
  display: inline-block;
  background: rgba(0, 180, 216, 0.08);
  border: 1px solid rgba(0, 180, 216, 0.25);
  color: var(--accent);
  padding: 0.4rem 1.2rem;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 1rem;
}
.hero-title span { color: var(--accent); }
.hero-desc {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1rem;
  max-width: 540px;
}
.hero-leader {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Growth Dashboard Card */
.growth-card {
  background: rgba(15, 29, 50, 0.8);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-glow);
}
.growth-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.growth-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.growth-item {
  background: rgba(0, 180, 216, 0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem;
}
.growth-label {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 0.3rem;
}
.growth-value {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--accent);
}
.growth-note {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 1rem;
  line-height: 1.6;
}

/* ══════════ BUTTONS ══════════ */
.btn-primary {
  display: inline-block;
  background: var(--cta-red);
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--cta-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(230, 57, 70, 0.3);
}
.btn-secondary {
  display: inline-block;
  background: transparent;
  border: 1px solid var(--border-hover);
  color: var(--text);
  padding: 0.85rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition);
  cursor: pointer;
}
.btn-secondary:hover {
  background: var(--accent-glow);
  border-color: var(--accent);
  color: var(--accent);
}

/* ══════════ STATS BAR ══════════ */
.stats-section {
  padding: 2.5rem 2rem;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-container {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.stat-item { text-align: center; }
.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  color: var(--text-light);
  font-size: 0.88rem;
  margin-top: 0.4rem;
}

/* ══════════ SECTIONS ══════════ */
.section { padding: 5rem 2rem; }
.section-alt { background: var(--bg2); }
.container { max-width: 1100px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.section-title span { color: var(--accent); }
.section-subtitle {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ══════════ CARDS GRID ══════════ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  transition: all var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow);
}
.card-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.card-text {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ══════════ SERVICES CARDS ══════════ */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.svc-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: all var(--transition);
}
.svc-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
}
.svc-icon { font-size: 2rem; flex-shrink: 0; }

/* ══════════ TESTIMONIALS ══════════ */
.testimonial-stars { color: var(--gold); font-size: 1rem; margin-bottom: 0.8rem; }
.testimonial-quote {
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  font-style: italic;
}
.testimonial-name {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
}

/* ══════════ AFFILIATE TEASER ══════════ */
.affiliate-teaser {
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.06), rgba(0, 119, 182, 0.06));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.affiliate-teaser-title {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.8rem;
}
.affiliate-teaser-desc {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}
.affiliate-badges {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.affiliate-badge {
  background: rgba(0, 180, 216, 0.1);
  border: 1px solid var(--border);
  color: var(--accent);
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* ══════════ CTA SECTION ══════════ */
.cta-section {
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.08), rgba(0, 119, 182, 0.05));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 4rem 2rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.cta-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-text {
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.8;
}

/* ══════════ FOOTER ══════════ */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 2.5rem 1.5rem 2rem;
  text-align: center;
}
.footer-inner { max-width: 900px; margin: 0 auto; }
.footer-logo {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.footer-tagline {
  color: var(--text-light);
  font-size: 0.82rem;
  margin-bottom: 1.5rem;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
  list-style: none;
  padding: 0;
}
.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--accent); }
.footer-divider {
  height: 1px;
  background: var(--border);
  margin: 1.2rem 0;
}
.footer-copy {
  color: var(--text-light);
  font-size: 0.8rem;
}

/* Social Icons */
.footer-social {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.1rem;
  transition: all var(--transition);
}
.footer-social a:hover { transform: translateY(-3px); }
.footer-social a.s-ig:hover { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); border-color: transparent; }
.footer-social a.s-tt:hover { background: #010101; border-color: #fff; }
.footer-social a.s-x:hover { background: #000; border-color: #fff; }
.footer-social a.s-li:hover { background: #0077b5; border-color: transparent; }

/* ══════════ WHATSAPP FLOAT ══════════ */
.wa-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  text-decoration: none;
  z-index: 8888;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition);
  -webkit-tap-highlight-color: transparent;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

/* ══════════ PRICING TABLES ══════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all var(--transition);
  position: relative;
}
.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: var(--shadow-glow);
}
.pricing-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg);
  padding: 0.3rem 1.2rem;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
}
.pricing-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.pricing-price {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 0.3rem;
}
.pricing-period {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
  text-align: start;
}
.pricing-features li {
  padding: 0.5rem 0;
  color: var(--text-light);
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pricing-features li::before {
  content: '\2713';
  color: var(--accent);
  font-weight: 700;
}

/* ══════════ CONTACT FORM ══════════ */
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.9rem;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ══════════ BLOG CARDS ══════════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.blog-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}
.blog-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-hover);
}
.blog-card-body { padding: 1.5rem; }
.blog-tag {
  display: inline-block;
  background: var(--accent-glow);
  color: var(--accent);
  padding: 0.2rem 0.8rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}
.blog-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.blog-card-excerpt {
  color: var(--text-light);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* ══════════ PAGE HEADER ══════════ */
.page-header {
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg2) 100%);
  padding: 5rem 2rem 3rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.page-header p {
  color: var(--text-light);
  font-size: 1rem;
}

/* ══════════ 404 PAGE ══════════ */
.error-page {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
}
.error-code {
  font-size: 8rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 1rem;
}

/* ══════════ RESPONSIVE ══════════ */
@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 66px;
    right: 0;
    left: 0;
    background: rgba(6, 11, 24, 0.98);
    backdrop-filter: blur(20px);
    padding: 1rem;
    gap: 4px;
    z-index: 9998;
    max-height: calc(100vh - 66px);
    overflow-y: auto;
    border-top: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-links li a {
    padding: 0.7rem 1rem;
    border-radius: 10px;
    font-size: 0.95rem;
  }
  .contact-bar { padding: 0.4rem 1rem; gap: 0.8rem; }
  .wa-float { bottom: 16px; left: 16px; width: 48px; height: 48px; font-size: 22px; }
  .hero { padding: 3rem 1rem; min-height: auto; }
  .hero-container { grid-template-columns: 1fr; gap: 2rem; }
  .growth-card { margin-top: 1rem; }
  .section { padding: 3rem 1rem; }
  .stats-container { gap: 2rem; }
  .stat-number { font-size: 2rem; }
}

@media (max-width: 480px) {
  nav { padding: 0 1rem; }
  .logo-name { font-size: 1rem; }
  .cards-grid { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
}

@media (min-width: 901px) {
  .hamburger { display: none !important; }
  .nav-links { display: flex !important; position: static !important; }
}

/* ══════════════════════════════════════════════
   BLOG RATING & REVIEW SYSTEM
   ══════════════════════════════════════════════ */
.rating-section {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin: 2.5rem 0;
}
.rating-header {
  text-align: center;
  margin-bottom: 1.5rem;
}
.rating-header h3 {
  color: var(--accent);
  font-size: 1.3rem;
  margin-bottom: .5rem;
}
.rating-avg-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  margin-bottom: .5rem;
}
#avgRating {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
}
#reviewCount {
  color: var(--text-light);
  font-size: .9rem;
}
/* Stars */
.review-star, .review-star-sm {
  font-size: 1.8rem;
  color: #334155;
  transition: color .15s;
  user-select: none;
}
.review-star.active, .review-star.hover {
  color: var(--gold);
}
.review-star-sm {
  font-size: 1rem;
}
.review-star-sm.active {
  color: var(--gold);
}
#avgStars .review-star {
  font-size: 1.4rem;
  cursor: default;
}
#formStars {
  display: flex;
  gap: .25rem;
  justify-content: center;
  margin-bottom: 1rem;
}
/* Review form */
.review-form-grid {
  display: grid;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}
.review-form-grid input,
.review-form-grid textarea {
  width: 100%;
  padding: .75rem 1rem;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-family: inherit;
  font-size: .95rem;
  transition: border-color var(--transition);
}
.review-form-grid input:focus,
.review-form-grid textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.review-form-grid textarea {
  min-height: 80px;
  resize: vertical;
}
.review-form-grid button {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  border: none;
  padding: .75rem 2rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  font-family: inherit;
  transition: transform .2s, box-shadow .2s;
}
.review-form-grid button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,180,216,.3);
}
/* Review list */
.review-list {
  margin-top: 2rem;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}
.review-item {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 1rem;
}
.review-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .5rem;
}
.review-item-header strong {
  color: var(--white);
  font-size: 1rem;
}
.review-date {
  color: var(--text-light);
  font-size: .8rem;
}
.review-stars-small {
  margin-bottom: .5rem;
}
.review-comment {
  color: var(--text);
  font-size: .95rem;
  line-height: 1.7;
  margin: 0;
}

/* Force phone numbers LTR */
.ltr-num, [dir="ltr"] {
  direction: ltr !important;
  unicode-bidi: embed !important;
  display: inline-block !important;
}
