 /* ===== VARIABLES & RESET ===== */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800;900&family=Tajawal:wght@300;400;500;700;800;900&display=swap');

:root {
  --navy: #0A1628;
  --navy-mid: #112240;
  --navy-light: #1A3460;
  --orange: #F97316;
  --orange-dark: #EA6C0A;
  --orange-light: #FDB97D;
  --white: #FFFFFF;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-400: #94A3B8;
  --gray-600: #475569;
  --gray-800: #1E293B;
  --shadow-sm: 0 2px 8px rgba(10,22,40,0.08);
  --shadow-md: 0 8px 32px rgba(10,22,40,0.12);
  --shadow-lg: 0 20px 60px rgba(10,22,40,0.18);
  --shadow-orange: 0 8px 32px rgba(249,115,22,0.30);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-primary: 'Cairo', sans-serif;
  --font-secondary: 'Tajawal', sans-serif;
}

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

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

body {
  font-family: var(--font-primary);
  color: var(--gray-800);
  background: var(--white);
  direction: rtl;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 { font-family: var(--font-primary); font-weight: 800; line-height: 1.3; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249,115,22,0.1);
  color: var(--orange);
  border: 1px solid rgba(249,115,22,0.2);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--navy);
  margin-bottom: 16px;
  font-weight: 900;
}

.section-title span { color: var(--orange); }

.section-desc {
  color: var(--gray-600);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.8;
}

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: var(--transition);
}

.btn:hover::before { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: white;
  box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(249,115,22,0.45);
}

.btn-secondary {
  background: white;
  color: var(--navy);
  box-shadow: var(--shadow-md);
  border: 2px solid var(--gray-200);
}

.btn-secondary:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

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

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

.btn-lg {
  padding: 18px 44px;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.9rem;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-weight: 700;
  font-size: 1.1rem;
  transition: var(--transition);
  direction: ltr;
}

.phone-link:hover { color: var(--orange-dark); }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 16px 0;
}

.header.scrolled {
  background: var(--navy);
  box-shadow: 0 4px 30px rgba(10,22,40,0.3);
  padding: 12px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: var(--shadow-orange);
}

.logo-text strong {
  display: block;
  color: white;
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1.2;
}

.logo-text span {
  color: var(--gray-400);
  font-size: 0.75rem;
  font-weight: 400;
}

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

.nav a {
  color: rgba(255,255,255,0.8);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 16px;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}

.nav a:hover, .nav a.active {
  color: white;
  background: rgba(255,255,255,0.1);
}

.nav a.active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 0.9rem;
  direction: ltr;
}

.header-phone .phone-num {
  font-weight: 800;
  font-size: 1rem;
  color: var(--orange-light);
  letter-spacing: 0.5px;
}

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

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

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, var(--navy-light) 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 0 60px;
}

.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.03'%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");
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,0.15) 0%, transparent 70%);
  top: -100px;
  left: -100px;
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,0.1) 0%, transparent 70%);
  bottom: -50px;
  right: 20%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249,115,22,0.15);
  border: 1px solid rgba(249,115,22,0.3);
  color: var(--orange-light);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease both;
}

.hero-title {
  color: white;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 20px;
  animation: fadeInDown 0.8s ease 0.1s both;
}

.hero-title span {
  color: var(--orange);
  position: relative;
}

.hero-desc {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  line-height: 1.9;
  margin-bottom: 36px;
  animation: fadeInDown 0.8s ease 0.2s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 48px;
  animation: fadeInDown 0.8s ease 0.3s both;
}

.hero-phone-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  padding: 12px 20px;
  border-radius: 12px;
}

.hero-phone-box .phone-icon {
  width: 36px;
  height: 36px;
  background: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.hero-phone-box .phone-label {
  color: rgba(255,255,255,0.6);
  font-size: 0.78rem;
  display: block;
  margin-bottom: 2px;
}

.hero-phone-box .phone-number {
  color: white;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 1px;
  direction: ltr;
  display: block;
}

.hero-stats {
  display: flex;
  gap: 32px;
  animation: fadeInDown 0.8s ease 0.4s both;
}

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

.hero-stat .num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--orange);
  display: block;
  line-height: 1;
}

.hero-stat .label {
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  margin-top: 4px;
}

.hero-image-wrap {
  position: relative;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-image-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  position: relative;
}

