:root {
  --primary-bg: #eeeeee;
  --white: #ffffff;
  --secondary-teal: #64ccc5;
  --dark: #176b87;
  --muted: #053b50;
  --shadow: rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Tajawal", sans-serif;
  background: var(--primary-bg);
  color: var(--dark);
  line-height: 1.7;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== NAVIGATION ========== */
.navbar {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  padding: 16px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px var(--shadow);
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo-img {
  height: 65px;
  width: auto;
}

.logo-text h1 {
  font-size: 44px;
  font-weight: 800;
  color: var(--white);
  margin: 0;
}

.logo-text p {
  font-size: 44px;
  color: var(--muted);
  margin: 0;
}

.nav-menu {
  display: flex;
  gap: 30px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  font-size: 15px;
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary-teal);
  transition: width 0.3s ease;
}

.nav-menu a:hover {
  color: var(--secondary-teal);
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-contact {
  display: flex;
  gap: 12px;
  align-items: center;
}

.nav-btn {
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.nav-btn.phone {
  background: var(--secondary-teal);
  color: var(--white);
}

.nav-btn.whatsapp {
  background: var(--secondary-teal);
  color: var(--white);
}

.nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--shadow);
}

@media (max-width: 426px) {
  .nav-content {
    justify-content: center;
  }
}

/* ========== HERO SECTION ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url("../images/hero.jpeg") center/cover no-repeat;
  padding-top: 300px;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(108, 108, 108, 0.2);
  z-index: 0;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(181, 158, 64, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
  z-index: 1;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-50px, 50px) rotate(180deg);
  }
}

.hero-content {
  display: block;
  max-width: 900px;
  position: relative;
  z-index: 10;
}

.hero-text h2 {
  font-size: 62px;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 25px;
  line-height: 1.2;
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.3), 0 0 20px rgba(236, 224, 218, 0.7);
  text-align: center;
}

.hero-text .highlight {
  color: var(--secondary-teal);
  position: relative;
  display: inline-block;
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(181, 158, 64, 0.3);
}

.hero-text p {
  font-size: 44px;
  color: var(--white);
  margin-bottom: 30px;
  line-height: 1;
  text-align: center;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
  font-weight: 500;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  padding: 16px 35px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--secondary-teal) 0%, #27bcb5 100%);
  color: var(--white);
  box-shadow: 0 8px 25px rgba(181, 158, 64, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(181, 158, 64, 0.4);
}

.btn-secondary {
  background: var(--white);
  color: var(--dark);
  border: 2px solid var(--secondary-teal);
}

.btn-secondary:hover {
  background: var(--secondary-teal);
  color: var(--white);
}

/* ========== STICKY OFFERS BANNER ========== */
.sticky-offers-banner {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 999;
  background: linear-gradient(135deg, #25d366 0%, #1ebe5d 100%);
  color: var(--white);
  padding: 16px 40px;
  border-radius: 50px;
  box-shadow: 0 8px 30px rgba(39, 188, 181, 0.4);
  backdrop-filter: blur(10px);
  animation: slideInRight 0.6s ease-out, pulse 3s ease-in-out infinite;
  cursor: pointer;
  transition: all 0.3s ease-in-out 0s;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
}

.sticky-offers-banner:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(39, 188, 181, 0.6);
  background: linear-gradient(135deg, #1ebe5d 0%, #128c7e 100%);
}

.sticky-offers-banner i {
  font-size: 20px;
  animation: ring 2s ease-in-out infinite;
}

@keyframes slideInRight {
  from {
    right: -300px;
    opacity: 0;
  }
  to {
    right: 20px;
    opacity: 1;
  }
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 8px 30px rgba(39, 188, 181, 0.4);
  }
  50% {
    box-shadow: 0 8px 35px rgba(39, 188, 181, 0.6),
      0 0 0 8px rgba(39, 188, 181, 0.1);
  }
}

@keyframes ring {
  0%,
  100% {
    transform: rotate(0deg);
  }
  10%,
  30% {
    transform: rotate(-10deg);
  }
  20%,
  40% {
    transform: rotate(10deg);
  }
  50% {
    transform: rotate(0deg);
  }
}

/* Responsive adjustment for sticky banner */
@media (max-width: 768px) {
  .sticky-offers-banner {
    bottom: 15px;
    padding: 12px 25px;
    font-size: 14px;
    border-radius: 40px;
  }

  .sticky-offers-banner i {
    font-size: 18px;
  }
}

/* Statistics Counter */
.stats-bar {
  margin: 50px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 30px;
  max-width: 900px;
  justify-content: center;
}

.stat-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 1px 20px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 25px var(--shadow);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 38px;
  font-weight: 900;
  color: var(--secondary-teal);
  display: block;
  margin-bottom: 2px;
}

