/* ============================================
   CLOUD LINE CLEANING SERVICES – style.css
   ============================================ */

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

:root {
  --blue: #e02020;
  --blue-dark: #b91c1c;
  --teal: #c2410c;
  --indigo: #9b2226;
  --sky-50: #fff5f5;
  --sky-100: #fee2e2;
  --sky-200: #fecaca;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --white: #ffffff;
  --green: #22c55e;
  --radius: 16px;
  --shadow: 0 4px 24px rgba(220, 38, 38, .12);
  --shadow-lg: 0 12px 48px rgba(220, 38, 38, .18);
  --font-en: 'Inter', sans-serif;
  --font-ar: 'Tajawal', 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-en);
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
}

/* ---- Utilities ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.ar-sub {
  font-family: var(--font-ar);
  font-size: .7em;
  color: var(--blue);
  display: block;
}

.ar-label {
  font-family: var(--font-ar);
  font-size: .65em;
  color: var(--gray-400);
  font-weight: 400;
  display: block;
  margin-top: 4px;
}

.ar-small {
  font-family: var(--font-ar);
  font-size: .85em;
  color: var(--gray-400);
  display: block;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--white);
  box-shadow: 0 6px 20px rgba(220, 38, 38, .35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(220, 38, 38, .45);
}

.btn-outline {
  background: #2c2c2e;
  border-color: #2c2c2e;
  color: var(--white);
}

.btn-outline:hover {
  background: #1c1c1e;
  border-color: #1c1c1e;
  color: var(--white);
}

.btn-nav {
  background: var(--blue);
  color: var(--white);
  padding: 10px 22px;
  font-size: 14px;
  border-radius: 50px;
}

.btn-nav:hover {
  background: var(--blue-dark);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  margin-top: 16px;
  width: 100%;
  justify-content: center;
  font-size: 16px;
}

.btn-whatsapp:hover {
  background: #128C7E;
  transform: translateY(-2px);
}

.btn-whatsapp svg {
  width: 22px;
  height: 22px;
}

.full-width {
  width: 100%;
  justify-content: center;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all .35s ease;
  background: linear-gradient(135deg, #1c1c1e 0%, #2c2c2e 60%, #3a3a3c 100%);
  direction: ltr;
  /* Always LTR - never flip */
}

.navbar.scrolled {
  background: linear-gradient(135deg, #1c1c1e 0%, #2c2c2e 60%, #3a3a3c 100%);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, .25);
  padding: 12px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  direction: ltr;
  /* Locked LTR regardless of language */
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.logo-icon.small {
  width: 32px;
  height: 32px;
}

.logo-img {
  height: 48px;
  width: 48px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
  border-radius: 10px;
  background: #fff;
  padding: 3px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.footer-logo-img {
  height: 48px;
  width: 48px;
  border-radius: 10px;
  background: #fff;
  padding: 3px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-en {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  transition: color .35s;
}

.logo-ar {
  font-family: var(--font-ar);
  font-size: 12px;
  color: rgba(255, 255, 255, .7);
  line-height: 1;
  transition: color .35s;
}

.navbar.scrolled .logo-en {
  color: var(--white);
}

.navbar.scrolled .logo-ar {
  color: rgba(255, 255, 255, .6);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 8px;
  margin-left: auto;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, .9);
  font-weight: 500;
  font-size: 16px;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all .2s;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, .15);
  color: var(--white);
}

.navbar.scrolled .nav-links a {
  color: rgba(255, 255, 255, .9);
}

.navbar.scrolled .nav-links a:hover {
  background: rgba(255, 255, 255, .12);
  color: var(--white);
}

/* ---- Language Switch Button ---- */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 255, 255, .35);
  border-radius: 50px;
  padding: 8px 14px;
  cursor: pointer;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  transition: all .25s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.lang-switch:hover {
  background: rgba(255, 255, 255, .25);
  transform: translateY(-1px);
}

.navbar.scrolled .lang-switch {
  background: rgba(255, 255, 255, .15);
  border-color: rgba(255, 255, 255, .3);
  color: var(--white);
}

.navbar.scrolled .lang-switch:hover {
  background: rgba(255, 255, 255, .25);
}

.lang-icon {
  font-size: 16px;
}

/* ---- Arabic RTL Mode ---- */
body.lang-ar {
  font-family: var(--font-ar);
  direction: rtl;
  text-align: right;
}

/* Navbar stays LTR always – no nav overrides needed */

body.lang-ar .hero-content {
  text-align: right;
}

body.lang-ar .hero-cta {
  justify-content: flex-start;
}

body.lang-ar .hero-stats {
  direction: rtl;
}

body.lang-ar .why-text .section-title {
  text-align: right;
}

body.lang-ar .feature {
  direction: rtl;
}

body.lang-ar .service-card {
  text-align: right;
}

body.lang-ar .service-list li {
  flex-direction: row-reverse;
}

body.lang-ar .service-list li::before {
  margin-left: 8px;
  margin-right: 0;
}

body.lang-ar .contact-form {
  text-align: right;
}

body.lang-ar .form-group input,
body.lang-ar .form-group select,
body.lang-ar .form-group textarea {
  direction: rtl;
  text-align: right;
}

body.lang-ar .footer-inner {
  direction: rtl;
}

body.lang-ar .hero-title .line1,
body.lang-ar .hero-title .line2 {
  display: block;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 4px;
  transition: all .3s;
  display: block;
}

.navbar.scrolled .hamburger span {
  background: var(--white);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

/* Animated floating circles */
.hero-bg::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(220, 38, 38, .20) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  animation: float1 8s ease-in-out infinite;
}

.hero-bg::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(180, 20, 20, .15) 0%, transparent 70%);
  bottom: -100px;
  left: -50px;
  animation: float2 10s ease-in-out infinite;
}

