/* Color Palette & Variables */
:root {
  --primary-color: #c91430;
  --primary-gradient: linear-gradient(135deg, #c91430 0%, #a31026 100%);
  --dark-color: #1a1a2e;
  --text-color: #4a4a5a;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --shadow-soft: 0 15px 35px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 20px 40px rgba(201, 20, 48, 0.15);
  --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

body {
  font-family: "Cairo", sans-serif;
  color: var(--text-color);
  background-color: var(--white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}
.text-primary-custom {
  color: var(--primary-color) !important;
}
.bg-light-primary {
  background-color: rgba(201, 20, 48, 0.08);
}
.bg-light-modern {
  background-color: #fcfcfd;
}

/* Gradient Text Effect */
.text-gradient {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Modern Buttons */
.btn-modern-primary {
  background: var(--primary-gradient);
  color: var(--white);
  border: none;
  transition: var(--transition);
}
.btn-modern-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(201, 20, 48, 0.3);
  color: var(--white);
}

.btn-modern-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #1da851 100%);
  color: var(--white);
  border: none;
  transition: var(--transition);
}
.btn-modern-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
  color: var(--white);
}

.hover-lift {
  transition: var(--transition);
}
.hover-lift:hover {
  transform: translateY(-5px);
}

/* Glassmorphism Navbar */
.glass-nav {
  background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Logo */
.logo-placeholder {
  width: 110px;
  height: 40px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 1px;
}

/* Hero Section Shapes */
.hero-section {
  background-color: #fafbfe;
}
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
}
.shape-1 {
  width: 400px;
  height: 400px;
  background: rgba(201, 20, 48, 0.08);
  top: -100px;
  right: -100px;
}
.shape-2 {
  width: 300px;
  height: 300px;
  background: rgba(37, 211, 102, 0.08);
  bottom: -50px;
  left: -50px;
}
.z-index-1 {
  z-index: 1;
}

/* Modern Badge */
.modern-badge {
  background: var(--white);
  color: var(--primary-color);
  border: 1px solid rgba(201, 20, 48, 0.2);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

/* Glass Card Form */
.glass-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8) !important;
  box-shadow: var(--shadow-soft);
}
.modern-form .form-control,
.modern-form .form-select {
  border-radius: 0.75rem;
  border: 1px solid #e0e0e0;
  background-color: rgba(255, 255, 255, 0.9);
}
.modern-form .form-control:focus,
.modern-form .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(201, 20, 48, 0.1);
}

/* Modern Service Cards */
.modern-service-card {
  border-radius: 1.2rem;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  overflow: hidden;
}
.modern-service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}
.img-wrapper {
  width: 100%;
  border-radius: 50%;
  background: var(--bg-light);
  padding: 10px;
  transition: var(--transition);
}
.modern-service-card:hover .img-wrapper {
  background: rgba(201, 20, 48, 0.05);
  transform: scale(1.05);
}
.img-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #e9ecef;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #adb5bd;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Features List */
.icon-box {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Call Action Card */
.call-action-card {
  background: var(--primary-gradient);
}
.call-action-card .bg-shape {
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 60%
  );
  z-index: 0;
}

/* CTA Banner */
.bg-gradient-primary {
  background: var(--primary-gradient);
}

/* Floating Buttons */
.floating-buttons {
  position: fixed;
  bottom: 30px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1050;
}
.float-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}
.float-btn:hover {
  transform: scale(1.1) translateY(-5px);
  color: var(--white);
}
.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #1da851);
}
.btn-call-1 {
  background: var(--primary-gradient);
}
.btn-call-2 {
  background: var(--dark-color);
}

/* Pulse Animation */
.pulse-btn {
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(201, 20, 48, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(201, 20, 48, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(201, 20, 48, 0);
  }
}

/* Scroll Animations (Intersection Observer Classes) */
.reveal {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal.fade-up {
  transform: translateY(40px);
}
.reveal.fade-right {
  transform: translateX(40px);
} /* RTL right = towards left physically */
.reveal.active {
  opacity: 1;
  transform: translate(0, 0);
}
