* {
  font-family: "Cairo", sans-serif;
}

:root {
  --primary: #2563eb;
  --primary-dark: #1e40af;
  --primary-light: #3b82f6;
  --secondary: #06b6d4;
  --accent: #10b981;
  --dark: #0f172a;
  --light: #f1f5f9;
  --gradient-primary: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  --gradient-secondary: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
  --shadow: 0 10px 40px rgba(37, 99, 235, 0.15);
  --shadow-lg: 0 20px 60px rgba(37, 99, 235, 0.2);
}

body {
  background: #ffffff;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--light);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 10px;
}

/* Navbar */
.navbar {
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
  height: 55px;
  transition: transform 0.3s ease;
}

.navbar-brand:hover img {
  transform: scale(1.05);
}

.nav-link {
  font-weight: 700;
  font-size: 15px;
  padding: 0.6rem 1.2rem !important;
  margin: 0 0.2rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  color: #1e293b !important;
  position: relative;
}

.nav-link:hover {
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary) !important;
  transform: translateY(-2px);
}

.nav-link.active {
  background: var(--gradient-primary);
  color: white !important;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-nav-cta {
  background: var(--gradient-primary);
  color: white;
  font-weight: 800;
  padding: 0.7rem 1.8rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: none;
  transition: all 0.3s ease;
}

.btn-nav-cta:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* WhatsApp Floating */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  left: 25px;
  z-index: 1000;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: white;
  padding: 15px 25px;
  border-radius: 50px;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 50px rgba(37, 211, 102, 0.5);
  color: white;
}

.whatsapp-float i {
  font-size: 24px;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 8px 40px rgba(37, 211, 102, 0.6);
  }
}

/* Page Transitions */
.page-content {
  display: none;
  animation: fadeInUp 0.6s ease;
  zoom: 0.9;
}

.page-content.active {
  display: block;
}

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

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 50%, #ffffff 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.1), transparent 70%);
  animation: float 20s infinite ease-in-out;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(120deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }
}

.hero-title {
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1.2;
  background: linear-gradient(135deg, #1e40af 0%, #2563eb 50%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.btn-hero-primary {
  background: var(--gradient-primary);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 14px;
  font-weight: 800;
  font-size: 1.1rem;
  border: none;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-hero-primary:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.btn-hero-outline {
  background: white;
  color: var(--primary);
  padding: 1rem 2.5rem;
  border-radius: 14px;
  font-weight: 800;
  font-size: 1.1rem;
  border: 2px solid var(--primary);
  transition: all 0.3s ease;
}

.btn-hero-outline:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-4px);
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.feature-badge {
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.feature-badge:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
}

.feature-badge i {
  color: var(--accent);
  font-size: 1.3rem;
}

.hero-image {
  position: relative;
}

.hero-image-wrapper {
  background: white;
  padding: 1.5rem;
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
  border: 3px solid rgba(37, 99, 235, 0.1);
  position: relative;
  overflow: hidden;
}

.hero-image-wrapper::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(37, 99, 235, 0.05),
    transparent
  );
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.hero-image-wrapper img {
  border-radius: 20px;
  width: 100%;
  height: auto;
}

/* Services Section */
.services-section {
  padding: 100px 0;
  background: white;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #64748b;
  text-align: center;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.service-card-main {
  background: white;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card-main:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

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

.service-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  filter: drop-shadow(0 4px 10px rgba(37, 99, 235, 0.3));
}

.service-title {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--dark);
}

.service-description {
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.service-badge {
  display: inline-block;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 800;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.sub-service-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  border: 2px solid rgba(37, 99, 235, 0.1);
  transition: all 0.4s ease;
  height: 100%;
}

.sub-service-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 15px 40px rgba(37, 99, 235, 0.15);
}

.sub-service-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.sub-service-icon i {
  font-size: 2rem;
  color: white;
}

.sub-service-title {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--dark);
}

