/* ==========================================================================
   ACR Medical - Ultra-Premium Healthcare & Aesthetics Platform
   Minimalist, Editorial, Luxury Clinic Design Language
   ========================================================================== */

@import url('variables.css');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=Tajawal:wght@300;400;500;700&display=swap');

/* --- Reset & Global Baseline --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--acr-font-sans);
  background-color: var(--acr-bg-white);
  color: var(--acr-text-dark);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
}

ul, ol {
  list-style: none;
}

/* --- Container & Layout --- */
.acr-container {
  width: 100%;
  max-width: var(--acr-container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.acr-section {
  padding-top: 96px;
  padding-bottom: 96px;
  position: relative;
}

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

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

.acr-section-dark {
  background-color: var(--acr-bg-dark);
  color: var(--acr-text-white);
}

/* --- Typography Utilities --- */
.font-serif {
  font-family: var(--acr-font-serif);
}

.text-gold {
  color: var(--acr-gold);
}

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

.text-secondary {
  color: var(--acr-text-muted);
}

.text-cream {
  color: var(--acr-bg-cream);
}

.acr-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background-color: var(--acr-gold-subtle);
  border: 1px solid var(--acr-border-gold);
  border-radius: var(--acr-radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--acr-gold-dark);
}

.acr-badge-dark {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--acr-gold-light);
}

.acr-section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 56px auto;
}

.acr-section-title {
  font-family: var(--acr-font-serif);
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.25;
  color: var(--acr-text-dark);
  margin-top: 14px;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.acr-section-dark .acr-section-title {
  color: var(--acr-text-white);
}

.acr-section-subtitle {
  font-size: 1.05rem;
  color: var(--acr-text-muted);
  font-weight: 400;
}

.acr-section-dark .acr-section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

/* --- Buttons --- */
.acr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--acr-radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--acr-transition);
  text-align: center;
}

.acr-btn-primary {
  background-color: var(--acr-gold);
  color: #171717;
  border: 1px solid var(--acr-gold);
  box-shadow: var(--acr-shadow-gold);
}

.acr-btn-primary:hover {
  background-color: var(--acr-gold-dark);
  border-color: var(--acr-gold-dark);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(200, 155, 60, 0.35);
}

.acr-btn-outline {
  background-color: transparent;
  color: var(--acr-text-dark);
  border: 1px solid rgba(0, 0, 0, 0.15);
}

.acr-btn-outline:hover {
  border-color: var(--acr-gold);
  color: var(--acr-gold-dark);
  background-color: var(--acr-gold-subtle);
  transform: translateY(-2px);
}

.acr-btn-outline-white {
  background-color: transparent;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.acr-btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--acr-gold);
  color: var(--acr-gold-light);
}

.acr-btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.acr-btn-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.acr-topbar {
  background-color: var(--acr-bg-alt);
  border-bottom: 1px solid var(--acr-border-soft);
  font-size: 0.82rem;
  color: var(--acr-text-muted);
  height: var(--acr-topbar-height);
  display: flex;
  align-items: center;
}

.acr-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.acr-topbar-contact {
  display: flex;
  align-items: center;
  gap: 24px;
}

.acr-topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.acr-topbar-item i {
  color: var(--acr-gold-dark);
}

.acr-topbar-item a:hover {
  color: var(--acr-gold-dark);
}

.acr-topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Language Switcher */
.acr-lang-selector {
  position: relative;
}

.acr-lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: var(--acr-radius-sm);
  background-color: transparent;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--acr-text-dark);
  transition: var(--acr-transition);
}

.acr-lang-btn:hover {
  background-color: rgba(0, 0, 0, 0.04);
}

.acr-lang-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background-color: var(--acr-bg-white);
  border: 1px solid var(--acr-border-soft);
  border-radius: var(--acr-radius-md);
  box-shadow: var(--acr-shadow-lg);
  padding: 8px;
  min-width: 140px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--acr-transition);
}

