/* Jothen Clinics – Global Styles */
:root {
  --pink-main: #E54082;
  --pink-light: #F28CA6;
  --gray: #A8A8A8;
  --black: #000000;
  --white: #FAFAFA;
  --font-main: 'Cairo', sans-serif;
  --footer-dark: #000000; /* Footer is now black */
}

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

body {
  font-family: var(--font-main);
  background-color: #fff;
  color: var(--black);
}

/* Add scroll-padding-top to html for anchor link usability with sticky navbar */
html {
  scroll-padding-top: 100px;
}

/* Navbar Layout */
.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 5%;
  background-color: var(--white);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  height: 50px;
}

/* Luxurious Black Navbar Separator */
.nav-separator {
  width: 2px;
  height: 44px;
  background: linear-gradient(180deg, #222 0%, #000 100%);
  border-radius: 2px;
  margin: 0 32px;
  display: block;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}

/* Navbar groupings for separators */
.navbar-group {
  display: flex;
  align-items: center;
  gap: 0;
}

/* Menu Links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
  align-items: center;
}

.nav-links li {
  display: flex;
  align-items: center;
}

.nav-links li a,
.nav-links li .button,
.nav-links li .highlight-nav-btn {
  vertical-align: middle;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

/* Ensure all navbar link text is vertically centered with buttons */
.nav-links li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  line-height: 1.2;
  vertical-align: middle;
}

.nav-links li .highlight-nav-btn {
  color: var(--white) !important;
  font-weight: 700;
  background: var(--pink-main);
  border: 2px solid var(--white);
}

.nav-links li .highlight-nav-btn:hover, .nav-links li .highlight-nav-btn:focus {
  background: var(--white);
  color: var(--pink-main) !important;
  border-color: var(--pink-main);
}

/* Luxury Navbar Link Styles */
.nav-links li a:not(.highlight-nav-btn) {
  color: var(--black) !important;
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  position: relative;
  background: none;
  box-shadow: none;
  transition: color 0.3s cubic-bezier(.4,0,.2,1);
  padding-bottom: 6px;
  text-decoration: none !important;
}

.nav-links li a:not(.highlight-nav-btn):hover,
.nav-links li a:not(.highlight-nav-btn):focus,
.nav-links li a:not(.highlight-nav-btn).active {
  color: var(--pink-main) !important;
}

.nav-links li a:not(.highlight-nav-btn)::after {
  display: none !important;
}

/*️ Language Toggle */
.lang-toggle {
  background: var(--pink-main);
  color: var(--white);
  border: 2px solid var(--white);
  border-radius: 0;
  font-weight: 700;
  font-size: 1rem;
  padding: 7px 18px;
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
  text-decoration: none;
  display: inline-block;
}

.lang-toggle:hover, .lang-toggle:focus {
  background: var(--white);
  color: var(--pink-main);
  border-color: var(--pink-main);
}

/* Universal Button Base for Consistency */
.button,
.highlight-btn,
.highlight-nav-btn,
.hero-btn,
.lang-toggle {
  background: var(--pink-main);
  color: var(--white);
  border: 2px solid var(--white);
  border-radius: 0;
  font-weight: 700;
  font-size: 1rem;
  min-height: 44px;
  padding: 14px 28px;
  display: inline-block;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(229,64,130,0.06);
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
  line-height: 1.2;
  vertical-align: middle;
}

.button:hover, .button:focus,
.highlight-btn:hover, .highlight-btn:focus,
.highlight-nav-btn:hover, .highlight-nav-btn:focus,
.hero-btn:hover, .hero-btn:focus,
.lang-toggle:hover, .lang-toggle:focus {
  background: var(--white);
  color: var(--pink-main);
  border-color: var(--pink-main);
  box-shadow: 0 4px 16px rgba(229,64,130,0.12);
}

/* Mobile Menu (hidden on desktop) */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  height: 3px;
  background: var(--black);
  margin: 4px 0;
  width: 25px;
}

/* Highlight Button Styles */
.highlight-btn {
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  background: #222;
  border: none;
  border-radius: 6px;
  padding: 14px 28px;
  text-align: center;
  text-decoration: none !important;
  display: inline-block;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(34,34,34,0.08);
}

.highlight-btn:hover, .highlight-btn:focus {
  background: #fff;
  color: #222;
  border: 2px solid #222;
  text-decoration: none !important;
}

/* Center text in button for all .highlight-btn */
.branch-card .highlight-btn {
  width: 100%;
  margin-top: 10px;
  text-align: center;
  display: block;
}

/* Alternating section backgrounds for luxury look */
.section-gray {
  background: #FAFAFA;
}
.section-white {
  background: #fff;
}

.section-gray > *, .section-white > * {
  padding-top: 80px;
  padding-bottom: 80px;
}

