@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;900&display=swap');

@font-face {
  font-family: 'Sakkal Majalla';
  src: url('../fonts/SakkalMajalla.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary: #1a0f12;
  --secondary: #d4a843;
  --secondary-light: #e8c87a;
  --accent: #f0e2cc;
  --bg-light: #faf6f0;
  --bg-dark: #0d0709;
  --text: #1e1a1c;
  --text-light: #6a5a5e;
  --white: #ffffff;
  --shadow-sm: 0 2px 12px rgba(0,0,0,.06);
  --shadow: 0 4px 25px rgba(0,0,0,.08);
  --shadow-hover: 0 12px 45px rgba(0,0,0,.12);
  --radius: 14px;
  --radius-sm: 8px;
  --transition: .35s cubic-bezier(.22,1,.36,1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Cairo', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.8;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === PRELOADER === */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .6s ease, visibility .6s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-content {
  text-align: center;
}

.preloader-icon {
  font-size: 3rem;
  color: var(--secondary);
  animation: pulseScale 1s ease-in-out infinite;
}

.preloader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255,255,255,.1);
  border-radius: 10px;
  margin-top: 30px;
  overflow: hidden;
}

.preloader-fill {
  width: 0%;
  height: 100%;
  background: var(--secondary);
  border-radius: 10px;
  animation: preloadFill 1.8s ease forwards;
}

@keyframes preloadFill {
  to { width: 100%; }
}

@keyframes pulseScale {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

/* === SCROLL TOP === */
.scroll-top {
  position: fixed;
  bottom: 100px;
  left: 24px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--secondary), #c99a38);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all .4s cubic-bezier(.22,1,.36,1);
  box-shadow: 0 4px 20px rgba(212,168,67,.4);
  font-size: 1.1rem;
  border: 2px solid transparent;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--white);
  color: var(--secondary);
  border-color: var(--secondary);
  transform: translateY(-4px);
  box-shadow: 0 8px 35px rgba(212,168,67,.5);
}

.scroll-top i {
  transition: transform .3s ease;
}

.scroll-top:hover i {
  transform: translateY(-2px);
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 34px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  border: none;
  font-family: inherit;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.15);
  transform: translateX(-100%) skewX(-15deg);
  transition: .5s ease;
}

.btn:hover::before {
  transform: translateX(100%) skewX(-15deg);
}

.btn-primary {
  background: var(--secondary);
  color: var(--primary);
}

.btn-primary:hover {
  background: var(--secondary-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(212,168,67,.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.3);
}

.btn-outline:hover {
  border-color: var(--secondary);
  color: var(--secondary);
  transform: translateY(-3px);
}

.btn-whatsapp {
  background: #25d366;
  color: white;
  padding: 12px 28px;
  font-size: .95rem;
}

.btn-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37,211,102,.35);
}

.btn-full {
  width: 100%;
  justify-content: center;
  padding: 18px;
  font-size: 1.05rem;
}

/* === SECTION === */
.section {
  padding: 110px 0;
  position: relative;
}

.section-head {
  text-align: center;
  margin-bottom: 20px;
}

.section-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  display: block;
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--secondary-light));
  margin: 14px auto 0;
  border-radius: 2px;
}

.section-desc {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 50px;
  font-size: 1.1rem;
  line-height: 2;
}

.highlight-name {
  color: var(--secondary);
}

/* === REVEAL ANIMATION === */
[data-reveal] {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity .8s cubic-bezier(.22,1,.36,1), transform .8s cubic-bezier(.22,1,.36,1);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* === HEADER === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26,15,18,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  transition: var(--transition);
}

.header.scrolled {
  padding: 12px 0;
}

.header.scrolled::before {
  opacity: 1;
}

.header-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--secondary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary);
  animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.logo-text {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--secondary);
}

.nav {
  display: flex;
  gap: 32px;
}

.nav-link {
  color: rgba(255,255,255,.8);
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--secondary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 10;
}

.hamburger span {
  width: 28px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px,6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px,-6px);
}

.lang-toggle {
  background: linear-gradient(135deg, rgba(212,168,67,.15), rgba(212,168,67,.06));
  border: 1.5px solid rgba(212,168,67,.35);
  color: var(--secondary);
  font-family: inherit;
  font-size: .85rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 50px;
  cursor: pointer;
  transition: all .3s ease;
  letter-spacing: .3px;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(6px);
  position: relative;
  min-width: 110px;
  justify-content: center;
}

