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

:root {
  /* Color Palette */
  --clr-green-deep: #1a5632;
  --clr-green-mid: #2a7a4b;
  --clr-green-light: #3a9a5b;
  --clr-green-accent: #48b068;
  --clr-charcoal: #1e1e1e;
  --clr-charcoal-light: #2d2d2d;
  --clr-beige: #d4c5a9;
  --clr-beige-light: #e8dcc8;
  --clr-sand: #f5f0e8;
  --clr-sand-light: #faf7f2;
  --clr-white: #ffffff;
  --clr-offwhite: #fdfcfa;
  --clr-text-dark: #1a1a1a;
  --clr-text-body: #3d3d3d;
  --clr-text-muted: #6b6b6b;
  --clr-gold: #b8943e;
  --clr-gold-light: #d4af5a;
  --clr-border: rgba(0, 0, 0, 0.08);
  --clr-overlay: rgba(26, 86, 50, 0.85);
  --clr-overlay-dark: rgba(30, 30, 30, 0.88);

  /* Typography */
  --ff-heading: 'IBM Plex Sans Arabic', 'Noto Sans Arabic', sans-serif;
  --ff-body: 'IBM Plex Sans Arabic', 'Noto Sans Arabic', sans-serif;
  --fs-hero: clamp(2.2rem, 5vw, 3.8rem);
  --fs-h2: clamp(1.6rem, 3.5vw, 2.6rem);
  --fs-h3: clamp(1.1rem, 2vw, 1.5rem);
  --fs-body: clamp(0.95rem, 1.2vw, 1.1rem);
  --fs-small: 0.88rem;
  --fs-label: 0.82rem;

  /* Spacing */
  --section-py: clamp(60px, 8vw, 110px);
  --container-px: clamp(16px, 4vw, 48px);
  --container-max: 1240px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.12);
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-card-hover: 0 8px 30px rgba(0, 0, 0, 0.12);

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--ff-body);
  font-weight: 400;
  line-height: 1.8;
  color: var(--clr-text-body);
  background-color: var(--clr-offwhite);
  direction: rtl;
  text-align: right;
  overflow-x: hidden;
  width: 100%;
  position: relative;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

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

ul, ol {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
  background: none;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
  overflow: hidden;
}

section {
  overflow: hidden;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes countUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(1deg); }
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(26, 86, 50, 0.15); }
  50% { box-shadow: 0 0 40px rgba(26, 86, 50, 0.3); }
}

@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes borderDraw {
  0% { stroke-dashoffset: 1000; }
  100% { stroke-dashoffset: 0; }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes slideInScale {
  from {
    opacity: 0;
    transform: scale(0.85) translateY(30px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes tiltIn {
  from {
    opacity: 0;
    transform: perspective(500px) rotateX(10deg) translateY(30px);
  }
  to {
    opacity: 1;
    transform: perspective(500px) rotateX(0deg) translateY(0);
  }
}

@keyframes revealWidth {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes kenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

/* Reveal Classes */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(35px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-35px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.88);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.reveal-tilt {
  opacity: 0;
  transform: perspective(600px) rotateX(8deg) translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-tilt.visible {
  opacity: 1;
  transform: perspective(600px) rotateX(0deg) translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ===== SECTION HEADING ===== */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-label {
  display: inline-block;
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--clr-green-mid);
  background: rgba(26, 86, 50, 0.08);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--ff-heading);
  font-size: var(--fs-h2);
  font-weight: 700;
  color: var(--clr-text-dark);
  line-height: 1.35;
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: var(--fs-body);
  color: var(--clr-text-muted);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.9;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-green-deep), var(--clr-gold));
  margin: 16px auto 0;
  border-radius: 3px;
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all var(--transition-base);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-logo-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-logo-text {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--clr-white);
  transition: color var(--transition-base);
  white-space: nowrap;
}

.navbar.scrolled .nav-logo-text {
  color: var(--clr-text-dark);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  position: relative;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--clr-white);
  background: rgba(255, 255, 255, 0.1);
}

.navbar.scrolled .nav-link {
  color: var(--clr-text-body);
}

.navbar.scrolled .nav-link:hover {
  color: var(--clr-green-deep);
  background: rgba(26, 86, 50, 0.06);
}

.nav-cta {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--clr-white);
  background: var(--clr-green-deep);
  padding: 9px 22px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  margin-right: 8px;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--clr-green-mid);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(26, 86, 50, 0.3);
}