.stat-label {
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
}

/* ========== SECTIONS ========== */
section {
  padding: 60px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-title {
  font-size: 42px;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--secondary-teal),
    var(--secondary-teal)
  );
  border-radius: 2px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--muted);
  max-width: 700px;
  margin: 20px auto 0;
  line-height: 1.8;
}

/* ========== ABOUT SECTION ========== */
.about-section {
  background: var(--white);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 450px;
  gap: 40px;
  align-items: center;
}

.about-text h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 5px;
}

.about-text p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 10px;
}

.about-features {
  display: grid;
  gap: 15px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  background: var(--primary-bg);
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateX(-5px);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--secondary-teal), #27bcb5);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 22px;
  flex-shrink: 0;
}

.feature-text {
  flex: 1;
}

.feature-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.feature-text p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* ========== SERVICES SECTION ========== */
.services-section {
  background: var(--primary-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

div#servicesSwiper {
  padding-block: 30px;
}

@media (max-width: 1400px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Swiper Carousel for Services on Mobile and Tablet */
@media (max-width: 1024px) {
  .services-grid.swiper {
    overflow: hidden !important;
    width: 100%;
    position: relative;
    padding: 20px 0; /* Add padding to allow shadows to render */
    margin: -20px 0; /* Compensate for padding to maintain layout */
  }

  .service-card.swiper-slide {
    width: 100% !important;
    flex-shrink: 0;
    box-sizing: border-box;
  }

  /* Hide shadows on service cards in carousel */
  .service-card.swiper-slide .service-card-front,
  .service-card.swiper-slide .service-card-back {
    box-shadow: none !important;
  }

  /* Swiper Navigation Buttons for Services */
  .services-grid .swiper-button-next,
  .services-grid .swiper-button-prev {
    color: var(--secondary-teal);
    background: rgba(255, 255, 255, 0.9);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--secondary-teal);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 10;
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
  }

  .services-grid .swiper-button-next:hover,
  .services-grid .swiper-button-prev:hover {
    background: var(--secondary-teal);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
  }

  .services-grid .swiper-button-next:after,
  .services-grid .swiper-button-prev:after {
    font-size: 18px;
    font-weight: 700;
  }

  .services-grid .swiper-button-next {
    right: inherit;
  }

  .services-grid .swiper-button-prev {
    left: 10px;
  }

  /* Swiper Pagination for Services */
  .services-grid .swiper-pagination {
    bottom: -30px;
  }

  .services-grid .swiper-pagination-bullet {
    background: var(--secondary-teal);
    opacity: 0.3;
    width: 10px;
    height: 10px;
  }

  .services-grid .swiper-pagination-bullet-active {
    opacity: 1;
    width: 30px;
    border-radius: 5px;
  }

  div#servicesSwiper {
    padding-block: 0px;
  }
}

/* Desktop: Keep grid layout */
@media (min-width: 1025px) {
  .services-grid.swiper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }

  .services-grid .swiper-wrapper {
    display: contents; /* Remove flex wrapper on desktop */
  }

  .services-grid .swiper-button-next,
  .services-grid .swiper-button-prev,
  .services-grid .swiper-pagination {
    display: none; /* Hide Swiper controls on desktop */
  }
}

