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

:root {
  --primary-gold: #b8941f;
  --secondary-gold: #f4e4bc;
  --dark-gold: #9c7c1a;
  --light-gold: #fdf9f0;
  --accent-gold: #ffd700;
  --primary-blue: #1e3a8a;
  --secondary-blue: #3b82f6;
  --dark-blue: #1e40af;
  --light-blue: #eff6ff;
  --accent-blue: #2563eb;
  --primary-green: #059669;
  --secondary-green: #10b981;
  --light-green: #ecfdf5;
  --text-dark: #111827;
  --text-light: #6b7280;
  --text-muted: #9ca3af;
  --white: #ffffff;
  --light-gray: #f9fafb;
  --light-bg: #f8fafc;
  --border-color: #e5e7eb;
  --border-light: #f3f4f6;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.1);
  --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.3);
  --shadow-blue: 0 4px 20px rgba(30, 58, 138, 0.2);
  --transition: all 0.3s ease;
  --transition-fast: all 0.2s ease;
  --transition-slow: all 0.5s ease;
  --navbar-height: 99px;
  --gradient-gold: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
  --gradient-blue: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
  --gradient-medical: linear-gradient(135deg, var(--primary-gold), var(--primary-blue));
  --gradient-hero: linear-gradient(135deg, var(--light-blue) 0%, var(--light-gold) 50%, var(--light-green) 100%);
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
}

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

/* Promo Banner */
.promo-banner {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #ffffff;
  padding: 8px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1001;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.promo-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}

.promo-icon {
  color: var(--primary-gold);
  font-size: 1.1rem;
  text-shadow: 0 1px 2px rgba(212, 175, 55, 0.3);
  animation: twinkle 2s infinite;
}

.promo-text {
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.4;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  color: #ffffff;
}

@keyframes twinkle {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}

/* Navigation */
.navbar {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(239, 246, 255, 0.95) 100%);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 24px;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.navbar:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 75px;
}

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

.nav-logo:hover {
  transform: translateY(-1px);
}

.logo {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  transition: var(--transition);
}

.logo:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.logo-text {
  font-size: 1.6rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--text-dark), var(--primary-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 35px;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 8px 16px;
  border-radius: 8px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-gold);
  background: rgba(212, 175, 55, 0.1);
  transform: translateY(-2px);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
  border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 80%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  margin: 3px 0;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  padding-top: var(--navbar-height);
  padding-bottom: 0;
  background: var(--gradient-hero);
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, var(--primary-blue) 0%, transparent 50%, var(--primary-gold) 100%);
  opacity: 0.1;
  pointer-events: none;
}

.hero-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  justify-items: center;
  min-height: 70vh;
}

.hero-content {
  width: 100%;
  max-width: none;
  background-image: url("https://alweamcentre.com/assets/images/hero/lazer_hair_removal_home.webp");
  background-size: cover;
  background-position: center 20%;
  background-repeat: no-repeat;
  background-attachment: scroll;
  padding: 100px 80px;
  border-radius: 0;
  position: relative;
  z-index: 2;
  min-height: 650px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.hero-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(212, 175, 55, 0.6) 100%);
  border-radius: 0;
  z-index: -1;
}

.hero-title {
  font-size: 4.2rem;
  font-weight: 800;
  margin-bottom: 25px;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
}

.hero-subtitle {
  font-size: 1.35rem;
  color: #ffffff;
  margin-bottom: 40px;
  line-height: 1.5;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  font-weight: 400;
  max-width: 85%;
  opacity: 0.95;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.feature-item i {
  color: var(--primary-gold);
  width: 20px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  font-size: 1.1rem;
}

.trust-indicators {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 30px 0;
  justify-content: center;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.95);
  padding: 12px 20px;
  border-radius: 25px;
  box-shadow: var(--shadow-gold);
  border: 2px solid var(--primary-gold);
  transition: var(--transition);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-dark);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.trust-badge:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
  background: var(--white);
  border-color: var(--accent-gold);
}