.lang-toggle::before {
  content: '\f0ac';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: .9rem;
}

.lang-toggle:hover {
  background: linear-gradient(135deg, rgba(212,168,67,.3), rgba(212,168,67,.12));
  border-color: var(--secondary);
  box-shadow: 0 0 25px rgba(212,168,67,.2);
  transform: translateY(-1px);
}

.lang-toggle:active {
  transform: scale(.95);
}

.header.scrolled .lang-toggle {
  background: linear-gradient(135deg, rgba(212,168,67,.2), rgba(212,168,67,.1));
  border-color: rgba(212,168,67,.45);
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  font-family: 'Sakkal Majalla', 'Cairo', sans-serif;
  background: rgba(0,0,0,.55);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(212,168,67,.1) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(212,168,67,.06) 0%, transparent 60%);
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.shape {
  position: absolute;
  color: var(--secondary);
  opacity: .06;
  animation: shapeFloat 20s ease-in-out infinite;
}

.shape i {
  font-size: inherit;
}

.shape-1 {
  top: 10%;
  right: 5%;
  font-size: 6rem;
  animation-delay: 0s;
  animation-duration: 25s;
}

.shape-2 {
  top: 60%;
  left: 8%;
  font-size: 4rem;
  animation-delay: -3s;
  animation-duration: 22s;
}

.shape-3 {
  top: 75%;
  right: 15%;
  font-size: 5rem;
  animation-delay: -7s;
  animation-duration: 28s;
}

.shape-4 {
  top: 20%;
  left: 12%;
  font-size: 3.5rem;
  animation-delay: -5s;
  animation-duration: 20s;
}

.shape-5 {
  top: 40%;
  right: 25%;
  font-size: 2.5rem;
  animation-delay: -10s;
  animation-duration: 24s;
}

.shape-6 {
  top: 85%;
  left: 30%;
  font-size: 3rem;
  animation-delay: -15s;
  animation-duration: 26s;
}

@keyframes shapeFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg) scale(1);
    opacity: .06;
  }
  25% {
    transform: translateY(-30px) rotate(5deg) scale(1.05);
  }
  50% {
    transform: translateY(-10px) rotate(-3deg) scale(.95);
    opacity: .1;
  }
  75% {
    transform: translateY(-40px) rotate(7deg) scale(1.02);
  }
}

.geo {
  position: absolute;
  border: 2px solid var(--secondary);
  opacity: .04;
  animation: geoRotate 30s linear infinite;
}

.geo-1 {
  top: 15%;
  right: 20%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  animation-duration: 40s;
}

.geo-2 {
  top: 50%;
  left: 15%;
  width: 150px;
  height: 150px;
  transform: rotate(45deg);
  animation-duration: 35s;
  animation-direction: reverse;
}

.geo-3 {
  top: 70%;
  right: 30%;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  animation-duration: 25s;
}

.geo-4 {
  top: 30%;
  left: 35%;
  width: 80px;
  height: 80px;
  transform: rotate(30deg);
  animation-duration: 30s;
  animation-direction: reverse;
}

.geo-5 {
  top: 5%;
  right: 50%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  animation-duration: 45s;
}

@keyframes geoRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--secondary);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: .6; }
  90% { opacity: .6; }
  100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  animation: heroFadeIn 1.2s ease forwards;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,168,67,.15);
  border: 1px solid rgba(212,168,67,.3);
  color: var(--secondary);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 30px;
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,168,67,.2); }
  50% { box-shadow: 0 0 0 10px rgba(212,168,67,0); }
}

.hero-title {
  font-size: 4.8rem;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 24px;
  color: var(--white);
}

.hero-name-frame {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, rgba(212,168,67,.12), rgba(212,168,67,.04));
  border: 1px solid rgba(212,168,67,.2);
  border-radius: 20px;
  padding: 16px 40px 20px;
  margin-bottom: 16px;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.hero-name-frame::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(212,168,67,.05), transparent, rgba(212,168,67,.05), transparent);
  animation: frameGlow 6s linear infinite;
}

@keyframes frameGlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-label {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--secondary);
  letter-spacing: 4px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.hero-name {
  font-size: 4rem;
  font-weight: 900;
  color: var(--secondary);
  position: relative;
  z-index: 1;
  line-height: 1.3;
}

.hero-line {
  display: block;
}

