:root {
  /* LIGHT MODE (Default) */
  --neon-cyan: #0093ab;
  --neon-mint: #059669;
  --primary-color: #0093ab;
  --bg-main: #f8fafc;
  --surface: rgba(255, 255, 255, 0.85);
  --border: rgba(203, 213, 225, 0.6);
  --text-main: #0f172a;
  --text-dim: #475569;
  --shadow-main: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
  --glow-main: 0 0 20px rgba(0, 147, 171, 0.2);
  --hero-overlay: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, rgba(248, 250, 252, 0.7) 100%);
  --alt-bg-color: #f0f2f5;
}

[data-theme="dark"] {
  /* DARK MODE */
  --neon-cyan: #06b6d4;
  --neon-mint: #10b981;
  --primary-color: #06b6d4;
  --bg-main: #0B1121;
  --surface: rgba(30, 41, 59, 0.7);
  --border: rgba(51, 65, 85, 0.8);
  --text-main: #f8fafc;
  --text-dim: #94a3b8;
  --shadow-main: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  --glow-main: 0 0 20px rgba(6, 182, 212, 0.3), 0 0 40px rgba(16, 185, 129, 0.2);
  --hero-overlay: radial-gradient(circle at center, rgba(11, 17, 33, 0.4) 0%, var(--bg-main) 100%);
  --alt-bg-color: #080D1A;
}

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

html, body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  scroll-behavior: smooth;
  transition: background-color 0.5s ease, color 0.5s ease;
}

/* Subtle Premium Noise Texture */
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 9998;
}
[data-theme="dark"] body::before { opacity: 0.06; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-main); }
::-webkit-scrollbar-thumb { background: var(--neon-cyan); border-radius: 4px; }

h1, h2, h3, h4 { font-family: 'Outfit', sans-serif; font-weight: 800; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.text-center { text-align: center; }
.mt-4 { margin-top: 24px; }
.mono { font-family: 'Plus Jakarta Sans', sans-serif; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.75rem; color: var(--text-dim); }
.neon-text { 
  background: linear-gradient(to right, var(--neon-cyan), var(--neon-mint), var(--neon-cyan)); 
  background-size: 200% auto;
  -webkit-background-clip: text; 
  background-clip: text; 
  color: transparent; 
  text-shadow: none; 
  animation: shine 4s linear infinite;
}
@keyframes shine {
  to { background-position: 200% center; }
}

/* CUSTOM CURSOR */
@media (hover: hover) and (pointer: fine) {
  body, a, button, input { cursor: none !important; }
}
.cursor-dot { width: 10px; height: 10px; background-color: var(--neon-mint); position: fixed; top: 0; left: 0; border-radius: 2px; z-index: 9999; pointer-events: none; transform: translate(-50%, -50%) rotate(45deg); box-shadow: 0 0 10px var(--neon-mint); transition: opacity 0.3s, transform 0.3s; }
.cursor-outline { width: 40px; height: 40px; border: 1.5px solid var(--neon-cyan); position: fixed; top: 0; left: 0; border-radius: 8px; z-index: 9998; pointer-events: none; transform: translate(-50%, -50%) rotate(45deg); box-shadow: 0 0 15px rgba(6, 182, 212, 0.4); transition: opacity 0.3s, width 0.3s, height 0.3s, background-color 0.3s, border-radius 0.3s, transform 0.3s; }

/* REVEAL ANIMATIONS */
.reveal { opacity: 0; transform: translateY(40px); transition: all 1s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

.reveal-left { opacity: 0; transform: translateX(-50px); transition: all 1s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-left.active { opacity: 1; transform: translateX(0); }

.reveal-right { opacity: 0; transform: translateX(50px); transition: all 1s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-right.active { opacity: 1; transform: translateX(0); }

.reveal-scale { opacity: 0; transform: scale(0.85); transition: all 1s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-scale.active { opacity: 1; transform: scale(1); }

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }
.delay-500 { transition-delay: 500ms; }
.delay-600 { transition-delay: 600ms; }

@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}
.floating-element {
  animation: floatUp 4s ease-in-out infinite;
}

@keyframes wiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-5deg); }
  75% { transform: rotate(5deg); }
}
.wiggle-on-hover:hover {
  animation: wiggle 0.5s ease-in-out infinite;
}

