:root {
  --primary: #1F7A63;
  --primary-light: #2da183;
  --light-green: #3FB68B;
  --gold: #C9A646;
  --gold-hover: #dbb34b;
  --bg: #F8F6F2;
  --bg-white: #FFFFFF;
  --text: #1A1A1A;
  --text-light: #555555;
  --border: #e0e0e0;
  --font-ar: 'Tajawal', sans-serif;
  --font-en: 'Poppins', sans-serif;
  --current-font: var(--font-ar);
  --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 40px rgba(31,122,99,0.15);
  --radius: 12px;
  --radius-lg: 24px;
  --transition: all 0.3s ease;
}

[dir="ltr"] {
  --current-font: var(--font-en);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--current-font);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.mt-4 {
  margin-top: 2rem;
}

.w-100 {
  width: 100%;
}

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

.bg-light {
  background-color: var(--bg-white);
}

.rounded-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Typography */
h1, h2, h3, h4 {
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--primary);
}

.section-title {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 800;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--gold);
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  gap: 0.5rem;
}

.btn-primary {
  background-color: var(--gold);
  color: var(--bg-white);
  box-shadow: 0 4px 15px rgba(201, 166, 70, 0.4);
}

.btn-primary:hover {
  background-color: var(--gold-hover);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(201, 166, 70, 0.6);
}

.btn-secondary {
  background-color: var(--bg-white);
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background-color: var(--primary);
  color: var(--bg-white);
  transform: translateY(-3px);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--bg-white);
}

/* Header */
.header {
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.8rem 0;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(31, 122, 99, 0.08);
  transition: var(--transition);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 94%;
  max-width: 1240px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: var(--transition);
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.2rem;
  text-align: right; /* Default for Arabic (RTL) since site default is dir="rtl" */
  margin-top: 4px; /* Visually nudges text block down for perfect optical center-alignment with larger logo symbol */
}

html[dir="ltr"] .logo-text {
  text-align: left; /* Switch to left-aligned in LTR */
}

.logo-title {
  display: block;
  font-family: var(--font-ar);
  font-size: 1.45rem;
  font-weight: 800;
  color: #1a2b25; /* dark charcoal navy-green color for premium contrast matching Al-Fath */
  line-height: 1.15;
  letter-spacing: -0.01em;
  transition: var(--transition);
}

html[dir="ltr"] .logo-title {
  font-family: var(--font-en);
  font-size: 1.35rem;
}

.logo:hover .logo-title {
  color: var(--primary); /* Hover transition to brand green */
}

.logo-subtitle {
  display: block;
  font-family: var(--font-ar);
  font-size: 0.72rem;
  font-weight: 700;
  color: #115240; /* deeper, more eye-catching pine green for premium contrast */
  line-height: 1.1;
  white-space: nowrap;
  letter-spacing: 0.02em;
  transition: var(--transition);
}

html[dir="ltr"] .logo-subtitle {
  font-family: var(--font-en);
  font-size: 0.68rem;
}

.logo-img {
  width: 84px;
  height: 84px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
  transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275),
              filter 0.35s ease;
}

.logo:hover .logo-img {
  transform: scale(1.08);
  filter: drop-shadow(0 3px 8px rgba(31, 122, 99, 0.35));
}

/* Nav Menu */
.nav-menu {
  transition: var(--transition);
}

.nav-menu ul {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
  padding: 0.4rem 0;
  cursor: pointer;
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
  border-radius: 2px;
}

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

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-link.nav-btn {
  background-color: var(--primary);
  color: var(--bg-white);
  padding: 0.55rem 1.3rem;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(31, 122, 99, 0.15);
  transition: var(--transition);
}

.nav-link.nav-btn::after {
  display: none;
}

.nav-link.nav-btn:hover {
  background-color: var(--primary-light);
  color: var(--bg-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(31, 122, 99, 0.25);
}

.nav-link.nav-btn.active {
  background-color: var(--gold);
  color: var(--bg-white);
  box-shadow: 0 4px 10px rgba(201, 166, 70, 0.2);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-shrink: 0;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--primary);
  direction: ltr;
  transition: var(--transition);
}

.phone-link:hover {
  color: var(--primary-light);
}

.lang-btn {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  color: var(--primary);
  transition: var(--transition);
}