@keyframes float1 {

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

  50% {
    transform: translateY(-30px);
  }
}

@keyframes float2 {

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

  50% {
    transform: translateY(20px);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 100px;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sky-100);
  backdrop-filter: blur(10px);
  border: 1px solid var(--sky-200);
  border-radius: 50px;
  padding: 8px 18px;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 32px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .6;
    transform: scale(1.3);
  }
}

.hero-title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--gray-900);
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--blue) 0%, var(--indigo) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.hero-title .ar {
  font-family: var(--font-ar);
  font-size: .75em;
  color: var(--sky-200);
  display: block;
  margin-top: 8px;
}

.hero-title .ar.highlight {
  color: var(--sky-400, #38bdf8);
}

.hero-title .en {
  display: block;
}

.hero-sub {
  font-size: 18px;
  color: var(--gray-600);
  margin-bottom: 40px;
  font-weight: 400;
  letter-spacing: .5px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  background: var(--gray-50);
  backdrop-filter: blur(10px);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 24px 36px;
  width: fit-content;
}

.stat {
  text-align: center;
}

.stat-num {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--gray-900);
}

.stat-label {
  font-size: 12px;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: .5px;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--gray-200);
}

.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* ============================================
   SECTION COMMON
   ============================================ */
.section-head {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--blue);
  background: var(--sky-100);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--gray-900);
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: 100px 0;
  background: var(--sky-50);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: 24px;
  padding: 0;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
  position: relative;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp .6s ease forwards;
  display: flex;
  flex-direction: column;
}

.service-card-content {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid var(--gray-100);
}

.service-card:nth-child(3) {
  animation-delay: .3s;
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-icon svg {
  width: 32px;
  height: 32px;
}

.service-icon.blue {
  background: var(--sky-100);
  color: var(--blue);
}

.service-icon.teal {
  background: #ccfbf1;
  color: var(--teal);
}

.service-icon.indigo {
  background: #ede9fe;
  color: var(--indigo);
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--gray-900);
  line-height: 1.3;
}

.service-card p {
  color: var(--gray-600);
  line-height: 1.7;
  font-size: 15px;
  margin-bottom: 20px;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-list li {
  font-size: 14px;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-list li::before {
  content: '✓';
  color: var(--blue);
  font-weight: 700;
}

.service-action {
  margin-top: auto;
  padding-top: 24px;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 14px;
}

.card-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  bottom: -80px;
  right: -60px;
  filter: blur(60px);
  opacity: .25;
  pointer-events: none;
}

.blue-glow {
  background: var(--blue);
}

.teal-glow {
  background: var(--teal);
}

.indigo-glow {
  background: var(--indigo);
}

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

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

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

.why-desc {
  color: var(--gray-600);
  line-height: 1.8;
  font-size: 16px;
  margin: 24px 0 36px;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

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

.feature strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-800);
  display: block;
  margin-bottom: 4px;
}

.feature p {
  font-size: 14px;
  color: var(--gray-400);
  margin: 0;
}

.why-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}