/* Remove default backgrounds from section partials if needed */
.hero, .services, .testimonials, .celebrities, .branches {
  background: transparent !important;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 80px;
    right: 0;
    background: white;
    flex-direction: column;
    width: 200px;
    padding: 20px;
    display: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }

  .nav-links.show {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }
}

/* Hero and Services Sections */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 100px 5%;
  background-color: var(--white);
  gap: 40px;
}

.hero-content {
  flex: 1;
}

.hero-content h1 {
  font-size: 48px;
  color: var(--pink-main);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  color: var(--gray);
  margin-bottom: 30px;
}

.hero-btn {
  background: var(--pink-main);
  color: var(--white);
  border: 2px solid var(--white);
  border-radius: 0;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 1rem;
  min-height: 44px;
  display: inline-block;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(229,64,130,0.06);
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
  line-height: 1.2;
  vertical-align: middle;
}

.hero-btn:hover, .hero-btn:focus {
  background: var(--white);
  color: var(--pink-main);
  border-color: var(--pink-main);
  box-shadow: 0 4px 16px rgba(229,64,130,0.12);
}

.hero-image {
  flex: 1;
}

.hero-image img {
  width: 100%;
  border-radius: 8px;
}

.services {
  padding: 80px 5%;
  background-color: #fff;
  text-align: center;
}

.services h2 {
  font-size: 36px;
  color: var(--pink-main);
  margin-bottom: 50px;
}