.acr-lang-selector:hover .acr-lang-dropdown,
.acr-lang-selector.active .acr-lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.acr-lang-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-radius: var(--acr-radius-sm);
  font-size: 0.85rem;
  color: var(--acr-text-dark);
  font-weight: 500;
}

.acr-lang-item:hover, .acr-lang-item.active {
  background-color: var(--acr-gold-subtle);
  color: var(--acr-gold-dark);
}

/* Main Header */
.acr-header {
  background-color: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  height: var(--acr-header-height);
  border-bottom: 1px solid var(--acr-border-soft);
  position: sticky;
  top: 0;
  z-index: 900;
  transition: var(--acr-transition);
}

.acr-header.is-scrolled {
  box-shadow: var(--acr-shadow-sm);
  height: 72px;
  background-color: rgba(255, 255, 255, 0.98);
}

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

/* Logo */
.acr-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.acr-logo-symbol {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--acr-gold) 0%, var(--acr-gold-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #171717;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.05em;
  box-shadow: 0 4px 14px rgba(221, 180, 92, 0.3);
}

.acr-logo-text {
  display: flex;
  flex-direction: column;
}

.acr-logo-title {
  font-family: var(--acr-font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.1;
  color: var(--acr-text-dark);
}

.acr-logo-subtitle {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--acr-gold-dark);
  font-weight: 700;
}

/* Navigation Links */
.acr-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.acr-nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--acr-text-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 0;
  position: relative;
}

.acr-nav-link:hover, .acr-nav-link.active {
  color: var(--acr-gold-dark);
}

.acr-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--acr-gold);
  transition: var(--acr-transition);
}

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

/* Mega Menu */
.acr-has-mega {
  position: static;
}

.acr-mega-panel {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--acr-bg-white);
  border-bottom: 1px solid var(--acr-border-soft);
  box-shadow: var(--acr-shadow-lg);
  padding: 40px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: var(--acr-transition);
  pointer-events: none;
}

.acr-has-mega:hover .acr-mega-panel,
.acr-mega-panel:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.acr-mega-cat-btn:hover {
  background-color: var(--acr-gold-subtle) !important;
  color: var(--acr-gold-dark) !important;
}

.acr-mega-cat-btn.active {
  background-color: var(--acr-gold-subtle) !important;
  color: var(--acr-gold-dark) !important;
}

.acr-mega-service-item:hover {
  background-color: var(--acr-bg-white) !important;
  border-color: var(--acr-border-gold) !important;
  transform: translateY(-2px);
  box-shadow: var(--acr-shadow-sm);
}

.acr-mega-service-item:hover img {
  transform: scale(1.05);
}

/* Mobile Nested Accordion Styles */
.acr-accordion-btn.is-active .acr-accordion-arrow,
.acr-accordion-btn.is-active .acr-nested-arrow {
  transform: rotate(180deg);
  color: var(--acr-gold-dark);
}

.acr-drawer-sublink:hover {
  color: var(--acr-gold-dark) !important;
  padding-left: 4px;
}

/* Mobile Toggle */
.acr-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  cursor: pointer;
  padding: 8px;
}

.acr-mobile-toggle span {
  width: 26px;
  height: 2px;
  background-color: var(--acr-text-dark);
  border-radius: 2px;
  transition: var(--acr-transition);
}

/* ==========================================================================
   HERO SECTION (Editorial Full-Width Luxury)
   ========================================================================== */
.acr-hero {
  position: relative;
  background-color: #FFFFFF;
  padding-top: 60px;
  padding-bottom: 80px;
  overflow: hidden;
}

.acr-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 56px;
}

.acr-hero-content {
  max-width: 640px;
}

.acr-hero-title {
  font-family: var(--acr-font-serif);
  font-size: 3.4rem;
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: -0.03em;
  color: var(--acr-text-dark);
  margin-top: 20px;
  margin-bottom: 22px;
}

.acr-hero-title span {
  color: var(--acr-gold-dark);
  font-style: italic;
  font-weight: 600;
}