.navbar.scrolled .nav-cta {
  background: var(--clr-green-deep);
  color: var(--clr-white);
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  z-index: 1010;
}

.nav-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--clr-white);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.navbar.scrolled .nav-toggle span {
  background: var(--clr-charcoal);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

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

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to left,
    rgba(26, 86, 50, 0.92) 0%,
    rgba(30, 30, 30, 0.85) 50%,
    rgba(26, 86, 50, 0.75) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: var(--section-py) 0;
  padding-top: 140px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 20px;
  border-radius: 50px;
  color: var(--clr-beige-light);
  font-size: var(--fs-small);
  font-weight: 500;
  margin-bottom: 28px;
  animation: fadeInUp 0.8s ease forwards;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--clr-gold);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

.hero-title {
  font-family: var(--ff-heading);
  font-size: var(--fs-hero);
  font-weight: 800;
  color: var(--clr-white);
  line-height: 1.3;
  margin-bottom: 22px;
  animation: fadeInUp 0.8s ease 0.15s forwards;
  opacity: 0;
}

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

.hero-desc {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: rgba(255, 255, 255, 0.82);
  line-height: 2;
  margin-bottom: 38px;
  max-width: 640px;
  animation: fadeInUp 0.8s ease 0.3s forwards;
  opacity: 0;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.45s forwards;
  opacity: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--clr-white);
  color: var(--clr-green-deep);
}

.btn-primary:hover {
  background: var(--clr-sand);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-outline {
  background: transparent;
  color: var(--clr-white);
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.btn-outline:hover {
  border-color: var(--clr-white);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-green {
  background: var(--clr-green-deep);
  color: var(--clr-white);
}

.btn-green:hover {
  background: var(--clr-green-mid);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 86, 50, 0.3);
}

.btn-icon {
  font-size: 1.1rem;
}

/* Hero Stats Bar */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stats .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 28px 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.stat-item:first-child {
  border-left: none;
}

.stat-number {
  font-family: var(--ff-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--clr-white);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-number span {
  color: var(--clr-gold-light);
  font-size: 0.7em;
}

.stat-label {
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.65);
  font-weight: 400;
}

/* ===== ABOUT SECTION ===== */
.about {
  padding: var(--section-py) 0;
  background: var(--clr-white);
}

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

.about-image-wrapper {
  position: relative;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.about-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-image:hover img {
  transform: scale(1.03);
}

.about-image-accent {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 160px;
  height: 160px;
  background: linear-gradient(135deg, var(--clr-green-deep), var(--clr-green-mid));
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.15;
}

.about-experience-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--clr-green-deep);
  color: var(--clr-white);
  padding: 18px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.about-experience-badge .number {
  font-family: var(--ff-heading);
  font-size: 2rem;
  font-weight: 800;
  display: block;
  line-height: 1;
  color: var(--clr-gold-light);
}

.about-experience-badge .label {
  font-size: var(--fs-small);
  font-weight: 500;
  margin-top: 4px;
  display: block;
}

.about-content {
  padding-right: 0;
  overflow: hidden;
}

.about-content .section-label {
  margin-bottom: 12px;
}

.about-title {
  font-family: var(--ff-heading);
  font-size: var(--fs-h2);
  font-weight: 700;
  color: var(--clr-text-dark);
  line-height: 1.4;
  margin-bottom: 20px;
  overflow-wrap: break-word;
  word-break: break-word;
}

.about-text {
  font-size: var(--fs-body);
  color: var(--clr-text-body);
  line-height: 2;
  margin-bottom: 16px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--clr-text-dark);
}

.about-feature-icon {
  width: 32px;
  height: 32px;
  background: rgba(26, 86, 50, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-green-deep);
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* ===== SERVICES SECTION ===== */
.services {
  padding: var(--section-py) 0;
  background: var(--clr-sand-light);
}

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

.services-grid .service-card:last-child:nth-child(3n+1) {
  grid-column: 2;
}

.service-card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: 0;
  transition: all var(--transition-base);
  border: 1px solid var(--clr-border);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.service-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(26, 86, 50, 0.2));
  opacity: 0;
  transition: opacity var(--transition-base);
}