.service-card {
  background: transparent;
  perspective: 1000px;
  height: 280px;
}

.service-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 1.2s;
  transform-style: preserve-3d;
}

.service-card:hover .service-card-inner {
  transform: rotateY(180deg);
}

.service-card-front,
.service-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  box-shadow: 0 8px 30px var(--shadow);
}

.service-card-front {
  background: var(--white);
  border: 2px solid rgba(181, 158, 64, 0.1);
}

.service-card-back {
  background: linear-gradient(135deg, var(--secondary-teal) 0%, #27bcb5 100%);
  color: var(--white);
  transform: rotateY(180deg);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--secondary-teal), #30d4cb);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--white);
  margin-bottom: 20px;
  box-shadow: 0 8px 25px rgba(39, 188, 181, 0.3);
}

.service-card-front h4 {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  margin: 0;
}

.service-card-back h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 15px;
}

.service-card-back p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
  margin: 0;
}

.service-card-back .service-cta {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.2);
  padding: 10px 20px;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid var(--white);
}

.service-card-back .service-cta:hover {
  background: var(--white);
  color: var(--secondary-teal);
}

/* ========== BLACK FRIDAY SECTION ========== */
.black-friday-section {
  padding: 50px 0;
  background: #ece0da;
  position: relative;
  overflow: hidden;
}

.black-friday-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(181, 158, 64, 0.1) 0%,
    transparent 70%
  );
  animation: rotate 30s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.black-friday-header {
  text-align: center;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.bf-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--secondary-teal) 0%, #27bcb5 100%);
  color: var(--white);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 20px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.black-friday-header h2 {
  font-size: 42px;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 15px;
  text-shadow: 0 4px 15px rgba(181, 158, 64, 0.3);
}

.black-friday-header .highlight {
  color: var(--secondary-teal);
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
  margin-bottom: 35px;
  position: relative;
  z-index: 2;
}

.offer-card {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.offer-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--secondary-teal) 0%, #27bcb5 100%);
}

.offer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(181, 158, 64, 0.3);
  border-color: var(--secondary-teal);
}

.discount-badge {
  position: absolute;
  top: 30px;
  left: 30px;
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 24px;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(231, 76, 60, 0.4);
  z-index: 1;
}

.offer-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--secondary-teal) 0%, #27bcb5 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
  color: var(--white);
  box-shadow: 0 8px 25px rgba(181, 158, 64, 0.3);
}

.offer-card h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
  text-align: center;
}

.offer-card .offer-subtitle {
  font-size: 16px;
  color: var(--secondary-teal);
  margin-bottom: 15px;
  text-align: center;
  font-weight: 600;
}

.offer-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  text-align: center;
  margin-bottom: 20px;
}

.offer-cta {
  text-align: center;
  margin-top: 20px;
}

.offer-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--secondary-teal) 0%, #27bcb5 100%);
  color: var(--white);
  padding: 14px 35px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(181, 158, 64, 0.3);
}

.offer-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(181, 158, 64, 0.5);
}

.technology-section {
  margin-top: 30px;
  position: relative;
  z-index: 2;
}

.tech-header {
  text-align: center;
  margin-bottom: 25px;
}

.tech-header h3 {
  font-size: 30px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}

.tech-header p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.tech-card {
  background: rgba(255, 255, 255, 10);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(181, 158, 64, 0.3);
  border-radius: 20px;
  padding: 20px;
  transition: all 0.3s ease;
}

.tech-card:hover {
  background: rgba(255, 255, 255, 10);
  border-color: var(--secondary-teal);
  transform: translateY(-5px);
}

.tech-card h4 {
  font-size: 22px;
  font-weight: 700;
  color: var(--secondary-teal);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tech-card h4 i {
  font-size: 24px;
}

.tech-card p {
  font-size: 15px;
  color: rgba(0, 0, 0, 5.8);
  line-height: 1.7;
}

.tech-features {
  margin-top: 20px;
}

.tech-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
}