.sub-service-desc {
  color: #64748b;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Gallery Section */
.gallery-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.gallery-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.gallery-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.gallery-header {
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  border-bottom: 2px solid rgba(37, 99, 235, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gallery-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
  margin: 0;
}

.gallery-link {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  border-radius: 10px;
  border: 2px solid var(--primary);
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.gallery-link:hover {
  background: var(--primary);
  color: white;
}

.gallery-image {
  position: relative;
  overflow: hidden;
}

.gallery-image img {
  width: 100%;
  height: auto;
  transition: transform 0.6s ease;
}

.gallery-card:hover .gallery-image img {
  transform: scale(1.1);
}

/* Stats Section */
.stats-section {
  padding: 80px 0;
  background: var(--gradient-primary);
  color: white;
}

.stat-card {
  text-align: center;
  padding: 2rem;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.stat-label {
  font-size: 1.2rem;
  font-weight: 600;
  opacity: 0.95;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: white;
  padding: 80px 0 0;
}

.footer-brand {
  margin-bottom: 2rem;
}

.footer-logo {
  height: 60px;
  margin-bottom: 1.5rem;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

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

.social-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
  color: white;
  font-size: 1.3rem;
}

.social-icon:hover {
  background: var(--primary);
  transform: translateY(-5px);
  color: white;
}

.footer-title {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.05rem;
}

.footer-links a:hover {
  color: white;
  transform: translateX(-5px);
}

.footer-links a i {
  color: var(--primary-light);
}

.footer-contact {
  display: flex;
  align-items: start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-contact-icon {
  width: 45px;
  height: 45px;
  background: rgba(37, 99, 235, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-contact-icon i {
  color: var(--primary-light);
  font-size: 1.2rem;
}

.footer-contact-text {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.footer-bottom {
  margin-top: 4rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}

/* Services Page Styles */
.services-hero {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  position: relative;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: #64748b;
}

.breadcrumb-nav a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
}

.breadcrumb-nav a:hover {
  color: var(--primary-dark);
}

.page-main-title {
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}

.page-main-subtitle {
  font-size: 1.3rem;
  color: #64748b;
  line-height: 1.8;
}

.services-detailed-section {
  padding: 80px 0;
}

.service-category-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 3px solid rgba(37, 99, 235, 0.1);
}

.category-icon-wrapper {
  width: 90px;
  height: 90px;
  background: var(--gradient-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.category-icon-wrapper i {
  font-size: 2.5rem;
  color: white;
}

.category-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.category-subtitle {
  font-size: 1.1rem;
  color: #64748b;
  margin: 0;
}

.detailed-service-card {
  background: white;
  border-radius: 24px;
  padding: 2.5rem;
  height: 100%;
  border: 2px solid rgba(37, 99, 235, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.detailed-service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.detailed-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.2);
  border-color: var(--primary);
}

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

.service-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.service-number {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(37, 99, 235, 0.15);
  line-height: 1;
}

.service-icon-badge {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.service-icon-badge i {
  font-size: 2rem;
  color: white;
}

.detailed-service-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1rem;
}

.detailed-service-desc {
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.service-features-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.service-features-list li {
  padding: 0.6rem 0;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
}

.service-features-list i {
  color: var(--accent);
  font-size: 1.1rem;
}

.service-tags {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.btn-service-order {
  background: var(--gradient-primary);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1.5rem;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-service-order:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.service-tag {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-block;
}

.service-tag.primary {
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary);
}

.service-tag.accent {
  background: rgba(16, 185, 129, 0.1);
  color: var(--accent);
}

.service-tag.success {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
}

.service-tag.info {
  background: rgba(6, 182, 212, 0.1);
  color: var(--secondary);
}

.service-tag.warning {
  background: rgba(245, 158, 11, 0.1);
  color: #d97706;
}

.service-tag.danger {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
}

/* Modern Service Cards */
.service-card-modern {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  border: 2px solid rgba(37, 99, 235, 0.08);
  transition: all 0.3s ease;
  text-align: center;
}

.service-card-modern:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(37, 99, 235, 0.15);
  border-color: var(--primary-light);
}

.modern-card-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 25px rgba(6, 182, 212, 0.3);
}

.modern-card-icon i {
  font-size: 2.2rem;
  color: white;
}

.modern-card-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1rem;
}

.modern-card-desc {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.modern-features-list {
  list-style: none;
  padding: 0;
  text-align: right;
}

.modern-features-list li {
  padding: 0.5rem 0;
  color: #475569;
  font-size: 0.9rem;
  position: relative;
  padding-right: 1.5rem;
}

.modern-features-list li::before {
  content: "◆";
  position: absolute;
  right: 0;
  color: var(--secondary);
  font-size: 0.7rem;
}

/* CTA Section */
.services-cta-section {
  padding: 80px 0;
  background: var(--gradient-primary);
}

.cta-card-large {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 30px;
  padding: 4rem 3rem;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.cta-icon-circle {
  width: 100px;
  height: 100px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
}

.cta-icon-circle i {
  font-size: 3rem;
  color: white;
}

.cta-title {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
}

.cta-description {
  font-size: 1.2rem;
  color: #64748b;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.cta-buttons-group {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.btn-cta-primary {
  background: var(--gradient-primary);
  color: white;
  padding: 1.2rem 3rem;
  border-radius: 14px;
  font-weight: 800;
  font-size: 1.15rem;
  border: none;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}

.btn-cta-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
}

.btn-cta-secondary {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: white;
  padding: 1.2rem 3rem;
  border-radius: 14px;
  font-weight: 800;
  font-size: 1.15rem;
  border: none;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.btn-cta-secondary:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
  color: white;
}

.cta-features-badges {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-badge {
  background: rgba(37, 99, 235, 0.08);
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  color: var(--primary);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  border: 2px solid rgba(37, 99, 235, 0.15);
}

.cta-badge i {
  font-size: 1.1rem;
}

/* Gallery Page Styles */
.gallery-page-hero {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.gallery-filter-section {
  padding: 40px 0;
  background: white;
  border-bottom: 2px solid rgba(37, 99, 235, 0.1);
  position: sticky;
  top: 80px;
  z-index: 100;
}

.filter-tabs-wrapper {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.filter-tab {
  background: white;
  border: 2px solid rgba(37, 99, 235, 0.2);
  color: #64748b;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.filter-tab:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
}

.filter-tab.active {
  background: var(--gradient-primary);
  color: white;
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.gallery-grid-section {
  padding: 60px 0;
}

.gallery-item {
  animation: fadeInUp 0.6s ease;
}

.before-after-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  height: 100%;
}

.before-after-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.2);
  border-color: var(--primary-light);
}

.ba-card-header {
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  border-bottom: 2px solid rgba(37, 99, 235, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.ba-card-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
  margin: 0 0 0.3rem;
}

.ba-card-subtitle {
  font-size: 0.9rem;
  color: #64748b;
  margin: 0;
}

.ba-badge {
  background: var(--gradient-primary);
  color: white;
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.ba-badge.success {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.ba-badge.info {
  background: var(--gradient-secondary);
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.ba-badge.warning {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.ba-image-wrapper {
  position: relative;
  overflow: hidden;
  background: #f1f5f9;
}

.ba-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.before-after-card:hover .ba-image {
  transform: scale(1.05);
}

.ba-divider {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 10;
}

.ba-divider-line {
  width: 3px;
  height: 100%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    white 10%,
    white 90%,
    transparent 100%
  );
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

.ba-divider-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
  border: 4px solid white;
}

.ba-divider-icon i {
  color: white;
  font-size: 1.2rem;
}

.ba-card-footer {
  padding: 1.2rem 2rem;
  background: white;
}

.ba-stats {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.ba-stat {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #64748b;
  font-size: 0.9rem;
  font-weight: 600;
}

.ba-stat i {
  color: var(--primary);
  font-size: 1rem;
}

.btn-load-more {
  background: white;
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 1rem 3rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.btn-load-more:hover {
  background: var(--gradient-primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.load-more-note {
  margin-top: 1rem;
  color: #94a3b8;
  font-size: 0.95rem;
  font-style: italic;
}

.gallery-stats-banner {
  padding: 60px 0;
  background: var(--gradient-primary);
  margin-top: 40px;
}

.gallery-stat-item {
  color: white;
}

.gallery-stat-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}

.gallery-stat-item:hover .gallery-stat-icon {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.gallery-stat-icon i {
  font-size: 2rem;
}

.gallery-stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.gallery-stat-label {
  font-size: 1.1rem;
  opacity: 0.95;
  font-weight: 600;
}

/* About Page Styles */
.about-hero {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 50%, #bfdbfe 100%);
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15), transparent 70%);
  animation: float 15s infinite ease-in-out;
}

.about-story-section {
  padding: 100px 0;
}

.story-image-wrapper {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.story-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 30px;
}

.story-image-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  background: var(--gradient-primary);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 800;
  font-size: 1.1rem;
}

.story-image-badge i {
  font-size: 1.5rem;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary);
  padding: 0.6rem 1.3rem;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.section-title-alt {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.section-subtitle-alt {
  font-size: 1.15rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.story-text {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #475569;
  margin-bottom: 1.5rem;
}

.story-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(37, 99, 235, 0.05);
  border-radius: 12px;
  border-left: 4px solid var(--primary);
}

.highlight-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.highlight-icon i {
  color: white;
  font-size: 1.1rem;
}

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

/* Mission & Vision */
.mission-vision-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.mission-card {
  background: white;
  border-radius: 24px;
  padding: 3rem;
  height: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(37, 99, 235, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.mission-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--gradient-primary);
}

.mission-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.2);
}

.vision-card::before {
  background: var(--gradient-secondary);
}

.mission-icon-wrapper {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.vision-icon {
  background: var(--gradient-secondary);
  box-shadow: 0 10px 30px rgba(6, 182, 212, 0.3);
}

.mission-icon-wrapper i {
  font-size: 2.5rem;
  color: white;
}

.mission-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 1.2rem;
}

.mission-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #64748b;
  margin-bottom: 2rem;
}

.mission-list {
  list-style: none;
  padding: 0;
}

.mission-list li {
  padding: 0.8rem 0;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.05rem;
  font-weight: 600;
}

.mission-list i {
  color: #f59e0b;
  font-size: 1.1rem;
}

/* Values Section */
.values-section {
  padding: 100px 0;
}

.value-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  border: 2px solid rgba(37, 99, 235, 0.08);
  transition: all 0.4s ease;
  height: 100%;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(37, 99, 235, 0.15);
  border-color: var(--primary);
}

.value-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.1) 0%,
    rgba(59, 130, 246, 0.1) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.4s ease;
}

.value-card:hover .value-icon {
  background: var(--gradient-primary);
  transform: scale(1.1);
}

.value-icon i {
  font-size: 2.5rem;
  color: var(--primary);
  transition: all 0.4s ease;
}

.value-card:hover .value-icon i {
  color: white;
}

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

.value-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: #64748b;
}

/* Why Choose Us */
.why-choose-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
}

.feature-card-special {
  background: white;
  border-radius: 24px;
  padding: 2.5rem;
  height: 100%;
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-card-special::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-card-special:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.2);
  border-color: var(--primary-light);
}

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

.feature-number {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(37, 99, 235, 0.08);
  line-height: 1;
}

.feature-icon-special {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
  position: relative;
}

.feature-icon-special i {
  font-size: 2.2rem;
  color: white;
}

.feature-title-special {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.feature-desc-special {
  font-size: 1rem;
  line-height: 1.7;
  color: #64748b;
}

/* About CTA */
.about-cta-section {
  padding: 80px 0;
  background: var(--gradient-primary);
}

.about-cta-card {
  background: white;
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.cta-title-alt {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--primary-dark);
  margin-bottom: 0.8rem;
}

.cta-desc-alt {
  font-size: 1.15rem;
  color: #64748b;
  margin: 0;
}

.btn-cta-large {
  background: var(--gradient-primary);
  color: white;
  padding: 1.2rem 3rem;
  border-radius: 14px;
  font-weight: 800;
  font-size: 1.15rem;
  border: none;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}

.btn-cta-large:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
}

/* Contact Page Styles */
.contact-hero {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.contact-methods-section {
  padding: 80px 0;
}

.contact-method-card {
  background: white;
  border-radius: 24px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  transition: all 0.4s ease;
  height: 100%;
}

.contact-method-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.whatsapp-card {
  border-color: rgba(37, 211, 102, 0.3);
}

.whatsapp-card:hover {
  border-color: #25d366;
}

.phone-card {
  border-color: rgba(37, 99, 235, 0.3);
}

.phone-card:hover {
  border-color: var(--primary);
}

.email-card {
  border-color: rgba(239, 68, 68, 0.3);
}

.email-card:hover {
  border-color: #ef4444;
}

.contact-method-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.1),
    rgba(59, 130, 246, 0.1)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.whatsapp-card .contact-method-icon {
  background: linear-gradient(
    135deg,
    rgba(37, 211, 102, 0.1),
    rgba(18, 140, 126, 0.1)
  );
}

.phone-card .contact-method-icon {
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.1),
    rgba(59, 130, 246, 0.1)
  );
}

.email-card .contact-method-icon {
  background: linear-gradient(
    135deg,
    rgba(239, 68, 68, 0.1),
    rgba(220, 38, 38, 0.1)
  );
}

.contact-method-card:hover .contact-method-icon {
  transform: scale(1.1);
}

.contact-method-icon i {
  font-size: 2.5rem;
  color: var(--primary);
}

.whatsapp-card .contact-method-icon i {
  color: #25d366;
}

.email-card .contact-method-icon i {
  color: #ef4444;
}

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

.contact-method-desc {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.contact-method-info {
  background: rgba(37, 99, 235, 0.05);
  padding: 1rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  font-weight: 700;
  color: var(--primary);
}

.whatsapp-card .contact-method-info {
  background: rgba(37, 211, 102, 0.1);
  color: #16a34a;
}

.email-card .contact-method-info {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
}

.btn-contact-method {
  background: var(--gradient-primary);
  color: white;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.btn-contact-method:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
  color: white;
}

.whatsapp-btn {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.email-btn {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.3);
}

.email-btn:hover {
  box-shadow: 0 10px 30px rgba(239, 68, 68, 0.4);
}

/* Contact Form Section */
.contact-form-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.contact-form-wrapper {
  background: white;
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(37, 99, 235, 0.1);
}

.form-header {
  margin-bottom: 2.5rem;
}

.form-title {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary-dark);
  margin-bottom: 0.8rem;
}

.form-subtitle {
  color: #64748b;
  font-size: 1.05rem;
}

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

.form-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}

.form-label i {
  color: var(--primary);
}

.form-control-modern {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: "Cairo", sans-serif;
}

.form-control-modern:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.form-control-modern::placeholder {
  color: #94a3b8;
}

.btn-submit-form {
  background: var(--gradient-primary);
  color: white;
  padding: 1.2rem 3rem;
  border-radius: 12px;
  font-weight: 800;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
  display: inline-flex;
  align-items: center;
}

.btn-submit-form:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(37, 99, 235, 0.4);
}

.btn-submit-form:disabled {
  cursor: not-allowed;
  transform: none;
}

.btn-submit-form.btn-success-state {
  background: #10b981;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.btn-submit-form.btn-error-state {
  background: #ef4444;
  box-shadow: 0 8px 25px rgba(239, 68, 68, 0.3);
}

/* Toast Notification */
.toast-notification {
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(-100px);
  z-index: 10000;
  padding: 1rem 2rem;
  border-radius: 14px;
  color: white;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.toast-notification.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.toast-notification.toast-success {
  background: linear-gradient(135deg, #10b981, #059669);
}

.toast-notification.toast-error {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.toast-notification i {
  font-size: 1.3rem;
}

.toast-notification .toast-text {
  display: flex;
  flex-direction: column;
}

.toast-notification .toast-title {
  font-size: 1rem;
  font-weight: 800;
}

.toast-notification .toast-desc {
  font-size: 0.85rem;
  font-weight: 400;
  opacity: 0.9;
}

.form-note {
  margin-top: 1rem;
  color: #64748b;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-note i {
  color: var(--primary);
}

/* Contact Info */
.contact-info-wrapper {
  background: var(--gradient-primary);
  border-radius: 24px;
  padding: 3rem;
  color: white;
  height: 100%;
}

.contact-info-title {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.contact-info-desc {
  opacity: 0.95;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.contact-info-items {
  margin-bottom: 2.5rem;
}

.contact-info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon i {
  font-size: 1.3rem;
}

.contact-info-content h4 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.contact-info-content p {
  margin: 0;
  opacity: 0.9;
  line-height: 1.6;
}

.social-links-contact {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.social-title {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.social-icons-group {
  display: flex;
  gap: 1rem;
}

.social-icon-contact {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.3rem;
}

.social-icon-contact:hover {
  background: white;
  transform: translateY(-5px);
}

.social-icon-contact.twitter:hover {
  color: #1da1f2;
}

.social-icon-contact.instagram:hover {
  color: #e4405f;
}

.social-icon-contact.facebook:hover {
  color: #1877f2;
}

.social-icon-contact.whatsapp:hover {
  color: #25d366;
}

/* Map Section */
.map-section {
  padding: 80px 0;
}

.map-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
  height: 400px;
  background: #e2e8f0;
}

.map-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  pointer-events: none;
}

.map-overlay-content {
  background: white;
  padding: 2.5rem 3rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.map-overlay-content i {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.map-overlay-content h3 {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--primary-dark);
  margin-bottom: 0.8rem;
}

.map-overlay-content p {
  color: #64748b;
  margin-bottom: 1.5rem;
}

.btn-view-map {
  background: var(--gradient-primary);
  color: white;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: all;
  display: inline-flex;
  align-items: center;
}

.btn-view-map:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
}

/* Order Page Styles */
.order-hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);

  position: relative;
}

.order-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.order-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  opacity: 0.4;
  transition: all 0.3s ease;
}

.order-step.active {
  opacity: 1;
}

.step-number {
  width: 50px;
  height: 50px;
  background: white;
  border: 3px solid rgba(37, 99, 235, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.3rem;
  color: #9ca3af;
  transition: all 0.3s ease;
}

.order-step.active .step-number {
  background: var(--gradient-primary);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
  color: white;
  border-color: transparent;
}

.step-label {
  font-weight: 700;
  font-size: 0.9rem;
  color: #64748b;
}

.order-step.active .step-label {
  color: var(--primary-dark);
}

.order-step-line {
  width: 60px;
  height: 3px;
  background: rgba(37, 99, 235, 0.2);
  border-radius: 3px;
}

/* Order Content */
.order-content-section {
  padding: 60px 0 100px;
  background: #f8fafc;
}

/* Loading State */
.services-loading {
  background: white;
  border-radius: 24px;
  padding: 5rem 2rem;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.loading-spinner-modern {
  width: 80px;
  height: 80px;
  position: relative;
  margin: 0 auto 2rem;
}

.spinner-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 4px solid transparent;
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spinRing 1.5s linear infinite;
}

.spinner-ring:nth-child(2) {
  border-top-color: var(--secondary);
  animation-delay: -0.5s;
}

.spinner-ring:nth-child(3) {
  border-top-color: #ec4899;
  animation-delay: -1s;
}

@keyframes spinRing {
  to {
    transform: rotate(360deg);
  }
}

.loading-text {
  font-size: 1.1rem;
  color: #64748b;
  font-weight: 600;
}

/* Services Grid */
.services-grid-order {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.service-card-order {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(37, 99, 235, 0.15); /* Stronger border */
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* Added shadow */
}

.service-card-order:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(37, 99, 235, 0.2);
  border-color: var(--primary);
}

.service-card-order.selected {
  border-color: var(--primary);
  box-shadow: 0 15px 50px rgba(37, 99, 235, 0.25);
}

.service-card-order.selected::before {
  content: "✓";
  position: absolute;
  top: 15px;
  left: 15px;
  width: 35px;
  height: 35px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
  z-index: 10;
}

.service-image-container {
  position: relative;
  height: 200px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  overflow: hidden;
}

.service-image-order {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card-order:hover .service-image-order {
  transform: scale(1.1);
}

.service-badge-order {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 800;
  box-shadow: 0 4px 15px rgba(219, 39, 119, 0.4);
}

.service-body-order {
  padding: 1.5rem;
}

.service-title-order {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 0.8rem;
}

.service-desc-order {
  color: #64748b;
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-price-order {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.price-label-order {
  font-size: 0.85rem;
  font-weight: 600;
  color: #64748b;
}

/* Service Details Container */
.service-details-container {
  margin-top: 2rem;
}

.service-options-panel {
  background: white;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 2px solid var(--primary);
  animation: slideInUp 0.5s ease;
}

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

.options-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid rgba(37, 99, 235, 0.1);
}

.options-panel-title {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--primary-dark);
}

.btn-close-options {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.btn-close-options:hover {
  background: #dc2626;
  color: white;
}

.service-options-list {
  display: grid;
  gap: 1rem;
}

.option-item {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  border: 2px solid rgba(37, 99, 235, 0.1);
  border-radius: 16px;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.option-item:hover {
  border-color: var(--primary);
  background: white;
  transform: translateX(-5px);
}

.option-item.selected {
  border-color: var(--primary);
  background: rgba(37, 99, 235, 0.05);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
}

.option-info {
  flex: 1;
}

.option-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.option-description {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
}

.option-price-section {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.option-price {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary);
}

/* Quantity Control - Modern Design */
.quantity-section {
  margin-top: 2rem;
  padding: 2rem;
  background: rgba(37, 99, 235, 0.03);
  border-radius: 16px;
}

.quantity-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 1rem;
  display: block;
}

.quantity-control-modern {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.qty-btn {
  width: 50px;
  height: 50px;
  background: white;
  border: 2px solid var(--primary);
  border-radius: 12px;
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 900;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-btn:hover:not(:disabled) {
  background: var(--primary);
  color: white;
  transform: scale(1.1);
}

.qty-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.qty-display {
  width: 100px;
  height: 50px;
  background: white;
  border: 2px solid rgba(37, 99, 235, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary-dark);
}

.total-price-display {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 2px solid rgba(37, 99, 235, 0.15);
}

.total-price-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.total-price-amount {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
}

.btn-add-to-order {
  width: 100%;
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 1.2rem 2rem;
  border-radius: 14px;
  font-size: 1.15rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.btn-add-to-order:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(37, 99, 235, 0.4);
}

/* Order Summary Card */
.order-summary-card {
  background: white;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 100px;
  border: 2px solid rgba(37, 99, 235, 0.1);
}

.summary-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid rgba(37, 99, 235, 0.1);
}

.summary-header i {
  font-size: 2rem;
  color: var(--primary);
}

.summary-header h3 {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary-dark);
  margin: 0;
}

.summary-empty {
  text-align: center;
  padding: 3rem 1rem;
}

.empty-icon {
  font-size: 4rem;
  color: rgba(37, 99, 235, 0.15);
  margin-bottom: 1rem;
}

.summary-empty p {
  color: #64748b;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.summary-empty small {
  color: #94a3b8;
  font-size: 0.9rem;
}

.summary-items {
  margin-bottom: 1.5rem;
}

.summary-item {
  background: rgba(37, 99, 235, 0.03);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(37, 99, 235, 0.1);
}

.summary-item-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 0.7rem;
}

.summary-item-name {
  font-weight: 700;
  color: var(--primary-dark);
  flex: 1;
  font-size: 0.95rem;
}

.btn-remove-item {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.btn-remove-item:hover {
  background: #dc2626;
  color: white;
}

.summary-item-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #64748b;
  font-size: 0.9rem;
}

.summary-item-qty {
  font-weight: 600;
}

.summary-item-price {
  font-weight: 800;
  color: var(--primary);
  font-size: 1rem;
}

.summary-divider {
  height: 2px;
  background: rgba(37, 99, 235, 0.1);
  margin: 1.5rem 0;
}

.summary-total {
  margin-bottom: 1.5rem;
}

.total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary-dark);
}

.total-amount {
  color: var(--primary);
  font-size: 2rem;
}

.summary-note {
  background: #fef3c7;
  border: 2px solid #fbbf24;
  border-radius: 12px;
  padding: 1rem;
  font-size: 0.85rem;
  color: #92400e;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  display: flex;
  gap: 0.7rem;
}

.summary-note i {
  color: #f59e0b;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.btn-proceed-booking {
  width: 100%;
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 1.2rem 2rem;
  border-radius: 14px;
  font-size: 1.1rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
}

.btn-proceed-booking:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(37, 99, 235, 0.4);
}

/* Booking Form Section */
.booking-form-section {
  animation: fadeInUp 0.6s ease;
}

.booking-form-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.booking-form-title {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.btn-back-to-services {
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 0.8rem 1.5rem;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-back-to-services:hover {
  background: var(--primary);
  color: white;
}

.modern-booking-form {
  background: white;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(37, 99, 235, 0.1);
}

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

.modern-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.8rem;
  font-size: 1rem;
}

.modern-label i {
  color: var(--primary);
  font-size: 1.1rem;
}

.required {
  color: #dc2626;
}

.modern-input,
.modern-textarea {
  width: 100%;
  padding: 1rem 1.3rem;
  border: 2px solid #e2e8f0;
  border-radius: 14px;
  font-size: 1rem;
  font-family: "Cairo", sans-serif;
  transition: all 0.3s ease;
}

.modern-input:focus,
.modern-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.modern-input::placeholder,
.modern-textarea::placeholder {
  color: #94a3b8;
}

.location-input-group {
  display: flex;
  gap: 0.7rem;
}

.location-input-group .modern-input {
  flex: 1;
}

.btn-get-location {
  background: var(--gradient-secondary);
  color: white;
  border: none;
  padding: 1rem 1.5rem;
  border-radius: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-get-location:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(6, 182, 212, 0.3);
}

/* Location Display */
.location-display {
  display: flex !important;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  min-height: 54px;
}

.location-display span {
  color: #94a3b8;
  font-size: 0.95rem;
}

.location-display.has-location span {
  color: #1e293b;
  font-weight: 600;
}

.location-display.has-location i {
  color: #10b981 !important;
}

/* Location Modal */
.location-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.location-modal-overlay.active {
  display: flex;
}

.location-modal {
  background: white;
  border-radius: 20px;
  width: 100%;
  max-width: 700px;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideUp 0.3s ease;
}

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

.location-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid #e2e8f0;
}

.location-modal-header h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 800;
  color: #1e293b;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.location-modal-header h3 i {
  color: #06b6d4;
}

.location-modal-close {
  background: #f1f5f9;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #64748b;
  transition: all 0.2s;
}

.location-modal-close:hover {
  background: #e2e8f0;
  color: #1e293b;
}

.location-modal-body {
  padding: 1.2rem 1.5rem;
}

.location-search-row {
  display: flex;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.location-search-wrapper {
  flex: 1;
  position: relative;
}

.location-search-wrapper i {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 0.9rem;
}

.location-search-input {
  width: 100%;
  padding: 0.85rem 2.5rem 0.85rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 0.95rem;
  font-family: "Cairo", sans-serif;
  transition: border-color 0.2s;
  outline: none;
}

.location-search-input:focus {
  border-color: #06b6d4;
}

/* Ensure Google Places autocomplete dropdown appears above the modal */
.pac-container {
  z-index: 10001 !important;
}

.btn-current-location {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  border: none;
  padding: 0.85rem 1.2rem;
  border-radius: 12px;
  font-weight: 700;
  font-family: "Cairo", sans-serif;
  cursor: pointer;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s;
  font-size: 0.9rem;
}

.btn-current-location:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.location-map {
  width: 100%;
  height: 350px;
  border-radius: 14px;
  border: 2px solid #e2e8f0;
  overflow: hidden;
}

.location-selected-address {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1rem;
  padding: 0.8rem 1rem;
  background: #f8fafc;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  font-size: 0.9rem;
  color: #64748b;
}

.location-selected-address i {
  color: #06b6d4;
  font-size: 1rem;
}

.location-selected-address.has-address {
  background: #f0fdf4;
  border-color: #bbf7d0;
  color: #166534;
}

.location-selected-address.has-address i {
  color: #10b981;
}

.location-modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 0.8rem;
  padding: 1rem 1.5rem;
  border-top: 1px solid #e2e8f0;
}

.btn-cancel-location {
  background: #f1f5f9;
  color: #64748b;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 10px;
  font-weight: 700;
  font-family: "Cairo", sans-serif;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-cancel-location:hover {
  background: #e2e8f0;
}

.btn-confirm-location {
  background: var(--gradient-secondary);
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 10px;
  font-weight: 700;
  font-family: "Cairo", sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s;
}

.btn-confirm-location:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-confirm-location:not(:disabled):hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
}

/* Mobile responsive for location modal */
@media (max-width: 576px) {
  .location-modal {
    max-height: 95vh;
    border-radius: 16px;
  }

  .location-search-row {
    flex-direction: column;
  }

  .btn-current-location {
    justify-content: center;
  }

  .location-map {
    height: 280px;
  }

  .location-modal-body {
    padding: 1rem;
  }
}

.form-hint {
  display: block;
  margin-top: 0.5rem;
  color: #64748b;
  font-size: 0.9rem;
}

.btn-submit-booking {
  width: 100%;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  border: none;
  padding: 1.3rem 2rem;
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 900;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
}

.btn-submit-booking:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
}

.submit-note {
  margin-top: 1rem;
  text-align: center;
  color: #64748b;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.submit-note i {
  color: var(--primary);
}

/* Order Confirmation */
.order-confirmation-section {
  animation: fadeInScale 0.6s ease;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.confirmation-card {
  background: white;
  border-radius: 24px;
  padding: 3rem;
  text-align: center;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(16, 185, 129, 0.2);
}

.confirmation-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.confirmation-icon i {
  font-size: 3.5rem;
  color: white;
}

.confirmation-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.confirmation-subtitle {
  font-size: 1.2rem;
  color: #64748b;
  margin-bottom: 3rem;
}

.confirmation-details {
  background: rgba(37, 99, 235, 0.03);
  border-radius: 20px;
  padding: 2rem;
  text-align: right;
  margin-bottom: 2rem;
}

.detail-section-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(37, 99, 235, 0.1);
}

.detail-row {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(37, 99, 235, 0.05);
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-label {
  font-weight: 700;
  color: #64748b;
}

.detail-value {
  font-weight: 700;
  color: var(--primary-dark);
}

.btn-new-order {
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 1.2rem 3rem;
  border-radius: 14px;
  font-size: 1.1rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.btn-new-order:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(37, 99, 235, 0.4);
}

/* Toast Notifications */
.toast-container-modern {
  position: fixed;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  pointer-events: none;
}

.toast-modern {
  padding: 1rem 1.5rem !important;
  border-radius: 14px !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25) !important;
  display: flex !important;
  align-items: center !important;
  gap: 1rem !important;
  min-width: 300px !important;
  animation: toastSlideIn 0.4s ease !important;
  pointer-events: all !important;
  border: none !important;
  color: #fff !important;
}

.toast-modern.success {
  background: #10b981 !important;
}

.toast-modern.error {
  background: #ef4444 !important;
}

.toast-modern.info {
  background: #2563eb !important;
}

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

.toast-modern .toast-icon {
  color: #fff !important;
  font-size: 1.5rem !important;
}

.toast-modern .toast-message {
  flex: 1 !important;
  font-weight: 600 !important;
  color: #fff !important;
}

.toast-modern .toast-close {
  background: transparent !important;
  border: none !important;
  color: rgba(255, 255, 255, 0.7) !important;
  cursor: pointer;
  font-size: 1.3rem;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toast-modern .toast-close:hover {
  color: #fff !important;
}

/* Responsive */
@media (max-width: 991px) {
  .hero-title {
    font-size: 2.8rem;
  }

  .hero-cta-group {
    justify-content: center;
  }

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

@media (max-width: 768px) {
  .hero-section {
    padding: 80px 0 60px;
    text-align: center;
  }

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

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float {
    padding: 15px;
    border-radius: 50%;
  }

  .stat-number {
    font-size: 2.5rem;
  }
}
.waBTN {
  text-decoration: none;
}
.option-item {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  border: 2px solid rgba(37, 99, 235, 0.1);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}

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

.option-item.selected {
  border-color: var(--primary);
  background: rgba(37, 99, 235, 0.05);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
}

.option-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 1rem;
}

.option-info {
  flex: 1;
}

.option-price-section {
  text-align: left;
}

.option-quantity-control {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 2px solid rgba(37, 99, 235, 0.1);
}

.option-qty-btn {
  width: 40px;
  height: 40px;
  background: white;
  border: 2px solid var(--primary);
  border-radius: 10px;
  color: var(--primary);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.option-qty-btn:hover {
  background: var(--primary);
  color: white;
  transform: scale(1.1);
}

.option-qty-display {
  width: 60px;
  height: 40px;
  background: rgba(37, 99, 235, 0.05);
  border: 2px solid rgba(37, 99, 235, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary-dark);
}

.option-total-price {
  margin-right: auto;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
}

.btn-add-selected-options {
  width: 100%;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  border: none;
  padding: 1.2rem 2rem;
  border-radius: 14px;
  font-size: 1.15rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.btn-add-selected-options:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
}
/* Dropdown Menu Styles */
.navbar .dropdown-menu {
  background: white;
  border: none;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  padding: 0.5rem;
  margin-top: 0.5rem;
  min-width: 250px;
  animation: dropdownSlide 0.3s ease;
}

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

.navbar .dropdown-item {
  padding: 0.8rem 1.2rem;
  border-radius: 12px;
  font-weight: 700;
  color: #1e293b;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar .dropdown-item:hover {
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary);
  transform: translateX(-5px);
}

.navbar .dropdown-item i {
  color: var(--primary);
  font-size: 1.1rem;
}

.navbar .dropdown-toggle::after {
  margin-right: 0.5rem;
  vertical-align: 0.15em;
}

/* Make dropdown work on hover (desktop) */
@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
  }

  .navbar .dropdown-menu {
    margin-top: 0;
  }
}

