/* ===========================================
   LABEBO CUSTOM STYLES - Complete Responsive
   =========================================== */

/* ============ CSS Variables ============ */
:root {
  --green-primary: #88C540;
  --green-secondary: #6B9F3C;
  --green-dark: #236324;
  --text: #333;
  --muted: #666;
  --card: #f8f9fa;
  --surface: #fff;
  --border: #e0e0e0;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.15);
  --gradient-primary: linear-gradient(135deg, #236324 0%, #88C540 100%);
  --ring: 0 0 0 3px rgba(136, 197, 64, 0.3);
}

/* ============ Navbar Base ============ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--green-dark);
  padding: 10px 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(35, 99, 36, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
}

.navbar__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0;
  gap: 20px;
}

/* ============ Responsive Logo ============ */
.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand__logo--large {
  height: 80px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  margin-top: 5px;
  margin-bottom: -20px;
  position: relative;
  z-index: 100;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2));
  transition: transform 0.3s ease;
}

.brand__logo--large:hover {
  transform: scale(1.03);
}

/* ============ Desktop Navigation ============ */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu__item a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  padding: 10px 5px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-menu__item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--green-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-menu__item a:hover::after {
  transform: scaleX(1);
}

/* ============ Actions Container ============ */
.actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* ============ Language Dropdown ============ */
.lang-dropdown {
  position: relative;
}

.lang-dropdown__trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 20px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lang-dropdown__trigger:hover {
  background: rgba(255,255,255,0.25);
}

.lang-dropdown__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 100px;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  overflow: hidden;
  z-index: 1001;
}

[dir="rtl"] .lang-dropdown__menu {
  right: auto;
  left: 0;
}

.lang-dropdown:hover .lang-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown__item {
  display: block;
  width: 100%;
  padding: 12px 16px;
  background: none;
  border: none;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lang-dropdown__item:hover {
  background: var(--card);
  color: var(--green-primary);
}

.lang-dropdown__item.active {
  background: var(--green-primary);
  color: #fff;
}

/* ============ Login Dropdown ============ */
.login-dropdown {
  position: relative;
}

.login-dropdown__trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--green-primary);
  color: #fff;
  border: none;
  border-radius: 25px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.login-dropdown__trigger:hover {
  background: var(--green-secondary);
  transform: translateY(-2px);
}

.login-dropdown__menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 220px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  overflow: hidden;
  z-index: 1001;
}

[dir="rtl"] .login-dropdown__menu {
  right: auto;
  left: 0;
}

.login-dropdown:hover .login-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.login-dropdown__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  color: var(--text);
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid var(--border);
}

.login-dropdown__item:last-child {
  border-bottom: none;
}

.login-dropdown__item:hover {
  background: var(--card);
  color: var(--green-primary);
}

.login-dropdown__item i {
  width: 20px;
  color: var(--green-primary);
}

/* ============ Mobile Menu Toggle Button ============ */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  z-index: 10001;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: rgba(255,255,255,0.2);
}

.mobile-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
  margin: 3px 0;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ============ Mobile Menu Overlay ============ */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #1a4d1a;
  background: linear-gradient(180deg, #1a4d1a 0%, #236324 50%, #2d7a2d 100%);
  z-index: 9999;
  padding-top: 100px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(100%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

[dir="rtl"] .mobile-menu {
  transform: translateX(-100%);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}

.mobile-menu__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 30px 20px;
  min-height: calc(100vh - 100px);
}

/* ============ Mobile Menu Links ============ */
.mobile-menu__link {
  display: block;
  width: 100%;
  max-width: 320px;
  padding: 18px 25px;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  background: rgba(255,255,255,0.08);
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu__link:hover,
.mobile-menu__link:active {
  background: rgba(255,255,255,0.18);
  transform: scale(1.02);
  border-color: rgba(255,255,255,0.3);
}

/* ============ Mobile Language Toggle ============ */
.mobile-lang-toggle {
  display: flex;
  gap: 10px;
  margin-top: 25px;
  padding: 8px;
  background: rgba(0,0,0,0.2);
  border-radius: 30px;
}

.mobile-lang-btn {
  padding: 14px 30px;
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-lang-btn:hover {
  color: #fff;
}

.mobile-lang-btn.active {
  background: var(--green-primary);
  color: #fff;
  box-shadow: 0 4px 15px rgba(136, 197, 64, 0.4);
}

/* ============ Mobile Login Links ============ */
.mobile-login-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 30px;
  width: 100%;
  max-width: 320px;
}

.mobile-login-links .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 25px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.mobile-login-links .btn--primary {
  background: var(--green-primary);
  color: #fff;
  border: none;
}

.mobile-login-links .btn--primary:hover {
  background: var(--green-secondary);
  transform: translateY(-2px);
}

.mobile-login-links .btn--secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
}

.mobile-login-links .btn--secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

/* ============ Hero Slider ============ */
.hero-slider {
  position: relative;
  height: 500px;
  min-height: 400px;
  max-height: 600px;
  overflow: hidden;
  margin-top: 80px;
}

.slider-container {
  position: relative;
  height: 100%;
}

.slides {
  position: relative;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(35, 99, 36, 0.8) 0%, rgba(136, 197, 64, 0.4) 100%);
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
  max-width: 700px;
  padding: 0 25px;
  width: 100%;
}

