/* =========================================
   DEEPTECH – GLOBAL STYLES
   Light / Dark  |  LTR / RTL
   ========================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ===== LIGHT THEME (default) ===== */
:root {
  --yellow: #F5A623;
  --yellow-dark: #d4891a;
  --green: #27ae60;
  --nav-bg: #0d1b2a;
  --nav-bg2: #132234;
  --bg: #ffffff;
  --bg2: #f5f6f8;
  --bg3: #eef0f4;
  --card-bg: #ffffff;
  --text: #1c1c2e;
  --text-light: #5a6170;
  --border: #e0e4ea;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --trust-bg: #0d1b2a;
  --trust-card: rgba(255, 255, 255, 0.07);
  --trust-border: rgba(255, 255, 255, 0.1);
  --trust-text: rgba(255, 255, 255, 0.65);
  --footer-bg: #0a1520;
  --radius: 12px;
}

/* ===== DARK THEME ===== */
[data-theme="dark"] {
  --bg: #0f1923;
  --bg2: #162030;
  --bg3: #1c2a3a;
  --card-bg: #1a2740;
  --text: #e8edf2;
  --text-light: #8fa3b8;
  --border: #243447;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  --trust-bg: #071018;
  --trust-card: rgba(255, 255, 255, 0.05);
  --trust-border: rgba(255, 255, 255, 0.08);
  --footer-bg: #070e16;
}

/* ===== FONT FAMILIES ===== */
[dir="ltr"] body {
  font-family: 'Inter', sans-serif;
}

[dir="rtl"] body {
  font-family: 'Cairo', sans-serif;
}

[dir="ltr"] h1,
[dir="ltr"] h2,
[dir="ltr"] h3,
[dir="ltr"] h4 {
  font-family: 'Sora', sans-serif;
}

[dir="rtl"] h1,
[dir="rtl"] h2,
[dir="rtl"] h3,
[dir="rtl"] h4 {
  font-family: 'Cairo', sans-serif;
}

body {
  color: var(--text);
  background: var(--bg);
  transition: background 0.3s, color 0.3s;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

/* ================================================
   NAVBAR
   ================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--nav-bg);
  height: 62px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
  padding: 0 24px;
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 30px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-family: 'Sora', sans-serif;
  font-size: 1.2rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  flex-shrink: 0;
}

.text-foreground {
  font-weight: 800;
  font-size: x-large;
}

.text-primary-soft {
  font-weight: 800;
  color: var(--yellow);
}

[dir="rtl"] .logo {
  font-family: 'Cairo', sans-serif;
}

.logo strong {
  color: var(--yellow);
}

.logo-icon {
  color: var(--yellow);
  font-size: 1.3rem;
}

.nav-links {
  display: flex;
  gap: 5px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  font-weight: 500;
  padding: 7px 13px;
  border-radius: 7px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--yellow);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

[dir="rtl"] .nav-right {
  margin-left: 0;
  margin-right: auto;
}

/* Language button */
.lang-toggle-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 13px;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.2s;
  letter-spacing: 0.5px;
  font-family: inherit;
}

.lang-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lang-flag {
  font-size: 1rem;
}

/* Dark/light toggle switch */
.theme-toggle-btn {
  width: 44px;
  height: 24px;
  position: relative;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.3s;
  padding: 0;
  overflow: hidden;
}

.theme-toggle-btn .track {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5px;
  pointer-events: none;
  font-size: 0.65rem;
}

.theme-toggle-btn .knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.3s, background 0.3s;
  pointer-events: none;
}

[data-theme="dark"] .theme-toggle-btn {
  background: var(--yellow);
  border-color: var(--yellow-dark);
}

[data-theme="dark"] .theme-toggle-btn .knob {
  transform: translateX(20px);
  background: var(--nav-bg);
}

.btn-login {
  background: var(--yellow);
  color: #0d1b2a !important;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: 8px;
  font-size: 0.84rem;
  transition: background 0.2s;
  white-space: nowrap;
}