.lang-btn:hover {
  background: var(--primary);
  color: var(--bg-white);
  border-color: var(--primary);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 22px;
  height: 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1005;
  margin-left: 0.2rem;
}

[dir="ltr"] .hamburger {
  margin-left: 0;
  margin-right: 0.2rem;
}

.hamburger .bar {
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* hamburger animations */
.hamburger.open .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.open .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Overlay */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 26, 26, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 998;
}

.nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* Hero Section */
.hero {
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(248,246,242,1) 0%, rgba(225,238,234,1) 100%);
  position: relative;
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-image img {
  max-width: 100%;
  max-height: 450px;
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: var(--radius-lg);
}

/* Trust Section */
.trust {
  background-color: var(--primary);
  color: var(--bg-white);
  padding: 2rem 0;
}

.trust-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
  text-align: center;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.trust-item i {
  font-size: 2rem;
  color: var(--gold);
}

.trust-item span {
  font-weight: 600;
  font-size: 0.9rem;
}

/* Features Section */
.features {
  padding: 5rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--bg);
  padding: 2rem;
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
  border: 1px solid transparent;
}

.feature-card:hover {
  transform: translateY(-5px);
  background: var(--bg-white);
  box-shadow: var(--shadow-md);
  border-color: var(--light-green);
}

.icon-box {
  width: 70px;
  height: 70px;
  background: rgba(31, 122, 99, 0.1);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1.5rem;
  transition: var(--transition);
}