/* HEADER */
.glass-header {
  position: fixed;
  top: 0; left: 0; width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 5%;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: all 0.5s ease;
}
.glass-header.scrolled {
  padding: 10px 5%;
  background: var(--surface);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.logo { display: flex; align-items: center; gap: 16px; margin-right: auto; }
.logo-img { height: 60px; border-radius: 12px; background: white; padding: 4px; }
.logo-text { font-size: 2.2rem; line-height: 1.1; }
.logo-text b { display: block; color: var(--text-main); }
.logo-text span { font-size: 1.2rem; color: var(--neon-cyan); }

nav { display: flex; gap: 32px; align-items: center; margin-right: 32px; }
.header-right { display: flex; gap: 20px; align-items: center; }
nav a { font-weight: 600; font-size: 0.95rem; color: var(--text-main); transition: 0.3s; }
nav a:hover:not(.cta) { color: var(--neon-cyan); }

/* Theme Toggle Button */
.theme-toggle {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-main);
  transition: all 0.3s ease;
}
.theme-toggle:hover { background: var(--neon-cyan); color: white; transform: rotate(15deg) scale(1.1); border-color: var(--neon-cyan); }
[data-theme="dark"] .moon-icon { display: none; }
html:not([data-theme="dark"]) .sun-icon { display: none; }

.glow-button {
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-mint));
  color: #fff !important;
  padding: 12px 28px;
  border-radius: 99px;
  font-weight: 700;
  box-shadow: var(--glow-main);
  transition: 0.3s;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}
.glow-button::after {
  content: '';
  position: absolute;
  top: -50%; left: -60%;
  width: 20%; height: 200%;
  background: rgba(255,255,255,0.4);
  transform: rotate(45deg);
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.glow-button:hover::after {
  left: 120%;
}
[data-theme="dark"] .glow-button { color: var(--bg-main) !important; }
.glow-button:hover { transform: translateY(-3px); box-shadow: 0 0 30px rgba(6, 182, 212, 0.6); }

/* IMMERSIVE HERO */
.immersive-hero {
  position: relative;
  height: 100vh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url('images/hero image.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 0 5%;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: var(--hero-overlay);
  z-index: 1;
  transition: background 0.5s ease;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 900px;
  display: flex; flex-direction: column; align-items: center;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 99px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--surface);
  backdrop-filter: blur(10px);
  border: 1px solid var(--neon-cyan);
  color: var(--neon-cyan);
  margin-bottom: 30px;
  box-shadow: var(--glow-main);
}

.hero-title { 
  font-size: 5rem; 
  line-height: 1.1; 
  margin-bottom: 24px; 
  color: var(--text-main); 
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.9), 0 0 20px rgba(255, 255, 255, 0.8), 0 4px 6px rgba(0,0,0,0.1); 
}
[data-theme="dark"] .hero-title { text-shadow: 0 10px 30px rgba(0,0,0,0.8), 0 0 20px rgba(0,0,0,0.5); }
.hero-subtitle { 
  font-size: 1.3rem; 
  color: var(--text-main); 
  font-weight: 600;
  margin-bottom: 50px; 
  max-width: 600px; 
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.9), 0 0 20px rgba(255, 255, 255, 0.8);
}
[data-theme="dark"] .hero-subtitle { color: var(--text-dim); text-shadow: 0 2px 10px rgba(0,0,0,0.8); }

.hero-action-bar {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap; justify-content: center;
  background: var(--surface);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  padding: 12px 24px;
  border-radius: 99px;
  box-shadow: var(--shadow-main);
}
.action-item { display: flex; align-items: center; gap: 12px; text-align: left; }
.action-icon {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(6, 182, 212, 0.1);
  color: var(--neon-cyan);
}
.action-text { display: flex; flex-direction: column; justify-content: center; }
.action-text b { font-size: 1.1rem; color: var(--text-main); line-height: 1.2; }
.hero-action-bar .mono { margin-bottom: 4px; }

.divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.action-buttons { display: flex; gap: 16px; align-items: center; }