.hero-line.highlight {
  color: var(--secondary);
  font-size: 2.6rem;
  font-weight: 700;
  margin-top: 8px;
}

.hero-line.sub {
  display: block;
  font-size: 1.15rem;
  font-weight: 500;
  margin-top: 18px;
  color: var(--secondary);
  opacity: .9;
  border-top: 1px solid rgba(212,168,67,.2);
  border-bottom: 1px solid rgba(212,168,67,.2);
  padding: 8px 0;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

.hero-desc {
  font-size: 1.35rem;
  opacity: .85;
  margin-bottom: 40px;
  line-height: 2;
  color: rgba(255,255,255,.9);
  min-height: 2em;
}

.typewriter::after {
  content: '|';
  animation: blink .8s step-end infinite;
  color: var(--secondary);
}

@keyframes blink {
  50% { opacity: 0; }
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.5);
  font-size: .8rem;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-dot {
  width: 4px;
  height: 8px;
  background: var(--secondary);
  border-radius: 2px;
  animation: scrollDot 1.5s ease-in-out infinite;
}

@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

/* === ABOUT === */
.about {
  background: rgba(248,246,241,.82);
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 100px;
  background: var(--white);
  clip-path: ellipse(70% 100% at 50% 0);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text .section-title {
  text-align: right;
}

.about-text .section-title::after {
  margin: 14px 0 0;
}

.about-text p {
  margin-bottom: 20px;
  color: var(--text-light);
  font-size: 1.05rem;
}

.progress-list {
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--primary);
}

.progress-percent {
  color: var(--secondary);
}

.progress-track {
  width: 100%;
  height: 6px;
  background: rgba(212,168,67,.15);
  border-radius: 10px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--secondary), var(--secondary-light));
  border-radius: 10px;
  width: 0;
  transition: width 1.2s cubic-bezier(.22,1,.36,1);
}

.stats {
  display: flex;
  gap: 30px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(0,0,0,.05);
}

.stat {
  text-align: center;
  flex: 1;
}

.stat i {
  font-size: 1.5rem;
  color: var(--secondary);
  margin-bottom: 8px;
  display: block;
}

.stat-num {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1.2;
}

.stat-label {
  font-size: .85rem;
  color: var(--text-light);
  font-weight: 600;
}

.img-frame {
  position: relative;
  padding: 10px;
  border: 2px solid var(--secondary);
  border-radius: calc(var(--radius) + 6px);
  background: rgba(255,255,255,.05);
  overflow: hidden;
}

.img-frame::before {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: var(--radius);
  border: 1px solid rgba(212,168,67,.25);
  pointer-events: none;
  z-index: 1;
}

.about-img-src {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 9/16;
  object-fit: cover;
  object-position: center 30%;
  box-shadow: 0 8px 30px rgba(0,0,0,.25);
  display: block;
  position: relative;
  z-index: 0;
  transition: transform .4s ease;
}

.about-img-src:hover {
  transform: scale(1.02);
}

.img-badge {
  position: absolute;
  bottom: -15px;
  right: -15px;
  background: var(--primary);
  color: var(--secondary);
  padding: 12px 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: .9rem;
  box-shadow: var(--shadow-hover);
}

.img-badge i {
  font-size: 1.3rem;
}

/* === SERVICES === */
.services {
  background: rgba(255,255,255,.82);
}

.services-bottom {
  margin-top: 50px;
  padding: 30px 35px;
  background: rgba(248,246,241,.95);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,.04);
  box-shadow: var(--shadow);
}

.services-bottom-title {
  font-size: 1.25rem;
  margin-bottom: 20px;
  color: var(--primary);
}

.services-bottom-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.services-bottom-list li {
  position: relative;
  padding-right: 24px;
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
}

.services-bottom-list li::before {
  content: '•';
  position: absolute;
  right: 0;
  color: var(--secondary);
  font-weight: 700;
  font-size: 1.2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: rgba(248,246,241,.95);
  backdrop-filter: blur(8px);
  padding: 40px 30px 35px;
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,.04);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--secondary-light));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .5s cubic-bezier(.22,1,.36,1);
}

.service-card:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

.card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent), rgba(212,168,67,.2));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: var(--secondary);
  transition: var(--transition);
}

.service-card:hover .card-icon {
  background: var(--secondary);
  color: var(--primary);
  transform: scale(1.1) rotate(-5deg);
}