.service-cards {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.service-card {
  background: #f9f9f9;
  padding: 25px;
  border-radius: 10px;
  width: 300px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

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

.service-card img,
.service-full-card img {
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.service-card h3 {
  font-size: 20px;
  color: var(--pink-main);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 16px;
  color: var(--gray);
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    padding: 60px 5%;
    gap: 30px;
  }
  .hero-content h1 {
    font-size: 32px;
  }
  .services h2 {
    font-size: 28px;
  }
  .service-card {
    width: 90%;
    margin: 0 auto 20px auto;
  }
}

/* === FULL SERVICES PAGE === */

.services-full-section {
  background-color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.services-main-title {
  font-family: 'Cairo', sans-serif;
  font-weight: 900;
  font-size: 36px;
  color: #E54082;
  margin-bottom: 10px;
}

.services-subtitle {
  font-family: 'Cairo', sans-serif;
  font-size: 18px;
  color: #555;
  margin-bottom: 50px;
}

.services-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  justify-content: center;
  max-width: 1280px;
  margin: 0 auto;
}

@media (min-width: 1200px) {
  .services-cards-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.service-full-card {
  background-color: #FAFAFA;
  border-radius: 16px;
  padding: 20px 15px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-full-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.service-full-icon {
  height: 60px;
  margin-bottom: 20px;
  object-fit: contain;
}

.service-full-title {
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #E54082;
  margin-bottom: 12px;
}

.service-full-desc {
  font-family: 'Cairo', sans-serif;
  font-size: 16px;
  color: #333;
  line-height: 1.7;
}

/* 🟣 Testimonials */
.testimonials {
  padding: 80px 5%;
  background: #fff;
  text-align: center;
}

.testimonials h2 {
  font-size: 32px;
  color: var(--pink-main);
  margin-bottom: 40px;
}

.testimonial-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.testimonial {
  background: #fefefe;
  border-left: 5px solid var(--pink-main);
  padding: 25px;
  width: 300px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.testimonial p {
  font-size: 16px;
  color: var(--black);
  margin-bottom: 10px;
}

.testimonial .stars {
  color: gold;
  font-size: 18px;
}

.testimonial span {
  font-size: 14px;
  color: var(--gray);
}

/* 🌟 Celebrity Gallery */
.celebrities {
  padding: 80px 5%;
  background: #FAFAFA;
  text-align: center;
}

.celebrities h2 {
  font-size: 32px;
  color: var(--pink-main);
  margin-bottom: 40px;
}

.celeb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  justify-items: center;
}

.celeb-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.celeb-grid img:hover {
  transform: scale(1.05);
}

/* 📍 Branches Section */
.branches {
  padding: 80px 5%;
  background: #fff;
  text-align: center;
}

.branches h2 {
  font-size: 32px;
  color: var(--pink-main);
  margin-bottom: 40px;
}

/* 📍 Branch Cards Layout Fix */
.branch-cards {
  display: flex;
  flex-wrap: nowrap; /* Prevent wrapping on desktop */
  justify-content: center;
  gap: 30px;
  padding-top: 40px;
  overflow-x: auto; /* Allow horizontal scroll if needed */
}

.branch-card {
  width: 300px;
  background: #fefefe;
  border-left: 5px solid var(--pink-main);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.branch-card h3 {
  color: var(--pink-main);
  font-size: 20px;
  margin-bottom: 8px;
}

.branch-card p,
.branch-card a {
  font-size: 14px;
  margin-bottom: 6px;
  color: var(--black);
  text-decoration: none;
}

.branch-card a:hover {
  color: var(--pink-main);
  text-decoration: underline;
}

.whatsapp-btn {
  margin-top: 10px;
  align-self: flex-start;
  background-color: var(--pink-main);
  color: white;
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 600;
  text-align: center;
  transition: background 0.3s ease;
}

.whatsapp-btn:hover {
  background-color: var(--pink-light);
}

.pink-button#open-whatsapp-popup {
  background: #25D366 !important;
  color: #fff !important;
  border-radius: 999px !important;
  border: none !important;
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 8px 18px;
  min-width: unset;
  min-height: unset;
  box-shadow: none !important;
  transition: background 0.2s, color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.pink-button#open-whatsapp-popup:hover {
  background: #128C4B !important;
  color: #fff !important;
}

@media (max-width: 1200px) {
  .branch-cards {
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    overflow-x: visible;
  }
}

/* ⚫ Footer Section */
.footer {
  background-color: var(--footer-dark);
  color: white;
  font-family: var(--font-main);
  padding: 60px 5% 20px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 40px;
  gap: 40px;
  position: relative;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center; /* Center logo horizontally */
}

.footer-logo img {
  height: 90px; /* Further increase logo size */
  max-width: 100%;
}

.footer-col {
  flex: 1 1 200px;
  min-width: 200px;
  text-align: left;
}

.footer-col h4 {
  font-size: 20px; /* Slightly larger section header */
  color: var(--pink-main);
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
}

/* Line under each heading */
.footer-col h4::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background-color: var(--pink-main); /* Pink underline */
  margin-top: 6px;
}

/* Divider between columns */
.footer-col {
  position: relative;
}

.footer-col:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: -20px;
  height: 100%;
  width: 1px;
  background-color: rgba(255,255,255,0.3);
}

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

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a,
.footer-contact a {
  color: white;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover,
.footer-contact a:hover {
  text-decoration: underline;
}

.footer-socials a {
  font-size: 18px;
  color: white;
  margin-right: 12px;
  transition: color 0.3s ease;
  filter: brightness(1);
}

.footer-socials a:hover {
  color: var(--pink-light);
  filter: brightness(1.3);
}

/* New footer social section styles */
.footer-social {
  margin-top: 20px;
  text-align: center;
}

.footer-social h4 {
  font-family: 'Cairo', sans-serif;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 12px;
  color: #000;
}

.social-icons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  padding-left: 4px;
}

.social-icons a {
  font-size: 18px;
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #E54082;
}

/* Arabic-specific overrides */
html[lang="ar"] .footer-col {
  text-align: right;
}

html[lang="ar"] .social-icons {
  align-items: flex-end;
}

html[lang="ar"] .footer-socials i {
  margin-right: 0;
  margin-left: 0.3rem;
}

html[lang="ar"] .footer-col.footer-socials {
  text-align: right !important;
}
html[lang="ar"] .footer-col.footer-socials .social-icons {
  align-items: flex-end !important;
}
html[lang="ar"] .footer-col.footer-socials .social-icons a {
  margin-right: 0 !important;
  margin-left: 0.3rem !important;
}

/* Dedicated RTL class for social icons in Arabic footer */
.social-icons-ar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end !important;
  padding-right: 0.5rem;
  width: 100%;
}

.social-icons-ar a {
  font-size: 18px;
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
  margin-left: 0.3rem;
  margin-right: 0;
}

.social-icons-ar a:hover {
  color: #E54082;
}

/* RTL fix for Arabic footer social icons */
.footer[lang="ar"] .footer-socials .social-icons,
.footer .social-icons-ar {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.footer .social-icons-ar a i {
  font-size: 18px;
  margin-left: 0.5rem;
  margin-right: 0;
}

/* Page Headings */
.page-heading {
  text-align: center;
  color: var(--pink-main);
  font-size: 36px;
  margin-top: 60px;
  margin-bottom: 20px;
}

.page-heading-ar {
  text-align: center;
  color: var(--pink-main);
  font-size: 36px;
  margin-top: 60px;
  margin-bottom: 20px;
}

/* About Page Styles */
.about-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin: 40px 0 0 0;
}

.about-text {
  flex: 1 1 320px;
  min-width: 260px;
}

.about-img {
  flex: 0 0 220px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 800px) {
  .about-flex {
    flex-direction: column;
    gap: 24px;
  }
  .about-img {
    margin-top: 0;
  }
}

.about-intro, .vision-mission, .why-jothen {
  padding: 80px 5%;
  text-align: center;
}

.vision-mission {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.vision-mission .card {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  width: 320px;
  transition: 0.3s ease;
}

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

/* Why Jothen Icons - Even Bigger and Circular */
.why-jothen .grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin-top: 32px;
}
.why-jothen .grid div {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 200px;
  margin-bottom: 24px;
}
.why-jothen .grid img {
  width: 128px;
  height: 128px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--pink-main);
  box-shadow: 0 4px 16px rgba(229,64,130,0.10);
  margin-bottom: 18px;
  background: #fff;
}
.why-jothen .grid p {
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--black);
  text-align: center;
}
@media (max-width: 700px) {
  .why-jothen .grid {
    gap: 18px;
  }
  .why-jothen .grid div {
    width: 90%;
    max-width: 240px;
  }
  .why-jothen .grid img {
    width: 96px;
    height: 96px;
  }
}