.trust-badge i {
  color: var(--primary-gold);
  font-size: 1.1rem;
  text-shadow: 0 1px 2px rgba(212, 175, 55, 0.3);
}

/* Buttons */
.btn {
  padding: 15px 30px;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: var(--transition);
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gradient-medical);
  color: var(--white);
  border: 2px solid transparent;
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: var(--gradient-gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent-gold);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
  box-shadow: var(--shadow);
}

.btn-secondary:hover {
  background: var(--gradient-blue);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-blue);
  border-color: var(--primary-blue);
}

.btn-emergency {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: white;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  animation: pulse 2s infinite;
  box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-emergency::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: var(--transition);
}

.btn-emergency:hover::before {
  left: 100%;
}

.btn-emergency:hover {
  background: linear-gradient(135deg, #b91c1c, #991b1b);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(220, 38, 38, 0.6);
  border-color: #fca5a5;
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4), 0 0 0 0 rgba(220, 38, 38, 0.7);
  }
  70% {
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4), 0 0 0 10px rgba(220, 38, 38, 0);
  }
  100% {
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4), 0 0 0 0 rgba(220, 38, 38, 0);
  }
}

/* Services Section */
.services {
  padding: 80px 0;
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-dark);
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--primary-gold);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.service-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
  position: relative;
}

.service-card.featured {
  border-color: var(--primary-gold);
  transform: scale(1.02);
}

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

.service-badge {
  position: absolute;
  top: -10px;
  left: 20px;
  background: var(--primary-gold);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.service-image-frame {
  border-radius: 15px;
  overflow: hidden;
  margin: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-bg);
  height: 200px;
}

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

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

.service-card .service-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-dark);
  text-align: center;
}

.service-description {
  color: #1e3c95;
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  text-align: left;
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 15px;
  max-width: 280px;
  margin: 0 auto 20px auto;
}

.service-features li {
  padding: 6px 0;
  color: var(--text-light);
  position: relative;
  padding-left: 20px;
  font-size: 0.9rem;
  line-height: 1.4;
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-gold);
  font-weight: bold;
  font-size: 0.8rem;
}

.service-link {
  color: var(--primary-gold);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  display: inline-block;
  margin-top: 15px;
}

.service-link:hover {
  color: var(--dark-gold);
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 80px 0;
  background: var(--light-gray);
}

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

.feature-card {
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--white);
  font-size: 1.5rem;
}

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.feature-card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* About Section */
.about {
  padding: 80px 0;
  background: var(--white);
}

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

.about-text {
  max-width: 500px;
}

.about-description {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 30px;
  line-height: 1.6;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 15px;
}

.feature i {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
}

.feature h3,
.feature h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text-dark);
}

.feature p {
  color: var(--text-light);
  font-size: 0.9rem;
}

.about-image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 450px;
  aspect-ratio: 16/9;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.about-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.3);
  opacity: 1;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.video-container:hover .video-overlay {
  opacity: 0.8;
}

.about-video:not([data-playing]) ~ .video-overlay {
  opacity: 1;
  pointer-events: auto;
}

.about-video[data-playing] ~ .video-overlay {
  opacity: 0;
  pointer-events: none;
}

.play-button {
  width: 80px;
  height: 80px;
  background: var(--primary-gold);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.play-button:hover {
  background: var(--dark-gold);
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background: var(--light-gray);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.testimonial-text {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.6;
}

.testimonial-author {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.testimonial-rating {
  color: var(--primary-gold);
  font-size: 1.2rem;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: var(--white);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-item i {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
}

.contact-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text-dark);
}

.contact-item p {
  color: var(--text-light);
  font-size: 0.9rem;
}

.contact-form {
  background: var(--light-bg);
  padding: 40px;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

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

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

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

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--text-dark) 0%, #1f2937 100%);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--primary-gold);
}

.footer-section p,
.footer-section li {
  color: #d1d5db;
  line-height: 1.6;
  margin-bottom: 10px;
}

.footer-section ul {
  list-style: none;
}

.footer-section a {
  color: #d1d5db;
  text-decoration: none;
  transition: var(--transition);
}

.footer-section a:hover {
  color: var(--primary-gold);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: var(--primary-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--dark-gold);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 20px;
  text-align: center;
  color: #9ca3af;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.modal-content {
  background-color: var(--white);
  margin: 5% auto;
  padding: 40px;
  border-radius: 15px;
  width: 90%;
  max-width: 500px;
  box-shadow: var(--shadow-xl);
  position: relative;
  animation: modalSlideIn 0.3s ease;
}

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

.close {
  color: var(--text-muted);
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition);
}