.hero-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 35px;
  opacity: 0.95;
  text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.slider-nav {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 10;
}

.slider-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background: var(--green-primary);
  border-color: var(--green-primary);
  transform: scale(1.1);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--green-primary);
  transform: scale(1.3);
}

.dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn--primary {
  background: var(--green-primary);
  color: #fff;
}

.btn--primary:hover {
  background: var(--green-secondary);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(136, 197, 64, 0.4);
}

.btn--secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
}

.btn--secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}

.btn--whatsapp {
  background: #25D366;
  color: #fff;
}

.btn--whatsapp:hover {
  background: #1da851;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* ============ Sections ============ */
.section {
  padding: 80px 0;
}

.section--alt {
  background: var(--card);
}

.section__head {
  text-align: center;
  margin-bottom: 50px;
}

.section__head h2 {
  font-size: 2.2rem;
  color: var(--green-dark);
  margin-bottom: 15px;
}

.section__head .muted {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ============ Cards ============ */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.card {
  background: #fff;
  padding: 35px 30px;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.card__icon-wrap {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card__icon {
  font-size: 2rem;
}

.card__icon-fa {
  font-size: 1.8rem;
  color: #fff;
}

.card__title {
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 12px;
}

.card__text {
  color: var(--muted);
  line-height: 1.7;
}

/* ============ Specialization Cards ============ */
.spec-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.spec-cards .card {
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
}

.spec-cards .card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.spec-cards .card:hover::before {
  transform: scaleX(1);
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-primary);
  font-weight: 600;
  margin-top: 15px;
  transition: gap 0.3s ease;
}

.card:hover .card__link {
  gap: 15px;
}

/* ============ Steps ============ */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.step {
  text-align: center;
  padding: 30px 20px;
}

.step__number {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0 auto 20px;
}

.step h3 {
  color: var(--text);
  margin-bottom: 10px;
}

.step p {
  color: var(--muted);
  line-height: 1.6;
}

/* ============ Video ============ */
.video {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.video iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
}

/* ============ Team ============ */
.team {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.team-member {
  text-align: center;
  padding: 30px;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.team-member__photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 4px solid var(--green-primary);
}

.team-member__name {
  color: var(--text);
  margin-bottom: 5px;
}

.team-member__role {
  color: var(--green-primary);
  font-weight: 500;
  margin-bottom: 10px;
}

.team-member__bio {
  color: var(--muted);
  font-size: 0.95rem;
}

/* ============ CTA Section ============ */
.cta-section {
  padding: 80px 0;
  background: var(--gradient-primary);
  text-align: center;
}

.cta-section__title {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 15px;
}

.cta-section__text {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.cta-section__buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============ Footer ============ */
.footer {
  background: var(--green-dark);
  color: #fff;
  padding: 60px 0 30px;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer__section h3 {
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer__section p {
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
}

.footer__links {
  list-style: none;
  padding: 0;
}

.footer__links li {
  margin-bottom: 12px;
}

.footer__links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__links a:hover {
  color: var(--green-primary);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item:hover {
  color: var(--green-primary);
}

.contact-item i {
  width: 20px;
  color: var(--green-primary);
}

.footer__bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
}

/* ============ Social Links ============ */
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 18px;
  transition: all 0.3s ease;
}

.social-link:hover {
  transform: translateY(-4px);
}

.social-link:nth-child(1):hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-link:nth-child(2):hover {
  background: #FF0000;
}

.social-link:nth-child(3):hover {
  background: #1877F2;
}

/* ============ Floating WhatsApp ============ */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
}

[dir="rtl"] .whatsapp-float {
  right: auto;
  left: 25px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

/* ============ Page Hero (Sub Pages) ============ */
.page-hero {
  position: relative;
  padding: 150px 0 80px;
  background: var(--gradient-primary);
  text-align: center;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="70" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
  background-size: 100px 100px;
}

.page-hero h1 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 15px;
  position: relative;
}

.page-hero p {
  color: rgba(255,255,255,0.9);
  font-size: 1.15rem;
  position: relative;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  position: relative;
}

.breadcrumb a,
.breadcrumb span {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}

.breadcrumb a:hover {
  color: #fff;
}

.breadcrumb i {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
}

/* ============ Service Detail Page ============ */
.service-detail {
  padding: 70px 0;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 50px;
}

.service-content {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.content-block h2 {
  font-size: 1.7rem;
  color: var(--green-dark);
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 3px solid var(--green-primary);
  display: inline-block;
}

.content-block p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 15px;
}

/* Conditions Grid */
.conditions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 25px;
}

.condition-item {
  background: var(--card);
  padding: 25px;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.condition-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.condition-icon {
  width: 55px;
  height: 55px;
  background: var(--gradient-primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.condition-icon i {
  font-size: 1.4rem;
  color: #fff;
}

.condition-item h4 {
  color: var(--text);
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.condition-item p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}

/* Approach Steps */
.approach-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 25px;
}

.approach-step {
  display: flex;
  gap: 20px;
  padding: 22px;
  background: var(--card);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.approach-step:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-sm);
}

[dir="rtl"] .approach-step:hover {
  transform: translateX(-8px);
}

.step-num {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--green-primary);
  opacity: 0.3;
  line-height: 1;
}

.approach-step h4 {
  color: var(--text);
  margin-bottom: 6px;
}

.approach-step p {
  color: var(--muted);
  margin: 0;
}

/* Benefit List */
.benefit-list {
  list-style: none;
  margin-top: 20px;
  padding: 0;
}

.benefit-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.benefit-list li i {
  color: var(--green-primary);
}

/* Sidebar */
.service-sidebar {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.sidebar-card {
  background: var(--card);
  padding: 28px;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}

.sidebar-card h3 {
  color: var(--text);
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.sidebar-card p {
  color: var(--muted);
  margin-bottom: 18px;
  line-height: 1.6;
}

.sidebar-card .btn {
  width: 100%;
  justify-content: center;
}

.service-links {
  list-style: none;
  padding: 0;
}

.service-links li {
  margin-bottom: 10px;
}

.service-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: var(--surface);
  border-radius: 12px;
  color: var(--text);
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-links a:hover {
  background: var(--green-primary);
  color: #fff;
  transform: translateX(5px);
}

[dir="rtl"] .service-links a:hover {
  transform: translateX(-5px);
}

.service-links a i {
  color: var(--green-primary);
  width: 20px;
}

.service-links a:hover i {
  color: #fff;
}

/* ============ Contact Page ============ */
.contact-section {
  padding: 70px 0;
}

.contact-grid-page {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 50px;
}

.contact-card-large {
  background: var(--card);
  padding: 35px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  display: block;
}

.contact-card-large:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.contact-card-large .contact-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
}

.contact-card-large .contact-icon.whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
}

.contact-card-large .contact-icon.phone {
  background: var(--gradient-primary);
  color: #fff;
}

.contact-card-large .contact-icon.email {
  background: linear-gradient(135deg, #EA4335, #C5221F);
  color: #fff;
}

.contact-card-large h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--text);
}

.contact-card-large p {
  color: var(--muted);
  margin-bottom: 12px;
}

/* Contact Form */
.contact-form-section {
  background: var(--card);
  padding: 50px;
  border-radius: 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  font-weight: 500;
  color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #fff;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--green-primary);
  box-shadow: var(--ring);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

/* ============ Animations ============ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
  animation-play-state: paused;
}

.animate-on-scroll.animate-delay-1 { animation-delay: 0.1s; }
.animate-on-scroll.animate-delay-2 { animation-delay: 0.2s; }
.animate-on-scroll.animate-delay-3 { animation-delay: 0.3s; }
.animate-on-scroll.animate-delay-4 { animation-delay: 0.4s; }
.animate-on-scroll.animate-delay-5 { animation-delay: 0.5s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============ Container ============ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============ i18n Language Display ============ */
.i18n { display: none; }
[lang="en"] .i18n--en { display: block; }
[lang="en"] .i18n--en.inline { display: inline; }
[lang="ar"] .i18n--ar { display: block; }
[lang="ar"] .i18n--ar.inline { display: inline; }

/* ===========================================
   RESPONSIVE BREAKPOINTS
   =========================================== */

/* ============ Large Tablets & Small Laptops ============ */
@media (max-width: 1024px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
  
  .service-sidebar {
    order: -1;
  }
  
  .conditions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero-content h1 {
    font-size: 2.4rem;
  }
  
  .section__head h2 {
    font-size: 2rem;
  }
}

/* ============ Tablets ============ */
@media (max-width: 900px) {
  .nav-menu,
  .login-dropdown,
  .lang-dropdown {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .brand__logo--large {
    height: 65px;
    max-width: 150px;
    margin-bottom: -15px;
  }
  
  .hero-slider {
    height: 450px;
    margin-top: 70px;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.05rem;
  }
  
  .contact-grid-page {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .section {
    padding: 60px 0;
  }
}

/* ============ Mobile ============ */
@media (max-width: 768px) {
  .brand__logo--large {
    height: 55px;
    max-width: 130px;
    margin-bottom: -12px;
  }
  
  .navbar {
    padding: 8px 0;
  }
  
  .hero-slider {
    height: 420px;
    min-height: 380px;
    margin-top: 65px;
  }
  
  .hero-content {
    padding: 0 20px;
  }
  
  .hero-content h1 {
    font-size: 1.9rem;
    margin-bottom: 15px;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 25px;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 12px;
    padding: 0 30px;
  }
  
  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }
  
  .slider-nav {
    bottom: 15px;
  }
  
  .slider-btn {
    width: 38px;
    height: 38px;
  }
  
  .section {
    padding: 50px 0;
  }
  
  .section__head h2 {
    font-size: 1.7rem;
  }
  
  .section__head .muted {
    font-size: 1rem;
  }
  
  .cards {
    grid-template-columns: 1fr;
  }
  
  .spec-cards {
    grid-template-columns: 1fr;
  }
  
  .steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .team {
    grid-template-columns: 1fr;
  }
  
  .conditions-grid {
    grid-template-columns: 1fr;
  }
  
  .approach-step {
    flex-direction: column;
    gap: 15px;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .form-group.full-width {
    grid-column: span 1;
  }
  
  .contact-form-section {
    padding: 30px 20px;
  }
  
  .page-hero {
    padding: 130px 0 60px;
  }
  
  .page-hero h1 {
    font-size: 2rem;
  }
  
  .cta-section {
    padding: 60px 0;
  }
  
  .cta-section__title {
    font-size: 1.7rem;
  }
  
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .footer__contact {
    align-items: center;
  }
  
  .whatsapp-float {
    width: 52px;
    height: 52px;
    font-size: 26px;
    bottom: 20px;
    right: 20px;
  }
  
  [dir="rtl"] .whatsapp-float {
    right: auto;
    left: 20px;
  }
}

/* ============ Small Mobile ============ */
@media (max-width: 480px) {
  .brand__logo--large {
    height: 48px;
    max-width: 110px;
    margin-bottom: -10px;
  }
  
  .mobile-menu-toggle {
    width: 40px;
    height: 40px;
  }
  
  .hero-slider {
    height: 400px;
    min-height: 350px;
    margin-top: 60px;
  }
  
  .hero-content h1 {
    font-size: 1.6rem;
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  
  .btn {
    padding: 12px 22px;
    font-size: 14px;
  }
  
  .section__head h2 {
    font-size: 1.5rem;
  }
  
  .card {
    padding: 25px 20px;
  }
  
  .page-hero {
    padding: 120px 0 50px;
  }
  
  .page-hero h1 {
    font-size: 1.7rem;
  }
  
  .page-hero p {
    font-size: 1rem;
  }
  
  .content-block h2 {
    font-size: 1.4rem;
  }
  
  .sidebar-card {
    padding: 22px;
  }
  
  .mobile-menu__link {
    padding: 15px 20px;
    font-size: 1rem;
  }
  
  .mobile-lang-btn {
    padding: 12px 22px;
    font-size: 0.95rem;
  }
  
  .cta-section__title {
    font-size: 1.5rem;
  }
  
  .footer {
    padding: 50px 0 25px;
  }
}

/* ============ Extra Small Mobile ============ */
@media (max-width: 360px) {
  .brand__logo--large {
    height: 42px;
    max-width: 95px;
  }
  
  .hero-content h1 {
    font-size: 1.4rem;
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
  }
  
  .section__head h2 {
    font-size: 1.35rem;
  }
  
  .mobile-menu__link {
    padding: 12px 15px;
    font-size: 0.95rem;
  }
}
/* ===========================================
   LABEBO - MOBILE MENU FIX
   Add this at the END of your custom.css
   =========================================== */

/* ============ FORCE HIDE DESKTOP ELEMENTS ON MOBILE ============ */
@media (max-width: 900px) {
  .nav-menu,
  .login-dropdown,
  .lang-dropdown {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }
  
  .mobile-menu-toggle {
    display: flex !important;
  }
}

/* ============ MOBILE MENU - COMPLETE OVERRIDE ============ */
.mobile-menu {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: #1a4d1a !important;
  background: linear-gradient(180deg, #0d2e0d 0%, #1a4d1a 30%, #236324 70%, #2d7a2d 100%) !important;
  z-index: 99999 !important;
  padding: 0 !important;
  margin: 0 !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-100%);
  transition: all 0.4s ease;
  overflow-y: auto !important;
  overflow-x: hidden !important;
}

[dir="rtl"] .mobile-menu {
  transform: translateY(-100%);
}

.mobile-menu.active {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateY(0) !important;
}

/* ============ MOBILE MENU CONTENT ============ */
.mobile-menu__content {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 15px !important;
  padding: 120px 25px 40px 25px !important;
  min-height: 100vh !important;
  box-sizing: border-box !important;
}

/* ============ MOBILE MENU LINKS ============ */
.mobile-menu__link {
  display: block !important;
  width: 100% !important;
  max-width: 300px !important;
  padding: 18px 30px !important;
  margin: 0 !important;
  color: #ffffff !important;
  font-size: 1.15rem !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  text-align: center !important;
  background: rgba(255, 255, 255, 0.12) !important;
  border: 2px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 50px !important;
  transition: all 0.3s ease !important;
  box-sizing: border-box !important;
}

.mobile-menu__link:hover,
.mobile-menu__link:active,
.mobile-menu__link:focus {
  background: rgba(255, 255, 255, 0.25) !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
  transform: scale(1.03) !important;
  color: #ffffff !important;
}

/* ============ MOBILE LANGUAGE TOGGLE ============ */
.mobile-lang-toggle {
  display: flex !important;
  flex-direction: row !important;
  gap: 0 !important;
  margin-top: 30px !important;
  margin-bottom: 20px !important;
  padding: 6px !important;
  background: rgba(0, 0, 0, 0.3) !important;
  border-radius: 50px !important;
  border: 2px solid rgba(255, 255, 255, 0.15) !important;
}

.mobile-lang-btn {
  padding: 14px 35px !important;
  margin: 0 !important;
  border: none !important;
  background: transparent !important;
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  border-radius: 50px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
}

.mobile-lang-btn:hover {
  color: #ffffff !important;
}

.mobile-lang-btn.active {
  background: #88C540 !important;
  color: #ffffff !important;
  box-shadow: 0 4px 20px rgba(136, 197, 64, 0.5) !important;
}

/* ============ MOBILE LOGIN LINKS ============ */
.mobile-login-links {
  display: flex !important;
  flex-direction: column !important;
  gap: 15px !important;
  margin-top: 25px !important;
  width: 100% !important;
  max-width: 300px !important;
  padding: 0 !important;
}

.mobile-login-links .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  width: 100% !important;
  padding: 18px 30px !important;
  font-size: 1.05rem !important;
  font-weight: 600 !important;
  border-radius: 50px !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  box-sizing: border-box !important;
}

.mobile-login-links .btn--primary {
  background: #88C540 !important;
  color: #ffffff !important;
  border: none !important;
  box-shadow: 0 6px 25px rgba(136, 197, 64, 0.4) !important;
}

.mobile-login-links .btn--primary:hover,
.mobile-login-links .btn--primary:active {
  background: #6B9F3C !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 10px 35px rgba(136, 197, 64, 0.5) !important;
}

.mobile-login-links .btn--secondary {
  background: transparent !important;
  color: #ffffff !important;
  border: 2px solid rgba(255, 255, 255, 0.4) !important;
}

.mobile-login-links .btn--secondary:hover,
.mobile-login-links .btn--secondary:active {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: #ffffff !important;
}

/* ============ MOBILE MENU TOGGLE BUTTON ============ */
.mobile-menu-toggle {
  display: none;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  width: 48px !important;
  height: 48px !important;
  padding: 12px !important;
  background: rgba(255, 255, 255, 0.15) !important;
  border: 2px solid rgba(255, 255, 255, 0.25) !important;
  border-radius: 12px !important;
  cursor: pointer !important;
  z-index: 999999 !important;
  position: relative !important;
  transition: all 0.3s ease !important;
}

.mobile-menu-toggle:hover {
  background: rgba(255, 255, 255, 0.25) !important;
}

.mobile-menu-toggle span {
  display: block !important;
  width: 24px !important;
  height: 3px !important;
  background: #ffffff !important;
  border-radius: 3px !important;
  transition: all 0.3s ease !important;
  margin: 3px 0 !important;
}

.mobile-menu-toggle.active {
  background: rgba(255, 255, 255, 0.2) !important;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px) !important;
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0 !important;
  transform: translateX(-15px) !important;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px) !important;
}

/* ============ NAVBAR ADJUSTMENTS ============ */
@media (max-width: 900px) {
  .navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 100000 !important;
    background: #236324 !important;
    padding: 10px 0 !important;
  }
  
  .navbar__row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 5px 15px !important;
  }
  
  .brand__logo--large {
    height: 55px !important;
    width: auto !important;
    max-width: 130px !important;
  }
  
  .actions {
    display: flex !important;
    align-items: center !important;
  }
}

/* ============ SMALL MOBILE ADJUSTMENTS ============ */
@media (max-width: 480px) {
  .mobile-menu__content {
    padding: 110px 20px 30px 20px !important;
    gap: 12px !important;
  }
  
  .mobile-menu__link {
    padding: 16px 25px !important;
    font-size: 1.05rem !important;
    max-width: 280px !important;
  }
  
  .mobile-lang-toggle {
    margin-top: 25px !important;
  }
  
  .mobile-lang-btn {
    padding: 12px 28px !important;
    font-size: 0.95rem !important;
  }
  
  .mobile-login-links .btn {
    padding: 16px 25px !important;
    font-size: 1rem !important;
  }
  
  .brand__logo--large {
    height: 48px !important;
    max-width: 110px !important;
  }
  
  .mobile-menu-toggle {
    width: 44px !important;
    height: 44px !important;
  }
}

/* ============ EXTRA SMALL MOBILE ============ */
@media (max-width: 360px) {
  .mobile-menu__content {
    padding: 100px 15px 25px 15px !important;
    gap: 10px !important;
  }
  
  .mobile-menu__link {
    padding: 14px 20px !important;
    font-size: 1rem !important;
    max-width: 260px !important;
  }
  
  .mobile-lang-btn {
    padding: 10px 22px !important;
  }
  
  .mobile-login-links .btn {
    padding: 14px 20px !important;
    font-size: 0.95rem !important;
  }
  
  .brand__logo--large {
    height: 42px !important;
    max-width: 95px !important;
  }
}

/* ============ ENSURE PROPER Z-INDEX STACKING ============ */
.navbar {
  z-index: 100000 !important;
}

.mobile-menu {
  z-index: 99999 !important;
}

.mobile-menu-toggle {
  z-index: 999999 !important;
}

.whatsapp-float {
  z-index: 99998 !important;
}