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

body {
  font-family: "Cairo", sans-serif;
  line-height: 1.6;
  color: #333;
  direction: rtl;
}

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

/* Header */
.header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  order: 1; /* Moves the logo to the right in RTL */
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  order: 2; /* Moves the actions to the left in RTL */
}

.call-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #25d366;
  color: white;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(37, 211, 102, 0.2);
}

.call-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  background: #20b858;
}

.call-button i {
  animation: phone-ring 1.5s ease infinite;
}

@keyframes phone-ring {
  0% {
    transform: rotate(0deg);
  }
  20% {
    transform: rotate(-15deg);
  }
  40% {
    transform: rotate(15deg);
  }
  60% {
    transform: rotate(-15deg);
  }
  80% {
    transform: rotate(15deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

@media (max-width: 768px) {
  .header-content {
    padding: 0.5rem 0;
  }
  
  .logo-img {
    height: 50px;
  }
  
  .call-button span {
    display: none;
  }
  
  .call-button {
    padding: 0.5rem;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
  }
  
  .call-button i {
    margin: 0;
    font-size: 1.2rem;
  }
}

.nav-brand .logo {
  font-size: 2rem;
  font-weight: 700;
  color: #2c5aa0;
  margin-bottom: 0;
}

.nav-brand .tagline {
  font-size: 0.9rem;
  color: #666;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #25d366;
  font-weight: 600;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  color: white;
  text-align: center;
  background-image: url("22.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
}

@media (min-width: 769px) {
  .hero {
    background-attachment: fixed;
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 100%);
  z-index: 2;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(37, 211, 102, 0.1) 0%, transparent 60%);
  z-index: 1;
  animation: particleFloat 20s infinite linear;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem;
}

.hero-badge {
  background: linear-gradient(135deg, #25d366, #128C7E);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 2rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  animation: badgePulse 2s infinite;
}

.hero-title {
  font-size: 4.5rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-title .highlight {
  font-size: 5.5rem;
  display: block;
  color: #25d366;
  text-shadow: 
    2px 2px 10px rgba(37, 211, 102, 0.3),
    -2px -2px 10px rgba(255, 255, 255, 0.1);
  margin-bottom: 1rem;
  font-weight: 900;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #25d366, #128C7E);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-line {
  margin: 1rem 0;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards;
}

.title-line:nth-child(2) {
  animation-delay: 0.3s;
}

.gradient-text {
  background: linear-gradient(135deg, #25d366, #4CAF50);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 4.5rem;
  font-weight: 800;
  text-shadow: none;
}

.modern-text {
  font-size: 3rem;
  margin: 0 1rem;
  opacity: 0.9;
}

.glow-text {
  color: #ffd700;
  font-weight: 800;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  animation: textGlow 2s infinite;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 2rem 0;
}

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #25d366;
  display: block;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.9;
}

.hero-description {
  font-size: 1.4rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeIn 1s forwards;
  animation-delay: 0.6s;
}

.highlight-point {
  color: #25d366;
  font-weight: 600;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.badge {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.badge i {
  margin-left: 0.5rem;
  color: #25d366;
}

/* Buttons */
.hero-buttons {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.glow-button {
  background: linear-gradient(135deg, #25d366, #128C7E);
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: bold;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.glow-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.button-effect {
  position: absolute;
  top: -50%;
  left: -25%;
  width: 150%;
  height: 200%;
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(35deg);
  transition: 0.5s;
}

.glow-button:hover .button-effect {
  left: 100%;
}

.glass-button {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  padding: 1rem 2rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.glass-button:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Animations */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes textGlow {
  0%, 100% {
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  }
  50% {
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
  }
}

@keyframes badgePulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes particleFloat {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 100%;
  }
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.pulse-animation {
  animation: pulse 2s infinite;
}

.hover-lift {
  transition: transform 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-3px);
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.hero-title {
  line-height: 1.2;
}

.hero-title .highlight {
  display: block;
  font-size: 4.5rem;
  font-weight: 800;
  color: #25d366;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 0.5rem;
}

.hero-title br + span {
  font-size: 2.2rem;
  font-weight: 600;
  color: white;
  opacity: 0.95;
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-image {
  margin-top: 3rem;
  position: relative;
  display: inline-block;
}

.hero-therapy-img {
  width: 100%;
  max-width: 500px;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  border: 4px solid rgba(255, 255, 255, 0.2);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: #25d366;
  color: white;
}

.btn-primary:hover {
  background: #20b858;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: #2c5aa0;
}

/* Section Styling */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c5aa0;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #666;
}

/* Hijama Types Section */
.hijama-types {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.05) 0%, rgba(37, 211, 102, 0.05) 100%);
}

.types-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

.type-card {
    flex: 1;
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    max-width: 400px;
}

.type-card:hover {
    transform: translateY(-5px);
}

.type-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #2c5aa0, #25d366);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2.5rem;
    position: relative;
    overflow: hidden;
}

.type-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.2), transparent);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.type-card:hover .type-icon::before {
    transform: translateY(0);
}

.type-card h3 {
    font-size: 1.8rem;
    color: #2c5aa0;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.type-description p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.type-features li {
    margin-bottom: 0.8rem;
    color: #444;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.type-features i {
    color: #25d366;
    font-size: 1.1rem;
}

.type-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    position: relative;
    height: 300px;
}

.divider-line {
    width: 2px;
    flex-grow: 1;
    background: linear-gradient(to bottom, transparent, #25d366, transparent);
    position: relative;
    margin: 10px 0;
}

.divider-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    color: #2c5aa0;
    font-size: 1.5rem;
    animation: rotate 10s linear infinite;
}

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

@media (max-width: 768px) {
    .types-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .type-divider {
        flex-direction: row;
        width: 100%;
        padding: 0.5rem 0;
        height: auto;
    }
    
    .divider-line {
        width: 80px;
        height: 2px;
        margin: 0;
    }

    .hero-buttons {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        text-align: center;
        margin: 0.5rem 0;
    }
}

/* Benefits Section */
.benefits {
  padding: 5rem 0;
  background: #f8f9fa;
}

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

.benefit-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #2c5aa0, #25d366);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.benefit-icon::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.benefit-icon:hover::before {
  transform: translateY(0);
}

.benefit-icon i {
  transform: scale(1);
  transition: transform 0.3s ease;
}

.benefit-icon:hover i {
  transform: scale(1.1);
}

.benefit-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #2c5aa0;
}

.benefit-card p {
  color: #666;
  line-height: 1.6;
}

/* Process Section */
.process {
  padding: 5rem 0;
  background: white;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
}

.step-image {
  width: 100%;
  height: 200px;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #2c5aa0, #25d366);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.step-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c5aa0;
  margin-bottom: 0.5rem;
}

.step-content p {
  color: #666;
  line-height: 1.6;
}

/* Service Details */
.service-details {
  padding: 5rem 0;
  background: #f8f9fa;
}

.details-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.details-text h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #2c5aa0;
  margin-bottom: 2rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature i {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #2c5aa0, #25d366);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c5aa0;
  margin-bottom: 0.5rem;
}

.feature p {
  color: #666;
  line-height: 1.6;
}

.details-image {
  position: relative;
}

.image-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #2c5aa0, #25d366);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.details-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Booking Section */
.booking {
  padding: 5rem 0;
  background: linear-gradient(135deg, #2c5aa0, #25d366);
  color: white;
}

.booking .section-title,
.booking .section-subtitle {
  color: white;
}

.booking-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.booking-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.booking-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c5aa0;
  margin-bottom: 1rem;
}

.location-details {
  margin-bottom: 2rem;
  text-align: right;
}

.location-details p {
  color: #666;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.location-details i {
  color: #25d366;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25d366;
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  width: 100%;
  justify-content: center;
}

.whatsapp-btn:hover {
  background: #20b858;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

/* FAQ Section */
.faq {
  padding: 5rem 0;
  background: white;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  background: #f8f9fa;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #e9ecef;
}

.faq-question h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c5aa0;
}

.faq-question i {
  color: #25d366;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 1.5rem;
  max-height: 200px;
}

.faq-answer p {
  color: #666;
  line-height: 1.6;
}

/* Footer */
.footer {
  background: #2c5aa0;
  color: white;
  padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
  margin-bottom: 1rem;
  color: #25d366;
}

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

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-links a::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.2), transparent);
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.social-links a:hover::before {
  transform: translateY(0);
}

.social-links a i {
  transform: scale(1);
  transition: transform 0.3s ease;
}

.social-links a:hover i {
  transform: scale(1.2);
}

.social-links a:hover {
  background: #20b858;
}

.location {
  margin-bottom: 1rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: #ccc;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
}

.float-btn {
  min-width: 160px;
  height: 60px;
  background: #25d366;
  color: white;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  gap: 10px;
  padding: 0 20px;
}

.float-text {
  font-size: 20px;
  font-weight: bold;
  opacity: 1;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.float-btn::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.2), transparent);
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.float-btn:hover::before {
  transform: translateY(0);
}