.btn-ghost {
  padding: 12px 28px;
  border-radius: 99px;
  font-weight: 700;
  border: 1px solid var(--border);
  color: var(--text-main);
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-ghost:hover { background: var(--border); }

/* SECTIONS */
section { padding: 100px 5%; }
.section-head { margin-bottom: 60px; }
.section-head h2 { font-size: 3rem; margin-bottom: 16px; }
.section-head p { font-size: 1.2rem; color: var(--text-dim); }

/* ABOUT SECTION */
.pharmacist-credential-box {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--neon-mint);
  border-radius: 16px;
  padding: 16px 20px;
  margin-top: 24px;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.1);
}
.ph-icon {
  width: 50px;
  height: 50px;
  background: rgba(16, 185, 129, 0.1);
  color: var(--neon-mint);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ph-details h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: var(--neon-cyan);
}
.ph-details p {
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.4;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}
.about-image-wrapper {
  flex: 1;
  position: relative;
}
.about-img {
  width: 100%;
  border-radius: 30px;
  box-shadow: var(--shadow-main);
}
.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--surface);
  backdrop-filter: blur(10px);
  border: 1px solid var(--neon-mint);
  padding: 20px;
  border-radius: 20px;
  box-shadow: var(--glow-main);
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 2;
}
.exp-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--neon-mint);
  line-height: 1;
}
.exp-text {
  font-weight: 600;
  line-height: 1.2;
}
.about-content {
  flex: 1;
}
.about-desc {
  font-size: 1.1rem;
  color: var(--text-dim);
  margin-bottom: 20px;
  line-height: 1.7;
}
.about-features {
  list-style: none;
  margin: 30px 0;
}
.about-features li {
  margin-bottom: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
}
.about-features li span {
  color: var(--neon-mint);
  font-weight: 800;
  font-size: 1.2rem;
}

/* ASYMMETRIC GRID & BLOBS */
.relative-section { position: relative; overflow: hidden; }

@keyframes floatBlob {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-40px) scale(1.05); }
}

.service-bg-blob { 
  position: absolute; width: 400px; height: 400px; border-radius: 50%; 
  filter: blur(80px); opacity: 0.15; z-index: -1; 
  animation: floatBlob 10s ease-in-out infinite;
}
.blob-left { background: var(--neon-cyan); top: -100px; left: -100px; }
.blob-right { background: var(--neon-mint); bottom: -100px; right: -100px; animation-delay: -5s; }

.six-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
}

.glass-card {
  background: var(--surface);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: border-color 0.4s, box-shadow 0.4s;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
}
.glass-card:hover { 
  border-color: var(--neon-cyan); 
  box-shadow: 0 15px 40px rgba(6, 182, 212, 0.15); 
}

.card-image-wrap {
  background: var(--surface);
  height: 130px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.card-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0.9;
}
.glass-card:hover .card-cover-img {
  transform: scale(1.1);
  opacity: 1;
}
.card-body {
  padding: 16px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.card p { color: var(--text-dim); font-size: 0.85rem; margin-bottom: 16px; flex: 1; }

.card-link {
  display: inline-flex;
  align-items: center;
  color: var(--neon-cyan);
  font-weight: 700;
  font-size: 0.95rem;
  transition: 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.card-link span { margin-left: 8px; transition: transform 0.3s ease; }
.card-link:hover { color: var(--neon-mint); }
.card-link:hover span { transform: translateX(5px); }

/* HORIZONTAL SLIDER */
.alternate-bg { background: var(--alt-bg-color); }

.custom-shape-divider-top {
    position: absolute;
    top: -69px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 2;
}
.custom-shape-divider-top svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}
.custom-shape-divider-top .shape-fill {
    fill: var(--alt-bg-color);
    transition: fill 0.5s ease;
}

.custom-shape-divider-bottom {
    position: absolute;
    bottom: -69px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}
.custom-shape-divider-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}
.custom-shape-divider-bottom .shape-fill {
    fill: var(--alt-bg-color);
    transition: fill 0.5s ease;
}

.custom-shape-divider-bottom-alt {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 2;
}
.custom-shape-divider-bottom-alt svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}
.custom-shape-divider-bottom-alt .shape-fill {
    fill: var(--bg-main);
    transition: fill 0.5s ease;
}

.custom-shape-divider-top-white {
    position: absolute;
    top: -69px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 2;
}
.custom-shape-divider-top-white svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}
.custom-shape-divider-top-white .shape-fill {
    fill: var(--bg-main);
    transition: fill 0.5s ease;
}

