@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Noto+Kufi+Arabic:wght@300;400;500;600;700;800&display=swap');

/* --- Design System & CSS Variables --- */
:root {
  --primary-color: #1e4620;        /* Logo Dark Green */
  --secondary-color: #59a537;      /* Logo Light Green */
  --accent-color: #8bc34a;         /* Vibrant Lime Green */
  --bg-primary: #ffffff;           /* Plain White Background */
  --bg-secondary: #f7faf7;         /* Very Light Greenish/Gray for section alternate */
  --text-primary: #1c221e;         /* Dark Slate Greenish Gray for body text */
  --text-muted: #626d66;           /* Gray for descriptions */
  --border-color: #e2e8e3;         /* Subtle gray border */
  --success-color: #2e7d32;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 30px rgba(30, 70, 32, 0.06);
  --shadow-lg: 0 20px 40px rgba(30, 70, 32, 0.1);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Fonts */
  --font-en: 'Inter', sans-serif;
  --font-ar: 'Noto Kufi Arabic', sans-serif;
  --font-family: var(--font-en);
}

html[lang="ar"],
html[dir="rtl"] {
  --font-family: var(--font-ar);
}

html[dir="ltr"] {
  direction: ltr;
}

html[dir="rtl"] {
  direction: rtl;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

/* --- Preloader --- */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.preloader-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid var(--border-color);
  border-top-color: var(--secondary-color);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.preloader img {
  height: 60px;
  animation: pulse-soft 2s infinite ease-in-out;
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}

/* --- Scroll Reveal Animations --- */
.reveal {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up {
  transform: translateY(50px);
}

.reveal-left {
  transform: translateX(-50px);
}

.reveal-right {
  transform: translateX(50px);
}

.reveal-zoom {
  transform: scale(0.92);
}

.reveal.active {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

/* Delay Utilites */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

/* --- Layout Containers --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6rem 0;
  position: relative;
}

.section-bg {
  background-color: var(--bg-secondary);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-subtitle {
  color: var(--secondary-color);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.section-description {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* --- Buttons & UI Elements --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  transition: var(--transition);
  cursor: pointer;
  gap: 0.6rem;
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-100%);
  transition: var(--transition);
  z-index: -1;
}

.btn:hover::before {
  transform: translateX(0);
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(30, 70, 32, 0.15);
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(89, 165, 55, 0.25);
}

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

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(30, 70, 32, 0.15);
}

.btn-whatsapp {
  background-color: #25d366;
  color: var(--white);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.15);
}

.btn-whatsapp:hover {
  background-color: #20ba5a;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25);
}

.btn-phone {
  background-color: #007bff;
  color: var(--white);
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.15);
}

.btn-phone:hover {
  background-color: #0069d9;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 123, 255, 0.25);
}

.btn-sm {
  padding: 0.55rem 1.2rem;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

/* --- Header & Navigation --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgb(255 255 255);
  border-bottom: 1px solid var(--border-color);
  backdrop-filter: blur(12px);
  transition: var(--transition);
}

.header.sticky {
  box-shadow: var(--shadow-sm);
  padding: 0.2rem 0;
  background-color: rgba(255, 255, 255, 0.96);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  transition: var(--transition);
}

.header.sticky .nav-container {
  height: 70px;
}

.logo-wrapper {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 56px;
  width: auto;
  transition: var(--transition);
}

.header.sticky .logo-img {
  height: 46px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  transition: var(--transition);
  transform: translateX(-50%);
}

.nav-link:hover {
  color: var(--secondary-color);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  font-weight: 700;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-sm);
  background-color: transparent;
  transition: var(--transition);
  text-decoration: none;
}

.lang-btn:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: scale(1.05);
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--primary-color);
  cursor: pointer;
  background: none;
  border: none;
  transition: var(--transition);
}

.menu-toggle:hover {
  transform: scale(1.1);
}

/* --- Hero Section & Animated Background Blobs --- */
.hero {
  padding: 11rem 0 7rem;
  background-color: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

/* Decorative morphing background blobs */
.hero-blob {
  position: absolute;
  background: radial-gradient(circle, rgba(89, 165, 55, 0.08) 0%, rgba(30, 70, 32, 0.01) 70%);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
  animation: morph 12s ease-in-out infinite alternate;
}

.blob-1 {
  top: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
}

.blob-2 {
  bottom: 5%;
  left: -8%;
  width: 400px;
  height: 400px;
  animation-delay: -4s;
  background: radial-gradient(circle, rgba(30, 70, 32, 0.06) 0%, rgba(89, 165, 55, 0.01) 70%);
}

@keyframes morph {
  0% { border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%; transform: translate(0, 0) scale(1); }
  50% { border-radius: 60% 40% 40% 60% / 60% 60% 40% 40%; transform: translate(40px, -30px) scale(1.15); }
  100% { border-radius: 45% 55% 50% 50% / 50% 45% 55% 50%; transform: translate(-20px, 10px) scale(0.95); }
}

/* --- Hero Content Overlay & Slider --- */
.hero {
  height: 780px;
  min-height: 650px;
  background-color: var(--bg-primary);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  padding-top: 160px;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), visibility 1s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.slide img,
.slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 1) 35%, rgba(255, 255, 255, 0.75) 55%, rgba(255, 255, 255, 0.15) 100%);
  z-index: 3;
  pointer-events: none;
}

html[dir="ltr"] .slider-overlay {
  background: linear-gradient(to right, rgba(255, 255, 255, 1) 35%, rgba(255, 255, 255, 0.75) 55%, rgba(255, 255, 255, 0.15) 100%);
}

html[dir="rtl"] .slider-overlay {
  background: linear-gradient(to left, rgba(255, 255, 255, 1) 35%, rgba(255, 255, 255, 0.75) 55%, rgba(255, 255, 255, 0.15) 100%);
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.slider-btn:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-50%) scale(1.08);
}

