/* ==========================================================================
   FlexCare360 Stylesheet
   ========================================================================== */

/* --- Variables --- */
:root {
  /* Colors */
  --color-primary: #00796B; /* Medical Teal */
  --color-primary-dark: #004D40;
  --color-primary-light: #B2DFDB;
  --color-secondary: #FF9800; /* Warm Accent */
  --color-secondary-hover: #F57C00;
  
  --color-text-main: #333333;
  --color-text-muted: #666666;
  --color-bg-light: #F8F9FA;
  --color-bg-white: #FFFFFF;
  --color-border: #E0E0E0;
  
  --color-success: #2E7D32;
  --color-error: #D32F2F;
  --color-whatsapp: #25D366;

  /* Typography */
  --font-family-base: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 8px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 20px rgba(0,0,0,0.15);
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

/* --- Reset & Base --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family-base);
  color: var(--color-text-main);
  background-color: var(--color-bg-white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--color-primary-dark);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p { margin-bottom: 1rem; }

.text-center { text-align: center; }
.text-muted { color: var(--color-text-muted); }
.text-primary { color: var(--color-primary); }
.font-bold { font-weight: bold; }

/* --- Layout --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-light {
  background-color: var(--color-bg-light);
}

/* --- Header & Nav --- */
.header {
  background-color: var(--color-bg-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-primary);
}

.logo-text span {
  color: var(--color-secondary);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-weight: 500;
  color: var(--color-text-main);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-primary);
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-primary);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(135deg, rgba(0, 121, 107, 0.9) 0%, rgba(0, 77, 64, 0.95) 100%), url('https://images.unsplash.com/photo-1576091160550-2173ff9e5fe8?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  color: var(--color-bg-white);
  text-align: center;
}

.hero h1 {
  color: var(--color-bg-white);
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  opacity: 0.9;
}

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

.stat-item h4 {
  color: var(--color-secondary);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

/* --- Components --- */
/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: all var(--transition-fast);
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-bg-white);
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: var(--color-secondary);
  color: var(--color-bg-white);
}

.btn-secondary:hover {
  background-color: var(--color-secondary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}

.btn-outline:hover {
  background-color: var(--color-primary);
  color: var(--color-bg-white);
}

/* Cards */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--color-bg-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 2rem;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  border: 1px solid var(--color-border);
}

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

.service-icon {
  font-size: 3rem;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

/* Badges */
.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  background-color: var(--color-primary-light);
  color: var(--color-primary-dark);
}

/* Forms */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--color-text-main);
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 121, 107, 0.1);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
}

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

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: var(--color-whatsapp);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  transition: transform var(--transition-fast);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: white;
}

/* --- Footer --- */
.footer {
  background-color: var(--color-primary-dark);
  color: var(--color-bg-white);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-heading {
  color: var(--color-bg-white);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: rgba(255,255,255,0.8);
}

.footer-links a:hover {
  color: var(--color-secondary);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
}

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

.footer-social-links {
  margin-top: 1.5rem;
}

.social-link {
  background: rgba(255,255,255,0.1);
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  transition: transform var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
}

.contact-social-links .social-link {
  background: var(--color-bg-light);
  color: var(--color-primary);
  font-size: 1.2rem;
}

.social-link:hover {
  background: var(--color-secondary);
  color: #fff;
  transform: translateY(-3px);
}

/* --- Page Headers --- */
.page-header {
  background: linear-gradient(135deg, rgba(0, 121, 107, 0.9) 0%, rgba(0, 77, 64, 0.9) 100%), url('https://images.unsplash.com/photo-1505751172876-fa1923c5c528?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
  padding: 4rem 0;
  text-align: center;
  color: var(--color-bg-white);
}

.page-header h1 {
  color: var(--color-bg-white);
  margin-bottom: 0.5rem;
}

/* --- Trust Section --- */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
  padding: 2rem 0;
  background: white;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

.trust-badge-item i {
  color: var(--color-primary);
  font-size: 1.5rem;
}

/* --- Media Queries --- */
@media (max-width: 992px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  
  .hero h1 { font-size: 2rem; }
  .hero-stats { flex-direction: column; gap: 1.5rem; }
  
  .nav-links {
    display: none; /* Mobile menu toggle */
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--color-bg-white);
    flex-direction: column;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    gap: 1rem;
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .mobile-menu-btn {
    display: block;
  }
}


/* ==========================================================================
   HERO V2 – Split Layout (Apollo-inspired)
   ========================================================================== */

.hero-v2 {
  position: relative;
  background: linear-gradient(135deg, #f0faf8 0%, #e6f7f5 60%, #d0eeea 100%);
  overflow: hidden;
  padding: 5rem 0 4rem;
  min-height: 92vh;
  display: flex;
  align-items: center;
}

/* Decorative background blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  pointer-events: none;
}
.hero-blob-1 {
  width: 500px;
  height: 500px;
  background: var(--color-primary);
  top: -120px;
  right: -100px;
  opacity: 0.12;
}
.hero-blob-2 {
  width: 350px;
  height: 350px;
  background: var(--color-secondary);
  bottom: -80px;
  left: 30%;
  opacity: 0.10;
}

.hero-v2-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* ---------- Left: Text ---------- */
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 121, 107, 0.1);
  color: var(--color-primary-dark);
  border: 1px solid rgba(0, 121, 107, 0.25);
  border-radius: var(--radius-full);
  padding: 0.4rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  width: fit-content;
}
.hero-badge i { color: var(--color-primary); }

.hero-headline {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--color-primary-dark);
  line-height: 1.15;
  margin-bottom: 0;
}