.custom-shape-divider-bottom-white {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 2;
}
.custom-shape-divider-bottom-white svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}
.custom-shape-divider-bottom-white .shape-fill {
    fill: var(--bg-main);
    transition: fill 0.5s ease;
}
.custom-shape-divider-top-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: -2;
}
.custom-shape-divider-top-inner svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}
.custom-shape-divider-top-inner .shape-fill {
    fill: var(--alt-bg-color);
    transition: fill 0.5s ease;
}

.horizontal-slider {
  display: flex; gap: 30px; overflow-x: auto; padding-bottom: 40px;
  scroll-snap-type: x mandatory;
}
.horizontal-slider::-webkit-scrollbar { height: 6px; }
.horizontal-slider::-webkit-scrollbar-track { background: var(--border); border-radius: 10px; }
.horizontal-slider::-webkit-scrollbar-thumb { background: var(--neon-cyan); border-radius: 10px; }

.slide-item {
  flex: 0 0 240px;
  scroll-snap-align: start;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 280px;
  cursor: pointer;
}
.slide-item img { width: 100%; height: 100%; object-fit: cover; opacity: 0.8; transition: 0.5s; }
.slide-item:hover img { opacity: 1; transform: scale(1.1); filter: brightness(0.6); }

.slide-item::after {
  content: 'Explore \2192';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  opacity: 0;
  transition: 0.4s ease;
  z-index: 3;
}
.slide-item:hover::after {
  opacity: 1;
}

.slide-content {
  position: absolute; bottom: 16px; left: 16px; right: 16px;
  background: var(--surface);
  backdrop-filter: blur(10px);
  padding: 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  color: var(--text-main);
  transition: 0.4s ease;
  z-index: 2;
}
.slide-item:hover .slide-content {
  bottom: -60px; /* Hide text on hover to show Explore */
  opacity: 0;
}
.slide-content h4 { font-size: 1.05rem; text-align: center; }

/* LOCATION HUB */
.location-hub {
  display: flex;
  background: var(--surface);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-main);
  min-height: 500px;
}
.location-map-side {
  flex: 1;
  position: relative;
  min-height: 400px;
}
.location-map-side iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none; /* Prevents scroll hijacking */
}
.map-floating-card {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  background: var(--surface);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 20px;
  border-radius: 20px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}