.prev-btn {
  left: 2rem;
  right: auto;
}

.next-btn {
  right: 2rem;
  left: auto;
}

/* RTL adjustment for controls */
html[dir="rtl"] .prev-btn {
  left: auto;
  right: 2rem;
}
html[dir="rtl"] .next-btn {
  right: auto;
  left: 2rem;
}

html[dir="ltr"] .prev-btn {
  left: 2rem;
  right: auto;
}
html[dir="ltr"] .next-btn {
  right: 2rem;
  left: auto;
}

.slider-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 10;
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.dot.active {
  background-color: var(--primary-color);
  transform: scale(1.3);
  box-shadow: 0 0 8px rgba(89, 165, 55, 0.6);
  border-color: var(--primary-color);
}

.hero-container {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  pointer-events: none;
  width: 100%;
}

.hero-content {
  pointer-events: auto;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  text-align: start;
  align-items: flex-start;
}

html[dir="ltr"] .hero-content {
  text-align: left;
  align-items: flex-start;
}

html[dir="rtl"] .hero-content {
  text-align: right;
  /* In RTL the flex cross axis starts from the right, so flex-start = right */
  align-items: flex-start;
}

.hero-badge {
  align-self: flex-start;
  background-color: rgba(89, 165, 55, 0.1);
  color: var(--secondary-color);
  padding: 0.45rem 1.1rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(89, 165, 55, 0.15);
  animation: pulse-soft 3s infinite ease-in-out;
}

html[dir="rtl"] .hero-badge {
  align-self: flex-start;
}