.acr-hero-desc {
  font-size: 1.15rem;
  color: var(--acr-text-muted);
  margin-bottom: 36px;
  line-height: 1.7;
}

.acr-hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.acr-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid var(--acr-border-soft);
}

.acr-stat-num {
  font-family: var(--acr-font-serif);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--acr-gold-dark);
  line-height: 1.1;
  margin-bottom: 4px;
}

.acr-stat-label {
  font-size: 0.82rem;
  color: var(--acr-text-muted);
  font-weight: 500;
}

/* Hero Media Frame */
.acr-hero-media {
  position: relative;
}

.acr-hero-image-wrapper {
  position: relative;
  border-radius: var(--acr-radius-lg);
  overflow: hidden;
  box-shadow: var(--acr-shadow-lg);
  border: 1px solid var(--acr-border-gold);
}

.acr-hero-img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
}

.acr-hero-float-badge {
  position: absolute;
  bottom: 28px;
  left: -20px;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 16px 22px;
  border-radius: var(--acr-radius-md);
  box-shadow: var(--acr-shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--acr-border-soft);
}

.acr-float-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--acr-gold-subtle);
  color: var(--acr-gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.acr-float-text h4 {
  font-size: 0.92rem;
  font-weight: 700;
}

.acr-float-text p {
  font-size: 0.78rem;
  color: var(--acr-text-muted);
}

/* ==========================================================================
   TRUST & ACCREDITATION STRIP
   ========================================================================== */
.acr-trust-strip {
  background-color: var(--acr-bg-alt);
  border-top: 1px solid var(--acr-border-soft);
  border-bottom: 1px solid var(--acr-border-soft);
  padding: 30px 0;
}

.acr-trust-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.acr-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.acr-trust-badge {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background-color: var(--acr-bg-white);
  border: 1px solid var(--acr-border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--acr-gold-dark);
  font-size: 1.1rem;
  box-shadow: var(--acr-shadow-sm);
}

.acr-trust-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--acr-text-dark);
}

/* ==========================================================================
   ABOUT TEASER SECTION
   ========================================================================== */
.acr-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}

.acr-about-image-card {
  position: relative;
  border-radius: var(--acr-radius-lg);
  overflow: hidden;
  box-shadow: var(--acr-shadow-lg);
}

.acr-about-image-card img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.acr-about-grid p {
  max-width: 65ch;
  line-height: 1.7;
}

.acr-about-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
  margin-bottom: 36px;
}

.acr-about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.acr-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background-color: var(--acr-bg-cream);
  color: var(--acr-gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.acr-feature-content h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}

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

/* ==========================================================================
   FEATURED SERVICES (EDITORIAL LUXURY CARDS)
   ========================================================================== */
.acr-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.acr-service-card {
  background-color: var(--acr-bg-white);
  border-radius: var(--acr-radius-md);
  border: 1px solid var(--acr-border-soft);
  overflow: hidden;
  transition: var(--acr-transition);
  display: flex;
  flex-direction: column;
}

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

.acr-service-img-wrapper {
  position: relative;
  height: 250px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.acr-service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.acr-service-card:hover .acr-service-img {
  transform: scale(1.03);
}

.acr-service-category {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: rgba(23, 23, 23, 0.8);
  backdrop-filter: blur(8px);
  color: var(--acr-gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--acr-radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.acr-service-body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.acr-service-title {
  font-family: var(--acr-font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 12px;
  color: var(--acr-text-dark);
}

.acr-service-desc {
  font-size: 0.92rem;
  color: var(--acr-text-muted);
  line-height: 1.6;
  margin-bottom: 22px;
  flex-grow: 1;
}

.acr-service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--acr-text-dark);
  transition: var(--acr-transition);
}

.acr-service-link i {
  color: var(--acr-gold-dark);
  transition: transform 0.3s ease;
}

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

.acr-service-card:hover .acr-service-link i {
  transform: translateX(4px);
}

/* ==========================================================================
   WHY CHOOSE US / USPS
   ========================================================================== */
.acr-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.acr-why-card {
  padding: 34px 28px;
  border-radius: var(--acr-radius-md);
  background-color: var(--acr-bg-white);
  border: 1px solid var(--acr-border-soft);
  transition: var(--acr-transition);
}

.acr-why-card:hover {
  border-color: var(--acr-border-gold);
  transform: translateY(-4px);
  box-shadow: var(--acr-shadow-md);
}

.acr-why-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background-color: var(--acr-gold-subtle);
  color: var(--acr-gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 22px;
}

.acr-why-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--acr-text-dark);
}