.why-bg-circle {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sky-100), var(--sky-200));
  background: linear-gradient(135deg, #fee2e2, #fecaca);
}

.why-circle-inner {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 320px;
  z-index: 1;
}

.why-tagline {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-700);
  line-height: 1.25;
  text-align: center;
  order: 1;
}

.why-logo-wrap {
  position: relative;
  width: 280px;
  height: 200px;
  order: 2;
}

.why-service-icons.why-icons-circle {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  opacity: 1;
  z-index: 0;
  pointer-events: none;
}

.why-icons-circle span {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  font-size: 38px;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
}

/* Goolai: 6 icons logo ke dono side – logo se bahar, saaf arc mein */
.why-icons-circle span:nth-child(1) { left: calc(50% - 95px); top: 50%; }
.why-icons-circle span:nth-child(2) { left: calc(50% - 82px); top: calc(50% - 48px); }
.why-icons-circle span:nth-child(3) { left: calc(50% - 82px); top: calc(50% + 48px); }
.why-icons-circle span:nth-child(4) { left: calc(50% + 95px); top: 50%; }
.why-icons-circle span:nth-child(5) { left: calc(50% + 82px); top: calc(50% - 48px); }
.why-icons-circle span:nth-child(6) { left: calc(50% + 82px); top: calc(50% + 48px); }

.why-center-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.why-circle-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.why-card-float {
  position: absolute;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .1);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.why-card-float.card1 {
  top: 30px;
  left: -20px;
  animation: floatCard 5s ease-in-out infinite;
}

.why-card-float.card2 {
  bottom: 30px;
  right: -20px;
  animation: floatCard 5s ease-in-out infinite .5s;
}

@keyframes floatCard {

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

  50% {
    transform: translateY(-10px);
  }
}

.wc-emoji {
  font-size: 28px;
}

.why-card-float strong {
  display: block;
  font-weight: 700;
  font-size: 15px;
  color: var(--gray-800);
}

.why-card-float p {
  font-size: 12px;
  color: var(--gray-400);
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: 100px 0;
  background: var(--sky-50);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  order: 2;
}

.contact-form {
  order: 1;
}

.cinfo-card {
  background: var(--white);
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
  border: 1px solid var(--gray-100);
}

.cinfo-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.cinfo-icon-wa svg {
  width: 24px;
  height: 24px;
  color: #25D366;
}

.cinfo-card strong {
  display: block;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 6px;
}

.cinfo-card a,
.cinfo-card span {
  display: block;
  font-size: 15px;
  color: var(--gray-600);
  text-decoration: none;
  line-height: 1.6;
}

.cinfo-card a:hover {
  color: var(--blue);
}

.contact-form {
  background: var(--white);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
}

.contact-form h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 28px;
  color: var(--gray-900);
}

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

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 8px;
}

.phone-input-group {
  display: flex;
  align-items: center;
  position: relative;
}

.phone-input-group .country-code {
  position: absolute;
  left: 18px;
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-600);
  pointer-events: none;
  z-index: 2;
  font-family: var(--font-en);
}

.phone-input-group input {
  padding-left: 88px !important;
}

body.lang-ar .phone-input-group {
  direction: ltr;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 2px solid var(--gray-200);
  font-size: 15px;
  font-family: var(--font-en);
  color: var(--gray-800);
  background: var(--gray-50);
  transition: border-color .2s;
  outline: none;
  resize: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  background: var(--white);
}

.form-note {
  font-size: 14px;
  margin-top: 12px;
  text-align: center;
  color: var(--green);
  min-height: 20px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: linear-gradient(135deg, #1c1c1e 0%, #2c2c2e 60%, #3a3a3c 100%);
  color: rgba(255, 255, 255, .7);
  padding: 64px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand p {
  font-size: 15px;
  line-height: 1.7;
  margin-top: 16px;
}

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

.footer-brand .logo-ar {
  color: rgba(255, 255, 255, .5);
}

.footer h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

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

.footer-links li {
  font-size: 14px;
}

.footer-contact p {
  font-size: 14px;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}


.footer-contact .footer-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.85);
}

.footer-contact .footer-ico svg {
  display: block;
}

.footer-contact a {
  color: rgba(255, 255, 255, .7);
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--blue);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  text-align: center;
  padding: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, .4);
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, .4);
  transition: transform .25s, box-shadow .25s;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37, 211, 102, .55);
}