.hero-title {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-title span {
  color: var(--secondary-color);
  position: relative;
  display: inline-block;
}

.hero-title span::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: rgba(89, 165, 55, 0.12);
  z-index: -1;
  border-radius: 4px;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero-trust-badges {
  display: flex;
  gap: 2.5rem;
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  transition: var(--transition);
}

.trust-item:hover {
  transform: translateY(-2px);
}

.trust-icon-box {
  width: 48px;
  height: 48px;
  background-color: var(--bg-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  font-size: 1.2rem;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.trust-item:hover .trust-icon-box {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

.trust-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-color);
}

.trust-text p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-floating-card {
  position: absolute;
  bottom: 10%;
  right: 5%;
  left: auto;
  pointer-events: auto;
  background: var(--white);
  padding: 1.1rem 1.6rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border: 1px solid var(--border-color);
  animation: float-slow 4s ease-in-out infinite alternate;
  z-index: 5;
  text-decoration: none;
  color: inherit;
}

html[dir="rtl"] .hero-floating-card {
  right: auto;
  left: 5%;
}

html[dir="ltr"] .hero-floating-card {
  right: 5%;
  left: auto;
}

.floating-card-icon {
  width: 42px;
  height: 42px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  animation: pulse-soft 2s infinite;
}

.floating-card-info h5 {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--primary-color);
}

.floating-card-info p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.floating-card-info .phone-ltr {
  direction: ltr;
  unicode-bidi: isolate;
  text-align: start;
}

/* --- Features Grid Section --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background-color: var(--white);
  padding: 2.75rem 2.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--secondary-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

html[dir="rtl"] .feature-card::before {
  transform-origin: right;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(89, 165, 55, 0.25);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon-box {
  width: 64px;
  height: 64px;
  background-color: var(--bg-secondary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.6rem;
  margin-bottom: 1.75rem;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.feature-icon-box img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.feature-card:hover .feature-icon-box {
  background-color: #ffffff;
  color: var(--white);
  border-color: var(--primary-color);
  transform: scale(1.05) rotate(5deg);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.85rem;
}

.feature-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- Services Section --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(89, 165, 55, 0.25);
}

.service-img-container {
  height: 230px;
  overflow: hidden;
  position: relative;
}

.service-img-container .service-bg-icon {
  font-size: 5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--primary-color);
  opacity: 0.15;
  transition: var(--transition);
  z-index: 1;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
  position: relative;
  z-index: 0;
  filter: opacity(0.85) grayscale(0.1);
}

.service-card:hover .service-img {
  transform: scale(1.08);
}

.service-img-overlay {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 0.3rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
  z-index: 2;
}

html[dir="rtl"] .service-img-overlay {
  right: auto;
  left: 1.25rem;
}

.service-card:hover .service-img-container i {
  animation: shake 0.6s ease;
}

@keyframes shake {
  0%, 100% { transform: translate(-50%, -50%) rotate(0); }
  20%, 60% { transform: translate(-50%, -50%) rotate(-10deg); }
  40%, 80% { transform: translate(-50%, -50%) rotate(10deg); }
}

.service-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.85rem;
}

.service-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
  flex-grow: 1;
  line-height: 1.7;
}

.service-link {
  font-weight: 700;
  color: var(--secondary-color);
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.service-link svg {
  transition: var(--transition);
}

.service-card:hover .service-link svg {
  transform: translateX(5px);
}

html[dir="rtl"] .service-card:hover .service-link svg {
  transform: translateX(-5px);
}

/* --- About & Benefits Section --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  width: 90%;
  height: 480px;
  object-fit: cover;
  transition: var(--transition);
}

.about-images:hover .about-img-main {
  transform: scale(1.02);
}

.about-img-badge {
  position: absolute;
  bottom: -4%;
  right: 0;
  background-color: var(--white);
  padding: 2.25rem 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  text-align: center;
  border: 1px solid var(--border-color);
  max-width: 200px;
  animation: float-slow 4s ease-in-out infinite alternate-reverse;
}

html[dir="rtl"] .about-img-badge {
  right: auto;
  left: 0;
}

.about-badge-num {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.about-badge-text {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.4;
}

.about-bullets {
  margin: 2.25rem 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.about-bullet {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  transition: var(--transition);
}

.about-bullet:hover {
  transform: translateY(-2px);
}

.bullet-icon {
  color: var(--secondary-color);
  font-size: 1.3rem;
  margin-top: 0.1rem;
}

.bullet-text h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.3rem;
}

.bullet-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- Workflow / Process Section --- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 15%;
  width: 70%;
  height: 2px;
  background-color: var(--border-color);
  z-index: 1;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 2;
}

.process-step-num {
  width: 68px;
  height: 68px;
  background-color: var(--white);
  border: 3px solid var(--secondary-color);
  color: var(--primary-color);
  font-size: 1.6rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.process-step:hover .process-step-num {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
  transform: scale(1.15) rotate(360deg);
}

.process-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.6rem;
}

.process-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 250px;
  margin: 0 auto;
  line-height: 1.6;
}

/* --- Interactive FAQ Section --- */
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.faq-item {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-header {
  padding: 1.4rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 700;
  color: var(--primary-color);
  transition: var(--transition);
}

.faq-header:hover {
  background-color: var(--bg-secondary);
}

.faq-icon {
  font-size: 1.1rem;
  transition: var(--transition);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
  padding: 0 1.75rem;
}

.faq-item.active {
  border-color: var(--secondary-color);
  box-shadow: var(--shadow-sm);
}

.faq-item.active .faq-header {
  background-color: var(--bg-secondary);
  color: var(--secondary-color);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-item.active .faq-content {
  max-height: 200px;
  padding-bottom: 1.75rem;
  padding-top: 0.5rem;
}

.faq-answer {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- Contact & Request Quote Section --- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.11fr;
  gap: 4rem;
  align-items: start;
}

/* Full-width section image below the contact form/info (contact page) */
.contact-section-image {
  margin-top: 4rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.contact-section-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.contact-info-card {
  background-color: var(--white);
  padding: 3rem 2.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.contact-info-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.contact-info-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2.25rem;
  line-height: 1.6;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-bottom: 2.25rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  transition: var(--transition);
}

.contact-method:hover {
  transform: translateX(4px);
}

html[dir="rtl"] .contact-method:hover {
  transform: translateX(-4px);
}

.method-icon-box {
  width: 50px;
  height: 50px;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  font-size: 1.3rem;
  transition: var(--transition);
}

.contact-method:hover .method-icon-box {
  background-color: var(--secondary-color);
  color: var(--white);
  border-color: var(--secondary-color);
}

.method-text h5 {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  margin-bottom: 0.15rem;
}

.method-text p {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-color);
}

.contact-social h5 {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
  letter-spacing: 0.02em;
}

.social-links {
  display: flex;
  gap: 0.85rem;
}

.social-link {
  width: 44px;
  height: 44px;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
  transform: translateY(-3px) rotate(360deg);
}

.contact-form-container {
  background-color: var(--white);
  padding: 3.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  position: relative;
  transition: var(--transition);
}

.contact-form-container:hover {
  box-shadow: var(--shadow-lg);
}

.form-group-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

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

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--primary-color);
  margin-bottom: 0.6rem;
}

.form-control {
  width: 100%;
  padding: 0.95rem 1.25rem;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--secondary-color);
  background-color: var(--white);
  box-shadow: 0 0 0 4px rgba(89, 165, 55, 0.12);
}