.hero-image-card img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.hero-float-card {
  position: absolute;
  background: white;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-float-card.card-1 {
  bottom: -20px;
  right: -20px;
  animation: float 3s ease-in-out infinite;
}

.hero-float-card.card-2 {
  top: 30px;
  left: -30px;
  animation: float 3s ease-in-out infinite 1.5s;
}

.float-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.float-icon.green { background: rgba(34,197,94,0.1); }
.float-icon.blue { background: rgba(59,130,246,0.1); }

.float-text strong {
  display: block;
  font-size: 1.1rem;
  color: var(--navy);
  font-weight: 800;
}

.float-text span {
  font-size: 0.78rem;
  color: var(--gray-600);
}

/* ===== SECTIONS ===== */
section { padding: 80px 0; }

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

/* ===== SERVICES ===== */
.services-section { background: var(--gray-50); }

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

.service-card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--gray-200);
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-dark));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: right;
}

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

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

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

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

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

.service-body {
  padding: 24px;
}

.service-icon {
  width: 50px;
  height: 50px;
  background: rgba(249,115,22,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.service-body h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 10px;
  font-weight: 800;
}

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

/* ===== WHY US ===== */
.why-us { background: white; }

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

.why-img-wrap { position: relative; }

.why-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.why-img-main img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.why-badge {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background: var(--navy);
  color: white;
  padding: 20px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.why-badge .num { font-size: 2.5rem; font-weight: 900; color: var(--orange); line-height: 1; }
.why-badge .txt { font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-top: 4px; }

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

.why-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.why-feature:hover {
  border-color: rgba(249,115,22,0.2);
  background: rgba(249,115,22,0.02);
  transform: translateX(-4px);
}

.why-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(249,115,22,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.why-feature h4 {
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 4px;
  font-weight: 700;
}

.why-feature p {
  color: var(--gray-600);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ===== HOW IT WORKS ===== */
.how-it-works { background: var(--gray-50); }

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

.steps-grid::before {
  content: '';
  position: absolute;
  top: 48px;
  right: 12.5%;
  left: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), transparent);
  pointer-events: none;
}

.step-card {
  text-align: center;
  padding: 32px 20px;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
}

.step-card:hover {
  border-color: var(--orange);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white;
  font-size: 1.4rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-orange);
  position: relative;
  z-index: 1;
}

.step-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.step-card h4 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 8px;
  font-weight: 800;
}

.step-card p {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--navy); padding: 80px 0; }

.testimonials .section-title { color: white; }
.testimonials .section-desc { color: rgba(255,255,255,0.6); }

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

.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: var(--transition);
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.star { color: #FCD34D; font-size: 1rem; }

.testimonial-text {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}

.author-name {
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
}

.author-city {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
}

/* ===== FAQ ===== */
.faq-section { background: var(--gray-50); }

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.faq-item.open { border-color: rgba(249,115,22,0.3); }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
  font-size: 1rem;
  gap: 16px;
  transition: var(--transition);
  user-select: none;
}

.faq-item.open .faq-question { color: var(--orange); }

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item.open .faq-icon {
  background: rgba(249,115,22,0.1);
  color: var(--orange);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.8;
  border-top: 1px solid var(--gray-100);
  padding-top: 16px;
}

.faq-item.open .faq-answer { max-height: 500px; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M20 20c0-5.5-4.5-10-10-10S0 14.5 0 20s4.5 10 10 10 10-4.5 10-10zm10-10c0-5.5-4.5-10-10-10v20c5.5 0 10-4.5 10-10z'/%3E%3C/g%3E%3C/svg%3E");
}

.cta-content { position: relative; z-index: 1; }

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: white;
  font-weight: 900;
  margin-bottom: 16px;
}

.cta-desc {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto 40px;
}

.cta-phone {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: white;
  direction: ltr;
  display: block;
  margin-bottom: 32px;
  letter-spacing: 2px;
}

.cta-phone a { color: white; }

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

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

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

.footer-about .logo { margin-bottom: 16px; }

.footer-about p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-phone-block {
  background: rgba(249,115,22,0.1);
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-phone-block .ph-icon {
  width: 40px;
  height: 40px;
  background: var(--orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.footer-phone-block .ph-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  display: block;
  margin-bottom: 2px;
}

.footer-phone-block .ph-number {
  color: white;
  font-weight: 800;
  font-size: 1rem;
  direction: ltr;
  display: block;
}

.footer-title {
  color: white;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 32px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '←';
  font-size: 0.75rem;
  color: var(--orange);
  opacity: 0;
  transform: translateX(8px);
  transition: var(--transition);
}

.footer-links a:hover {
  color: white;
  padding-right: 8px;
}

.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
}

.contact-icon {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom a {
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}

.footer-bottom a:hover { color: var(--orange); }

/* ===== FLOATING CALL BUTTON ===== */
.float-call-btn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 999;
  animation: pulse-ring 2s ease-in-out infinite;
}

.float-call-btn a {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white;
  padding: 16px 24px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: 0 8px 32px rgba(249,115,22,0.5);
  transition: var(--transition);
}

.float-call-btn a:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 48px rgba(249,115,22,0.6);
}