/* Mobile dropdown */
@media (max-width: 991px) {
  .navbar .dropdown-menu {
    background: rgba(37, 99, 235, 0.05);
    box-shadow: none;
    border-radius: 12px;
    margin-top: 0.5rem;
  }

  .navbar .dropdown-item {
    padding: 0.7rem 1rem;
  }
}

/* Sale Price Styling */

.option-price-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
}

.option-price-original {
  font-size: 0.875rem;
  color: #64748b;
  text-decoration: line-through;
  font-weight: 400;
}

.option-price-sale {
  font-size: 1.125rem;
  color: #dc2626;
  font-weight: 700;
}

.option-sale-badge {
  display: inline-block;
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
  color: white;
  padding: 0.125rem 0.5rem;
  border-radius: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: 0 2px 4px rgba(220, 38, 38, 0.2);
}

/* Optional: Add animation to sale badge */
@keyframes pulse-sale {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.option-sale-badge {
  animation: pulse-sale 2s ease-in-out infinite;
}

/* Sale Price Styling */

.option-price-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
}

.option-price-original {
  font-size: 0.875rem;
  color: #64748b;
  text-decoration: line-through;
  font-weight: 400;
}

.option-price-sale {
  font-size: 1.125rem;
  color: #dc2626;
  font-weight: 700;
}