.acr-why-card p {
  font-size: 0.9rem;
  color: var(--acr-text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   DOCTORS / MEDICAL TEAM
   ========================================================================== */
.acr-doctors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.acr-doctor-card {
  background-color: var(--acr-bg-white);
  border-radius: var(--acr-radius-md);
  border: 1px solid var(--acr-border-soft);
  overflow: hidden;
  transition: var(--acr-transition);
}

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

.acr-doctor-img-wrap {
  position: relative;
  height: 380px;
  overflow: hidden;
  background-color: var(--acr-bg-alt);
}

.acr-doctor-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}

.acr-doctor-card:hover .acr-doctor-img {
  transform: scale(1.03);
}

.acr-doctor-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: var(--acr-radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--acr-gold-dark);
}

.acr-doctor-body {
  padding: 24px;
}

.acr-doctor-name {
  font-family: var(--acr-font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.acr-doctor-title {
  font-size: 0.85rem;
  color: var(--acr-gold-dark);
  font-weight: 600;
  margin-bottom: 10px;
}

.acr-doctor-spec {
  font-size: 0.88rem;
  color: var(--acr-text-muted);
  margin-bottom: 20px;
  line-height: 1.5;
}

/* ==========================================================================
   TREATMENT JOURNEY (4 STEPS)
   ========================================================================== */
.acr-journey-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
}

.acr-journey-grid::before {
  content: '';
  position: absolute;
  top: 62px;
  left: 40px;
  right: 40px;
  height: 1px;
  background: linear-gradient(90deg, rgba(221,180,92,0.1) 0%, rgba(221,180,92,0.4) 50%, rgba(221,180,92,0.1) 100%);
  z-index: 0;
}

.acr-journey-card {
  background-color: var(--acr-bg-white);
  padding: 36px 26px;
  border-radius: var(--acr-radius-md);
  border: 1px solid var(--acr-border-soft);
  position: relative;
  z-index: 1;
  transition: var(--acr-transition);
}

.acr-journey-card:hover {
  border-color: var(--acr-border-gold);
  transform: translateY(-4px);
  box-shadow: var(--acr-shadow-md);
}

.acr-step-number,
.acr-journey-step-num {
  font-family: var(--acr-font-serif);
  font-size: 3.4rem;
  font-weight: 700;
  color: var(--acr-gold);
  opacity: 0.22;
  line-height: 1;
  margin-bottom: 12px;
}

.acr-journey-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.acr-journey-card p {
  font-size: 0.88rem;
  color: var(--acr-text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   GALLERY TEASER (BEFORE / AFTER)
   ========================================================================== */
.acr-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.acr-gallery-card {
  background-color: var(--acr-bg-white);
  border-radius: var(--acr-radius-md);
  border: 1px solid var(--acr-border-soft);
  overflow: hidden;
  box-shadow: var(--acr-shadow-sm);
  transition: var(--acr-transition);
}

.acr-gallery-card:hover {
  border-color: var(--acr-border-gold);
  transform: translateY(-4px);
  box-shadow: var(--acr-shadow-md);
}

.acr-comparison-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 240px;
  position: relative;
}

.acr-comp-half {
  position: relative;
  overflow: hidden;
}

.acr-comp-half img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.acr-comp-tag {
  position: absolute;
  bottom: 10px;
  padding: 3px 10px;
  border-radius: var(--acr-radius-pill);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background-color: rgba(23, 23, 23, 0.75);
  color: #FFFFFF;
}

.acr-comp-tag.tag-before {
  left: 10px;
}

.acr-comp-tag.tag-after {
  right: 10px;
  background-color: var(--acr-gold);
  color: #171717;
}

.acr-gallery-body {
  padding: 20px;
}

.acr-gallery-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.acr-gallery-proc {
  font-size: 0.85rem;
  color: var(--acr-gold-dark);
  font-weight: 600;
}

/* ==========================================================================
   HEALTH TOURISM & VIP SERVICES (DARK LUXURY ACCENT)
   ========================================================================== */
.acr-tourism-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 56px;
}

.acr-tourism-perks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.acr-perk-card {
  background-color: var(--acr-bg-dark-card);
  border: 1px solid var(--acr-border-dark);
  border-radius: var(--acr-radius-md);
  padding: 26px;
  transition: var(--acr-transition);
}

.acr-perk-card:hover {
  border-color: var(--acr-border-gold);
  transform: translateY(-3px);
}

.acr-perk-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background-color: rgba(221, 180, 92, 0.15);
  color: var(--acr-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 18px;
}

.acr-perk-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #FFFFFF;
}