.tech-feature i {
  color: var(--secondary-teal);
  font-size: 18px;
}

/* ========== DEVICES SECTION ========== */
.devices-section {
  background: var(--white);
}

.devices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

/* Swiper Carousel for Devices on Mobile and Tablet */
@media (max-width: 1024px) {
  .devices-grid.swiper {
    overflow: hidden !important;
    width: 100%;
    position: relative;
  }

  .device-card.swiper-slide {
    width: 100% !important;
    flex-shrink: 0;
    box-sizing: border-box;
  }

  /* Swiper Navigation Buttons for Devices */
  .devices-grid .swiper-button-next,
  .devices-grid .swiper-button-prev {
    color: var(--secondary-teal);
    background: rgba(255, 255, 255, 0.9);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--secondary-teal);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 10;
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
  }

  .devices-grid .swiper-button-next:hover,
  .devices-grid .swiper-button-prev:hover {
    background: var(--secondary-teal);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
  }

  .devices-grid .swiper-button-next:after,
  .devices-grid .swiper-button-prev:after {
    font-size: 18px;
    font-weight: 700;
  }

  .devices-grid .swiper-button-next {
    right: inherit;
  }

  .devices-grid .swiper-button-prev {
    left: 10px;
  }

  /* Swiper Pagination for Devices */
  .devices-grid .swiper-pagination {
    bottom: -30px;
  }

  .devices-grid .swiper-pagination-bullet {
    background: var(--secondary-teal);
    opacity: 0.3;
    width: 10px;
    height: 10px;
  }

  .devices-grid .swiper-pagination-bullet-active {
    opacity: 1;
    width: 30px;
    border-radius: 5px;
  }

  .devices-grid .swiper-button-next,
  .devices-grid .swiper-button-prev {
    top: 60%;
  }

  .device-card {
    padding: 25px 70px !important;
  }
}

/* Desktop: Keep grid layout */
@media (min-width: 1025px) {
  .devices-grid.swiper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .devices-grid .swiper-wrapper {
    display: contents; /* Remove flex wrapper on desktop */
  }

  .devices-grid .swiper-button-next,
  .devices-grid .swiper-button-prev,
  .devices-grid .swiper-pagination {
    display: none; /* Hide Swiper controls on desktop */
  }
}

.device-card {
  background: var(--primary-bg);
  padding: 25px;
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.device-card:hover {
  border-color: var(--secondary-teal);
  transform: translateY(-5px);
}

.device-card h5 {
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.device-card h5::before {
  content: "✦";
  color: var(--secondary-teal);
  font-size: 20px;
}

.device-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* ========== DOCTORS SECTION ========== */
.doctors-section {
  background: var(--primary-bg);
}

.doctors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

/* Swiper Carousel for Doctors on Mobile and Tablet */
@media (max-width: 1024px) {
  .doctors-grid.swiper {
    overflow: hidden !important;
    width: 100%;
    position: relative;
    padding: 20px 0; /* Add padding to allow shadows to render */
    margin: -20px 0; /* Compensate for padding to maintain layout */
  }

  .doctor-card.swiper-slide {
    flex-shrink: 0;
    box-sizing: border-box;
    height: auto;
  }

  /* Hide shadows on doctor cards in carousel */
  .doctor-card.swiper-slide {
    box-shadow: none !important;
  }

  .doctor-card.swiper-slide:hover {
    box-shadow: none !important;
  }

  /* Mobile: 1 slide per view */
  @media (max-width: 767px) {
    .doctor-card.swiper-slide {
      width: none !important;
    }
  }

  /* Swiper Navigation Buttons for Doctors */
  .doctors-grid .swiper-button-next,
  .doctors-grid .swiper-button-prev {
    color: var(--secondary-teal);
    background: rgba(255, 255, 255, 0.9);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--secondary-teal);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 10;
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
  }

  .doctors-grid .swiper-button-next:hover,
  .doctors-grid .swiper-button-prev:hover {
    background: var(--secondary-teal);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
  }

  .doctors-grid .swiper-button-next:after,
  .doctors-grid .swiper-button-prev:after {
    font-size: 18px;
    font-weight: 700;
  }

  .doctors-grid .swiper-button-next {
    right: inherit;
  }

  .doctors-grid .swiper-button-prev {
    left: 10px;
  }

  /* Swiper Pagination for Doctors */
  .doctors-grid .swiper-pagination {
    bottom: -30px;
  }

  .doctors-grid .swiper-pagination-bullet {
    background: var(--secondary-teal);
    opacity: 0.3;
    width: 10px;
    height: 10px;
  }

  .doctors-grid .swiper-pagination-bullet-active {
    opacity: 1;
    width: 30px;
    border-radius: 5px;
  }
}

/* Desktop: Keep grid layout for Doctors */
@media (min-width: 1025px) {
  .doctors-grid.swiper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    overflow: visible !important; /* Allow shadows to render on desktop */
  }

  .doctors-grid .swiper-wrapper {
    display: contents; /* Remove flex wrapper on desktop */
  }

  .doctors-grid .swiper-button-next,
  .doctors-grid .swiper-button-prev,
  .doctors-grid .swiper-pagination {
    display: none; /* Hide Swiper controls on desktop */
  }
}