.hero-highlight {
  color: var(--color-primary);
  position: relative;
  display: inline-block;
}
.hero-highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--color-secondary);
  border-radius: 2px;
}

.hero-sub {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 0;
}

/* CTA buttons */
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.btn-lg {
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-outline-white {
  background: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-outline-white:hover {
  background: var(--color-primary);
  color: white;
}

/* Stats row */
.hero-stats-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 0.5rem;
  border-top: 1px solid var(--color-border);
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.stat-num {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--color-border);
}

/* ---------- Right: Image + Floating cards ---------- */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img-frame {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

.hero-main-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 2rem 2rem 2rem 0.5rem;
  box-shadow: 0 20px 60px rgba(0, 77, 64, 0.2);
  position: relative;
  z-index: 2;
}

/* Decorative teal ring */
.hero-img-ring {
  position: absolute;
  width: calc(100% + 28px);
  height: calc(100% + 28px);
  border: 3px solid rgba(0, 121, 107, 0.25);
  border-radius: 2.5rem 2.5rem 2.5rem 0.5rem;
  top: -14px;
  left: -14px;
  z-index: 1;
}

/* Dot grid decoration */
.hero-dot-grid {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(circle, var(--color-primary) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  opacity: 0.25;
  z-index: 0;
}

/* Floating cards */
.hero-float-card {
  position: absolute;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  padding: 0.85rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 10;
  min-width: 190px;
  border: 1px solid rgba(0,0,0,0.06);
}
.float-card-tl { top: 12%; left: -60px; }
.float-card-br { bottom: 18%; right: -50px; }
.float-card-bl { bottom: 5%; left: -40px; }

.float-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.float-icon-green { background: #e8f5e9; color: #2e7d32; }
.float-icon-orange { background: #fff3e0; color: #e65100; }
.float-icon-blue   { background: #e3f2fd; color: #1565c0; }

.float-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-text-main);
  line-height: 1.2;
}
.float-sub {
  font-size: 0.72rem;
  color: var(--color-text-muted);
}

/* ---- Animations ---- */
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes floatUpDown {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}

.animate-fadein-left  { animation: fadeInLeft  0.8s ease both; }
.animate-fadein-right { animation: fadeInRight 0.8s ease 0.15s both; }
.animate-float        { animation: floatUpDown 3.5s ease-in-out infinite; }
.float-delay          { animation-delay: 0.6s; }
.float-delay2         { animation-delay: 1.2s; }

/* ==========================================================================
   SERVICES GRID – 14 Cards
   ========================================================================== */

.section-header { margin-bottom: 3rem; }

.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-primary);
  background: rgba(0, 121, 107, 0.08);
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: #fff;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: all 0.28s ease;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 77, 64, 0.14);
  border-color: var(--color-primary);
}

.sc-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
  flex-shrink: 0;
}