.acr-perk-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.acr-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.acr-testimonial-card {
  background-color: var(--acr-bg-white);
  border-radius: var(--acr-radius-md);
  border: 1px solid var(--acr-border-soft);
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--acr-shadow-sm);
  transition: var(--acr-transition);
}

.acr-testimonial-card:hover {
  border-color: var(--acr-border-gold);
  transform: translateY(-4px);
  box-shadow: var(--acr-shadow-md);
}

.acr-stars {
  color: var(--acr-gold);
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
  font-size: 0.95rem;
}

.acr-test-text {
  font-size: 0.98rem;
  color: var(--acr-text-dark);
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 24px;
}

.acr-test-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.acr-author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--acr-bg-cream);
  color: var(--acr-gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.acr-author-info h5 {
  font-size: 0.95rem;
  font-weight: 700;
}

.acr-author-info span {
  font-size: 0.8rem;
  color: var(--acr-gold-dark);
  font-weight: 600;
}

/* ==========================================================================
   BLOG / MEDICAL JOURNAL
   ========================================================================== */
.acr-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.acr-blog-card {
  background-color: var(--acr-bg-white);
  border-radius: var(--acr-radius-md);
  border: 1px solid var(--acr-border-soft);
  overflow: hidden;
  transition: var(--acr-transition);
}

.acr-blog-card:hover {
  border-color: var(--acr-border-gold);
  transform: translateY(-5px);
  box-shadow: var(--acr-shadow-md);
}

.acr-blog-img-wrap {
  height: 220px;
  overflow: hidden;
}

.acr-blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.acr-blog-card:hover .acr-blog-img {
  transform: scale(1.05);
}

.acr-blog-body {
  padding: 24px;
}

.acr-blog-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.8rem;
  color: var(--acr-text-muted);
  margin-bottom: 12px;
}

.acr-blog-title {
  font-family: var(--acr-font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 12px;
}

.acr-blog-desc {
  font-size: 0.88rem;
  color: var(--acr-text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
}

/* ==========================================================================
   CTA BANNER
   ========================================================================== */
.acr-cta-box {
  background: linear-gradient(135deg, #1A1A1A 0%, #262626 100%);
  border-radius: var(--acr-radius-lg);
  padding: 64px 48px;
  border: 1px solid var(--acr-border-gold);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--acr-shadow-lg);
}

.acr-cta-box .acr-section-title {
  color: #FFFFFF;
  font-size: 2.6rem;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.acr-cta-box p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto 36px auto;
}

.acr-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.acr-footer {
  background-color: var(--acr-bg-dark);
  color: var(--acr-text-white);
  padding-top: 80px;
  padding-bottom: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.acr-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 56px;
}

.acr-footer-brand .acr-logo-title {
  color: #FFFFFF;
}

.acr-footer-tagline {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 18px;
  margin-bottom: 24px;
  line-height: 1.6;
}

.acr-footer-socials {
  display: flex;
  gap: 12px;
}

.acr-social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--acr-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.acr-social-link:hover {
  background-color: var(--acr-gold);
  color: #171717;
  transform: translateY(-2px);
}

.acr-footer-col h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #FFFFFF;
  position: relative;
  padding-bottom: 10px;
}

.acr-footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background-color: var(--acr-gold);
}

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