.btn-login:hover {
  background: var(--yellow-dark);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  margin-left: auto;
  padding: 4px 8px;
}

[dir="rtl"] .hamburger {
  margin-left: 0;
  margin-right: auto;
}

/* ================================================
   BUTTONS
   ================================================ */
.btn-primary {
  display: inline-block;
  background: var(--yellow);
  color: #0d1b2a;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 10px;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}

[dir="rtl"] .btn-primary {
  font-family: 'Cairo', sans-serif;
}

.btn-primary:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
}

.btn-primary.small {
  padding: 8px 20px;
  font-size: 0.85rem;
}

.btn-primary.full-width {
  width: 100%;
  text-align: center;
  font-size: 1rem;
}

/* ================================================
   HERO
   ================================================ */
.hero {
  position: relative;
  min-height: 540px;
  background: url('https://images.unsplash.com/photo-1518770660439-4636190af475?w=1400&q=80') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 27, 42, 0.90) 0%, rgba(13, 27, 42, 0.72) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 60px 24px;
}

.hero-content h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 16px;
  font-weight: 800;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 30px;
  font-size: 1rem;
  line-height: 1.75;
}

.hero-icons {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.floating-icon {
  position: absolute;
  font-size: 2rem;
  animation: floatIcon 4s ease-in-out infinite;
  opacity: 0.2;
}

.fi1 {
  top: 15%;
  left: 8%;
  animation-delay: 0s
}

.fi2 {
  top: 20%;
  right: 10%;
  animation-delay: .8s
}

.fi3 {
  bottom: 25%;
  left: 12%;
  animation-delay: 1.5s
}

.fi4 {
  bottom: 20%;
  right: 8%;
  animation-delay: .4s
}

.fi5 {
  top: 50%;
  left: 5%;
  animation-delay: 2s
}

@keyframes floatIcon {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-14px)
  }
}

/* ================================================
   STATS
   ================================================ */
.stats {
  background: var(--bg2);
  padding: 64px 24px;
  text-align: center;
}

.stats h2 {
  font-size: 1.65rem;
  margin-bottom: 40px;
  color: var(--text);
}

.stats-grid {
  display: flex;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.stat-num {
  font-size: 2.5rem;
  font-weight: 800;
}

.stat-num.green {
  color: var(--green);
}

.stat-num.yellow {
  color: var(--yellow);
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-light);
  font-weight: 500;
}

/* ================================================
   FEATURES SPLIT
   ================================================ */
.features-split {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  max-width: 1100px;
  margin: 64px auto;
  padding: 0 24px;
  flex-wrap: wrap;
}


.features-left {
  flex: 0 0 220px;
  text-align: center;
}

.pin-shape {
  width: 120px;
  height: 160px;
  background: var(--bg2);
  border-radius: 50% 50% 50% 50%/60% 60% 40% 40%;
  border: 3px solid var(--border);
  margin: 0 auto 16px;
}

.pin-caption {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.65;
}