.doctor-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 35px var(--shadow);
  transition: all 0.3s ease;
}

.doctor-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.doctor-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: top center;
}

.doctor-info {
  padding: 20px;
}

.doctor-info h4 {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}

.doctor-info .specialty {
  color: var(--secondary-teal);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 12px;
  display: block;
}

.doctor-info p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* ========== BEFORE/AFTER SECTION ========== */
.ba-section {
  background: var(--white);
}

.ba-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Swiper Carousel for Mobile and Tablet */
@media (max-width: 1024px) {
  .ba-gallery.swiper {
    overflow: hidden !important;
    width: 100%;
    position: relative;
  }

  .ba-item.swiper-slide {
    height: 480px;
    width: 100% !important;
    flex-shrink: 0;
    box-sizing: border-box;
  }

  /* Swiper Navigation Buttons */
  .ba-gallery .swiper-button-next,
  .ba-gallery .swiper-button-prev {
    color: var(--secondary-teal);
    background: rgba(255, 255, 255, 0.9);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--secondary-teal);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
  }

  .ba-gallery .swiper-button-next:hover,
  .ba-gallery .swiper-button-prev:hover {
    background: var(--secondary-teal);
    color: var(--white);
    transform: scale(1.1);
  }

  .ba-gallery .swiper-button-next:after,
  .ba-gallery .swiper-button-prev:after {
    font-size: 18px;
    font-weight: 700;
  }

  .ba-gallery .swiper-button-next {
    right: inherit;
  }

  .ba-gallery .swiper-button-prev {
    left: 10px;
  }

  /* Swiper Pagination */
  .ba-gallery .swiper-pagination {
    bottom: -30px;
  }

  .ba-gallery .swiper-pagination-bullet {
    background: var(--secondary-teal);
    opacity: 0.3;
    width: 10px;
    height: 10px;
  }

  .ba-gallery .swiper-pagination-bullet-active {
    opacity: 1;
    width: 30px;
    border-radius: 5px;
  }
}

/* Desktop: Keep grid layout */
@media (min-width: 1025px) {
  .ba-gallery.swiper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .ba-gallery .swiper-wrapper {
    display: contents; /* Remove flex wrapper on desktop */
  }

  .ba-gallery .swiper-button-next,
  .ba-gallery .swiper-button-prev,
  .ba-gallery .swiper-pagination {
    display: none; /* Hide Swiper controls on desktop */
  }
}

.ba-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 35px var(--shadow);
  height: 400px;
}

.ba-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ba-item:hover img {
  transform: scale(1.05);
}

.ba-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 25px;
  color: var(--white);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.ba-item:hover .ba-overlay {
  transform: translateY(0);
}