/* style About Section (split layout, bilingual, responsive) */
.about-section {
  background: #f9fafb;
  padding-top: 5rem;
  padding-bottom: 5rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.about-grid {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
  html[lang="ar"] .about-grid {
    direction: rtl;
  }
}
.about-text {
  font-family: 'Cairo', sans-serif;
  color: #374151;
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: left;
}
html[lang="ar"] .about-text {
  color: #374151;
  text-align: right;
  direction: rtl;
}
.about-title {
  font-family: 'Cairo', sans-serif;
  color: #E54082;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.about-imgbox {
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(229,64,130,0.10);
  transition: box-shadow 0.3s;
}
.about-imgbox:hover {
  box-shadow: 0 12px 40px rgba(229,64,130,0.18);
}
.about-imgbox img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
.about-divider {
  padding-top: 4rem;
}
.about-divider-bar {
  width: 100%;
  height: 0.5rem;
  background: linear-gradient(90deg, #E54082 0%, #fff 50%, #E54082 100%);
  opacity: 0.20;
  border-radius: 9999px;
}

/* Alternating visual split sections for About, Vision, Mission, Promise */
.about-split-section, .about-split-section-white {
  background: #fff;
  padding-top: 5rem;
  padding-bottom: 5rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.about-split-section-gray {
  background: #f9fafb;
  padding-top: 5rem;
  padding-bottom: 5rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.about-split-grid {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) {
  .about-split-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-split-grid.reverse {
    direction: rtl;
  }
  .about-split-grid.reverse-row {
    direction: ltr;
    display: flex;
    flex-direction: row-reverse;
    gap: 2rem;
    align-items: center;
  }
}
.about-split-text {
  font-family: 'Cairo', sans-serif;
  color: #374151;
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: left;
}
.about-split-title {
  font-family: 'Cairo', sans-serif;
  color: #E54082;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

/* Force image on right, text on left for split sections (LTR/RTL compatible) */
.about-split-flex-row {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) {
  .about-split-flex-row {
    flex-direction: row-reverse !important;
    align-items: stretch;
  }
  .about-split-flex-row > .about-split-text,
  .about-split-flex-row > .about-split-imgbox {
    flex: 1 1 0%;
    min-width: 0;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.about-split-imgbox,
.rounded-2xl.overflow-hidden.shadow-lg {
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(229,64,130,0.10);
  transition: box-shadow 0.3s;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-split-imgbox img,
.rounded-2xl.overflow-hidden.shadow-lg img {
  width: 100%;
  height: 340px;
  max-height: 340px;
  min-height: 220px;
  object-fit: cover;
  display: block;
  border-radius: 1.25rem;
}

/* === ABOUT SECTION === */

.about-section {
  background-color: #ffffff;
  padding: 80px 20px;
}

.about-row {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 80px;
  flex-wrap: wrap;
  gap: 30px;
}

.about-row.reverse {
  flex-direction: row-reverse;
}

.about-image {
  flex: 1 1 400px;
  max-width: 500px;
  padding: 10px;
}

.about-image img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.about-text {
  flex: 1 1 400px;
  max-width: 500px;
  padding: 10px;
  text-align: left;
}

.about-title {
  font-family: 'Cairo', sans-serif;
  font-weight: 900;
  font-size: 32px;
  color: #E54082;
  margin-bottom: 20px;
}

.about-desc {
  font-family: 'Cairo', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.8;
  color: #333;
}

/* Responsive behavior */
@media (max-width: 768px) {
  .about-row,
  .about-row.reverse {
    flex-direction: column;
    text-align: center;
  }

  .about-text {
    text-align: center;
  }

  .about-title {
    font-size: 28px;
  }

  .about-desc {
    font-size: 16px;
  }

  .about-image img {
    height: 260px;
  }
}

/* === LASER DEVICES SECTION === */
.laser-tech-section {
  padding: 80px 20px;
  background-color: #ffffff;
  text-align: center;
}
.laser-device-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
  gap: 30px;
}
.laser-device-row.reverse {
  flex-direction: row-reverse;
}
.laser-device-img {
  flex: 1 1 300px;
  max-width: 500px;
}
.laser-device-img img {
  width: 100%;
  height: 300px;
  object-fit: contain;
  border-radius: 16px;
}
.laser-device-text {
  flex: 1 1 300px;
  max-width: 500px;
  text-align: left;
}
.laser-device-text h3 {
  font-family: 'Cairo', sans-serif;
  font-size: 24px;
  color: #E54082;
  margin-bottom: 10px;
}
.laser-device-text p {
  font-family: 'Cairo', sans-serif;
  font-size: 16px;
  color: #444;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .laser-device-row,
  .laser-device-row.reverse {
    flex-direction: column;
    text-align: center;
  }
  .laser-device-text {
    text-align: center;
  }
}

/* === REVIEWS WALL === */
.reviews-wall {
  background-color: #FAFAFA;
  padding: 80px 20px;
  text-align: center;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}
.review-box {
  background-color: #ffffff;
  padding: 30px 20px;
  border-radius: 14px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
  font-family: 'Cairo', sans-serif;
  font-size: 16px;
  color: #333;
  position: relative;
}
.review-box p {
  margin-bottom: 15px;
}
.review-box span {
  font-size: 14px;
  color: #888;
  font-weight: 600;
}

/* === CONTACT PAGE STYLES === */
.contact-info-section {
  padding: 80px 20px;
  background-color: #ffffff;
  text-align: center;
}
.contact-subtitle {
  font-size: 18px;
  font-family: 'Cairo', sans-serif;
  color: #555;
  margin-bottom: 40px;
}
.contact-methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}
.contact-method {
  background: #FAFAFA;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
  width: 280px;
}
.contact-method h3 {
  color: #E54082;
  font-size: 20px;
  margin-bottom: 10px;
  font-family: 'Cairo', sans-serif;
}
.contact-method a {
  color: #000;
  font-size: 16px;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}
.contact-method a:hover {
  color: #F28CA6;
}

.cta-banner-section {
  padding: 60px 20px;
  background: #F28CA6;
  text-align: center;
  color: #fff;
}
.cta-banner-box {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-title {
  font-family: 'Cairo', sans-serif;
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 10px;
}
.cta-subtitle {
  font-size: 18px;
  margin-bottom: 30px;
}
.pink-button {
  background-color: #E54082;
  padding: 12px 28px;
  font-size: 16px;
  border-radius: 0;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  transition: background 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid #E54082;
}
.pink-button .arrow {
  font-size: 1.2em;
  margin-left: 6px;
  transition: transform 0.2s;
}
.pink-button:hover {
  background-color: #d73373;
  border-color: #d73373;
}
.pink-button:hover .arrow {
  transform: translateX(4px);
}

.newsletter-section {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
}
.newsletter-desc {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
  font-family: 'Cairo', sans-serif;
}

/* WhatsApp Popup */
.popup-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
}
.popup-content {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  font-family: 'Cairo', sans-serif;
}
.popup-content h2 {
  margin-bottom: 20px;
  color: #E54082;
  font-size: 24px;
}
.popup-options {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}
.popup-options li {
  padding: 12px 20px;
  margin-bottom: 10px;
  border: 2px solid #E54082;
  border-radius: 0;
  cursor: pointer;
  font-weight: bold;
  color: #000;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.popup-options li .arrow {
  font-size: 1.2em;
  margin-right: -4px;
  margin-left: 8px;
  transition: transform 0.2s;
}
.popup-options li:hover {
  background: #F28CA6;
  color: #fff;
  border-color: #F28CA6;
}
.popup-options li:hover .arrow {
  transform: translateX(4px);
}
.popup-close {
  background: transparent;
  border: none;
  font-size: 16px;
  color: #888;
  cursor: pointer;
  margin-top: 10px;
}
.hidden {
  display: none;
}

/* Book Section - Professional Styling */
.book-section {
  background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
  padding: 40px 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.book-content {
  max-width: 700px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.book-section .container {
  max-width: 700px;
  margin: 0 auto;
}

.book-form-container {
  background: #f5f5f5;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 40px 32px;
  text-align: center;
}

.book-session-title {
  font-family: 'Cairo', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--pink-main);
  margin-bottom: 16px;
  text-align: center;
}

.book-session-desc {
  font-family: 'Cairo', sans-serif;
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 32px;
  text-align: center;
}

.booking-form {
  width: 100%;
  background: #f5f5f5;
  padding: 40px 32px;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.booking-step {
  margin-bottom: 28px;
  padding: 28px 24px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid #f0f0f0;
  animation: slideIn 0.4s ease;
}

.booking-step[data-step]:not([data-step="1"]) {
  display: none;
}

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

.booking-form label {
  font-family: 'Cairo', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  display: block;
  margin-bottom: 12px;
}

.booking-form input,
.booking-form select {
  font-family: 'Cairo', sans-serif;
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 16px;
  border: 2px solid #ffd4e5;
  border-radius: 10px;
  font-size: 15px;
  background: #fff;
  color: #333;
  transition: all 0.3s ease;
  box-sizing: border-box;
  cursor: pointer;
}

.booking-form select {
  background-image: linear-gradient(45deg, transparent 50%, var(--pink-main) 50%), 
                    linear-gradient(135deg, var(--pink-main) 50%, transparent 50%);
  background-position: calc(100% - 20px) calc(1em + 2px),
                       calc(100% - 15px) calc(1em + 2px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.booking-form input:hover,
.booking-form select:hover {
  border-color: var(--pink-main);
}

.booking-form input:focus,
.booking-form select:focus {
  outline: none;
  border-color: var(--pink-main);
  box-shadow: 0 0 0 4px rgba(229, 64, 130, 0.15);
  background: #fff8fb;
}

.booking-form .hero-btn {
  margin: 8px 8px 0 0;
}

.booking-summary {
  background: #f5f5f5;
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 24px;
}

.booking-summary h3 {
  font-family: 'Cairo', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin-bottom: 16px;
}

.booking-summary ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.booking-summary li {
  font-family: 'Cairo', sans-serif;
  padding: 10px 0;
  border-bottom: 1px solid #e0e0e0;
  font-size: 15px;
  color: #333;
}

.booking-summary li:last-child {
  border-bottom: none;
}

.booking-summary strong {
  color: var(--pink-main);
  font-weight: 600;
}

@media (max-width: 768px) {
  .book-section {
    padding: 60px 5%;
    min-height: auto;
  }
  
  .book-session-title {
    font-size: 28px;
    margin-bottom: 12px;
  }
  
  .book-session-desc {
    font-size: 16px;
    margin-bottom: 32px;
  }
  
  .booking-step {
    padding: 20px 16px;
    margin-bottom: 20px;
  }
  
  .booking-form .hero-btn {
    width: 100%;
    margin: 8px 0 0 0;
  }
  
  .booking-summary h3 {
    font-size: 20px;
    color: var(--pink-main);
    margin-bottom: 10px;
  }
  
  .booking-summary li {
    font-size: 14px;
    margin-bottom: 6px;
  }
}

/* Login Page Styles */
.login-wrapper {
  background: url('/img/background/Reception.png') no-repeat center center fixed;
  background-size: cover;
  height: 100vh;
  font-family: 'Cairo', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-overlay {
  background: rgba(0, 0, 0, 0.5);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 6px 30px rgba(0,0,0,0.3);
  width: 100%;
  max-width: 400px;
  color: #fff;
}
.login-box h2 {
  text-align: center;
  margin-bottom: 24px;
  font-weight: 900;
  font-size: 28px;
}
.login-box label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
}
.login-box input {
  width: 100%;
  padding: 12px;
  margin-bottom: 16px;
  border-radius: 10px;
  border: none;
  font-size: 16px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.login-box button {
  background-color: #E54082;
  color: white;
  border: none;
  padding: 14px;
  width: 100%;
  border-radius: 10px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}
.login-box button:hover {
  background-color: #d73373;
}
@media (max-width: 600px) {
  .login-overlay {
    padding: 18px;
    border-radius: 10px;
  }
  .login-box h2 {
    font-size: 22px;
  }
}

/* Privacy Policy Page Styles */
.privacy-page {
  background: #FAFAFA;
  padding: 60px 20px;
  font-family: 'Cairo', sans-serif;
}
.privacy-page .container {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}
.privacy-section {
  margin-bottom: 40px;
}
.privacy-section h2 {
  color: #E54082;
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 800;
}
.privacy-section p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

/* Terms and Conditions Page Styles */
.terms-page {
  background: #FAFAFA;
  padding: 60px 20px;
  font-family: 'Cairo', sans-serif;
}

.terms-page .container {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}

.terms-section {
  margin-bottom: 40px;
}

.terms-section h2 {
  color: #E54082;
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 800;
}

.terms-section p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

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

[dir="rtl"] .booking-form label {
  text-align: right;
}
[dir="rtl"] .booking-form input,
[dir="rtl"] .booking-form select {
  direction: rtl;
  text-align: right;
}
[dir="rtl"] .book-session-grid {
  flex-direction: row-reverse;
}
[dir="rtl"] .booking-summary ul {
  text-align: right;
}

.contact-method .pink-button {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* WhatsApp circular button block for contact section */
.whatsapp-contact-block {
  text-align: center;
  margin-top: 0;
}

.whatsapp-circle-button {
  background-color: #25D366;
  color: white;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-circle-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

/* Center WhatsApp contact block in both LTR and RTL layouts */
.contact-method .whatsapp-contact-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.contact-methods {
  align-items: flex-start;
}

@media (max-width: 768px) {
  .contact-method .whatsapp-contact-block {
    margin: 0 auto 20px auto;
  }
  .footer-top {
    flex-direction: column !important;
    align-items: center !important;
    gap: 32px !important;
  }
  .footer-col {
    text-align: center !important;
    align-items: center !important;
    width: 100%;
    padding: 0 12px;
    margin-bottom: 32px !important;
  }
  .footer-col::after {
    display: none !important;
  }
  .footer-links,
  .footer-contact,
  .footer-socials {
    text-align: center !important;
  }
  .footer-col h4 {
    font-size: 18px !important;
    font-weight: bold !important;
    margin-bottom: 8px !important;
    text-align: center !important;
  }
  .footer-links a,
  .footer-contact p,
  .footer-contact a {
    font-size: 14px !important;
    line-height: 1.6 !important;
  }
  .social-icons,
  .social-icons-ar {
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 12px !important;
    width: 100% !important;
    margin: 0 auto !important;
  }
  html[lang="ar"] .footer-col {
    text-align: center !important;
    align-items: center !important;
  }
  html[lang="ar"] .footer-col.footer-socials .social-icons,
  html[lang="ar"] .footer .social-icons-ar {
    align-items: center !important;
    justify-content: center !important;
  }
}

@media (max-width: 500px) {
  .footer-col h4 {
    font-size: 18px !important;
    margin-bottom: 8px !important;
    text-align: center !important;
  }
  .footer-col {
    margin-bottom: 32px !important;
  }
  .footer-links a,
  .footer-contact p,
  .footer-contact a {
    font-size: 13px !important;
    line-height: 1.6 !important;
  }
  .footer-socials .social-icons,
  .footer .social-icons-ar {
    gap: 10px !important;
  }
  .footer-logo img {
    height: 60px;
  }
  .footer-bottom p {
    font-size: 12px;
    text-align: center;
  }
}

/* 📱 Mobile Navbar - Hidden by Default */
.mobile-navbar {
  display: none;
}

@media (max-width: 768px) {
  .navbar {
    display: none !important;
  }
  .mobile-navbar {
    display: block;
    background: var(--white);
    padding: 10px 5%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: relative;
    z-index: 999;
  }
  .mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .mobile-nav-header .nav-logo img {
    height: 40px;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
  }
  .menu-toggle span {
    height: 3px;
    background: var(--black);
    margin: 4px 0;
    width: 25px;
  }
  .mobile-nav-links {
    display: none;
    flex-direction: column;
    gap: 12px;
    margin-top: 12px;
  }
  .mobile-nav-links.show {
    display: flex;
  }
  .mobile-nav-links a {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--black);
    text-decoration: none;
    padding: 8px 0;
  }
  .mobile-nav-links a:hover {
    color: var(--pink-main);
  }
  .mobile-nav-links .highlight-nav-btn {
    background-color: var(--pink-main);
    color: #fff;
    padding: 10px 16px;
    border-radius: 0;
    border: none;
    display: inline-block;
  }
  .mobile-nav-links .highlight-nav-btn:hover {
    background: var(--white);
    color: var(--pink-main);
    border: 2px solid var(--pink-main);
  }
  .mobile-nav-links .lang-toggle {
    background: var(--pink-main);
    color: white;
    font-weight: 700;
    text-align: center;
    border: none;
    padding: 8px;
    display: block;
  }
}

/* Branch Social Icons */
.branch-social-icons {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-top: 16px;
}
.circle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 20px;
  color: white;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.circle-icon.whatsapp {
  background-color: #25D366;
}
.circle-icon.map {
  background-color: #E54082;
}
.circle-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
html[lang="ar"] .branch-social-icons {
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.branch-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 18px;
}
.icon-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 20px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: white !important;
  text-decoration: none !important;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.icon-btn.whatsapp {
  background-color: #25D366;
}
.icon-btn.map {
  background-color: var(--pink-main);
}
.icon-btn.call {
  background-color: #007bff;
}
.icon-btn:hover {
  transform: scale(1.15);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  color: white !important;
}
.branch-card a {
  text-decoration: none !important;
  color: inherit;
}
.branch-card a:hover {
  text-decoration: none !important;
  color: var(--pink-main);
}
.icon-btn i {
  color: white !important;
}

/* ===== HERO SLIDESHOW STYLES ===== */
.hero-slideshow {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 10px;
  background-color: #f0f0f0;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.hero-slideshow .hero-slide:first-child {
  opacity: 1;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.slideshow-controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slide-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.slide-dot:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

.slide-dot.active {
  background-color: var(--pink-main);
  width: 30px;
  border-radius: 6px;
}

@media (max-width: 768px) {
  .hero-slideshow {
    height: 300px;
  }
}

/* ====== EXTRACTED INLINE STYLES ====== */

/* Book.aspx - Container with centered flex layout and min-height */
.book-container-centered {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
}

/* Book.aspx - Grid auto-margin */
.book-grid-auto {
  margin: 0 auto;
}

/* Services.aspx / ServicesAR.aspx - Flex row-reverse for RTL */
.services-flex-reverse {
  display: flex;
  flex-direction: row-reverse;
}

/* Services.aspx / ServicesAR.aspx - Flex column reverse for RTL */
.services-flex-column-reverse {
  display: flex;
  flex-direction: row-reverse;
}

/* Default.aspx / DefaultAR.aspx - Text right align */
.text-right {
  text-align: right;
}

/* Default.aspx / DefaultAR.aspx - Text center align */
.text-center {
  text-align: center;
}

/* About.aspx / AboutAR.aspx - Gradient divider line */
.divider-gradient-line {
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, rgba(236, 72, 153, 0.1), transparent);
  margin: 2rem 0;
}

/* About.aspx / AboutAR.aspx - RTL gradient divider */
.divider-gradient-line-rtl {
  width: 100%;
  height: 2px;
  background: linear-gradient(to left, rgba(236, 72, 153, 0.1), transparent);
  margin: 2rem 0;
}

/* Icon styling with border-radius */
.icon-circular {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  margin: 0 auto 0.5rem;
}

/* Hero page paragraph styling */
.hero-subtitle {
  max-width: 480px;
  margin: 0 auto;
}

/* Hide on mobile devices */
.hidden-mobile {
  display: none;
}

@media (min-width: 640px) {
  .hidden-mobile {
    display: inline;
  }
}

/* Laser device rows with flex */
.laser-device-row-reverse {
  display: flex;
  flex-direction: row-reverse;
}

/* Cookie banner style overrides */
.cookie-banner-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #333;
  color: #fff;
  padding: 1rem;
  z-index: 50;
}

.cookie-banner-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  max-width: 100%;
}

.cookie-text {
  text-align: center;
  font-size: 1rem;
  margin: 0;
}

.cookie-accept-btn {
  background-color: #ec4899;
  color: #fff;
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  border: none;
  cursor: pointer;
  border-radius: 0.75rem;
}

.cookie-accept-btn:hover {
  background-color: #db337f;
  transition: background-color 0.3s ease;
}

/* Booking form wrapper */
.booking-form-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
}

.booking-grid-wrapper {
  margin: 0 auto;
}

/* Contact methods RTL */
.contact-methods-rtl {
  display: flex;
  flex-direction: row-reverse;
}

/* Branch cards RTL */
.branch-cards-rtl {
  display: flex;
  flex-direction: row-reverse;
}

/* Login section wrapper */
.login-section-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

/* Popup content styles */
.popup-content-centered {
  text-align: center;
}

/* Button primary style */
.btn-primary-pink {
  background-color: #ec4899;
  color: #fff;
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  border: none;
  cursor: pointer;
  border-radius: 0.75rem;
  transition: background-color 0.3s ease;
}

.btn-primary-pink:hover {
  background-color: #db337f;
}

/* CTA banner centered text */
.cta-banner-centered {
  text-align: center;
}

/* Margin helpers */
.margin-auto {
  margin: 0 auto;
}

.margin-top-24 {
  margin-top: 24px;
}

/* Flex display helpers */
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

/* Link styling for contact */
.contact-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: var(--pink-main);
}

/* About page link styling */
.about-link {
  color: #fff;
  text-decoration: underline;
}

.about-link:hover {
  color: #ec4899;
}

/* ====== ADDITIONAL EXTRACTED INLINE STYLES ====== */

/* Cookie banner button specific style */
.cookie-btn-pink {
  background-color: #ec4899;
  color: #fff;
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  border: none;
  cursor: pointer;
  border-radius: 0.75rem;
  transition: background-color 0.3s ease;
}

.cookie-btn-pink:hover {
  background-color: #db337f;
}

/* Contact text link */
.contact-text-link {
  color: #fff;
  text-decoration: underline;
}

/* Display none for form steps */
.form-step-hidden {
  display: none;
}

/* WhatsApp button centered display */
.whatsapp-btn-centered {
  display: block;
  margin: 24px auto 0 auto;
}

/* Cookie banner flex container */
.cookie-banner-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  max-width: 100%;
}

/* Contact info text centered */
.contact-info-centered {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px auto;
}

/* Divider line with gradient (right) */
.divider-gradient-right {
  width: 100%; 
  height: 2px; 
  background: linear-gradient(to right, rgba(236, 72, 153, 0.1), transparent);
}

/* Divider line with gradient (left) */
.divider-gradient-left {
  width: 100%; 
  height: 2px; 
  background: linear-gradient(to left, rgba(236, 72, 153, 0.1), transparent);
  margin: 2rem 0;
}

/* Icon circular styling */
.icon-round {
  width: 4rem; 
  height: 4rem; 
  border-radius: 50%; 
  margin: 0 auto 0.5rem;
}

/* Hidden H1 for SEO (present in DOM but not displayed) */
h1[style*="display:none"], 
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