.feature-card:hover .icon-box {
  background: var(--primary);
  color: var(--bg-white);
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Pricing Section */
.pricing {
  padding: 5rem 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 2rem;
  align-items: center;
}

.pricing-card {
  background: var(--bg-white);
  padding: 2.8rem 2rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  text-align: center;
  position: relative;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 480px;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.pricing-card h3 {
  font-size: 1.4rem;
  color: var(--primary);
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.discount-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #f83a5a;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(248, 58, 90, 0.25);
  z-index: 5;
}

[dir="ltr"] .discount-badge {
  right: auto;
  left: 15px;
}

.price {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  direction: ltr;
}

.price-new {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--primary);
}

.price-old {
  font-size: 1.25rem;
  color: #9c9c9c;
  text-decoration: line-through;
  font-weight: 500;
}

.price small {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
}

.plan-features {
  margin-bottom: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: center;
}

.plan-features li {
  font-size: 0.95rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.plan-features li i {
  color: var(--light-green);
  font-size: 0.9rem;
}

/* Pill buttons */
.btn-pill {
  border-radius: 50px !important;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.7rem 1.8rem;
  width: 100%;
  display: block;
  text-align: center;
  transition: var(--transition);
}

.btn-pill-outline {
  border: 1.5px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-pill-outline:hover {
  background: var(--primary);
  color: var(--bg-white);
}

.btn-pill-gold {
  background: var(--gold);
  color: var(--bg-white);
  border: 1.5px solid var(--gold);
  box-shadow: 0 4px 12px rgba(201, 166, 70, 0.35);
}

.btn-pill-gold:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(201, 166, 70, 0.45);
}

/* Urgency note styling */
.urgency-badge {
  font-size: 0.8rem;
  font-weight: 600;
  color: #f83a5a;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin-top: 1rem;
}

.urgency-badge.fire {
  color: #f83a5a;
}

.urgency-badge.fire i {
  animation: pulse-fire 1.5s infinite alternate;
}

@keyframes pulse-fire {
  0% { transform: scale(1); }
  100% { transform: scale(1.15); }
}

.pricing-card.popular {
  border: 1.5px solid var(--primary);
  transform: scale(1.03);
  box-shadow: 0 15px 35px rgba(31, 122, 99, 0.08);
}

.pricing-card.popular:hover {
  transform: scale(1.03) translateY(-5px);
  box-shadow: 0 20px 45px rgba(31, 122, 99, 0.15);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--bg-white);
  padding: 0.35rem 1rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 4px 8px rgba(201, 166, 70, 0.25);
  white-space: nowrap;
}

/* Testimonials Section */
.testimonials {
  padding: 5rem 0;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 2rem;
}

.testi-card {
  background: var(--bg);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.stars {
  color: var(--gold);
  margin-bottom: 1rem;
}

.testi-text {
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.testi-card h4 {
  font-size: 1.1rem;
  margin: 0;
}

/* Registration Section */
.register {
  padding: 5rem 0;
  background: linear-gradient(to right, var(--primary), var(--primary-light));
  color: var(--bg-white);
}

.register-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.register-info h2 {
  color: var(--bg-white);
  font-size: 2.5rem;
}

.register-info p {
  font-size: 1.1rem;
  opacity: 0.9;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.contact-method i {
  color: var(--gold);
  font-size: 1.5rem;
}

.register-form-box {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  color: var(--text);
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.form-group input, .form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
  background-color: var(--bg);
}

.form-group input:focus, .form-group select:focus {
  outline: none;
  border-color: var(--light-green);
  box-shadow: 0 0 0 3px rgba(63, 182, 139, 0.2);
  background-color: var(--bg-white);
}

.form-success {
  background-color: #d4edda;
  color: #155724;
  padding: 1rem;
  border-radius: var(--radius);
  margin-top: 1rem;
  text-align: center;
  font-weight: 600;
}

/* Footer */
.footer {
  background-color: #111;
  color: #eee;
  padding: 4rem 0 2rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand .logo {
  color: var(--bg-white);
  margin-bottom: 1rem;
}

.footer-brand .logo .logo-title {
  color: var(--bg-white);
}

.footer-brand .logo .logo-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.footer-brand .logo:hover .logo-title {
  color: var(--gold-hover);
}

.footer-brand p {
  color: #aaa;
  max-width: 400px;
}

.footer-links h4 {
  color: var(--bg-white);
  margin-bottom: 1.5rem;
}

.footer-links ul li {
  margin-bottom: 0.8rem;
  color: #aaa;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #333;
  color: #888;
  font-size: 0.9rem;
}

/* Floating WhatsApp */
.floating-wa {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: var(--transition);
}

[dir="ltr"] .floating-wa {
  right: auto;
  left: 30px;
}

.floating-wa:hover {
  transform: scale(1.1);
  background-color: #1ebe57;
}

/* ==============================================
   RESPONSIVE — MOBILE FIRST
   ============================================== */


/* --- 992px: Tablet / Hamburger Breakpoint --- */
@media (max-width: 992px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--bg-white);
    box-shadow: -5px 0 20px rgba(0,0,0,0.08);
    padding: 5.5rem 1.8rem 2rem;
    transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 999;
    overflow-y: auto;
  }

  [dir="ltr"] .nav-menu {
    right: auto;
    left: -100%;
    box-shadow: 5px 0 20px rgba(0,0,0,0.08);
    transition: left 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  }

  .nav-menu.open  { right: 0; }
  [dir="ltr"] .nav-menu.open { right: auto; left: 0; }

  .nav-menu ul {
    flex-direction: column;
    align-items: stretch;
    gap: 1.4rem;
  }

  .nav-link {
    display: block;
    font-size: 1.05rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.04);
  }

  .nav-link::after { display: none; }

  .nav-link.nav-btn {
    text-align: center;
    margin-top: 0.5rem;
    border-bottom: none;
  }

  .header-actions { gap: 0.9rem; }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .register-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .pricing-card.popular { transform: scale(1); }
  .pricing-card.popular:hover { transform: translateY(-5px); }

  .hero-content    { text-align: center; }
  .hero-ctas       { justify-content: center; }
  .hero-content h1 { font-size: 2.5rem; }
  .hero-image      { margin-top: 1.5rem; }
}

/* --- 768px: Mobile Breakpoint --- */
@media (max-width: 768px) {

  /* --- Logo & Header --- */
  .header-container { width: 95%; }
  .logo-img { width: 74px; height: 74px; }
  .logo-title { font-size: 1.25rem; }
  html[dir="ltr"] .logo-title { font-size: 1.15rem; }
  .logo-subtitle { font-size: 0.65rem; }
  html[dir="ltr"] .logo-subtitle { font-size: 0.6rem; }
  .header-actions .phone-link span { display: none; }

  /* --- Section Padding --- */
  .hero, .features, .pricing, .testimonials, .register { padding: 3rem 0; }
  .footer { padding: 3.5rem 0 1.5rem; }



  /* --- Typography --- */
  .hero-content h1 { font-size: 2rem; }
  .section-title   { font-size: 1.75rem; margin-bottom: 2.2rem; }

  /* --- Hero CTAs --- */
  .hero-ctas {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  .hero-ctas .btn {
    width: 100%;
    max-width: 340px;
    margin: 0;
  }

  /* --- Standalone Buttons --- */
  .btn {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
  }
  .text-center .btn {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }

  /* --- Trust Section: 2-col grid, 5th item centered --- */
  .trust-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 1rem;
  }
  .trust-item { width: 100%; }
  .trust-item:last-child { grid-column: span 2; }

  /* --- Feature Cards --- */
  .feature-card { padding: 1.5rem 1.25rem; }

  /* --- Pricing Cards --- */
  .pricing-card {
    padding: 2.2rem 1.5rem 1.75rem;
    min-height: auto;
  }
  .plan-features { margin-bottom: 1.75rem; }
  .price {
    margin-bottom: 1.25rem;
  }
  .price-new {
    font-size: 2rem;
  }
  .price-old {
    font-size: 1.15rem;
  }


  /* --- Testimonial Cards --- */
  .testi-card { padding: 1.5rem 1.25rem; }

  /* --- Registration Section --- */
  .register-info { text-align: center; }
  .register-info h2 {
    font-size: 2rem;
    color: var(--bg-white);
  }
  .contact-methods { align-items: center; gap: 0.75rem; }
  .contact-method  { font-size: 1rem; gap: 0.6rem; }
  .register-form-box {
    padding: 1.75rem 1.25rem;
    border-radius: var(--radius);
  }

  /* --- Footer --- */
  .footer-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
  }
  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-brand .logo { justify-content: center; margin-bottom: 0.75rem; }
  .footer-brand .logo .logo-text { align-items: center; text-align: center; }
  .footer-brand p     { max-width: 100%; }
  .footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-links h4 { margin-bottom: 0.75rem; }
  .footer-links ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    margin: 0;
  }

  /* --- Floating WhatsApp --- */
  .floating-wa {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
    font-size: 1.6rem;
  }
  [dir="ltr"] .floating-wa { right: auto; left: 20px; }
}