.float-call-btn .call-icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

/* ===== ABOUT PAGE ===== */
.about-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero-title { color: white; margin-bottom: 16px; }
.page-hero-desc { color: rgba(255,255,255,0.7); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
}

.breadcrumb a { color: var(--orange); }
.breadcrumb-sep { color: rgba(255,255,255,0.3); }

.about-story { padding: 80px 0; background: white; }

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

.about-img-wrap {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-img-secondary {
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 200px;
  height: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 4px solid white;
  box-shadow: var(--shadow-md);
}

.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }

.about-vision-mission {
  background: var(--gray-50);
  padding: 80px 0;
}

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

.vm-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 36px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.vm-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.vm-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}

.vm-card h3 { color: var(--navy); margin-bottom: 12px; }
.vm-card p { color: var(--gray-600); line-height: 1.8; }

.team-section { background: white; padding: 80px 0; }

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

.team-card {
  text-align: center;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.team-card:hover {
  border-color: var(--orange);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--orange));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 16px;
  color: white;
  font-weight: 800;
  box-shadow: var(--shadow-md);
}

.team-card h4 { color: var(--navy); font-size: 1rem; margin-bottom: 4px; }
.team-card span { color: var(--gray-600); font-size: 0.85rem; }

/* ===== SERVICES PAGE ===== */
.services-page { background: var(--gray-50); padding: 80px 0; }

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

.service-page-card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

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

.service-page-img {
  height: 220px;
  overflow: hidden;
}

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

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

.service-page-body { padding: 28px; }
.service-page-body h3 { color: var(--navy); margin-bottom: 12px; font-size: 1.15rem; }
.service-page-body p { color: var(--gray-600); font-size: 0.9rem; line-height: 1.7; margin-bottom: 16px; }

.service-features { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.service-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--gray-600);
}

.check-icon { color: #22c55e; font-size: 0.9rem; }

/* ===== CONTACT PAGE ===== */
.contact-section { background: var(--gray-50); padding: 80px 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
}

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

.contact-info-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.contact-info-card:hover { border-color: var(--orange); }

.ci-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.ci-icon.orange { background: rgba(249,115,22,0.1); }
.ci-icon.blue { background: rgba(59,130,246,0.1); }
.ci-icon.green { background: rgba(34,197,94,0.1); }

.contact-info-card h4 { color: var(--navy); font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.contact-info-card p { color: var(--gray-600); font-size: 0.9rem; }
.contact-info-card a { color: var(--orange); font-weight: 700; }

.contact-form-wrap {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.form-title {
  font-size: 1.4rem;
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 28px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 0;
}

.form-group.full { grid-column: 1 / -1; }

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

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  color: var(--gray-800);
  background: var(--gray-50);
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--orange);
  background: white;
  box-shadow: 0 0 0 3px rgba(249,115,22,0.08);
}

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

.map-section { padding: 0 0 80px; background: var(--gray-50); }

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 400px;
}

.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* ===== PRIVACY & TERMS ===== */
.legal-section { background: white; padding: 80px 0; }

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h3 {
  color: var(--navy);
  margin: 32px 0 12px;
  font-size: 1.2rem;
}

.legal-content p, .legal-content li {
  color: var(--gray-600);
  line-height: 1.9;
  margin-bottom: 12px;
}

.legal-content ul { padding-right: 24px; list-style: disc; }
.legal-content a { color: var(--orange); }

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

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

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

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(249,115,22,0.4); }
  70% { box-shadow: 0 0 0 20px rgba(249,115,22,0); }
  100% { box-shadow: 0 0 0 0 rgba(249,115,22,0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ===== MOBILE NAV ===== */
@media (max-width: 991px) {
  .hamburger { display: flex; }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    align-items: stretch;
    padding: 80px 24px 40px;
    gap: 4px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -20px 0 60px rgba(0,0,0,0.4);
    z-index: 1001;
  }

  .nav.open { right: 0; }
  .nav a { padding: 12px 16px; border-radius: 10px; font-size: 1rem; }

  .header-phone { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-image-wrap { order: -1; }
  .hero-image-card img { height: 300px; }
  .hero-float-card { display: none; }
  .hero-stats { gap: 20px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-img-wrap { display: none; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .services-page-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .vm-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .float-call-btn a span { display: none; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .services-page-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .btn-lg { padding: 14px 28px; font-size: 1rem; }
  .hero-actions { flex-direction: column; }
  section { padding: 56px 0; }
}

/* ===== NAV OVERLAY ===== */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  backdrop-filter: blur(4px);
}

.nav-overlay.open { display: block; }