.ba-overlay h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.ba-overlay p {
  font-size: 14px;
  margin: 0;
  opacity: 0.9;
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials-section {
  background: var(--primary-bg);
}

.testimonials-section .section-header {
  position: relative;
}

.testimonials-section .testimonials-header-image {
  position: absolute;
  left: 0;
}

/* Testimonials Section Header with Image */
.testimonials-section .section-header-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  flex-direction: row-reverse; /* RTL: image on left, text on right */
}

.testimonials-header-image {
  max-width: 150px;
  height: auto;
  object-fit: contain;
}

.testimonials-section .section-header-text {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

/* Swiper Carousel for Testimonials on Mobile and Tablet */
@media (max-width: 1024px) {
  .testimonials-grid.swiper {
    overflow: hidden !important;
    width: 100%;
    position: relative;
    padding: 20px 0; /* Add padding to allow shadows to render */
    margin: -20px 0; /* Compensate for padding to maintain layout */
  }

  .testimonial-card.swiper-slide {
    /* width: 100% !important; */
    flex-shrink: 0;
    box-sizing: border-box;
  }

  /* Hide shadows on testimonial cards in carousel */
  .testimonial-card.swiper-slide {
    box-shadow: none !important;
  }

  /* Swiper Navigation Buttons for Testimonials */
  .testimonials-grid .swiper-button-next,
  .testimonials-grid .swiper-button-prev {
    color: var(--secondary-teal);
    background: rgba(255, 255, 255, 0.9);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--secondary-teal);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 10;
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
  }

  .testimonials-grid .swiper-button-next:hover,
  .testimonials-grid .swiper-button-prev:hover {
    background: var(--secondary-teal);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
  }

  .testimonials-grid .swiper-button-next:after,
  .testimonials-grid .swiper-button-prev:after {
    font-size: 18px;
    font-weight: 700;
  }

  .testimonials-grid .swiper-button-next {
    right: inherit;
  }

  .testimonials-grid .swiper-button-prev {
    left: 10px;
  }

  /* Swiper Pagination for Testimonials */
  .testimonials-grid .swiper-pagination {
    bottom: -30px;
  }

  .testimonials-grid .swiper-pagination-bullet {
    background: var(--secondary-teal);
    opacity: 0.3;
    width: 10px;
    height: 10px;
  }

  .testimonials-grid .swiper-pagination-bullet-active {
    opacity: 1;
    width: 30px;
    border-radius: 5px;
  }

  .testimonial-card.swiper-slide.scroll-animate.swiper-slide-active.active {
    padding-inline: 70px;
  }
}

/* Desktop: Keep grid layout for Testimonials */
@media (min-width: 1025px) {
  .testimonials-grid.swiper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    overflow: visible !important; /* Allow shadows to render on desktop */
  }

  .testimonials-grid .swiper-wrapper {
    display: contents; /* Remove flex wrapper on desktop */
  }

  .testimonials-grid .swiper-button-next,
  .testimonials-grid .swiper-button-prev,
  .testimonials-grid .swiper-pagination {
    display: none; /* Hide Swiper controls on desktop */
  }
}

.testimonial-card {
  background: var(--white);
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 10px 35px var(--shadow);
  position: relative;
}

.quote-icon {
  font-size: 50px;
  color: var(--secondary-teal);
  opacity: 0.2;
  position: absolute;
  top: 20px;
  right: 25px;
}

.stars {
  color: var(--secondary-teal);
  font-size: 18px;
  margin-bottom: 15px;
}

.testimonial-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--secondary-teal),
    var(--secondary-teal)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
}

.author-info h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 3px;
}

.author-info p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

@media (max-width: 426px) {
  .testimonials-section .section-header-content {
    flex-direction: column;
    gap: 20px;
  }

  .testimonials-section .testimonials-header-image {
    position: static;
    order: 2; /* Appears after the text content */
    max-width: 120px;
    margin: 0 auto;
  }

  .testimonials-section .section-header-text {
    order: 1; /* Appears first */
  }
}