.acr-footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.acr-footer-links a:hover {
  color: var(--acr-gold-light);
  padding-left: 4px;
}

.acr-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.acr-footer-contact-item i {
  color: var(--acr-gold);
  margin-top: 4px;
}

.acr-footer-disclaimer {
  padding-top: 30px;
  padding-bottom: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
}

.acr-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  flex-wrap: wrap;
  gap: 16px;
}

.acr-footer-legal {
  display: flex;
  gap: 20px;
}

.acr-footer-legal a:hover {
  color: var(--acr-gold-light);
}

/* ==========================================================================
   MODAL & FORM SYSTEM
   ========================================================================== */
.acr-modal-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--acr-transition);
}

.acr-modal-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.acr-modal {
  background-color: var(--acr-bg-white);
  border-radius: var(--acr-radius-lg);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  position: relative;
  padding: 40px;
  border: 1px solid var(--acr-border-gold);
  transform: scale(0.95);
  transition: var(--acr-transition);
}

.acr-modal-backdrop.is-open .acr-modal {
  transform: scale(1);
}

.acr-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--acr-bg-alt);
  color: var(--acr-text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
}

.acr-modal-close:hover {
  background-color: var(--acr-gold);
}

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

.acr-form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--acr-text-dark);
}

.acr-input, .acr-select, .acr-textarea {
  width: 100%;
  padding: 13px 18px;
  border-radius: var(--acr-radius-sm);
  background-color: var(--acr-bg-alt);
  border: 1px solid var(--acr-border-soft);
  color: var(--acr-text-dark);
  font-size: 0.95rem;
  transition: var(--acr-transition);
}

.acr-input:focus, .acr-select:focus, .acr-textarea:focus {
  background-color: #FFFFFF;
  border-color: var(--acr-gold);
  box-shadow: 0 0 0 3px var(--acr-gold-subtle);
}

.acr-radio-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.acr-radio-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  border-radius: var(--acr-radius-sm);
  border: 1px solid var(--acr-border-soft);
  background-color: var(--acr-bg-alt);
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--acr-transition);
}

.acr-radio-label input {
  display: none;
}

.acr-radio-label.selected {
  border-color: var(--acr-gold);
  background-color: var(--acr-gold-subtle);
  color: var(--acr-gold-dark);
}

/* ==========================================================================
   MOBILE DRAWER NAVIGATION
   ========================================================================== */
.acr-mobile-drawer {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  width: 320px;
  max-width: 85vw;
  background-color: var(--acr-bg-white);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  z-index: 2500;
  transform: translateX(100%);
  transition: var(--acr-transition);
  display: flex;
  flex-direction: column;
  padding: 30px 24px;
}

.acr-mobile-drawer.is-open {
  transform: translateX(0);
}

.acr-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--acr-border-soft);
}

.acr-drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex-grow: 1;
}

.acr-drawer-link {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--acr-text-dark);
  padding: 6px 0;
}

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

