/* ============================================
   SHAKIRAH HOME SERVICES — LANDING PAGE STYLES
   ============================================ */

/* --- RESET & BASE --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #1A6B3C;
  --primary-dark: #145530;
  --primary-light: #2E8B57;
  --gold: #C9963A;
  --gold-light: #F0C060;
  --white: #ffffff;
  --off-white: #F8F9FA;
  --light-gray: #F2F4F6;
  --mid-gray: #6B7280;
  --dark: #111827;
  --text: #1F2937;
  --text-light: #4B5563;
  --whatsapp: #25D366;
  --whatsapp-dark: #128C7E;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.14);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.18);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.25s ease;
  --font-body: 'Cairo', sans-serif;
  --font-display: 'Cairo', sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

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

/* --- CONTAINER --- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- SECTION LABELS --- */
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(26, 107, 60, 0.09);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-md);
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  padding: 14px 28px;
  font-size: 0.95rem;
  box-shadow: 0 4px 14px rgba(26,107,60,0.3);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,107,60,0.4);
}

.btn-hero-primary {
  background: var(--gold);
  color: var(--dark);
  padding: 18px 36px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: var(--radius-lg);
  box-shadow: 0 6px 24px rgba(201,150,58,0.45);
}
.btn-hero-primary:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(201,150,58,0.55);
}

.btn-hero-secondary {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  padding: 18px 32px;
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
}
.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  padding: 13px 24px;
  font-size: 0.9rem;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 14px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
}

/* Pulse animation for CTA */
.pulse {
  animation: pulse-anim 2.4s ease-in-out infinite;
}
@keyframes pulse-anim {
  0%, 100% { box-shadow: 0 6px 24px rgba(201,150,58,0.45); }
  50% { box-shadow: 0 6px 40px rgba(201,150,58,0.75), 0 0 0 10px rgba(201,150,58,0.12); }
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  font-size: 1.8rem;
}

.logo-name {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
}

.logo-tagline {
  display: block;
  font-size: 0.7rem;
  color: var(--mid-gray);
  font-weight: 500;
}

.header-cta {
  padding: 11px 22px;
  font-size: 0.9rem;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0D4A28 0%, #1A6B3C 40%, #2E5902 100%);
  overflow: hidden;
}

/* Decorative background pattern */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(201,150,58,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 50%);
}

/* Geometric decorative elements */
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 2px solid rgba(201,150,58,0.15);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 100px;
  padding-bottom: 80px;
  max-width: 820px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,150,58,0.18);
  color: var(--gold-light);
  border: 1px solid rgba(201,150,58,0.35);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 28px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 22px;
}

.hero-title .highlight {
  color: var(--gold-light);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  max-width: 600px;
  margin: 0 auto 38px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-xl);
  padding: 20px 32px;
  max-width: 480px;
  margin: 0 auto;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.trust-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
}

.trust-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.trust-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.2);
  margin: 0 20px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  z-index: 2;
}

.scroll-arrow {
  width: 18px;
  height: 18px;
  border-right: 2px solid rgba(255,255,255,0.4);
  border-bottom: 2px solid rgba(255,255,255,0.4);
  transform: rotate(45deg);
  animation: scroll-bounce 1.8s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(5px); }
}

/* ============================================
   URGENCY BANNER
   ============================================ */