/* ========== BOOKING SECTION ========== */
.booking-section {
  background: var(--white);
}

.booking-content {
  display: grid;
  grid-template-columns: 1fr 450px;
  gap: 40px;
  align-items: center;
}

.booking-text h3 {
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 15px;
}

.booking-text p {
  font-size: 18px;
  margin-bottom: 25px;
  opacity: 0.95;
  line-height: 1.8;
}

.booking-features {
  display: grid;
  gap: 15px;
}

.booking-feature {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: var(--primary-bg);
  backdrop-filter: blur(10px);
  border-radius: 12px;
}

.booking-feature i {
  font-size: 24px;
  background: var(--primary-bg);
}

.booking-feature span {
  font-size: 16px;
  font-weight: 600;
}

.booking-form {
  background: var(--white);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.booking-form h4 {
  font-size: 24px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 15px;
  text-align: center;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px;
  border: 2px solid #e5e5e5;
  border-radius: 10px;
  font-size: 15px;
  font-family: "Tajawal", sans-serif;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary-teal);
}

.form-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--secondary-teal) 0%, #30d4cb 100%);
  color: var(--white);
  padding: 16px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(39, 188, 181, 0.3);
}

.form-response {
  margin-top: 15px;
  padding: 12px;
  background: #d4edda;
  color: #155724;
  border-radius: 8px;
  display: none;
  text-align: center;
}

/* ========== FOOTER ========== */
footer {
  background: #6c6c6c;
  color: #ffffff;
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 15px;
}

.footer-brand p {
  color: #ffffff;
  line-height: 1.8;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background: var(--secondary-teal);
  transform: translateY(-3px);
}

.footer-section h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-links {
  display: grid;
  gap: 12px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--secondary-teal);
}

.footer-links a::before {
  content: "←";
  color: var(--secondary-teal);
}

.contact-info {
  display: grid;
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #ffffff;
}