.service-card h3 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-light);
  font-size: .95rem;
  margin-bottom: 18px;
}

.card-link {
  color: var(--secondary);
  text-decoration: none;
  font-weight: 600;
  font-size: .9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.card-link i {
  transition: transform .35s ease;
}

.card-link:hover i {
  transform: translateX(-4px);
}

/* === TESTIMONIALS === */
.testimonials {
  background: var(--bg-light);
}

.testimonials-slider {
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
}

.testimonials-track {
  display: flex;
  transition: transform .5s cubic-bezier(.22,1,.36,1);
}

.testimonial-card {
  min-width: 100%;
  padding: 40px 45px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.stars {
  color: #f1c40f;
  margin-bottom: 20px;
  font-size: 1rem;
  display: flex;
  gap: 4px;
  justify-content: center;
}

.stars i {
  animation: starPop .3s ease forwards;
  opacity: 0;
  transform: scale(0);
}

.stars i:nth-child(1) { animation-delay: .1s; }
.stars i:nth-child(2) { animation-delay: .2s; }
.stars i:nth-child(3) { animation-delay: .3s; }
.stars i:nth-child(4) { animation-delay: .4s; }
.stars i:nth-child(5) { animation-delay: .5s; }

@keyframes starPop {
  to { opacity: 1; transform: scale(1); }
}

.testimonial-card p {
  color: var(--text-light);
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 2;
}

.client {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.client-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
}

.client strong {
  display: block;
  font-size: 1rem;
  color: var(--primary);
}

.client span {
  font-size: .8rem;
  color: var(--text-light);
}

.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(212,168,67,.3);
  background: transparent;
  color: var(--secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 1rem;
}

.slider-btn:hover {
  background: var(--secondary);
  color: var(--primary);
  border-color: var(--secondary);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(212,168,67,.2);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background: var(--secondary);
  width: 30px;
  border-radius: 5px;
}

/* === CONTACT === */
.contact {
  background: rgba(255,255,255,.82);
}

.contact-grid {
  max-width: 640px;
  margin: 0 auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-group {
  position: relative;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 18px 18px 8px;
  border: 2px solid #e0d6cc;
  border-radius: 12px;
  background: var(--white);
  font-family: 'Cairo', sans-serif;
  font-size: 1rem;
  color: var(--text);
  transition: var(--transition);
  outline: none;
  direction: rtl;
  text-align: right;
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236a5a5e' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 16px center;
  padding-left: 40px;
  cursor: pointer;
}

.form-group select:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(212,168,67,.12);
}

.form-group label {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  font-size: 1rem;
  color: var(--text-light);
  pointer-events: none;
  transition: var(--transition);
  background: var(--white);
  padding: 0 4px;
}

.form-group textarea ~ label {
  top: 18px;
  transform: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(212,168,67,.12);
}

.form-group input:focus ~ label,
.form-group input:valid ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:valid ~ label,
.form-group select:focus ~ label,
.form-group select:not([value=""]) ~ label {
  top: 0;
  right: 14px;
  font-size: .75rem;
  color: var(--secondary);
  transform: translateY(-50%);
  background: var(--white);
}

.form-focus {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: var(--transition);
}

.form-group input:focus ~ .form-focus,
.form-group textarea:focus ~ .form-focus,
.form-group select:focus ~ .form-focus {
  width: 100%;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 640px;
  margin: 50px auto 0;
}

.info-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.info-card:hover {
  transform: translateX(-5px);
  box-shadow: var(--shadow-sm);
}

.info-icon {
  width: 48px;
  height: 48px;
  background: var(--accent);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.info-card h4 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 4px;
}

.info-card p,
.info-card a {
  color: var(--text-light);
  font-size: .95rem;
  text-decoration: none;
}

.info-card a[href^="tel:"] {
  color: var(--secondary);
  font-weight: 700;
  direction: ltr;
  display: inline-block;
}

.info-card a:hover {
  color: var(--secondary);
}

.info-cta {
  text-align: center;
  padding: 25px;
  background: linear-gradient(135deg, rgba(37,211,102,.08), rgba(37,211,102,.03));
  border-radius: var(--radius-sm);
  border: 1px dashed rgba(37,211,102,.3);
}

.info-cta p {
  margin-bottom: 12px;
  font-weight: 600;
  color: var(--text);
}

/* === FOOTER === */
.footer {
  background: rgba(26,15,18,.95);
  color: rgba(255,255,255,.85);
  position: relative;
  padding-top: 60px;
}

.footer-wave {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  line-height: 0;
}

.footer-wave svg {
  width: 100%;
  height: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  padding: 70px 0 40px;
  position: relative;
  z-index: 2;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.4rem;
  font-weight: 900;
  color: #f0e2b5;
  margin-bottom: 18px;
}

.footer-logo i {
  font-size: 1.6rem;
}

.footer-about p {
  margin-bottom: 22px;
  line-height: 2;
  opacity: .9;
  color: rgba(255,255,255,.8);
}

.social {
  display: flex;
  gap: 10px;
}

.social a {
  width: 42px;
  height: 42px;
  background: rgba(212,168,67,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  text-decoration: none;
  transition: var(--transition);
  font-size: 1rem;
}

.social a:hover {
  background: var(--secondary);
  color: var(--primary);
  transform: translateY(-4px);
}

.footer-col h3 {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 22px;
  position: relative;
  letter-spacing: .5px;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  right: 0;
  width: 45px;
  height: 3px;
  background: var(--secondary);
  border-radius: 2px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  color: rgba(255,255,255,.8);
  text-decoration: none;
  transition: var(--transition);
  font-size: .95rem;
  font-weight: 500;
}

.footer-col a:hover {
  color: var(--secondary);
  padding-right: 5px;
}

.footer-bottom-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-bottom-list li {
  color: rgba(255,255,255,.8);
  font-size: .95rem;
  line-height: 1.6;
  position: relative;
  padding-right: 18px;
}

.footer-bottom-list li::before {
  content: '•';
  position: absolute;
  right: 0;
  color: var(--secondary);
}

.footer-col p {
  color: rgba(255,255,255,.85);
  font-size: .95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-col p i {
  color: var(--secondary);
  width: 16px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 25px 0;
  text-align: center;
  font-size: .95rem;
  color: rgba(255,255,255,.6);
  position: relative;
  z-index: 2;
}
.footer-bottom strong {
  color: var(--secondary);
}

/* === WHATSAPP FLOAT === */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 999;
}

.whatsapp-float a {
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
  box-shadow: 0 4px 25px rgba(37,211,102,.4);
  transition: var(--transition);
  text-decoration: none;
  animation: whatsappPulse 2s ease-in-out infinite;
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 25px rgba(37,211,102,.4); }
  50% { box-shadow: 0 4px 40px rgba(37,211,102,.6); }
}

.whatsapp-float a:hover {
  transform: scale(1.12);
}

/* === RESPONSIVE === */
@media (max-width: 991px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    max-width: 100%;
  }
  .contact-info {
    max-width: 100%;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-title {
    font-size: 2.8rem;
  }
  .hero-line.highlight {
    font-size: 1.7rem;
  }
  .section {
    padding: 80px 0;
  }
  .about::before {
    display: none;
  }
  .about-img {
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--primary);
    padding: 24px;
    gap: 18px;
    border-top: 1px solid rgba(255,255,255,.05);
  }
  .nav.active {
    display: flex;
  }
  .hamburger {
    display: flex;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .stats {
    gap: 16px;
    flex-wrap: wrap;
  }
  .stat {
    flex: 1 1 80px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 50px 16px 30px;
  }
  .footer-logo {
    font-size: 1.2rem;
  }
  .footer-about p,
  .footer-col p,
  .footer-col a {
    font-size: 1rem;
  }
  .footer-col h3 {
    font-size: 1.1rem;
  }
  .hero-title {
    font-size: 2.3rem;
  }
  .hero-line.highlight {
    font-size: 1.4rem;
  }
  .hero-content p {
    font-size: 1.15rem;
  }
  .section {
    padding: 60px 0;
  }
  .section:last-of-type {
    padding-bottom: 80px;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .section-desc {
    margin-bottom: 35px;
  }
  .footer-wave svg {
    height: 40px;
  }
  .testimonial-card {
    padding: 30px 20px;
  }
  .scroll-top {
    bottom: 80px;
    left: 16px;
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }
  .whatsapp-float {
    bottom: 16px;
    left: 16px;
  }
  .whatsapp-float a {
    width: 50px;
    height: 50px;
    font-size: 1.6rem;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px;
  }
  .footer-bottom {
    padding: 20px 16px;
    font-size: .85rem;
  }
}