.pulse-dot {
  width: 14px; height: 14px;
  background: var(--neon-cyan);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.pulse-dot::after {
  content: ''; position: absolute; inset: -4px;
  border: 2px solid var(--neon-cyan);
  border-radius: 50%;
  animation: pulseOut 2s infinite;
}
.map-text h3 { font-size: 1.1rem; margin-bottom: 2px; }
.map-text p { font-size: 0.85rem; color: var(--text-dim); }
.mini-btn { padding: 8px 20px !important; font-size: 0.9rem !important; margin-left: auto; }

.location-info-side {
  flex: 1;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.location-info-side h2 { font-size: 2.5rem; margin-bottom: 8px; line-height: 1.1; }
.location-info-side .subtitle { font-size: 1.1rem; color: var(--text-dim); margin-bottom: 40px; }

.info-list { display: flex; flex-direction: column; gap: 24px; margin-bottom: 40px; }
.info-item { display: flex; align-items: center; gap: 20px; }
.info-icon {
  width: 52px; height: 52px;
  border-radius: 16px;
  background: rgba(6,182,212,0.1);
  color: var(--neon-cyan);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.info-text h4 { font-size: 1.15rem; margin-top: 4px; }

.store-features { display: flex; flex-wrap: wrap; gap: 12px; }
.feature-badge {
  padding: 8px 16px;
  background: var(--bg-main);
  border: 1px solid var(--border);
  border-radius: 99px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
}

/* CTA BANNER */
.neon-banner {
  position: relative;
  background: var(--bg-main);
  padding: 100px 5%;
  z-index: 1;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  text-align: left;
}
.neon-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(60deg, rgba(6,182,212,0.15), transparent, rgba(16,185,129,0.15), transparent);
  background-size: 300% 300%;
  z-index: -1;
  animation: rotateGradient 6s linear infinite;
}
@keyframes rotateGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.cta-content { flex: 1; }
.neon-banner h2 { font-size: 2.8rem; margin-bottom: 16px; line-height: 1.1; }
.cta-desc { font-size: 1.1rem; color: var(--text-dim); margin-bottom: 24px; line-height: 1.6; max-width: 500px; }
.cta-perks { list-style: none; margin-bottom: 32px; }
.cta-perks li { margin-bottom: 12px; font-weight: 600; display: flex; align-items: center; gap: 10px; font-size: 1.05rem; }
.cta-perks li span { color: var(--neon-mint); font-weight: 800; font-size: 1.2rem; }

.cta-visual { 
  flex: 0 0 250px; 
  display: flex; 
  justify-content: center; 
  align-items: center; 
}
.pulsing-circle {
  width: 180px; height: 180px;
  background: rgba(16, 185, 129, 0.05);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  box-shadow: 0 0 40px rgba(16, 185, 129, 0.15);
}
.pulsing-circle::before, .pulsing-circle::after {
  content: ''; position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px solid var(--neon-mint);
  animation: pulseOut 2.5s cubic-bezier(0.21, 0.53, 0.56, 1) infinite;
}
.pulsing-circle::after { animation-delay: 1.25s; }

@keyframes pulseOut {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* FOOTER */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 5% 20px;
}
.footer-brand .f-logo { font-size: 2rem; font-weight: 800; margin-bottom: 16px; }
.footer-desc { color: var(--text-dim); margin-bottom: 20px; max-width: 320px; line-height: 1.6; }
.footer-brand p { color: var(--text-main); font-size: 0.95rem; margin-bottom: 8px; }
.footer-map-link { color: var(--neon-cyan); font-size: 0.95rem; display: inline-block; font-weight: 700; transition: 0.3s; margin-top: 8px; }
.footer-map-link:hover { color: var(--neon-mint); text-decoration: underline; }

.footer-links h5 { font-size: 1.1rem; color: var(--text-main); margin-bottom: 24px; letter-spacing: 0.05em; text-transform: uppercase; }
.footer-links a, .footer-links p { display: block; color: var(--text-dim); margin-bottom: 14px; transition: 0.3s; font-size: 0.95rem; }
.footer-links a:hover { color: var(--neon-cyan); transform: translateX(5px); }

.social-icons { display: flex; gap: 12px; margin-top: 20px; }
.social-icons a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--border);
  color: var(--text-main); transition: 0.3s;
}
.social-icons a:hover { 
  background: var(--neon-cyan); 
  color: #fff; 
  border-color: var(--neon-cyan); 
  transform: translateY(-5px); 
}

.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 60px;
  padding: 24px 5%;
  text-align: center;
  color: var(--text-dim);
  font-size: 0.9rem;
}
/* APPOINTMENT SECTION */
.appointment-section {
  padding: 80px 5%;
}
.appointment-container {
  display: flex;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px;
  border-radius: 30px;
  background: var(--surface);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-main);
  align-items: center;
}
.appointment-content {
  flex: 1;
}
.appointment-content h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  line-height: 1.1;
}
.appointment-content .subtitle {
  font-size: 1.1rem;
  color: var(--text-dim);
  margin-bottom: 30px;
}
.appointment-features {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px;
}
.appt-feat {
  display: flex;
  align-items: center;
  gap: 15px;
}
.feat-icon {
  font-size: 2rem;
  background: rgba(6, 182, 212, 0.1);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}
.appt-feat h4 {
  font-size: 1.1rem;
  margin-bottom: 2px;
}
.appt-feat p {
  color: var(--text-dim);
  font-size: 0.9rem;
}