textarea.form-control {
  height: 130px;
  resize: none;
}

.form-success-message {
  display: none;
  background-color: rgba(46, 125, 50, 0.08);
  color: var(--success-color);
  padding: 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2rem;
  border: 1px solid rgba(46, 125, 50, 0.15);
  text-align: center;
  animation: pulse-soft 2s infinite ease-in-out;
}

/* --- Testimonials Section --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background-color: var(--white);
  padding: 3rem 2.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(89, 165, 55, 0.25);
}

.testimonial-rating {
  color: #ffc107;
  font-size: 1.1rem;
  display: flex;
  gap: 0.25rem;
}

.testimonial-quote {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
}

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

.author-avatar-img {
  object-fit: cover;
}

.testimonial-card:hover .author-avatar {
  background-color: var(--secondary-color);
  transform: scale(1.05) rotate(360deg);
}

.author-info h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--primary-color);
}

.author-info p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* --- Footer --- */
.footer {
  background-color: var(--bg-secondary);
  color: var(--text-primary);
  padding: 6rem 0 2rem;
  border-top: 1px solid var(--border-color);
  font-size: 0.95rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.footer-logo-img {
  height: 56px;
  width: auto;
  align-self: flex-start;
  transition: var(--transition);
}

.footer-logo-img:hover {
  transform: scale(1.05);
}

.footer h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 1.75rem;
  position: relative;
  padding-bottom: 0.6rem;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--secondary-color);
}