.close:hover {
  color: var(--text-dark);
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: white;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
  animation: bounce 2s infinite;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  transform: scale(1.1);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 120px;
  right: 40px;
  width: 50px;
  height: 50px;
  background: var(--gradient-gold);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  z-index: 100;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--gradient-blue);
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

/* RTL Support for Arabic */
[dir="rtl"] {
  text-align: right;
}

[dir="rtl"] .navbar-brand {
  margin-right: 0;
  margin-left: auto;
}

[dir="rtl"] .navbar-nav {
  margin-right: auto;
  margin-left: 0;
}

[dir="rtl"] .nav-link {
  padding-right: 0;
  padding-left: 1rem;
}

[dir="rtl"] .hero-features {
  text-align: right;
}

[dir="rtl"] .hero-features li::before {
  right: auto;
  left: -1.5rem;
}

[dir="rtl"] .service-card {
  text-align: right;
}

[dir="rtl"] .service-features li::before {
  right: auto;
  left: -1.5rem;
}

[dir="rtl"] .feature-card {
  text-align: right;
}

[dir="rtl"] .feature-icon {
  margin-right: 0;
  margin-left: 1rem;
}

[dir="rtl"] .about-content {
  text-align: right;
}

[dir="rtl"] .about-features li::before {
  right: auto;
  left: -1.5rem;
}

[dir="rtl"] .testimonial-card {
  text-align: right;
}

[dir="rtl"] .contact-info h3 {
  text-align: right;
}

[dir="rtl"] .contact-info p {
  text-align: right;
}

[dir="rtl"] .footer-section h3 {
  text-align: right;
}

[dir="rtl"] .footer-section ul {
  text-align: right;
}

[dir="rtl"] .footer-section ul li {
  text-align: right;
}

[dir="rtl"] .modal-header {
  text-align: right;
}

[dir="rtl"] .modal-body {
  text-align: right;
}

[dir="rtl"] .form-group label {
  text-align: right;
}

[dir="rtl"] .whatsapp-float {
  right: auto;
  left: 20px;
}

[dir="rtl"] .back-to-top {
  right: auto;
  left: 20px;
}

/* Arabic Font Support */
[dir="rtl"] * {
  font-family: 'Segoe UI', 'Tahoma', 'Arial', 'Helvetica Neue', sans-serif;
}

[dir="rtl"] .hero-title,
[dir="rtl"] .section-title,
[dir="rtl"] .service-title {
  font-weight: 700;
  line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 99px;
    flex-direction: column;
    background-color: var(--white);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: var(--shadow-lg);
    padding: 20px 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-toggle {
    display: flex;
  }

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

  .hero-content {
    padding: 60px 40px;
    min-height: 500px;
  }

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

  .service-features {
    grid-template-columns: 1fr;
    max-width: 240px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

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

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 24px;
    bottom: 30px;
    right: 30px;
  }

  .back-to-top {
    bottom: 100px;
    right: 30px;
  }
  
  /* RTL Mobile Adjustments */
  [dir="rtl"] .footer-content {
    text-align: right;
  }
  
  [dir="rtl"] .whatsapp-float {
    left: 30px;
    right: auto;
  }
  
  [dir="rtl"] .back-to-top {
    left: 30px;
    right: auto;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-content {
    padding: 40px 20px;
    min-height: 400px;
  }

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

  .service-card {
    padding: 30px 20px;
  }

  .modal-content {
    margin: 10% auto;
    padding: 30px 20px;
    width: 95%;
  }
}