/* Color variants */
.sc-teal   { background: #e0f2f1; color: #00796b; }
.sc-blue   { background: #e3f2fd; color: #1565c0; }
.sc-purple { background: #f3e5f5; color: #7b1fa2; }
.sc-orange { background: #fff3e0; color: #e65100; }
.sc-red    { background: #fce4ec; color: #c62828; }
.sc-pink   { background: #fce4ec; color: #ad1457; }

.sc-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 0;
  line-height: 1.3;
}

.sc-desc {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  flex-grow: 1;
  margin-bottom: 0;
}

.sc-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.25rem;
  transition: gap var(--transition-fast);
}
.service-card:hover .sc-link {
  gap: 0.6rem;
}

/* ==========================================================================
   RESPONSIVE – Hero V2 & Services Grid
   ========================================================================== */

@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .float-card-tl { left: -30px; }
  .float-card-br { right: -20px; }
}

@media (max-width: 900px) {
  .hero-v2-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content { align-items: center; }
  .hero-visual { margin-top: 2rem; }
  .float-card-tl { top: 8%; left: 0; }
  .float-card-br { bottom: 8%; right: 0; }
  .float-card-bl { display: none; }
  .hero-main-img { height: 380px; }
  .hero-stats-row { justify-content: center; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .hero-v2 { padding: 3rem 0 2rem; min-height: auto; }
  .hero-headline { font-size: 1.8rem; }
  .hero-cta-group { flex-direction: column; }
  .hero-main-img { height: 280px; }
  .hero-float-card { display: none; }
  .hero-stats-row { gap: 1rem; }
  .stat-divider { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .service-card { padding: 1.25rem 1rem; }
}

@media (max-width: 400px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* Homepage shows 6 cards in 3 columns */
.services-grid-home {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
  .services-grid-home { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .services-grid-home { grid-template-columns: 1fr 1fr; gap: 0.9rem; }
}

/* ==========================================================================
   Premium Hijama / Cupping Therapy
   ========================================================================== */

.hijama-section {
  background:
    linear-gradient(135deg, rgba(224, 242, 241, 0.92), rgba(255, 255, 255, 0.96) 48%, rgba(255, 243, 224, 0.9)),
    var(--color-bg-light);
}

.hijama-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
}

.hijama-hero h2,
.hijama-comparison h2,
.hijama-enquiry-card h2 {
  font-size: 2.35rem;
  margin-bottom: 0.75rem;
}

.hijama-hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.hijama-whatsapp {
  background: var(--color-whatsapp);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.hijama-whatsapp:hover {
  background: #1eb75a;
  color: #fff;
  transform: translateY(-2px);
}

.hijama-visual {
  min-height: 360px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 22px 55px rgba(0, 77, 64, 0.18);
  border: 1px solid rgba(0, 121, 107, 0.18);
  background: #fff;
}

.hijama-visual img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.hijama-therapists,
.hijama-package-grid,
.hijama-compare-grid,
.hijama-treatment-grid {
  display: grid;
  gap: 1.25rem;
}

.hijama-therapists {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 4rem;
}

.hijama-therapist-card,
.hijama-package-card,
.hijama-addon-item,
.hijama-treatment-card,
.hijama-compare-grid div,
.hijama-enquiry-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 121, 107, 0.16);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 30px rgba(0, 77, 64, 0.08);
}

.hijama-therapist-card {
  padding: 1.5rem;
}

.hijama-therapist-card i {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  color: var(--color-primary);
  background: #e0f2f1;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.hijama-package-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 3rem;
}

.hijama-package-card {
  position: relative;
  padding: 1.65rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.hijama-package-card:hover,
.hijama-treatment-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-primary);
  box-shadow: 0 20px 45px rgba(0, 77, 64, 0.14);
}

.hijama-package-card.is-featured {
  border-color: var(--color-primary);
  background: linear-gradient(160deg, #ffffff, #f0fffc);
}

.hijama-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-full);
  background: var(--color-secondary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
}

.hijama-price {
  color: var(--color-primary-dark);
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
}

.hijama-package-meta,
.hijama-feature-list {
  display: grid;
  gap: 0.55rem;
}

.hijama-package-meta span,
.hijama-feature-list li,
.hijama-addon-item,
.hijama-treatment-card p,
.hijama-therapist-card p,
.hijama-compare-grid span {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.hijama-package-meta i,
.hijama-feature-list i {
  color: var(--color-primary);
  margin-right: 0.45rem;
}

.hijama-package-card .btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

.hijama-comparison {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 1.25rem;
  align-items: center;
  margin-bottom: 3rem;
}

.hijama-compare-grid {
  grid-template-columns: repeat(3, 1fr);
}

.hijama-compare-grid div {
  padding: 1.25rem;
}

.hijama-compare-grid strong,
.hijama-compare-grid span {
  display: block;
}

.hijama-split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.hijama-addon-list {
  display: grid;
  gap: 0.85rem;
}

.hijama-addon-item {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.hijama-addon-item strong,
.hijama-treatment-card strong {
  color: var(--color-primary-dark);
}

.hijama-treatment-grid {
  grid-template-columns: repeat(2, 1fr);
}

.hijama-treatment-card {
  padding: 1.25rem;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.hijama-treatment-card i {
  color: var(--color-secondary-hover);
  font-size: 1.35rem;
  margin-bottom: 0.8rem;
}

.hijama-enquiry-card {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2rem;
  padding: 2rem;
  align-items: start;
}

.hijama-form {
  display: grid;
  gap: 1rem;
}

.hijama-addon-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hijama-addon-checks label {
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: 0.45rem 0.8rem;
  background: #fff;
  cursor: pointer;
  font-size: 0.9rem;
}

.hijama-addon-checks input {
  width: auto;
}

.hijama-form-message {
  padding: 0.9rem 1rem;
  border-radius: var(--radius-md);
  background: #ecfdf5;
  color: #115e59;
  border: 1px solid #99f6e4;
}

.hijama-mobile-sticky {
  display: none;
}

@media (max-width: 900px) {
  .hijama-hero,
  .hijama-comparison,
  .hijama-split,
  .hijama-enquiry-card {
    grid-template-columns: 1fr;
  }

  .hijama-therapists,
  .hijama-package-grid,
  .hijama-compare-grid {
    grid-template-columns: 1fr;
  }

  .hijama-treatment-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hijama-section {
    padding-bottom: 6rem;
  }

  .hijama-hero h2,
  .hijama-comparison h2,
  .hijama-enquiry-card h2 {
    font-size: 1.7rem;
  }

  .hijama-visual,
  .hijama-visual img {
    min-height: 250px;
  }

  .hijama-enquiry-card {
    padding: 1.25rem;
  }

  .hijama-mobile-sticky {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 1200;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.45rem;
    box-shadow: 0 12px 30px rgba(0, 77, 64, 0.24);
  }
}