/* --- 576px: Force single-column grids --- */
@media (max-width: 576px) {
  .pricing-grid,
  .testi-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* --- 480px: Small Mobile --- */
@media (max-width: 480px) {
  .header-container { width: 96%; }
  .logo-img { width: 66px; height: 66px; }
  .logo-title { font-size: 1.15rem; }
  html[dir="ltr"] .logo-title { font-size: 1.05rem; }
  .logo-subtitle { font-size: 0.58rem; }
  html[dir="ltr"] .logo-subtitle { font-size: 0.54rem; }
  .logo { gap: 0.35rem; }

  .header-actions { gap: 0.6rem; }
  .lang-btn {
    padding: 0.3rem 0.6rem;
    font-size: 0.8rem;
    border-radius: 8px;
  }

  .hamburger { width: 20px; height: 14px; }
  .hamburger.open .bar:nth-child(1) { transform: translateY(6px)  rotate(45deg);  }
  .hamburger.open .bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .hero-content h1 { font-size: 1.65rem; }
  .hero-content p  { font-size: 0.95rem; margin-bottom: 1.5rem; }

  .section-title   { font-size: 1.4rem;  margin-bottom: 2rem; }

  .register-info h2 { font-size: 1.6rem; }
  .contact-method   { font-size: 0.92rem; }
}

/* --- 360px: Ultra-compact --- */
@media (max-width: 360px) {
  .logo-img { width: 56px; height: 56px; }
  .logo-title { font-size: 1.05rem; }
  html[dir="ltr"] .logo-title { font-size: 0.95rem; }
  .logo-subtitle { font-size: 0.52rem; }
  html[dir="ltr"] .logo-subtitle { font-size: 0.48rem; }
  .logo { gap: 0.25rem; }

  .header-actions { gap: 0.4rem; }
  .lang-btn {
    padding: 0.25rem 0.45rem;
    font-size: 0.72rem;
  }

  .hero-ctas .btn {
    font-size: 0.95rem;
    padding: 0.65rem 1rem;
  }
}