.float-btn i {
  position: relative;
  z-index: 1;
  transform: scale(1);
  transition: transform 0.3s ease;
}

.float-btn:hover i {
  transform: scale(1.1);
}

.float-btn:hover {
  background: #20b858;
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@media (max-width: 768px) {
  .float-btn {
    min-width: unset;
    width: 60px;
    border-radius: 50%;
    padding: 0;
  }
  
  .float-text {
    display: none;
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Visual Evidence Section */
.visual-evidence {
  padding: 5rem 0;
  background: white;
}


/* Carousel Styles */
.carousel-wrapper {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}
.carousel {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: transform;
}
.carousel-item {
  min-width: 100%;
  box-sizing: border-box;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.carousel-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}
.carousel-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: #ccc;
  cursor: pointer;
  transition: background 0.3s;
}
.carousel-dots button.active {
  background: #25d366;
}

.evidence-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 2rem 1.5rem 1.5rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.evidence-item:hover .evidence-overlay {
  transform: translateY(0);
}

.evidence-overlay h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #25d366;
}

.evidence-overlay p {
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .logo-img {
    height: 50px;
  }

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

  .hero-title .highlight {
    font-size: 3.5rem !important;
    color: #25d366;
    text-shadow: 2px 2px 10px rgba(37, 211, 102, 0.3);
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 900;
    line-height: 1.2;
  }

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

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }

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

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

  .process-steps {
    grid-template-columns: 1fr;
  }

  .details-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .booking-cards {
    grid-template-columns: 1fr;
  }

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

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

  .social-links {
    justify-content: center;
  }

  .location {
    text-align: center;
  }

  .footer-section ul {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .container {
    padding: 0 15px;
  }

  .header .container {
    flex-direction: column;
    gap: 0.5rem;
  }

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

  .hero-therapy-img {
    max-width: 100%;
    height: 250px;
  }

  .evidence-gallery {
    grid-template-columns: 1fr;
  }

  .evidence-item img {
    height: 200px;
  }

  .step-image {
    height: 150px;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }
}

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

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

  .benefit-card,
  .booking-card {
    padding: 1.5rem;
  }
  
  .footer {
    padding: 2rem 0 1rem;
  }

  .footer-section h3,
  .footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
  }

  .footer-section ul li {
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
  }

  .footer-bottom {
    font-size: 0.8rem;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
  }

  .floating-whatsapp {
    bottom: 15px;
    left: 15px;
  }

  .float-btn {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading animation */
.loading {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.loading.loaded {
  opacity: 1;
  transform: translateY(0);
}

/* Slideshow Styles */
.slideshow-container {
  position: relative;
  max-width: 1000px;
  height: 600px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  direction: ltr; /* Ensure proper slide direction */
}

.slideshow-track {
  position: relative;
  display: flex;
  width: 300%;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
  position: relative;
  flex: 0 0 33.333%;
  width: 33.333%;
  height: 100%;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  -webkit-user-select: none;
  user-select: none;
}



.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.8);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2;
}

.prev:hover, .next:hover {
  background: white;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.prev { left: 20px; }
.next { right: 20px; }

.dots-container {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #25d366;
  transform: scale(1.2);
}

/* Fade Animation */
.fade {
  animation: fade 0.5s ease-in-out;
}

@keyframes fade {
  from { opacity: 0.8; }
  to { opacity: 1; }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .slideshow-container {
    height: 400px;
    margin: 0 15px;
    max-width: 100%;
  }

  .slide-overlay {
    padding: 1rem;
  }

  .slide-overlay h4 {
    font-size: 1.2rem;
  }

  .slide-overlay p {
    font-size: 0.9rem;
  }

  .prev, .next {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}