.option-sale-badge {
  display: inline-block;
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
  color: white;
  padding: 0.125rem 0.5rem;
  border-radius: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: 0 2px 4px rgba(220, 38, 38, 0.2);
}

/* Service Card Sale Badge */

.service-sale-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
  color: white;
  padding: 0.375rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: 0 4px 6px rgba(220, 38, 38, 0.3);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.service-sale-badge::before {
  content: "🔥";
  font-size: 1rem;
}

/* Add pulse animation to sale badge on cards */
.service-card-order.has-sale .service-sale-badge {
  animation: pulse-sale 2s ease-in-out infinite;
}

/* Optional: Add a subtle glow to cards with sales */
.service-card-order.has-sale {
  box-shadow:
    0 4px 6px rgba(220, 38, 38, 0.1),
    0 1px 3px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.1);
}

.service-card-order.has-sale:hover {
  box-shadow:
    0 10px 20px rgba(220, 38, 38, 0.15),
    0 3px 6px rgba(0, 0, 0, 0.1);
  border-color: rgba(220, 38, 38, 0.2);
}

/* Animation for sale badges */
@keyframes pulse-sale {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
/* Map Picker Modal */
.map-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.map-modal.active {
  display: flex;
}

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

.map-modal-content {
  background: white;
  border-radius: 24px;
  width: 90%;
  max-width: 900px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  animation: slideUp 0.4s ease;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
}

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

.map-modal-header {
  padding: 1.5rem 2rem;
  border-bottom: 2px solid rgba(37, 99, 235, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.map-modal-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.map-modal-title i {
  color: var(--primary);
}

.btn-close-map {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.5rem;
}

.btn-close-map:hover {
  background: #dc2626;
  color: white;
  transform: rotate(90deg);
}

.map-modal-body {
  padding: 1.5rem 2rem;
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.map-instructions {
  background: rgba(37, 99, 235, 0.05);
  border: 2px solid rgba(37, 99, 235, 0.15);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 0.95rem;
}

.map-instructions i {
  color: var(--primary);
  font-size: 1.2rem;
}

.map-search-box {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.map-search-input {
  flex: 1;
  padding: 0.9rem 1.2rem;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1rem;
  font-family: "Cairo", sans-serif;
  transition: all 0.3s ease;
}

.map-search-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.btn-search-map,
.btn-my-location {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.btn-search-map:hover,
.btn-my-location:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.btn-my-location {
  background: var(--gradient-secondary);
}

.btn-my-location:hover {
  box-shadow: 0 6px 20px rgba(6, 182, 212, 0.3);
}

.map-container {
  flex: 1;
  min-height: 400px;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(37, 99, 235, 0.15);
}

.map-selected-location {
  background: rgba(16, 185, 129, 0.1);
  border: 2px solid rgba(16, 185, 129, 0.3);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #059669;
  font-weight: 700;
  animation: slideIn 0.3s ease;
}

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

.map-selected-location i {
  font-size: 1.3rem;
}

.map-modal-footer {
  padding: 1.5rem 2rem;
  border-top: 2px solid rgba(37, 99, 235, 0.1);
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

.btn-cancel-map,
.btn-confirm-map {
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-cancel-map {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
  border: 2px solid #dc2626;
}

.btn-cancel-map:hover {
  background: #dc2626;
  color: white;
}

.btn-confirm-map {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

.btn-confirm-map:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.btn-confirm-map:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Responsive */
@media (max-width: 768px) {
  .map-modal-content {
    width: 95%;
    max-height: 95vh;
  }

  .map-container {
    min-height: 300px;
  }

  .map-search-box {
    flex-wrap: wrap;
  }

  .map-search-input {
    width: 100%;
  }
}
/* Partners Section */
.partners-section {
  padding: 80px 0;
  background: #ffffff;
  overflow: hidden;
}

.partners-section .section-title {
  text-align: center;
  margin-bottom: 0.5rem;
}

.partners-section .section-subtitle {
  text-align: center;
  margin-bottom: 3rem;
}

.partners-carousel {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}

.partners-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  width: max-content;
  animation: partnersScroll 30s linear infinite;
}

.partners-track img {
  height: 70px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

@keyframes partnersScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(50%);
  }
}

.partners-track:hover {
  animation-play-state: paused;
}

@media (max-width: 768px) {
  .partners-section {
    padding: 50px 0;
  }

  .partners-track {
    gap: 2rem;
  }

  .partners-track img {
    height: 50px;
  }
}

/* Testimonials Section */
.testimonials-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: radial-gradient(
    circle at 20% 50%,
    rgba(37, 99, 235, 0.03) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.testimonials-slider-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.testimonials-quotes {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.quote-icon {
  position: absolute;
  font-size: 5rem;
  color: rgba(37, 99, 235, 0.08);
  opacity: 0.5;
}

.quote-right {
  top: -20px;
  right: -20px;
}

.quote-left {
  bottom: -20px;
  left: -20px;
  transform: rotate(180deg);
}

.testimonial-card {
  background: white;
  border-radius: 30px;
  padding: 3rem 2.5rem;
  text-align: center;
  box-shadow: 0 15px 60px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(37, 99, 235, 0.08);
  position: relative;
  z-index: 2;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 80px rgba(37, 99, 235, 0.15);
  border-color: var(--primary-light);
}

.testimonial-avatar {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--primary);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
  position: relative;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-name {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.testimonial-rating {
  display: flex;
  justify-content: center;
  gap: 0.3rem;
  margin-bottom: 1.5rem;
}

.testimonial-rating i {
  color: #fbbf24;
  font-size: 1.1rem;
  filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.3));
}

.testimonial-text {
  font-size: 1.15rem;
  line-height: 1.9;
  color: #475569;
  margin-bottom: 1.5rem;
  font-style: italic;
  position: relative;
}

.testimonial-service {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary);
  padding: 0.6rem 1.3rem;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid rgba(37, 99, 235, 0.15);
}

.testimonial-service i {
  font-size: 1rem;
}

/* Carousel Controls */
.testimonials-slider-wrapper .carousel-control-prev,
.testimonials-slider-wrapper .carousel-control-next {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  opacity: 1;
  top: 50%;
  transform: translateY(-50%);
  border: 2px solid rgba(37, 99, 235, 0.15);
  transition: all 0.3s ease;
}

.testimonials-slider-wrapper .carousel-control-prev:hover,
.testimonials-slider-wrapper .carousel-control-next:hover {
  background: var(--gradient-primary);
  border-color: transparent;
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.testimonials-slider-wrapper .carousel-control-prev {
  right: -70px;
  left: auto;
}

.testimonials-slider-wrapper .carousel-control-next {
  left: -70px;
  right: auto;
}

.carousel-control-icon {
  color: var(--primary);
  font-size: 1.2rem;
}

.testimonials-slider-wrapper
  .carousel-control-prev:hover
  .carousel-control-icon,
.testimonials-slider-wrapper
  .carousel-control-next:hover
  .carousel-control-icon {
  color: white;
}

/* Carousel Indicators */
.testimonials-slider-wrapper .carousel-indicators {
  bottom: -50px;
  margin-bottom: 0;
}

.testimonials-slider-wrapper .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.3);
  border: none;
  margin: 0 0.4rem;
  transition: all 0.3s ease;
}

.testimonials-slider-wrapper .carousel-indicators button.active {
  width: 35px;
  border-radius: 6px;
  background: var(--primary);
}

/* Trust Badges */
.trust-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.trust-badge {
  background: white;
  padding: 1.5rem;
  border-radius: 16px;
  text-align: center;
  border: 2px solid rgba(37, 99, 235, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.trust-badge:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.15);
}

.trust-badge i {
  font-size: 2rem;
  color: var(--primary);
  background: rgba(37, 99, 235, 0.1);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.trust-badge span {
  font-weight: 700;
  color: var(--primary-dark);
  font-size: 1.05rem;
}

/* Responsive */
@media (max-width: 991px) {
  .testimonials-slider-wrapper .carousel-control-prev {
    right: 10px;
  }

  .testimonials-slider-wrapper .carousel-control-next {
    left: 10px;
  }

  .quote-icon {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 0;
  }

  .testimonial-card {
    padding: 2rem 1.5rem;
    min-height: 380px;
  }

  .testimonial-text {
    font-size: 1.05rem;
  }

  .trust-badges {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 3rem;
  }

  .quote-right,
  .quote-left {
    display: none;
  }
}

/* ===================== FAQ Page ===================== */

.faq-hero {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 50%, #bfdbfe 100%);
  position: relative;
  overflow: hidden;
}

.faq-hero::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15), transparent 70%);
  animation: float 15s infinite ease-in-out;
}

.faq-section {
  padding: 80px 0 100px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: none !important;
  border-radius: 16px !important;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.faq-item .accordion-button {
  padding: 1.25rem 1.75rem;
  font-family: "Cairo", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--dark);
  background: white;
  border: none;
  gap: 12px;
}

.faq-item .accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  box-shadow: none;
}

.faq-item .accordion-button:focus {
  box-shadow: none;
}

.faq-item .accordion-button::after {
  margin-right: auto;
  margin-left: 0;
}

.faq-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary);
  border-radius: 10px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.faq-item .accordion-button:not(.collapsed) .faq-icon {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.faq-item .accordion-body {
  padding: 1.25rem 1.75rem 1.5rem;
  font-size: 1rem;
  line-height: 1.9;
  color: #475569;
  background: white;
}

.faq-cta {
  margin-top: 60px;
  padding: 3rem;
  background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
  border-radius: 24px;
  border: 2px solid #e2e8f0;
}

.faq-cta h3 {
  font-family: "Cairo", sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.faq-cta p {
  color: #64748b;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

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

@media (max-width: 768px) {
  .faq-section {
    padding: 50px 0 70px;
  }

  .faq-item .accordion-button {
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
  }

  .faq-item .accordion-body {
    padding: 1rem 1.25rem 1.25rem;
    font-size: 0.95rem;
  }

  .faq-cta {
    padding: 2rem 1.5rem;
  }

  .faq-cta h3 {
    font-size: 1.25rem;
  }
}
.terms-nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  color: #374151;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}
.terms-nav-link:hover {
  color: #2563eb;
}
.terms-nav-link i {
  color: #2563eb;
  font-size: 0.75rem;
}

.terms-section-card {
  background: #fff;
  border-radius: 16px;
  margin-bottom: 24px;
  box-shadow: 0 4px 24px rgba(37, 99, 235, 0.07);
  border: 1px solid #e2e8f0;
  overflow: hidden;
  scroll-margin-top: 90px;
}

.terms-section-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 32px;
  background: linear-gradient(135deg, #f0f6ff 0%, #e8f0fe 100%);
  border-bottom: 1px solid #dbeafe;
}

.terms-section-num {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}

.terms-section-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #1e3a5f;
  margin: 0;
}

.terms-section-body {
  padding: 28px 32px;
}
.terms-section-body p {
  color: #4b5563;
  line-height: 1.85;
  margin-bottom: 12px;
}
.terms-section-body p:last-child {
  margin-bottom: 0;
}

.terms-highlight-box {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-right: 4px solid #2563eb;
  border-radius: 10px;
  padding: 16px 20px;
  margin-top: 12px;
}
.terms-highlight-box i {
  color: #2563eb;
  font-size: 1.1rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.terms-highlight-box p {
  margin: 0;
}

.terms-warning-box {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-right: 4px solid #f97316;
  border-radius: 10px;
  padding: 14px 18px;
  margin-top: 12px;
}
.terms-warning-box i {
  color: #f97316;
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.terms-warning-box p {
  margin: 0;
  font-size: 0.9rem;
}

.terms-service-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px;
  height: 100%;
}
.terms-service-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.terms-service-box h5 {
  font-weight: 700;
  color: #1e3a5f;
  font-size: 0.95rem;
  margin-bottom: 6px;
}
.terms-service-box p {
  color: #6b7280;
  font-size: 0.88rem;
  margin: 0;
}

.terms-obligation-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid #f1f5f9;
}
.terms-obligation-item:last-child {
  border-bottom: none;
}
.terms-obligation-icon {
  width: 40px;
  height: 40px;
  background: #eff6ff;
  color: #2563eb;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.terms-obligation-item h5 {
  font-weight: 700;
  color: #1e3a5f;
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.terms-payment-block {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.terms-payment-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 18px 20px;
}
.terms-payment-item.primary {
  background: #eff6ff;
  border-color: #bfdbfe;
}
.terms-payment-num {
  width: 32px;
  height: 32px;
  background: #2563eb;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.terms-payment-item h6 {
  font-weight: 700;
  color: #1e3a5f;
  margin-bottom: 6px;
}
.terms-payment-item p {
  color: #4b5563;
  font-size: 0.9rem;
  margin: 0;
}

.terms-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.terms-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  color: #4b5563;
  line-height: 1.75;
  border-bottom: 1px solid #f1f5f9;
}
.terms-list li:last-child {
  border-bottom: none;
}
.terms-list li i {
  color: #2563eb;
  margin-top: 4px;
  flex-shrink: 0;
}

.terms-privacy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 768px) {
  .terms-privacy-grid {
    grid-template-columns: 1fr;
  }
  .terms-section-body {
    padding: 20px 20px;
  }
  .terms-section-header {
    padding: 20px 20px;
  }
}
.terms-privacy-item {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 16px 18px;
}
.terms-privacy-item h5 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1e3a5f;
  margin-bottom: 8px;
}
.terms-privacy-item p {
  font-size: 0.87rem;
  color: #4b5563;
  margin: 0;
  line-height: 1.7;
}
.privacy-num {
  display: inline-block;
  background: #2563eb;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  margin-left: 6px;
}