.acr-drawer-footer {
  padding-top: 24px;
  border-top: 1px solid var(--acr-border-soft);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (Mobile-First Controlled)
   ========================================================================== */

@media (max-width: 1200px) {
  .acr-why-grid, .acr-journey-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .acr-nav {
    display: none;
  }

  .acr-mobile-toggle {
    display: flex;
  }

  .acr-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .acr-hero-img {
    height: 420px;
  }

  .acr-about-grid {
    grid-template-columns: 1fr;
  }

  .acr-services-grid, .acr-doctors-grid, .acr-gallery-grid, .acr-testimonials-grid, .acr-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .acr-tourism-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .acr-topbar {
    display: none;
  }

  .acr-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

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

  .acr-hero-title {
    font-size: 2.2rem;
  }

  .acr-hero-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .acr-services-grid, .acr-doctors-grid, .acr-gallery-grid, .acr-testimonials-grid, .acr-blog-grid, .acr-why-grid, .acr-journey-grid, .acr-tourism-perks {
    grid-template-columns: 1fr;
  }

  .acr-footer-grid {
    grid-template-columns: 1fr;
  }

  .acr-cta-box {
    padding: 40px 24px;
  }

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

  .acr-modal {
    padding: 24px;
  }
}

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

  .acr-btn {
    width: 100%;
  }

  .acr-hero-actions {
    flex-direction: column;
    width: 100%;
  }
}

/* ==========================================================================
   INTERACTIVE BEFORE / AFTER SLIDER COMPONENT
   ========================================================================== */
.acr-ba-slider {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
  user-select: none;
  cursor: ew-resize;
  background-color: #171717;
  border-radius: var(--acr-radius-md);
  touch-action: pan-y;
}

.acr-ba-after,
.acr-ba-before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.acr-ba-after img,
.acr-ba-before img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.acr-ba-before {
  z-index: 2;
  border-right: 2px solid var(--acr-gold);
}

.acr-ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4px;
  transform: translateX(-50%);
  z-index: 3;
  pointer-events: none;
}

.acr-ba-handle-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--acr-gold);
  transform: translateX(-50%);
  box-shadow: 0 0 10px rgba(0,0,0,0.6);
}

.acr-ba-handle-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--acr-gold);
  color: #171717;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.4);
  font-size: 0.85rem;
  border: 2px solid #FFFFFF;
}

.acr-comp-tag {
  position: absolute;
  top: 14px;
  padding: 4px 12px;
  background: rgba(23, 23, 23, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  border: 1px solid rgba(221, 180, 92, 0.4);
  z-index: 5;
  pointer-events: none;
}

.tag-before {
  left: 14px;
}

.tag-after {
  right: 14px;
}

/* ==========================================================================
   EDITORIAL 2-COLUMN VIP CONSULTATION CTA & FORM
   ========================================================================== */
.acr-cta-box {
  background: linear-gradient(135deg, #171717 0%, #1F1E1B 50%, #171717 100%);
  border: 1px solid rgba(221, 180, 92, 0.35);
  border-radius: var(--acr-radius-lg);
  padding: 56px 48px;
  color: #FFFFFF;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}

.acr-cta-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 52px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.acr-cta-left {
  display: flex;
  flex-direction: column;
}

.acr-cta-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 24px 0 28px;
}

.acr-cta-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
}

.acr-cta-feature-item i {
  color: var(--acr-gold);
  font-size: 1rem;
}

.acr-cta-form-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(221, 180, 92, 0.25);
  border-radius: var(--acr-radius-md);
  padding: 32px 28px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.acr-cta-form-card .acr-input,
.acr-cta-form-card .acr-select,
.acr-cta-form-card .acr-textarea {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #FFFFFF;
}

.acr-cta-form-card .acr-input:focus,
.acr-cta-form-card .acr-select:focus,
.acr-cta-form-card .acr-textarea:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--acr-gold);
}

.acr-cta-form-card .acr-select option {
  background-color: #171717;
  color: #FFFFFF;
}

.acr-phone-input-group {
  display: flex;
  gap: 8px;
}

.acr-phone-prefix {
  width: 105px;
  flex-shrink: 0;
  padding: 10px 8px;
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON (DESKTOP & MOBILE)
   ========================================================================== */
.acr-floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 990;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.acr-floating-whatsapp:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.55);
  color: #FFFFFF;
}