.appointment-form-wrapper {
  flex: 1;
  max-width: 500px;
}
.glass-form {
  background: var(--bg-main);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.glass-form h3 {
  margin-bottom: 20px;
  font-size: 1.4rem;
  text-align: center;
}
.form-group {
  margin-bottom: 15px;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.95rem;
  transition: 0.3s;
}
.form-control:focus {
  outline: none;
  border-color: var(--neon-cyan);
  box-shadow: 0 0 10px rgba(6, 182, 212, 0.2);
}

/* Modern Form Enhancements */
.modern-form {
  position: relative;
  overflow: hidden;
  padding: 40px;
  background: var(--bg-main);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.modern-input {
  position: relative;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
}
.input-icon {
  position: absolute;
  left: 16px;
  font-size: 1.2rem;
  color: var(--primary-color);
  pointer-events: none;
  z-index: 2;
  display: flex;
  align-items: center;
}
.modern-input .form-control {
  padding: 18px 16px 18px 48px;
  background: rgba(0,0,0,0.03);
  border: 2px solid transparent;
  border-radius: 12px;
  font-size: 1rem;
  width: 100%;
}
[data-theme="dark"] .modern-input .form-control {
  background: rgba(255,255,255,0.05);
}
.modern-input label {
  position: absolute;
  left: 48px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-dim);
  transition: 0.3s ease;
  pointer-events: none;
  font-size: 0.95rem;
}
.modern-input .form-control:focus ~ label,
.modern-input .form-control:not(:placeholder-shown) ~ label,
.modern-input .form-control:valid ~ label,
.modern-input select.form-control:valid ~ label,
.active-label {
  top: 0;
  left: 16px;
  font-size: 0.75rem;
  padding: 0 4px;
  background: var(--surface);
  color: var(--neon-cyan);
  font-weight: 600;
}
.modern-input .form-control:valid,
.modern-input select.form-control:valid {
    border-color: var(--neon-cyan);
}
.modern-input select.form-control {
    appearance: none;
    cursor: pointer;
}
.modern-input .input-border {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-mint));
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
  border-radius: 0 0 12px 12px;
}
.modern-input .form-control:focus ~ .input-border {
  transform: scaleX(1);
}
.modern-input .form-control:focus {
  border-color: transparent;
  box-shadow: 0 10px 25px rgba(6, 182, 212, 0.1);
}

/* PREMIUM FEATURES ADDITIONS */

/* Animated Stats */
.animated-stats {
  display: flex;
  gap: 30px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}
.stat-box {
  flex: 1;
}
.stat-number {
  display: flex;
  align-items: baseline;
  color: var(--neon-cyan);
  font-size: 2.5rem;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-number h3 {
  font-size: inherit;
  margin: 0;
}
.stat-box p {
  color: var(--text-dim);
  font-weight: 600;
  font-size: 0.95rem;
}

/* Testimonials */
.testimonial-grid {
  display: flex;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
  padding-left: 20px; /* Optional, for edge padding */
  padding-right: 20px;
}
.testimonial-grid::-webkit-scrollbar { height: 6px; }
.testimonial-grid::-webkit-scrollbar-track { background: var(--border); border-radius: 10px; }
.testimonial-grid::-webkit-scrollbar-thumb { background: var(--neon-cyan); border-radius: 10px; }

.testi-card {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex: 0 0 320px;
  max-width: 85vw;
  scroll-snap-align: center;
}
.stars {
  font-size: 1.2rem;
  margin-bottom: 20px;
  letter-spacing: 2px;
}
.review-text {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  flex: 1;
  font-style: italic;
}
.author-info {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.author-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
}
.author-details h4 {
  font-size: 1rem;
  margin-bottom: 2px;
}

/* Floating WhatsApp Widget */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: 0.3s;
  animation: pulse-wa 2s infinite;
}
.floating-whatsapp:hover {
  transform: scale(1.1) translateY(-5px);
  animation: none;
}
.wa-tooltip {
  position: absolute;
  right: 75px;
  background: var(--surface);
  backdrop-filter: blur(10px);
  color: var(--text-main);
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid var(--border);
  opacity: 0;
  transform: translateX(20px);
  pointer-events: none;
  transition: 0.3s ease;
  white-space: nowrap;
  box-shadow: var(--shadow-main);
}
.floating-whatsapp:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}
@keyframes pulse-wa {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* PRELOADER */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: var(--bg-main);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: 1px;
}
.preloader-logo span { color: var(--neon-cyan); }
.preloader-bar {
  width: 160px;
  height: 4px;
  border-radius: 99px;
  background: var(--border);
  overflow: hidden;
  position: relative;
}
.preloader-bar::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 40%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-mint));
  animation: loadSweep 1.1s ease-in-out infinite;
}
@keyframes loadSweep {
  0% { left: -40%; }
  100% { left: 100%; }
}