.wa-float svg {
  width: 32px;
  height: 32px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* ---- Tablet (≤1024px) ---- */
@media (max-width: 1024px) {
  .nav-inner {
    gap: 16px;
  }

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

  .why-visual {
    min-height: 280px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

/* ---- Mobile (≤768px) ---- */
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  /* --- Navbar --- */
  .nav-links {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1c1c1e 0%, #2c2c2e 100%);
    flex-direction: column;
    padding: 16px 20px 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .35);
    gap: 4px;
    z-index: 999;
  }

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

  .nav-links li {
    position: relative;
    padding-bottom: 4px;
    margin-bottom: 4px;
    list-style: none;
  }

  .nav-links li:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  }

  .nav-links a {
    display: block;
    color: rgba(255, 255, 255, .85);
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 16px;
    text-align: center;
  }

  .nav-links a:hover {
    background: rgba(255, 255, 255, .12);
    color: var(--white);
  }

  .hamburger {
    display: flex;
  }

  .btn-nav {
    display: none;
  }

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

  .lang-switch {
    padding: 8px 10px;
    margin-left: auto;
  }

  /* --- Hero --- */
  .hero-content {
    padding: 100px 0 80px;
    max-width: 100%;
  }

  .hero-badge {
    font-size: 12px;
    padding: 6px 14px;
    margin-bottom: 24px;
  }

  .hero-title {
    font-size: clamp(28px, 8vw, 48px);
  }

  .hero-sub {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .hero-cta {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    margin-bottom: 48px;
  }

  .hero-cta .btn {
    flex: 1;
    width: 100%;
    padding: 12px 12px;
    font-size: 14px;
    justify-content: center;
  }

  .hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    padding: 20px 24px;
    width: 100%;
    justify-content: space-around;
  }

  .stat-divider {
    display: none;
  }

  .stat-num {
    font-size: 26px;
  }

  /* --- Services --- */
  .services {
    padding: 72px 0;
  }

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

  .section-head {
    margin-bottom: 40px;
  }

  /* --- Why Us --- */
  .why-us {
    padding: 72px 0;
  }

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

  .why-text .section-title {
    text-align: center;
  }

  .why-text .section-tag {
    display: block;
    text-align: center;
  }

  .why-desc {
    font-size: 15px;
    margin: 20px 0 28px;
  }

  /* Hide decorative visual on mobile */
  .why-visual {
    display: none;
  }

  /* --- Contact --- */
  .contact {
    padding: 72px 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-form {
    padding: 28px 24px;
  }

  .contact-form h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  /* --- Footer --- */
  .footer {
    padding: 48px 0 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 32px;
  }

  /* --- WhatsApp Float --- */
  .wa-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }

  .wa-float svg {
    width: 26px;
    height: 26px;
  }
}

/* ---- Small Mobile (≤480px) ---- */
@media (max-width: 480px) {
  .container {
    padding: 0 24px;
  }

  .navbar {
    padding: 12px 0;
  }

  .nav-links {
    top: 62px;
  }

  .logo-img {
    height: 38px;
    width: 38px;
  }

  .logo-en {
    font-size: 15px;
  }

  .logo-ar {
    font-size: 11px;
  }

  .hero-content {
    padding: 90px 0 70px;
  }

  .hero-stats {
    flex-direction: column;
    align-items: center;
    padding: 20px;
    gap: 16px;
  }

  .stat-num {
    font-size: 28px;
  }

  .hero-cta .btn {
    padding: 12px 16px;
    font-size: 13px;
  }

  .services {
    padding: 60px 0;
  }

  .service-card-content {
    padding: 24px;
  }

  .service-img {
    height: 180px;
  }

  .why-us {
    padding: 60px 0;
  }

  .contact {
    padding: 60px 0;
  }

  .contact-form {
    padding: 24px 20px;
    border-radius: 16px;
  }

  .cinfo-card {
    padding: 16px 18px;
  }

  .btn-whatsapp {
    font-size: 15px;
    padding: 14px 20px;
  }

  .footer-bottom {
    font-size: 12px;
    padding: 16px;
  }
}

/* ---- Extra Small (≤360px) ---- */
@media (max-width: 360px) {
  .container {
    padding: 0 18px;
  }

  .hero-title {
    font-size: 26px;
  }

  .hero-badge {
    font-size: 11px;
  }

  .section-title {
    font-size: 24px;
  }

  .why-desc {
    font-size: 14px;
  }

  .cinfo-card {
    flex-direction: column;
    gap: 8px;
  }
}