.acr-floating-whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: rgba(23, 23, 23, 0.9);
  color: #FFFFFF;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(8px);
  transition: all 0.25s ease;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.acr-floating-whatsapp:hover .acr-floating-whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* ==========================================================================
   MOBILE STICKY CONTACT ACTION BAR
   ========================================================================== */
.acr-mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: calc(60px + env(safe-area-inset-bottom, 0px));
  padding-bottom: env(safe-area-inset-bottom, 0px);
  background: #FFFFFF;
  border-top: 1px solid var(--acr-border-soft);
  z-index: 998;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.06);
}

.acr-sticky-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-size: 0.72rem;
  font-weight: 600;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 0;
}

.acr-sticky-btn i {
  font-size: 1.15rem;
}

.acr-sticky-call {
  color: var(--acr-text-dark);
  border-right: 1px solid var(--acr-border-soft);
}

.acr-sticky-quote {
  color: var(--acr-gold-dark);
  background: var(--acr-gold-subtle);
  border-right: 1px solid var(--acr-border-soft);
}

.acr-sticky-wa {
  color: #25D366;
}

@media (max-width: 992px) {
  .acr-cta-split {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .acr-mobile-sticky-bar {
    display: flex;
  }
  .acr-floating-whatsapp {
    bottom: calc(74px + env(safe-area-inset-bottom, 0px));
    right: 18px;
    width: 50px;
    height: 50px;
    font-size: 1.55rem;
  }
  body {
    padding-bottom: calc(60px + env(safe-area-inset-bottom, 0px));
  }
  .acr-cta-box {
    padding: 36px 20px;
  }
  .acr-journey-grid::before {
    top: 20px;
    bottom: 20px;
    left: 28px;
    right: auto;
    width: 2px;
    height: auto;
    background: var(--acr-border-gold);
  }
  .acr-journey-card {
    margin-left: 20px;
  }
}

/* ==========================================================================
   COOKIE CONSENT & GDPR COMPLIANCE STYLES
   ========================================================================== */
.acr-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(11, 19, 43, 0.98);
  backdrop-filter: blur(12px);
  color: #FFFFFF;
  padding: 18px 24px;
  z-index: 99999;
  border-top: 1px solid rgba(200, 162, 77, 0.3);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.25);
  animation: acrFadeInUp 0.3s ease-out;
}

.acr-cookie-container {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.acr-cookie-content {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.acr-cookie-icon {
  font-size: 2rem;
  color: var(--acr-gold);
  flex-shrink: 0;
}

.acr-cookie-title {
  font-size: 1rem;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0 0 4px 0;
}

.acr-cookie-text p {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.5;
}

.acr-cookie-text a {
  color: var(--acr-gold-light);
  text-decoration: underline;
}

.acr-cookie-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.acr-cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.acr-cookie-cat-item {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 14px 16px;
}

.acr-cookie-cat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.acr-cookie-cat-title {
  font-size: 0.92rem;
  color: #0f172a;
}

.acr-cookie-status-badge {
  display: inline-block;
  font-size: 0.72rem;
  padding: 2px 8px;
  background: #e2e8f0;
  color: #475569;
  border-radius: 4px;
  font-weight: 600;
  margin-left: 8px;
}

.acr-cookie-cat-desc {
  font-size: 0.82rem;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

.acr-cookie-modal-footer {
  margin-top: 24px;
}

/* Switch styling for checkboxes */
.acr-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}

.acr-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.acr-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #cbd5e1;
  transition: .3s;
  border-radius: 24px;
}

.acr-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .3s;
  border-radius: 50%;
}

input:checked + .acr-slider {
  background-color: var(--acr-gold);
}

input:checked + .acr-slider:before {
  transform: translateX(20px);
}

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

@media (max-width: 768px) {
  .acr-cookie-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .acr-cookie-actions {
    width: 100%;
    flex-wrap: wrap;
  }
  .acr-cookie-actions .acr-btn {
    flex: 1;
    text-align: center;
    justify-content: center;
    padding: 8px 12px;
    font-size: 0.78rem;
  }
}