.features-right {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

[dir="rtl"] .feature-card {
  text-align: right;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.feat-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}

.feature-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ================================================
   TRUST SECTION
   ================================================ */
.trust-section {
  position: relative;
  padding: 80px 24px;
  background: var(--trust-bg);
  overflow: hidden;
}

.trust-bg {
  position: absolute;
  bottom: 0;
  right: 32px;
  font-size: 8rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
  user-select: none;
  letter-spacing: -4px;
}

[dir="rtl"] .trust-bg {
  right: auto;
  left: 32px;
}

.trust-bg::after {
  content: "SAAS";
}

.trust-content {
  max-width: 1100px;
  margin: 0 auto;
}

.trust-content h2 {
  color: #fff;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 48px;
}

.trust-cards {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-card {
  flex: 1;
  min-width: 240px;
  max-width: 320px;
  background: var(--trust-card);
  border: 1px solid var(--trust-border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: background 0.2s;
}

.trust-card:hover {
  background: rgba(255, 255, 255, 0.11);
}

.trust-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.trust-card h3 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 12px;
}

.trust-card p {
  color: var(--trust-text);
  font-size: 0.85rem;
  line-height: 1.75;
}

/* ================================================
   WHY CHOOSE US
   ================================================ */
.why-us {
  padding: 64px 24px;
  background: var(--bg);
}

.why-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
}

.why-text {
  flex: 1;
  min-width: 280px;
}

.why-text h2 {
  font-size: 1.8rem;
  margin-bottom: 28px;
  color: var(--text);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.why-item {
  background: var(--bg2);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
}

[dir="rtl"] .why-item {
  text-align: right;
}

.check {
  color: var(--yellow);
  font-size: 1rem;
}

.why-image {
  flex: 0 0 340px;
}

.why-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  height: 280px;
  object-fit: cover;
}

/* ================================================
   FREE PLAN
   ================================================ */
.free-plan {
  background: var(--bg2);
  padding: 64px 24px;
}

.free-plan-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 48px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.free-left {
  flex: 1;
  min-width: 280px;
}

.free-left h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: var(--text);
}

.free-left>p {
  color: var(--text-light);
  margin-bottom: 24px;
  font-size: 0.9rem;
}

.plan-features-grid {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}

.plan-features-grid ul {
  flex: 1;
}

.plan-features-grid li {
  font-size: 0.85rem;
  color: var(--text);
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
}

.see-all-link {
  color: var(--yellow);
  font-weight: 700;
  font-size: 0.9rem;
}

.free-right {
  flex: 0 0 220px;
}

.plan-badge {
  background: var(--yellow);
  color: #0d1b2a;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 6px;
  padding: 6px 12px;
  margin-bottom: 12px;
  text-align: center;
}

.plan-card-mini {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  text-align: center;
  border: 2px solid var(--yellow);
}

.plan-card-mini h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: var(--text);
}

.plan-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 20px;
}

/* ================================================
   PAGE HERO (inner pages)
   ================================================ */
.page-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 80px 24px 60px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.page-hero-text {
  flex: 1;
  min-width: 280px;
}

.page-hero-text h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  margin-bottom: 16px;
}

.page-hero-text p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 500px;
}

.yellow-title {
  color: var(--yellow);
}

.page-hero-image {
  display: flex;
  justify-content: center;
}

/* ================================================
   SECTION HELPERS
   ================================================ */
.section-light {
  background: var(--bg2);
  padding: 72px 24px;
}

.section-white {
  background: var(--bg);
  padding: 72px 24px;
}

.section-center {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-center h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 12px;
  color: var(--text);
}

.section-sub {
  color: var(--text-light);
  line-height: 1.75;
}

/* ================================================
   FEATURE COLS
   ================================================ */
.feature-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.feat-col {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 28px 22px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}

.section-white .feat-col {
  background: var(--bg2);
}

.feat-col:hover {
  transform: translateY(-4px);
}

.feat-col-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.feat-col h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--yellow);
}

.feat-col p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 14px;
}

.feat-col ul li {
  font-size: 0.82rem;
  color: var(--text-light);
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}

[dir="rtl"] .feat-col ul li {
  padding-left: 0;
  padding-right: 16px;
}

.feat-col ul li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--yellow);
}

[dir="rtl"] .feat-col ul li::before {
  left: auto;
  right: 0;
}

/* ================================================
   CARDS GRID
   ================================================ */
.cards-grid-section {
  padding: 72px 24px;
  background: var(--bg);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.info-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);
}

.card-img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin: 0 auto 16px;
}

.info-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.info-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ================================================
   PRICING
   ================================================ */
.plans-section {
  padding: 40px 24px 80px;
  text-align: center;
  background: var(--bg2);
}

.plans-section h2 {
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  margin-bottom: 40px;
  max-width: 680px;
  margin-inline: auto;
  color: var(--text);
}