.service-card:hover .service-card-img::after {
  opacity: 1;
}

.service-card-body {
  padding: 24px 28px 36px;
  position: relative;
  flex-grow: 1;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(to bottom, var(--clr-green-deep), var(--clr-gold));
  transition: height var(--transition-base);
  border-radius: 0 0 0 4px;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: transparent;
}

.service-card:hover::before {
  height: 100%;
}

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--clr-white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -26px;
  right: 28px;
  font-size: 1.4rem;
  color: var(--clr-green-deep);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all var(--transition-base);
  z-index: 2;
}

.service-card:hover .service-icon {
  background: var(--clr-green-deep);
  color: var(--clr-white);
  transform: scale(1.05);
}

.service-title {
  font-family: var(--ff-heading);
  font-size: var(--fs-h3);
  font-weight: 700;
  color: var(--clr-text-dark);
  margin-bottom: 12px;
  line-height: 1.5;
}

.service-desc {
  font-size: var(--fs-body);
  color: var(--clr-text-muted);
  line-height: 1.9;
}

/* ===== WHY CHOOSE US ===== */
.why-us {
  padding: var(--section-py) 0;
  background: var(--clr-white);
  position: relative;
  overflow: hidden;
}

.why-us-bg-accent {
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(26, 86, 50, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.why-us .container {
  position: relative;
  z-index: 1;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-card {
  text-align: center;
  padding: 44px 28px;
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  background: var(--clr-sand-light);
  border: 1px solid transparent;
  position: relative;
}

.why-card:hover {
  background: var(--clr-white);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(26, 86, 50, 0.1);
  transform: translateY(-4px);
}

.why-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
  background: linear-gradient(135deg, var(--clr-green-deep), var(--clr-green-mid));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: var(--clr-white);
  transition: all var(--transition-base);
  box-shadow: 0 4px 16px rgba(26, 86, 50, 0.2);
}

.why-card:hover .why-icon {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(26, 86, 50, 0.3);
}

.why-title {
  font-family: var(--ff-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--clr-text-dark);
  margin-bottom: 10px;
}

.why-desc {
  font-size: var(--fs-body);
  color: var(--clr-text-muted);
  line-height: 1.85;
}

/* ===== PROJECTS / SCOPE ===== */
.scope {
  padding: var(--section-py) 0;
  background: var(--clr-charcoal);
  position: relative;
  overflow: hidden;
}

.scope-overlay-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(26, 86, 50, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(184, 148, 62, 0.08) 0%, transparent 50%);
  z-index: 0;
}

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

.scope .section-title {
  color: var(--clr-white);
}

.scope .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

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

.scope-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
}

.scope-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.scope-card-img {
  height: 180px;
  overflow: hidden;
  position: relative;
}

.scope-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.scope-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 30, 30, 0.6), transparent);
}

.scope-card-body {
  padding: 24px 22px;
}

.scope-card-title {
  font-family: var(--ff-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 8px;
}

.scope-card-desc {
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
}

/* Stats row in scope */
.scope-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
  padding-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.scope-stat-item {
  text-align: center;
}

.scope-stat-number {
  font-family: var(--ff-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--clr-gold-light);
  line-height: 1;
  margin-bottom: 8px;
}

.scope-stat-label {
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.55);
  font-weight: 400;
}

/* ===== VISION / MISSION / VALUES ===== */
.vision {
  padding: var(--section-py) 0;
  background: var(--clr-sand-light);
}

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

.vision-card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: 44px 32px;
  text-align: center;
  transition: all var(--transition-base);
  border: 1px solid var(--clr-border);
  position: relative;
  overflow: hidden;
}

.vision-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--clr-green-deep), var(--clr-gold));
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

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

.vision-card:hover::after {
  transform: scaleX(1);
}

.vision-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 24px;
  background: rgba(26, 86, 50, 0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--clr-green-deep);
  transition: all var(--transition-base);
}

.vision-card:hover .vision-icon {
  background: var(--clr-green-deep);
  color: var(--clr-white);
  transform: scale(1.08);
}