/* SCROLL PROGRESS BAR */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-mint));
  z-index: 101;
  transition: width 0.1s linear;
}

/* BACK TO TOP */
.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--surface);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  color: var(--neon-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s ease;
  box-shadow: var(--shadow-main);
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--neon-cyan); color: #fff; transform: translateY(-5px); }

/* TRUST TICKER */
.ticker-wrap {
  width: 100%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-mint));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  position: relative;
  z-index: 10;
}
.ticker {
  display: flex;
  width: fit-content;
  animation: ticker 30s linear infinite;
}
.ticker:hover { animation-play-state: paused; }
.ticker-item {
  white-space: nowrap;
  padding: 0 40px;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 10px;
}
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* HERO SCROLL INDICATOR */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  z-index: 3;
}
.scroll-mouse {
  width: 26px;
  height: 42px;
  border: 2px solid var(--text-dim);
  border-radius: 99px;
  position: relative;
}
.scroll-mouse::after {
  content: '';
  position: absolute;
  top: 8px; left: 50%;
  width: 4px; height: 8px;
  background: var(--neon-cyan);
  border-radius: 99px;
  transform: translateX(-50%);
  animation: scrollWheel 1.8s ease-in-out infinite;
}
@keyframes scrollWheel {
  0% { opacity: 0; transform: translate(-50%, 0); }
  40% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 14px); }
}

/* FAQ ACCORDION */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: var(--surface);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.faq-item.active { border-color: var(--neon-cyan); box-shadow: 0 10px 30px rgba(6, 182, 212, 0.12); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  background: none;
  border: none;
  color: var(--text-main);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-align: left;
  cursor: pointer;
}
.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(6, 182, 212, 0.1);
  color: var(--neon-cyan);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s ease;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding: 0 26px 24px;
  color: var(--text-dim);
  font-size: 1rem;
  line-height: 1.7;
}

/* SLIDER CONTROLS */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
}
.slider-arrow {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-main);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.slider-arrow:hover { background: var(--neon-cyan); color: #fff; border-color: var(--neon-cyan); transform: scale(1.08); }
.slider-dots { display: flex; gap: 8px; }
.slider-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}
.slider-dot.active { background: var(--neon-cyan); width: 24px; border-radius: 99px; }

/* NEWSLETTER */
.newsletter {
  background: linear-gradient(135deg, rgba(6,182,212,0.08), rgba(16,185,129,0.08));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}
.newsletter-text h3 { font-size: 1.8rem; margin-bottom: 8px; }
.newsletter-text p { color: var(--text-dim); font-size: 1.05rem; }
.newsletter-form {
  display: flex;
  gap: 12px;
  flex: 1;
  max-width: 480px;
  min-width: 260px;
}
.newsletter-form input {
  flex: 1;
  padding: 14px 18px;
  border-radius: 99px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.95rem;
}
.newsletter-form input:focus {
  outline: none;
  border-color: var(--neon-cyan);
  box-shadow: 0 0 10px rgba(6, 182, 212, 0.2);
}
.newsletter-msg { width: 100%; margin-top: 12px; font-weight: 600; color: var(--neon-mint); }

/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .cursor-dot, .cursor-outline { display: none; }
  body, a, button, input { cursor: auto !important; }
}