html[dir="rtl"] .footer h4::after {
  left: auto;
  right: 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.footer-link:hover {
  color: var(--secondary-color);
  padding-left: 0.4rem;
}

html[dir="rtl"] .footer-link:hover {
  padding-left: 0;
  padding-right: 0.4rem;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.footer-contact-item svg {
  color: var(--secondary-color);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-social-links {
  display: flex;
  gap: 1rem;
}

/* --- Floating Call to Action Buttons --- */
.floating-actions {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  z-index: 999;
}

html[dir="rtl"] .floating-actions {
  right: auto;
  left: 2rem;
}

.floating-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  font-size: 1.7rem;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.floating-btn:hover {
  transform: scale(1.12) translateY(-4px);
}

.floating-whatsapp {
  background-color: #25d366;
}

.floating-phone {
  background-color: #007bff;
}

.floating-btn .tooltip {
  position: absolute;
  right: 74px;
  background-color: var(--primary-color);
  color: white;
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

html[dir="rtl"] .floating-btn .tooltip {
  right: auto;
  left: 74px;
}

.floating-btn:hover .tooltip {
  opacity: 1;
}

/* --- Responsive Adaptations --- */

@media (max-width: 1024px) {
  .hero {
    height: auto;
    min-height: 100vh;
    padding: 9rem 0 4rem;
  }
  
  .slider-overlay {
    background: linear-gradient(to top, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0.6) 80%, rgba(255, 255, 255, 0.2) 100%) !important;
  }
  
  html[dir="rtl"] .slider-overlay {
    background: linear-gradient(to top, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0.6) 80%, rgba(255, 255, 255, 0.2) 100%) !important;
  }
  
  .hero-container {
    flex-direction: column;
    justify-content: center;
  }
  
  .hero-content {
    max-width: 100%;
    text-align: center;
    align-items: center;
  }
  
  .hero-badge {
    align-self: center;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-trust-badges {
    justify-content: center;
  }
  
  .hero-floating-card {
    position: static;
    margin-top: 2.5rem;
    align-self: center;
    animation: float-slow 4s ease-in-out infinite alternate;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  
  .about-images {
    display: flex;
    justify-content: center;
  }
  
  .about-img-main {
    width: 100%;
    max-width: 500px;
    height: 380px;
  }
  
  .process-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  
  .process-grid::before {
    display: none;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 4.5rem 0;
  }
  
  .section-title {
    font-size: 1.85rem;
  }
  
  .hero-title {
    font-size: 1.85rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .hero {
    overflow: hidden;
    max-width: 100vw;
    padding: 8rem 0 3rem;
  }

  .hero-slider,
  .hero-container {
    overflow: hidden;
    max-width: 100%;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    padding: 0 0.25rem;
  }

  .hero-description {
    max-width: 100%;
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-trust-badges {
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    width: 100%;
  }

  .slider-btn {
    display: none;
  }

  .slider-dots {
    bottom: 1rem;
  }

  .container {
    padding: 0 1rem;
  }

  .nav-container {
    height: 72px;
    gap: 0.5rem;
  }

  .header.sticky .nav-container {
    height: 64px;
  }

  .logo-wrapper {
    flex-shrink: 1;
    min-width: 0;
  }

  .logo-img {
    height: 44px;
  }

  .header.sticky .logo-img {
    height: 40px;
  }

  .nav-actions {
    gap: 0.6rem;
    flex-shrink: 0;
  }

  .nav-actions > .btn {
    display: none;
  }

  .lang-btn {
    padding: 0.35rem 0.65rem;
    font-size: 0.8rem;
    white-space: nowrap;
  }

  .menu-toggle {
    display: block;
    font-size: 1.35rem;
    padding: 0.25rem;
    line-height: 1;
  }
  
  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    background-color: var(--white);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--border-color);
    clip-path: circle(0px at 85% 0%);
    transition: clip-path 0.5s ease-in-out;
  }
  
  .header.sticky .nav-menu {
    top: 64px;
  }
  
  .nav-menu.active {
    clip-path: circle(1000px at 85% 0%);
  }
  
  .features-grid, .services-grid, .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .about-bullets {
    grid-template-columns: 1fr;
  }
}

/* Float Animations Keyframes */
@keyframes float-slow {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(1.5deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes pulse-soft {
  0% { transform: scale(1); }
  50% { transform: scale(1.04); }
  100% { transform: scale(1); }
}

/* --- Internal Pages --- */
.page-hero {
  padding: 10rem 0 4rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, #2d5a30 50%, var(--secondary-color) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-hero--has-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-hero--has-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30, 70, 32, 0.9) 0%, rgba(45, 90, 48, 0.82) 50%, rgba(89, 165, 55, 0.78) 100%);
  z-index: 0;
}

.page-hero::before {
  content: '';
  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.04'%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");
  opacity: 0.5;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  opacity: 0.9;
}

.breadcrumb a {
  color: var(--white);
  opacity: 0.85;
}

.breadcrumb a:hover {
  opacity: 1;
  text-decoration: underline;
}

.breadcrumb-sep {
  opacity: 0.6;
  font-size: 0.75rem;
}

.breadcrumb-current {
  opacity: 1;
  font-weight: 600;
}

.page-hero-title {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.25;
  max-width: 800px;
}

.page-hero-desc {
  font-size: 1.1rem;
  opacity: 0.92;
  max-width: 650px;
  margin-top: 1rem;
  line-height: 1.7;
}

.page-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}

.page-intro {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.page-content,
.page-block-body {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.page-content h2,
.page-content h3,
.page-block-body h2,
.page-block-body h3 {
  color: var(--primary-color);
  margin: 1.5rem 0 0.75rem;
}

.page-content ul,
.page-block-body ul {
  margin: 0.75rem 0 1.25rem;
  padding-inline-start: 1.25rem;
}

.page-content li,
.page-block-body li {
  margin-bottom: 0.5rem;
}

.page-feature-img {
  margin-bottom: 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.page-feature-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.page-block {
  margin-bottom: 2.5rem;
}

.page-block-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.page-block-title i {
  color: var(--secondary-color);
  font-size: 1.25rem;
}

.page-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.page-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.page-list li i {
  color: var(--secondary-color);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.page-list.danger-list li i {
  color: #e53935;
}

.page-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.sidebar-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.sidebar-card-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.sidebar-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.sidebar-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.sidebar-feature i {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
  color: var(--secondary-color);
  flex-shrink: 0;
}

.sidebar-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sidebar-actions .btn {
  width: 100%;
}

.page-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, #eef5ee 100%);
  text-align: center;
}

.page-cta-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.page-cta-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.page-cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.other-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.other-service-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  font-weight: 600;
  color: var(--text-primary);
}

.other-service-link:hover {
  border-color: var(--secondary-color);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  color: var(--primary-color);
}

.other-service-link i {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
  color: var(--secondary-color);
  flex-shrink: 0;
}

.nav-link.active {
  color: var(--secondary-color);
}

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

@media (max-width: 992px) {
  .page-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .page-sidebar {
    position: static;
  }

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

@media (max-width: 768px) {
  .page-hero {
    padding: 8rem 0 3rem;
  }

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

  .page-feature-img img {
    height: 200px;
  }

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