.vision-title {
  font-family: var(--ff-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--clr-text-dark);
  margin-bottom: 14px;
}

.vision-text {
  font-size: var(--fs-body);
  color: var(--clr-text-muted);
  line-height: 2;
}

/* ===== PARALLAX DIVIDER ===== */
.parallax-divider {
  position: relative;
  height: 380px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-divider-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.parallax-divider-bg img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
  animation: kenBurns 20s ease alternate infinite;
}

.parallax-divider-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 86, 50, 0.88), rgba(30, 30, 30, 0.82));
  z-index: 1;
}

.parallax-divider-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--container-px);
  max-width: 700px;
}

.parallax-divider-title {
  font-family: var(--ff-heading);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 14px;
  line-height: 1.5;
}

.parallax-divider-text {
  font-size: var(--fs-body);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.9;
  margin-bottom: 28px;
}

.parallax-divider-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 10px;
}

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

.parallax-stat-number {
  font-family: var(--ff-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--clr-gold-light);
  line-height: 1;
  margin-bottom: 4px;
}

.parallax-stat-label {
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.55);
}

/* ===== PROJECT GALLERY ===== */
.gallery {
  padding: var(--section-py) 0;
  background: var(--clr-white);
  position: relative;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 18px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  height: 280px;
}

.gallery-item.tall {
  grid-row: span 2;
  height: 100%;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
  filter: brightness(0.75);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 86, 50, 0.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-title {
  font-family: var(--ff-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 6px;
  transform: translateY(10px);
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-item-title {
  transform: translateY(0);
}

.gallery-item-category {
  font-size: var(--fs-small);
  color: var(--clr-gold-light);
  transform: translateY(10px);
  transition: transform 0.4s ease 0.05s;
}

.gallery-item:hover .gallery-item-category {
  transform: translateY(0);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 70px 0;
  background: linear-gradient(135deg, var(--clr-green-deep) 0%, var(--clr-charcoal) 100%);
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 175, 90, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatSlow 6s ease infinite;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatSlow 8s ease infinite reverse;
}

.cta-banner .container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-banner-content {
  max-width: 600px;
}

.cta-banner-title {
  font-family: var(--ff-heading);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--clr-white);
  line-height: 1.5;
  margin-bottom: 12px;
}

.cta-banner-text {
  font-size: var(--fs-body);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.9;
}

.cta-banner-actions {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}

.cta-banner .btn-primary {
  animation: glowPulse 3s ease infinite;
}

/* ===== FLOATING DECORATIONS ===== */
.floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}

.floating-shape-1 {
  width: 200px;
  height: 200px;
  background: var(--clr-green-deep);
  top: 20%;
  left: -60px;
  animation: float 7s ease infinite;
}

.floating-shape-2 {
  width: 120px;
  height: 120px;
  background: var(--clr-gold);
  bottom: 15%;
  right: -40px;
  animation: float 5s ease infinite reverse;
}

.floating-shape-3 {
  width: 80px;
  height: 80px;
  background: var(--clr-green-mid);
  top: 60%;
  left: 15%;
  animation: floatSlow 9s ease infinite;
}

/* ===== RESPONSIVE FOR NEW SECTIONS ===== */
@media (max-width: 768px) {
  .parallax-divider {
    height: 300px;
  }

  .parallax-divider-title {
    font-size: 1.2rem;
  }

  .parallax-divider-stats {
    gap: 30px;
  }

  .parallax-stat-number {
    font-size: 1.6rem;
  }

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

  .gallery-item {
    height: 200px;
  }

  .gallery-item.tall {
    grid-row: span 1;
  }

  .gallery-item.wide {
    grid-column: span 1;
  }

  .cta-banner .container {
    flex-direction: column;
    text-align: center;
  }

  .cta-banner-actions {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .parallax-divider {
    height: 260px;
  }

  .parallax-divider-title {
    font-size: 1.05rem;
  }

  .parallax-divider-text {
    font-size: 0.82rem;
  }

  .parallax-divider-stats {
    gap: 20px;
  }

  .parallax-stat-number {
    font-size: 1.3rem;
  }

  .parallax-stat-label {
    font-size: 0.72rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .gallery-item {
    height: 190px;
  }

  .gallery-item-title {
    font-size: 1rem;
  }

  .cta-banner {
    padding: 50px 0;
  }

  .cta-banner-title {
    font-size: 1.15rem;
  }

  .cta-banner-text {
    font-size: 0.82rem;
  }

  .cta-banner-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

/* ===== CONTACT SECTION ===== */
.contact {
  padding: var(--section-py) 0;
  background: var(--clr-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-info {
  padding-left: 20px;
}

.contact-info-title {
  font-family: var(--ff-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--clr-text-dark);
  margin-bottom: 12px;
}

.contact-info-text {
  font-size: var(--fs-body);
  color: var(--clr-text-muted);
  line-height: 1.9;
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  background: rgba(26, 86, 50, 0.06);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-green-deep);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.contact-item:hover .contact-item-icon {
  background: var(--clr-green-deep);
  color: var(--clr-white);
}

.contact-item-label {
  font-size: var(--fs-small);
  color: var(--clr-text-muted);
  margin-bottom: 2px;
  display: block;
}

.contact-item-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--clr-text-dark);
  direction: ltr;
  text-align: right;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: white;
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 12px;
  transition: all var(--transition-base);
}

.whatsapp-btn:hover {
  background: #1fb855;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--clr-sand-light);
  padding: 40px 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
}

.contact-form-title {
  font-family: var(--ff-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--clr-text-dark);
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

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

.form-group label {
  display: block;
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--clr-text-dark);
  margin-bottom: 7px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid #ddd;
  border-radius: var(--radius-sm);
  font-family: var(--ff-body);
  font-size: 0.95rem;
  color: var(--clr-text-dark);
  background: var(--clr-white);
  transition: all var(--transition-fast);
  direction: rtl;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--clr-green-mid);
  box-shadow: 0 0 0 3px rgba(26, 86, 50, 0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit-btn {
  width: 100%;
  padding: 15px;
  background: var(--clr-green-deep);
  color: var(--clr-white);
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-base);
}

.form-submit-btn:hover {
  background: var(--clr-green-mid);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 86, 50, 0.3);
}

/* ===== MAP ===== */
.map-section {
  height: 300px;
  background: var(--clr-sand);
  position: relative;
  overflow: hidden;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(40%) contrast(1.05);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--clr-charcoal);
  padding: 60px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

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

.footer-brand .nav-logo {
  margin-bottom: 18px;
}

.footer-brand .nav-logo-text {
  color: var(--clr-white);
}

.footer-brand-desc {
  font-size: var(--fs-small);
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.5);
  max-width: 360px;
}

.footer-heading {
  font-family: var(--ff-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 20px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.5);
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--clr-gold-light);
  transform: translateX(-4px);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.5);
}