/* RESPONSIVE DESIGN (MOBILE READY) */
@media (max-width: 1024px) {
  .hero-title { font-size: 3.5rem; }
  .hero-action-bar { padding: 20px; border-radius: 30px; text-align: center; }
  .action-buttons { margin: 16px 0 0 0; width: 100%; justify-content: center; }
  
  .about-container { flex-direction: column; text-align: center; }
  .experience-badge { bottom: -20px; right: 50%; transform: translateX(50%); }
  .about-features li { justify-content: center; }

  .appointment-container { flex-direction: column; padding: 30px 20px; text-align: center; }
  .appt-feat { justify-content: center; }
  .appointment-form-wrapper { max-width: 100%; width: 100%; }

  .asymmetric-grid { grid-template-columns: 1fr; gap: 30px; }
  .offset-up, .offset-down { transform: none; }
  .main-card { transform: none; }
  .main-card:hover { transform: translateY(-5px); }
  
  .location-hub { flex-direction: column; }
  .location-info-side { padding: 40px; }
  .map-floating-card { position: relative; bottom: 0; left: 0; right: 0; border-radius: 0; border: none; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .mini-btn { margin-left: 0; margin-top: 10px; width: 100%; }
  .map-text { flex: 1; }
  
  .animated-stats { flex-direction: column; gap: 20px; align-items: center; }
  .floating-whatsapp { bottom: 20px; right: 20px; width: 50px; height: 50px; }
  .floating-whatsapp svg { width: 24px; height: 24px; }
}

@media (max-width: 768px) {
  .glass-header { padding: 15px 5%; flex-direction: column; gap: 12px; position: relative; }
  .logo { align-self: flex-start; }
  .logo-img { height: 40px; }
  
  .theme-toggle { position: absolute; top: 15px; right: 5%; margin: 0; }
  
  nav { gap: 15px; width: 100%; justify-content: center; flex-wrap: nowrap; margin-top: 0; overflow-x: auto; padding-bottom: 5px; -webkit-overflow-scrolling: touch; }
  nav::-webkit-scrollbar { display: none; } /* hide scrollbar for nav */
  nav a { white-space: nowrap; font-size: 0.95rem; }
  
  .header-right { display: contents; }
  .header-right .cta { grid-area: cta; width: max-content; justify-self: center; padding: 10px 28px; margin-top: 5px; font-size: 0.95rem; }
  
  .hero-title { font-size: 2.8rem; }
  .hero-subtitle { font-size: 1.1rem; padding: 0 10px; margin-bottom: 20px; }
  .immersive-hero {
    background-size: contain;
    background-position: center top;
    height: auto;
    min-height: 0;
    padding-top: 180px;
    padding-bottom: 40px;
    align-items: flex-start;
  }
  .hero-overlay {
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.9) 50%, var(--bg-main) 100%);
  }
  .hero-action-bar { flex-direction: column; width: 100%; border-radius: 20px; padding: 20px; gap: 16px; }
  .divider { width: 100%; height: 1px; }
  .action-item { align-items: center; text-align: left; margin-bottom: 0; width: 100%; justify-content: center; }
  .action-buttons { flex-direction: column; width: 100%; gap: 12px; margin-top: 10px; }
  
  section { padding: 60px 5%; }
  .appointment-container { padding: 20px 15px; }
  .modern-form { padding: 25px 15px; }
  .section-head h2 { font-size: 2rem; }
  .glass-card { padding: 20px 15px; }
  
  .pharmacist-credential-box {
    margin-top: 30px !important;
    margin-bottom: 20px !important;
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  .experience-badge {
    position: static;
    margin: 0 auto;
    width: fit-content;
    transform: none;
    padding: 16px 24px;
  }
  
  .neon-banner { padding: 60px 5%; flex-direction: column; text-align: center; gap: 30px; }
  .neon-banner h2 { font-size: 2rem; }
  .cta-desc { margin: 0 auto 24px auto; font-size: 1rem; }
  .cta-perks li { justify-content: center; font-size: 0.95rem; }
  .pulsing-circle { width: 120px; height: 120px; }
  .pulsing-circle svg { width: 50px; height: 50px; }
  
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { margin-top: 30px; padding: 15px 5%; }
}

@media (max-width: 480px) {
  nav a { font-size: 0.9rem; }
  .hero-title { font-size: 2.2rem; }
  .hero-action-bar { padding: 15px; }
  .appointment-container { padding: 15px 10px; }
  .modern-form { padding: 20px 10px; }
  
  .location-info-side { padding: 30px 15px; }
  .location-info-side h2 { font-size: 1.8rem; }
  .info-icon { width: 40px; height: 40px; }
  .info-text h4 { font-size: 1rem; }
  
  .slide-item { flex: 0 0 220px; height: 260px; }
}

@media (max-width: 768px) {
  .back-to-top { bottom: 20px; left: 20px; width: 44px; height: 44px; }
  .floating-whatsapp { bottom: 76px; }
  .newsletter { padding: 30px 20px; text-align: center; }
  .newsletter-form { flex-direction: column; max-width: 100%; }
  .newsletter-form .glow-button { width: 100%; }
  .scroll-indicator { bottom: 16px; }
  .ticker-item { font-size: 0.85rem; padding: 0 24px; }
}