.plans-wrapper {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.plan-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 40px 36px;
  border: 2px solid var(--border);
  max-width: 460px;
  width: 100%;
  box-shadow: var(--shadow);
  position: relative;
  text-align: left;
}

[dir="rtl"] .plan-card {
  text-align: right;
}

.plan-card.featured {
  border-color: var(--yellow);
}

.most-popular {
  background: var(--yellow);
  color: #0d1b2a;
  font-weight: 700;
  font-size: 0.8rem;
  border-radius: 20px;
  padding: 5px 14px;
  display: inline-block;
  margin-bottom: 20px;
}

.plan-card h3 {
  font-size: 2rem;
  margin-bottom: 6px;
  color: var(--text);
}

.plan-desc {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.plan-list {
  margin-bottom: 32px;
}

.plan-list li {
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}

.plan-list li::before {
  content: none;
}

/* ================================================
   CONTACT
   ================================================ */
.contact-section {
  display: flex;
  gap: 40px;
  max-width: 1100px;
  margin: 40px auto 80px;
  padding: 0 24px;
  flex-wrap: wrap;
  align-items: stretch;
}

.contact-map iframe {
  height: 100%;
}

.contact-form-card {
  flex: 0 0 420px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
}

.contact-form-card h3 {
  font-size: 1.4rem;
  margin-bottom: 24px;
  color: var(--text);
}

.contact-form-card form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form-card input,
.contact-form-card textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: inherit;
  background: var(--bg2);
  color: var(--text);
  transition: border-color 0.2s, background 0.2s;
}