.footer-contact-item .icon {
  color: var(--clr-green-accent);
  font-size: 0.9rem;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
  text-align: center;
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.35);
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 32px;
  left: 32px;
  width: 48px;
  height: 48px;
  background: var(--clr-green-deep);
  color: var(--clr-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-base);
  box-shadow: 0 4px 16px rgba(26, 86, 50, 0.3);
  z-index: 100;
  border: none;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--clr-green-mid);
  transform: translateY(-3px);
}

/* ===== LOADING SCREEN ===== */
.loader {
  position: fixed;
  inset: 0;
  background: var(--clr-charcoal);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  font-family: var(--ff-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--clr-white);
  margin-bottom: 24px;
  animation: fadeIn 0.8s ease;
}

.loader-logo span {
  color: var(--clr-gold-light);
}

.loader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.loader-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--clr-green-deep), var(--clr-gold));
  border-radius: 3px;
  animation: shimmer 1.5s ease infinite;
  background-size: 200% 100%;
  width: 100%;
}

/* ===== MOBILE DRAWER ===== */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: -320px;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  background: var(--clr-charcoal);
  z-index: 1005;
  transition: left var(--transition-base);
  padding: 80px 30px 40px;
  overflow-y: auto;
  box-shadow: 4px 0 30px rgba(0, 0, 0, 0.3);
}

.mobile-drawer.open {
  left: 0;
}

.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1004;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

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