.contact-item i {
  color: var(--secondary-teal);
  font-size: 18px;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  text-align: center;
  color: #ffffff;
  font-size: 14px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-content {
    max-width: 100%;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .about-image {
    order: -1;
  }

  .booking-content {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }

  .ba-gallery {
    grid-template-columns: 1fr;
  }

  /* Hide phone and WhatsApp buttons in navbar on tablet and mobile */
  .nav-btn.phone,
  .nav-btn.whatsapp {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .nav-contact {
    flex-direction: column;
    gap: 8px;
  }

  .nav-btn {
    padding: 8px 16px;
    font-size: 13px;
  }

  .hero-text h2 {
    font-size: 36px;
  }

  .hero-text p {
    font-size: 16px;
  }

  .stats-bar {
    grid-template-columns: repeat(3, 1fr);
  }

  .section-title {
    font-size: 32px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}

/* ========== ANIMATIONS ========== */
.fade-in {
  animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out;
}

.scroll-animate.active {
  opacity: 1;
  transform: translateY(0);
}

/* ========== MOBILE RESPONSIVE ========== */
@media (max-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr;
  }

  .about-image img {
    height: 350px;
  }
}

@media (max-width: 768px) {
  /* Container padding */
  .container {
    padding: 0 16px;
  }

  /* Navigation */
  .logo-img {
    height: 50px;
  }

  .logo-text h1,
  .logo-text p {
    font-size: 28px;
  }

  .nav-menu {
    display: none;
  }

  /* Hero Section */
  .hero {
    min-height: 70vh;
    padding-top: 150px;
    padding-bottom: 60px;
  }

  .hero-text h2 {
    font-size: 36px;
  }

  .hero-text p {
    font-size: 28px;
  }

  .btn {
    padding: 14px 28px;
    font-size: 15px;
  }

  /* Stats Bar */
  .stats-bar {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
  }

  .stat-number {
    font-size: 32px;
  }

  .stat-label {
    font-size: 13px;
  }

  /* Sections */
  section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 32px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  /* About Section */
  .about-image img {
    height: 300px;
  }

  .about-text h3 {
    font-size: 20px;
  }

  .about-text p {
    font-size: 15px;
  }

  .feature-icon {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }

  .feature-text h4 {
    font-size: 15px;
  }

  .feature-text p {
    font-size: 13px;
  }

  /* Service Cards */
  .service-card {
    height: 260px;
  }

  .service-icon {
    width: 70px;
    height: 70px;
    font-size: 32px;
  }

  .service-card-front h4 {
    font-size: 20px;
  }

  .service-card-back h4 {
    font-size: 18px;
  }

  .service-card-back p {
    font-size: 14px;
  }

  /* Black Friday Section */
  .black-friday-section {
    padding: 40px 0;
  }

  .black-friday-header h2 {
    font-size: 32px;
  }

  .offers-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .offer-card h3 {
    font-size: 22px;
  }

  .discount-badge {
    font-size: 20px;
    padding: 10px 20px;
    top: 20px;
    left: 20px;
  }

  /* Before/After Section */
  .before-after-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ba-card {
    height: auto;
    min-height: 300px;
  }

  .ba-image {
    height: 300px;
  }

  /* Doctors Section */
  .doctors-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .doctor-card {
    padding: 30px 20px;
  }

  .doctor-photo {
    width: 140px;
    height: 140px;
  }

  .doctor-card h3 {
    font-size: 22px;
  }

  .doctor-specialty {
    font-size: 14px;
  }

  /* Testimonials Section */
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonial-card {
    padding: 25px;
  }

  .testimonial-text {
    font-size: 14px;
  }

  /* Booking Section */
  .booking-section {
    padding: 50px 0;
  }

  .booking-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .booking-text h3 {
    font-size: 28px;
  }

  .booking-text p {
    font-size: 15px;
  }

  .booking-feature {
    font-size: 14px;
  }

  .booking-form {
    padding: 30px 20px;
  }

  .booking-form h4 {
    font-size: 24px;
  }

  .form-group label {
    font-size: 14px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px;
    font-size: 14px;
  }

  .form-submit {
    padding: 14px;
    font-size: 15px;
  }

  /* Footer */
  footer {
    padding: 50px 0 30px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-brand h3 {
    font-size: 22px;
  }

  .footer-section h4 {
    font-size: 18px;
  }

  /* Sticky Banner */
  .sticky-offers-banner {
    bottom: 10px;
    right: 10px;
    left: 10px;
    padding: 14px 20px;
    font-size: 14px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  /* Logo */
  .logo-img {
    height: 40px;
  }

  .logo-text h1,
  .logo-text p {
    font-size: 22px;
  }

  /* Hero */
  .hero-text h2 {
    font-size: 28px;
  }

  .hero-text p {
    font-size: 22px;
  }

  /* Stats */
  .stats-bar {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .stat-number {
    font-size: 28px;
  }

  /* Section Titles */
  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 15px;
  }

  /* About */
  .about-image img {
    height: 250px;
  }

  /* Service Cards */
  .service-card {
    height: 240px;
  }

  .service-card-front,
  .service-card-back {
    padding: 30px 60px;
  }

  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }

  .service-card-front h4 {
    font-size: 18px;
  }

  .service-card-back h4 {
    font-size: 16px;
  }

  .service-card-back p {
    font-size: 13px;
  }

  /* Black Friday */
  .black-friday-header h2 {
    font-size: 28px;
  }

  .offer-card h3 {
    font-size: 20px;
  }

  .discount-badge {
    font-size: 18px;
    padding: 8px 16px;
  }

  /* Before/After */
  .ba-image {
    height: 250px;
  }

  /* Doctors */
  .doctor-photo {
    width: 120px;
    height: 120px;
  }

  .doctor-card h3 {
    font-size: 20px;
  }

  /* Booking */
  .booking-text h3 {
    font-size: 24px;
  }

  .booking-form h4 {
    font-size: 22px;
  }

  /* Sticky Banner */
  .sticky-offers-banner {
    font-size: 13px;
    padding: 12px 16px;
  }
}