[dir="rtl"] .contact-form-card input,
[dir="rtl"] .contact-form-card textarea {
  text-align: right;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus {
  outline: none;
  border-color: var(--yellow);
  background: var(--card-bg);
}

.form-contacts {
  margin-top: 18px;
  font-size: 0.85rem;
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.success-msg {
  margin-top: 16px;
  background: #e8f5e9;
  color: #2e7d32;
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 0.9rem;
}

[data-theme="dark"] .success-msg {
  background: #1b3a22;
  color: #6fcf82;
}

.contact-map {
  flex: 1;
  min-width: 280px;
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: var(--nav-bg);
  padding: 56px 24px 32px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.footer-links,
.footer-contact {
  flex: 1;
  min-width: 160px;
}

[dir="rtl"] .footer-links,
[dir="rtl"] .footer-contact {
  text-align: right;
}

.footer-links h4,
.footer-contact h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 16px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--yellow);
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin-bottom: 8px;
  line-height: 1.65;
}

.auth-wrapper {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

[data-theme="dark"] .auth-form {
  background-color: var(--card-bg);
}

.auth-form {
  background-color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 40px;
  width: 500px;
  max-width: 90vw;
  margin-top: 30px;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

[data-theme="dark"] .auth-form h2 {
  color: #fff;
}

.auth-form h2 {
  color: var(--text);
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: 900;
}

[data-theme="dark"] .auth-form p {
  color: #8fa3b8;
}

.auth-form p {
  color: var(--text-light);
  margin-bottom: 30px;
}

.auth-form .submit-form {
  margin-bottom: 25px;
}

.auth-form .form-group {
  margin-bottom: 20px;
}

[dir="rtl"] .auth-form .form-group i {
  right: unset;
  left: 8%;
}

.auth-form .form-group i {
  position: absolute;
  top: 70%;
  right: 8%;
  transform: translateY(-50%);
  cursor: pointer;
}

[data-theme="dark"] .auth-form label {
  color: #fff;
}

.auth-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: var(--text);
}

[data-theme="dark"] .auth-form input,
.auth-form textarea {
  background-color: var(--bg2);
  color: #fff;
}

.auth-form input,
.auth-form textarea {
  width: calc(100% - 20px);
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}

.auth-form a {
  color: var(--yellow);
  text-decoration: none;
}

.auth-form a:hover {
  color: var(--yellow);
  text-decoration: underline;
}

.auth-form .submit-button {
  background-color: var(--yellow);
  color: #fff;
  font-weight: 900;
  border: none;
  padding: 12px 25px;
  font-size: 1.1rem;
  border-radius: 15px;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.auth-form .submit-button:hover {
  transform: translateY(-3px);
}

.location-icon-wrapper {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.location-icon-wrapper p {
  color: var(--text-light);
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  margin-top: 2rem;
}

.location-icon-wrapper i {
  font-size: 350px !important;
  width: 100%;
  height: 100%;
  color: var(--bg2);
  display: flex;
  justify-content: center;
  align-items: center;
  text-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  transition: text-shadow 0.3s ease;
}

[data-theme="dark"] .location-icon-wrapper .location-title {
  color: #fff;
}

.location-icon-wrapper .location-title {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--text);
  font-size: 30px;
  text-align: center;
  padding: 0.5em;
  line-height: 1.4;
  font-weight: 900;
}

.location-icon-wrapper:hover i {
  text-shadow: 0 5px 30px rgba(0, 0, 0, 0.4);
}

/* ================================================
   MOBILE
   ================================================ */
@media (max-width: 820px) {

  .navbar {
    padding: 0 16px;
  }

  .nav-inner {
    gap: 12px;
    justify-content: space-between;
  }

  .logo img {
    max-width: 120px;
    height: auto;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 62px;
    left: 0;
    width: 100%;
    background: var(--nav-bg2);
    padding: 15px;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .25);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    display: block;
    padding: 12px;
  }

  [dir="rtl"] .nav-links {
    text-align: right;
  }

  .nav-right {
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links.open+.nav-right {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(62px + 220px);
    left: 0;
    width: 100%;
    padding: 0 27px 15px;
    background: var(--nav-bg2);
    align-items: flex-start;
    gap: 20px;
    margin-top: 40px;
  }

  .btn-login {
    display: block;
    width: 50%;
    text-align: center;
    padding: 12px;
  }

  [dir="rtl"] .nav-links.open+.nav-right {
    text-align: right;
  }

  .lang-label-text {
    display: none;
  }

  .lang-toggle-btn {
    padding: 6px 10px;
  }

  .hamburger {
    display: block;
    margin: 0;
    font-size: 28px;
    flex-shrink: 0;
  }

  /* Auth forms – fluid on mobile */
  .auth-form {
    width: 90%;
    max-width: 480px;
    padding: 24px 20px;
  }

  .auth-form input,
  .auth-form textarea {
    width: 100%;
  }

  .auth-form h2 {
    font-size: 1.5rem;
  }

  .form-group i {
    top: 74%;
    right: 12px;
    font-size: 0.85rem;
  }

  [dir="rtl"] .form-group i {
    right: auto;
    left: 12px;
  }

  .scroll-animate {
    opacity: 1;
    transform: none;
  }

  /* Location icon – scale down on small screens */
  .location-icon-wrapper i {
    font-size: 15rem !important;
  }

  .location-icon-wrapper .location-title {
    font-size: 1.4rem;
    top: 34%;
  }

  .why-image {
    flex: 1 1 100%;
  }

  .page-hero {
    padding: 48px 16px 40px;
    display: flex;
    justify-content: center;
  }

  .page-hero-image img {
    max-width: 160px !important;
    width: 100%;
  }

  .plan-features-grid {
    flex-direction: column;
    gap: 0 !important;
  }

  .contact-form-card {
    flex: 1 1 100%;
  }

  .contact-map {
    flex: 1 1 100%;
  }

  .stats-grid {
    gap: 36px;
  }

  .features-split {
    flex-direction: column;
  }

  .features-left {
    flex: none;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .free-plan-inner {
    flex-direction: column;
  }

  .free-right {
    width: 100%;
  }

  .footer-inner {
    flex-direction: column;
    gap: 32px;
  }
}