.mobile-drawer .nav-link {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  padding: 14px 0;
  font-size: 1.05rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-drawer .nav-link:hover {
  color: var(--clr-gold-light);
  background: transparent;
}

.mobile-drawer .nav-cta {
  display: block;
  text-align: center;
  margin: 24px 0 0;
  padding: 14px;
}

.mobile-drawer-close {
  position: absolute;
  top: 24px;
  left: 24px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.5rem;
  cursor: pointer;
  background: none;
  border: none;
  transition: color var(--transition-fast);
}

.mobile-drawer-close:hover {
  color: var(--clr-white);
}

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

/* ---------- Tablet (max-width: 1024px) ---------- */
@media (max-width: 1024px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-stats .container {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(3) {
    border-left: none;
  }

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

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

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

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

  .scope-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

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

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

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

/* ---------- Small Tablet / Large Phone (max-width: 768px) ---------- */
@media (max-width: 768px) {

  :root {
    --section-py: 50px;
  }

  .section-header {
    margin-bottom: 36px;
  }

  .section-title {
    font-size: 1.5rem;
    line-height: 1.5;
  }

  .section-subtitle {
    font-size: 0.9rem;
    line-height: 1.8;
  }

  /* -- Hero -- */
  .hero {
    min-height: auto;
    padding-bottom: 0;
  }

  .hero-content {
    padding-top: 110px;
    padding-bottom: 80px;
    text-align: center;
  }

  .hero-badge {
    font-size: 0.78rem;
    padding: 6px 14px;
    margin-bottom: 20px;
  }

  .hero-title {
    font-size: 1.75rem;
    line-height: 1.45;
    margin-bottom: 16px;
  }

  .hero-desc {
    font-size: 0.92rem;
    line-height: 1.85;
    margin-bottom: 28px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
    gap: 12px;
  }

  .btn {
    font-size: 0.88rem;
    padding: 12px 22px;
  }

  /* -- Hero Stats -- */
  .hero-stats {
    position: relative;
  }

  .hero-stats .container {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item {
    padding: 18px 10px;
  }

  .stat-item:nth-child(3) {
    border-left: none;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.78rem;
  }

  /* -- About -- */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-title {
    font-size: 1.35rem;
    line-height: 1.55;
  }

  .about-text {
    font-size: 0.9rem;
    line-height: 1.9;
  }

  .about-image img {
    height: 260px;
  }

  .about-image-accent {
    display: none;
  }

  .about-features {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .about-feature-item {
    font-size: 0.88rem;
  }

  /* -- Services -- */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .services-grid .service-card:last-child:nth-child(3n+1) {
    grid-column: auto;
  }

  .service-card {
    padding: 26px 22px;
  }

  .service-icon {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
    margin-bottom: 16px;
  }

  .service-title {
    font-size: 1.05rem;
    margin-bottom: 8px;
  }

  .service-desc {
    font-size: 0.88rem;
    line-height: 1.8;
  }

  /* -- Why Us -- */
  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .why-card {
    padding: 30px 22px;
  }

  .why-icon {
    width: 60px;
    height: 60px;
    font-size: 1.4rem;
    margin-bottom: 16px;
  }

  .why-title {
    font-size: 1.05rem;
  }

  .why-desc {
    font-size: 0.88rem;
  }

  /* -- Scope -- */
  .scope-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .scope-card-img {
    height: 160px;
  }

  .scope-card-body {
    padding: 18px 16px;
  }

  .scope-card-title {
    font-size: 1rem;
  }

  .scope-card-desc {
    font-size: 0.82rem;
  }

  .scope-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 36px;
    padding-top: 36px;
  }

  .scope-stat-number {
    font-size: 1.8rem;
  }

  .scope-stat-label {
    font-size: 0.78rem;
  }

  /* -- Vision -- */
  .vision-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .vision-card {
    padding: 30px 24px;
  }

  .vision-icon {
    width: 56px;
    height: 56px;
    font-size: 1.3rem;
    margin-bottom: 18px;
  }

  .vision-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }

  .vision-text {
    font-size: 0.88rem;
    line-height: 1.9;
  }

  /* -- Contact -- */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .contact-info {
    padding-left: 0;
  }

  .contact-info-title {
    font-size: 1.15rem;
  }

  .contact-info-text {
    font-size: 0.88rem;
    margin-bottom: 24px;
  }

  .contact-item-icon {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }

  .contact-item-value {
    font-size: 0.9rem;
  }

  .contact-form-wrapper {
    padding: 28px 22px;
  }

  .contact-form-title {
    font-size: 1.05rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 11px 14px;
    font-size: 0.9rem;
  }

  .form-submit-btn {
    padding: 13px;
    font-size: 0.92rem;
  }

  .whatsapp-btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  /* -- Map -- */
  .map-section {
    height: 220px;
  }

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

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

  .footer-brand-desc {
    font-size: 0.82rem;
    max-width: 100%;
  }

  .footer-heading {
    font-size: 0.95rem;
    margin-bottom: 14px;
  }

  .footer-links a {
    font-size: 0.82rem;
  }

  .footer-contact-item {
    font-size: 0.82rem;
  }

  .footer-bottom {
    padding: 16px 0;
    font-size: 0.78rem;
  }
}

/* ---------- Phone (max-width: 480px) ---------- */
@media (max-width: 480px) {

  :root {
    --section-py: 45px;
    --container-px: 8px;
  }

  .container {
    width: 100%;
    max-width: 100%;
    padding: 0 var(--container-px);
  }
  
  body, html {
    overflow-x: hidden;
    width: 100%;
    position: relative;
  }

  /* -- Navbar -- */
  .nav-logo-icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
    border-radius: 8px;
  }

  .nav-logo-text {
    font-size: 0.95rem;
  }

  .navbar {
    padding: 12px 0;
  }

  .navbar.scrolled {
    padding: 8px 0;
  }

  /* -- Hero -- */
  .hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
  }

  .hero-content {
    padding-top: 130px;
    padding-bottom: 100px;
  }

  .hero-badge {
    font-size: 0.72rem;
    padding: 5px 12px;
    gap: 6px;
    margin-bottom: 16px;
  }

  .hero-badge-dot {
    width: 6px;
    height: 6px;
  }

  .hero-title {
    font-size: 1.5rem;
    line-height: 1.5;
    margin-bottom: 14px;
  }

  .hero-desc {
    font-size: 0.85rem;
    line-height: 1.8;
    margin-bottom: 22px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .btn {
    justify-content: center;
    padding: 12px 18px;
    font-size: 0.85rem;
    gap: 8px;
  }

  .btn-icon {
    font-size: 0.95rem;
  }

  /* -- Hero Stats -- */
  .hero-stats .container {
    grid-template-columns: 1fr 1fr;
  }

  .stat-item {
    padding: 14px 8px;
  }

  .stat-number {
    font-size: 1.3rem;
    margin-bottom: 4px;
  }

  .stat-label {
    font-size: 0.7rem;
  }

  /* -- Section Titles -- */
  .section-label {
    font-size: 0.72rem;
    padding: 4px 14px;
    margin-bottom: 12px;
  }

  .section-title {
    font-size: 1.3rem;
    line-height: 1.55;
    margin-bottom: 10px;
  }

  .section-subtitle {
    font-size: 0.82rem;
  }

  /* -- About -- */
  .about-title {
    font-size: 1.2rem;
    line-height: 1.6;
  }

  .about-text {
    font-size: 0.85rem;
    line-height: 1.85;
    margin-bottom: 12px;
  }

  .about-image img {
    height: 220px;
  }

  .about-experience-badge {
    padding: 12px 16px;
    bottom: 14px;
    left: 14px;
  }

  .about-experience-badge .number {
    font-size: 1.5rem;
  }

  .about-experience-badge .label {
    font-size: 0.75rem;
  }

  .about-feature-item {
    font-size: 0.82rem;
    gap: 8px;
  }

  .about-feature-icon {
    width: 28px;
    height: 28px;
    font-size: 0.7rem;
  }

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

  .services-grid .service-card:last-child:nth-child(3n+1) {
    grid-column: auto;
  }

  .service-card {
    padding: 22px 18px;
  }

  .service-icon {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
    margin-bottom: 14px;
  }

  .service-title {
    font-size: 1rem;
    line-height: 1.5;
  }

  .service-desc {
    font-size: 0.82rem;
    line-height: 1.75;
  }

  /* -- Why Us -- */
  .why-card {
    padding: 24px 18px;
  }

  .why-icon {
    width: 54px;
    height: 54px;
    font-size: 1.2rem;
    margin-bottom: 14px;
  }

  .why-title {
    font-size: 1rem;
    margin-bottom: 8px;
  }

  .why-desc {
    font-size: 0.82rem;
    line-height: 1.75;
  }

  /* -- Scope -- */
  .scope-card-img {
    height: 140px;
  }

  .scope-card-body {
    padding: 16px 14px;
  }

  .scope-card-title {
    font-size: 0.95rem;
    margin-bottom: 6px;
  }

  .scope-card-desc {
    font-size: 0.78rem;
  }

  .scope-stats {
    gap: 16px;
    margin-top: 28px;
    padding-top: 28px;
  }

  .scope-stat-number {
    font-size: 1.5rem;
    margin-bottom: 4px;
  }

  .scope-stat-label {
    font-size: 0.72rem;
  }

  /* -- Vision -- */
  .vision-card {
    padding: 24px 18px;
  }

  .vision-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    margin-bottom: 14px;
  }

  .vision-title {
    font-size: 1rem;
  }

  .vision-text {
    font-size: 0.82rem;
    line-height: 1.85;
  }

  /* -- Contact -- */
  .contact-info-title {
    font-size: 1.05rem;
  }

  .contact-info-text {
    font-size: 0.82rem;
  }

  .contact-item {
    gap: 12px;
    margin-bottom: 18px;
  }

  .contact-item-icon {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
  }

  .contact-item-label {
    font-size: 0.75rem;
  }

  .contact-item-value {
    font-size: 0.85rem;
  }

  .contact-form-wrapper {
    padding: 22px 16px;
  }

  .contact-form-title {
    font-size: 1rem;
    margin-bottom: 18px;
  }

  .form-group label {
    font-size: 0.78rem;
    margin-bottom: 5px;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 10px 12px;
    font-size: 0.85rem;
  }

  .form-group textarea {
    min-height: 100px;
  }

  .form-submit-btn {
    padding: 12px;
    font-size: 0.88rem;
  }

  .whatsapp-btn {
    padding: 11px 20px;
    font-size: 0.85rem;
    gap: 8px;
  }

  /* -- Map -- */
  .map-section {
    height: 180px;
  }

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

  .footer-grid {
    gap: 24px;
  }

  .footer-brand .nav-logo {
    margin-bottom: 12px;
  }

  .footer-brand-desc {
    font-size: 0.78rem;
  }

  .footer-heading {
    font-size: 0.9rem;
    margin-bottom: 12px;
  }

  .footer-links li {
    margin-bottom: 8px;
  }

  .footer-links a {
    font-size: 0.78rem;
  }

  .footer-contact-item {
    font-size: 0.78rem;
    margin-bottom: 10px;
    gap: 8px;
  }

  .footer-bottom {
    padding: 14px 0;
    font-size: 0.72rem;
  }

  /* -- Scroll Top -- */
  .scroll-top {
    bottom: 16px;
    left: 16px;
    width: 40px;
    height: 40px;
    font-size: 0.95rem;
  }

  /* -- Mobile Drawer -- */
  .mobile-drawer {
    width: 270px;
    padding: 70px 24px 30px;
  }

  .mobile-drawer .nav-link {
    font-size: 0.95rem;
    padding: 12px 0;
  }

  .mobile-drawer .nav-cta {
    padding: 12px;
    font-size: 0.88rem;
  }

  .mobile-drawer-close {
    top: 18px;
    left: 18px;
    font-size: 1.3rem;
  }
}

/* ---------- Very Small Phones (max-width: 360px) ---------- */
@media (max-width: 360px) {

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

  .hero-desc {
    font-size: 0.8rem;
  }

  .hero-badge {
    font-size: 0.68rem;
  }

  .section-title {
    font-size: 1.15rem;
  }

  .about-title {
    font-size: 1.1rem;
  }

  .stat-number {
    font-size: 1.15rem;
  }

  .stat-label {
    font-size: 0.65rem;
  }

  .scope-stat-number {
    font-size: 1.3rem;
  }
}
/* Loader Logo Image */
.loader-logo img {
  height: 60px;
  width: auto;
  margin-bottom: 20px;
}