.urgency-banner {
  background: linear-gradient(90deg, #C9963A, #E8B84B);
  padding: 14px 0;
  text-align: center;
}

.urgency-banner p {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1a1a;
}

.urgency-banner a {
  color: var(--primary-dark);
  font-weight: 800;
  text-decoration: underline;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: 96px 0;
  background: var(--off-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.05);
  position: relative;
  transition: all var(--transition);
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.service-card.featured {
  border: 2px solid var(--primary);
  background: linear-gradient(135deg, #fafffe 0%, #f0fff6 100%);
}

.featured-tag {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--primary);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0;
  padding: 5px 14px;
  border-radius: var(--radius-lg) 0 var(--radius-md) 0;
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.service-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.service-desc {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 16px;
}

.service-features {
  list-style: none;
  margin-bottom: 24px;
}

.service-features li {
  font-size: 0.88rem;
  color: var(--text-light);
  padding: 4px 0;
  padding-right: 20px;
  position: relative;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  right: 0;
  color: var(--primary);
  font-weight: 700;
}

.service-cta {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  transition: gap var(--transition);
}

.service-cta:hover {
  color: var(--primary-dark);
  letter-spacing: 0.01em;
}

/* CTA card */
.service-cta-card {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-card-content {
  text-align: center;
}

.cta-card-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.cta-card-content p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
  line-height: 1.6;
}

.cta-card-btn {
  background: var(--gold);
  color: var(--dark);
  width: 100%;
  justify-content: center;
  padding: 14px;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.cta-card-btn:hover {
  background: var(--gold-light);
}

.service-cta-card .btn-whatsapp {
  width: 100%;
  justify-content: center;
  padding: 13px;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-us {
  padding: 96px 0;
  background: var(--white);
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.why-us-text .section-header {
  text-align: left;
  margin: 0 0 28px 0;
  max-width: none;
}

.why-us-text .section-title {
  text-align: left;
}

.why-us-intro {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 36px;
}

.why-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-gray);
  border-radius: var(--radius-sm);
}

.why-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.why-item p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

.why-us-cta {
  font-size: 1rem;
  padding: 16px 30px;
}

/* Flags card */
.flags-card {
  background: linear-gradient(135deg, var(--primary), #0D4A28);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 20px;
  color: var(--white);
}

.flags-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 20px;
  text-align: center;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.flags-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.flag-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 12px 8px;
  transition: background var(--transition);
}

.flag-item:hover {
  background: rgba(255,255,255,0.18);
}

.flag-emoji {
  font-size: 1.8rem;
}

.flag-item span:last-child {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}

.flags-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  text-align: center;
  line-height: 1.5;
}

/* Stat cards */
.stat-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.stat-card {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.06);
}

.stat-num {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--mid-gray);
  font-weight: 500;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 96px 0;
  background: var(--off-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform var(--transition), box-shadow var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.stars {
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 3px;
  margin-bottom: 14px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 22px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.author-name {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
}

.author-location {
  display: block;
  font-size: 0.78rem;
  color: var(--mid-gray);
  margin-top: 2px;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  padding: 96px 0;
  background: var(--white);
}

.steps-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
}

.step {
  flex: 1;
  text-align: center;
  padding: 0 24px;
  max-width: 280px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.step-icon {
  font-size: 2.6rem;
  margin-bottom: 16px;
  display: block;
}

.step h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

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

.step-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary);
}

.step-link:hover {
  color: var(--primary-dark);
}

.step-arrow {
  font-size: 1.8rem;
  color: var(--light-gray);
  padding-top: 80px;
  flex-shrink: 0;
  color: #ccc;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  padding: 96px 0;
  background: linear-gradient(135deg, #0D4A28 0%, #1A6B3C 50%, #2E5902 100%);
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 2px solid rgba(201,150,58,0.15);
}

.final-cta::after {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -80px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.07);
}

.final-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}

.final-cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.final-cta-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 40px;
  line-height: 1.7;
}

.final-cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--dark);
  padding: 48px 0 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo .logo-name {
  color: var(--white);
}

.footer-logo .logo-tagline {
  color: rgba(255,255,255,0.4);
}

.footer-phone {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 8px;
  transition: color var(--transition);
}

.footer-phone:hover {
  color: var(--gold);
}

.footer-services {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}

.footer-bottom {
  padding: 18px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* ============================================
   FLOATING CALL BUTTON
   ============================================ */
.floating-call {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  pointer-events: none;
}

.floating-call.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.float-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  border-radius: 50px;
  padding: 14px 22px;
  font-size: 0.95rem;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition);
  cursor: pointer;
}

.float-phone {
  background: var(--primary);
  color: var(--white);
}

.float-phone:hover {
  background: var(--primary-dark);
  transform: scale(1.04);
}

.float-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  width: 52px;
  height: 52px;
  padding: 0;
  border-radius: 50%;
  justify-content: center;
}

.float-whatsapp:hover {
  background: var(--whatsapp-dark);
  transform: scale(1.1);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .header-cta span { display: none; }

  .hero-content {
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    justify-content: center;
  }

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

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

  .steps-grid {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .step-arrow {
    transform: rotate(90deg);
    padding: 0;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .final-cta-btns {
    flex-direction: column;
    align-items: stretch;
  }

  .final-cta-btns .btn-hero-primary,
  .final-cta-btns .btn-hero-secondary {
    width: 100%;
    justify-content: center;
  }

  .hero-trust {
    padding: 16px 20px;
  }

  .trust-divider {
    margin: 0 12px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .flags-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stat-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .float-phone span {
    display: none;
  }

  .float-phone {
    width: 52px;
    height: 52px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
  }
}

/* ============================================
   RTL / ARABIC OVERRIDES
   ============================================ */

/* Phone numbers always render left-to-right */
.phone-num {
  direction: ltr;
  unicode-bidi: embed;
  display: inline-block;
}

/* Remove letter-spacing on Arabic text (spacing breaks Arabic letterforms) */
.hero-badge,
.section-label,
.featured-tag {
  letter-spacing: 0;
}

/* Why-us text alignment follows RTL naturally; ensure title aligns right */
.why-us-text .section-title {
  text-align: right;
}

/* On mobile, step arrows rotate correctly in RTL stacked layout */
@media (max-width: 768px) {
  .step-arrow {
    transform: rotate(-90deg);
  }
}
