/* ===== CONTRASTO LUX BEAUTY — Global Styles ===== */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Colors — Deep Luxury Palette */
  --clr-primary: #0b0b0f;
  --clr-secondary: #1a1520;
  --clr-gold: #c5a55a;
  --clr-gold-light: #ddc68e;
  --clr-gold-dark: #9e7e30;
  --clr-white: #fdfbf7;
  --clr-offwhite: #f5f0e8;
  --clr-bg-dark: #08080c;
  --clr-text-dark: #1e1e1e;
  --clr-text-light: #f5f0e8;
  --clr-text-muted: #555167;
  --clr-border: rgba(197, 165, 90, 0.2);
  --clr-overlay: rgba(8, 8, 12, 0.75);
  --clr-rose: #c4917b;

  /* Typography */
  --ff-heading: 'Playfair Display', serif;
  --ff-body: 'Inter', sans-serif;

  /* Spacing */
  --section-pad: 100px 0;
  --container-max: 1200px;

  /* Transitions */
  --transition: 0.3s ease;
  --transition-slow: 0.6s ease;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--clr-primary);
  scrollbar-width: thin;
  scrollbar-color: var(--clr-gold-dark) var(--clr-primary);
}

/* Webkit scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--clr-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--clr-gold-dark);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--clr-gold);
}

body {
  font-family: var(--ff-body);
  color: var(--clr-text-dark);
  background: var(--clr-primary);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

/* ---------- Subtle Animated Background Particles ---------- */
body::before,
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

body::before {
  background:
    radial-gradient(1.5px 1.5px at 20% 30%, rgba(197, 165, 90, 0.15) 50%, transparent 100%),
    radial-gradient(1px 1px at 75% 15%, rgba(197, 165, 90, 0.1) 50%, transparent 100%),
    radial-gradient(1.5px 1.5px at 40% 70%, rgba(197, 165, 90, 0.12) 50%, transparent 100%),
    radial-gradient(1px 1px at 85% 55%, rgba(197, 165, 90, 0.08) 50%, transparent 100%),
    radial-gradient(2px 2px at 10% 85%, rgba(197, 165, 90, 0.1) 50%, transparent 100%),
    radial-gradient(1px 1px at 60% 45%, rgba(197, 165, 90, 0.1) 50%, transparent 100%),
    radial-gradient(1.5px 1.5px at 90% 80%, rgba(197, 165, 90, 0.12) 50%, transparent 100%),
    radial-gradient(1px 1px at 30% 50%, rgba(197, 165, 90, 0.08) 50%, transparent 100%);
  background-size: 200% 200%;
  animation: floatParticles 25s ease-in-out infinite alternate;
}

body::after {
  background:
    radial-gradient(1px 1px at 55% 20%, rgba(197, 165, 90, 0.1) 50%, transparent 100%),
    radial-gradient(1.5px 1.5px at 15% 60%, rgba(197, 165, 90, 0.08) 50%, transparent 100%),
    radial-gradient(1px 1px at 80% 40%, rgba(197, 165, 90, 0.12) 50%, transparent 100%),
    radial-gradient(1.5px 1.5px at 45% 90%, rgba(197, 165, 90, 0.1) 50%, transparent 100%),
    radial-gradient(1px 1px at 70% 70%, rgba(197, 165, 90, 0.08) 50%, transparent 100%),
    radial-gradient(2px 2px at 25% 10%, rgba(197, 165, 90, 0.1) 50%, transparent 100%);
  background-size: 200% 200%;
  animation: floatParticles2 30s ease-in-out infinite alternate;
}

@keyframes floatParticles {
  0%   { background-position: 0% 0%; }
  25%  { background-position: 50% 30%; }
  50%  { background-position: 100% 60%; }
  75%  { background-position: 50% 100%; }
  100% { background-position: 0% 50%; }
}

@keyframes floatParticles2 {
  0%   { background-position: 100% 100%; }
  25%  { background-position: 60% 70%; }
  50%  { background-position: 0% 40%; }
  75%  { background-position: 40% 0%; }
  100% { background-position: 100% 50%; }
}

/* Ensure content sits above the animated background */
.navbar, .hero, section, footer, .modal-overlay,
.chatbot-toggle, .chatbot-window,
.floating-contact {
  position: relative;
  z-index: 1;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-heading);
  font-weight: 700;
  line-height: 1.2;
}

.container {
  width: 90%;
  max-width: var(--container-max);
  margin: 0 auto;
}

/* ---------- Utility Classes ---------- */
.text-gold { color: var(--clr-gold); }
.text-center { text-align: center; }
.bg-dark { background: var(--clr-primary); color: var(--clr-text-light); }
.bg-offwhite { background: var(--clr-offwhite); }

.section-pad {
  padding: var(--section-pad);
  background-color: var(--clr-white);
}

.section-pad.bg-dark {
  background-color: var(--clr-primary);
}

.section-pad.bg-offwhite {
  background-color: var(--clr-offwhite);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .subtitle {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--clr-gold-dark);
  margin-bottom: 15px;
  font-weight: 600;
  font-family: var(--ff-heading);
  font-style: italic;
}

.bg-dark .section-header .subtitle {
  color: var(--clr-gold);
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 15px;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--clr-text-muted);
}

.bg-dark .section-header p {
  color: rgba(248, 245, 240, 0.7);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 4px;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--clr-gold);
  color: var(--clr-primary);
}

.btn-primary:hover {
  background: var(--clr-gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 169, 110, 0.35);
}

.btn-outline {
  border-color: var(--clr-gold);
  color: var(--clr-gold);
  background: transparent;
}

.btn-outline:hover {
  background: var(--clr-gold);
  color: var(--clr-primary);
  transform: translateY(-2px);
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 28px 0;
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(8, 8, 12, 0.97);
  backdrop-filter: blur(20px);
  padding: 18px 0;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 45px;
  width: auto;
  transition: height var(--transition);
}

.navbar.scrolled .nav-logo img {
  height: 38px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: nowrap;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
  padding: 5px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--clr-gold);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--clr-gold);
}

/* Keep btn styling when active */
.nav-links .btn.active {
  color: var(--clr-primary);
}

.nav-links .btn.active::after {
  display: none;
}

.nav-links .btn {
  padding: 10px 24px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Dropdown for services */
.nav-dropdown {
  position: relative;
}

.nav-dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(15, 15, 26, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--clr-border);
  border-radius: 8px;
  padding: 10px 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  margin-top: 10px;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 5px;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.85rem;
}

.dropdown-menu a:hover {
  background: rgba(201, 169, 110, 0.1);
}

.dropdown-menu a::after {
  display: none;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.nav-hamburger span {
  width: 25px;
  height: 2px;
  background: var(--clr-white);
  transition: all var(--transition);
}

.nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--clr-bg-dark) 0%, var(--clr-secondary) 50%, #0d0a14 100%);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8, 8, 12, 0.88), rgba(26, 21, 32, 0.72));
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--clr-white);
  max-width: 800px;
  padding: 0 20px;
}

.hero-content .subtitle {
  display: inline-block;
  font-size: 0.9rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 20px;
  font-weight: 500;
  font-family: var(--ff-heading);
  font-style: italic;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 25px;
  line-height: 1.1;
}

.hero-content h1 span {
  color: var(--clr-gold);
  font-style: italic;
}

/* Cursive emphasis in headings */
h2 em, h3 em {
  font-style: italic;
  color: var(--clr-gold);
}

/* Cursive accent class */
.cursive-accent {
  font-family: var(--ff-heading);
  font-style: italic;
  color: var(--clr-gold);
}

.hero-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 35px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero floating shapes */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.15), transparent);
  pointer-events: none;
}

.hero-shape-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
  animation: float 8s ease-in-out infinite;
}

.hero-shape-2 {
  width: 300px;
  height: 300px;
  bottom: -50px;
  left: -50px;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(5deg); }
}

/* ---------- Page Banner ---------- */
.page-banner {
  background: linear-gradient(135deg, var(--clr-bg-dark), var(--clr-secondary), #0d0a14);
  padding: 160px 0 80px;
  text-align: center;
  color: var(--clr-white);
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: 0;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.1), transparent);
}

.page-banner h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 15px;
}

.page-banner .breadcrumb {
  color: var(--clr-text-muted);
  font-size: 0.9rem;
}

.page-banner .breadcrumb a {
  color: var(--clr-gold);
}

.page-banner .breadcrumb a:hover {
  text-decoration: underline;
}

/* ---------- Services Grid ---------- */
.services-marquee {
  overflow: hidden;
  width: 100%;
}

.services-track {
  display: flex;
  gap: 30px;
  animation: marquee-scroll 30s linear infinite;
  width: max-content;
}

.services-track:hover {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Services grid for services-women / services-men pages */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.services-grid .service-card {
  min-width: unset;
  max-width: unset;
}

/* Marquee-specific service card sizing */
.services-track > .service-card {
  min-width: 300px;
  max-width: 300px;
  flex-shrink: 0;
}

.service-card {
  background: var(--clr-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  transition: all var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-card .card-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.service-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-card:hover .card-image img {
  transform: scale(1.08);
}

.service-card .card-image .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 50%, rgba(15, 15, 26, 0.6));
}

.service-card .card-body {
  padding: 25px;
}

.service-card .card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--clr-primary);
}

.service-card .card-body p {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  margin-bottom: 15px;
  line-height: 1.6;
}

.service-card .card-body .btn {
  padding: 10px 22px;
  font-size: 0.8rem;
}

/* Dark card variant */
.bg-dark .service-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--clr-border);
}

.bg-dark .service-card .card-body h3 {
  color: var(--clr-white);
}

.bg-dark .service-card .card-body p {
  color: rgba(248, 245, 240, 0.6);
}

/* ---------- Why Choose Us ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.feature-item {
  text-align: center;
  padding: 40px 25px;
  border-radius: 12px;
  transition: all var(--transition);
}

.feature-item:hover {
  background: rgba(201, 169, 110, 0.05);
  transform: translateY(-5px);
}

.feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: var(--clr-primary);
}

.feature-item h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--clr-primary);
}

.feature-item p {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
}

.bg-dark .feature-item h3 {
  color: var(--clr-white);
}

.bg-dark .feature-item p {
  color: rgba(248, 245, 240, 0.7);
}

/* ---------- Testimonials ---------- */
.testimonials-track {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 20px 0;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.testimonials-track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  min-width: 340px;
  flex: 1 0 340px;
  background: var(--clr-white);
  border-radius: 16px;
  padding: 40px 35px;
  scroll-snap-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-card .stars {
  color: var(--clr-gold);
  font-size: 1.2rem;
  margin-bottom: 18px;
  letter-spacing: 4px;
}

.testimonial-card blockquote {
  font-size: 1.1rem;
  font-style: italic;
  font-family: var(--ff-heading);
  color: var(--clr-text-dark);
  margin-bottom: 25px;
  line-height: 1.8;
}

.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card .author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--clr-primary);
}

.testimonial-card .author-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.testimonial-card .author-role {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.testimonial-nav button {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid var(--clr-gold-dark);
  background: transparent;
  color: var(--clr-gold-dark);
  cursor: pointer;
  font-size: 1.1rem;
  transition: all var(--transition);
}

.testimonial-nav button:hover {
  background: var(--clr-gold);
  color: var(--clr-primary);
}

/* ---------- Products Grid ---------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 30px;
}

.product-card {
  background: var(--clr-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all var(--transition);
  text-align: center;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.product-card .product-image {
  height: 280px;
  background: var(--clr-offwhite);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  overflow: hidden;
}

.product-card .product-image img {
  max-height: 100%;
  object-fit: contain;
  transition: transform var(--transition);
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-card .product-body {
  padding: 25px;
}

.product-card .product-body h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--clr-primary);
}

.product-card .product-body p {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  margin-bottom: 15px;
}

/* ---------- Devices Grid ---------- */
.devices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(340px, 100%), 1fr));
  gap: 30px;
}

/* --- Flip Card --- */
.device-card-flip {
  perspective: 1200px;
  height: 500px;
}

.device-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

.device-card-flip:hover .device-card-inner,
.device-card-flip.flipped .device-card-inner {
  transform: rotateY(180deg);
}

.device-card-front,
.device-card-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.device-card-front {
  background: var(--clr-white);
}

.device-card-front .device-image {
  height: 100%;
  overflow: hidden;
}

.device-card-front .device-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.device-name-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 25px;
  background: linear-gradient(transparent, rgba(11, 11, 15, 0.85));
  color: var(--clr-white);
  font-family: var(--ff-heading);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.device-card-back {
  background: var(--clr-primary);
  transform: rotateY(180deg);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--clr-gold-dark) transparent;
}

.device-card-back::-webkit-scrollbar {
  width: 4px;
}

.device-card-back::-webkit-scrollbar-thumb {
  background: var(--clr-gold-dark);
  border-radius: 2px;
}

.device-back-content {
  padding: 25px 20px;
  text-align: center;
}

.device-back-content h3 {
  font-size: 1.2rem;
  color: var(--clr-gold);
  margin-bottom: 4px;
}

.device-back-content .device-tagline {
  font-family: var(--ff-heading);
  font-style: italic;
  color: rgba(253, 251, 247, 0.6);
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.device-back-content p {
  font-size: 0.78rem;
  line-height: 1.55;
  color: rgba(253, 251, 247, 0.85);
  margin-bottom: 10px;
}

.device-back-content .device-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}

.device-back-content .device-tags span {
  padding: 4px 10px;
  background: rgba(197, 165, 90, 0.2);
  color: var(--clr-gold);
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Legacy device-card styles (kept for compatibility) */
.device-card {
  background: var(--clr-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all var(--transition);
}

.device-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.device-card .device-image {
  height: 260px;
  overflow: hidden;
}

.device-card .device-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.device-card:hover .device-image img {
  transform: scale(1.05);
}

.device-card .device-body {
  padding: 30px;
}

.device-card .device-body h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--clr-primary);
}

.device-card .device-body p {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  margin-bottom: 15px;
}

.device-card .device-body .device-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.device-card .device-body .device-tags span {
  padding: 5px 12px;
  background: rgba(201, 169, 110, 0.1);
  color: var(--clr-gold-dark);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ---------- Gallery ---------- */


/* Gallery Marquee (About Page) */
.gallery-marquee {
  overflow: hidden;
  width: 100%;
  margin-bottom: 30px;
}
.gallery-track {
  display: flex;
  gap: 30px;
  animation: marquee-scroll 30s linear infinite;
  width: max-content;
}
.gallery-card {
  min-width: 300px;
  max-width: 300px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  cursor: default;
  position: relative;
  height: 250px;
  background: var(--clr-white);
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  transition: all var(--transition);
}
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* No hover effect */
}
.gallery-card .gallery-overlay {
  display: none;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  height: 250px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 26, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item .gallery-overlay span {
  color: var(--clr-white);
  font-size: 2rem;
}

/* ---------- Gallery Lightbox ---------- */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 10001;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox-overlay.active {
  display: flex;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 2;
  line-height: 1;
  transition: color var(--transition);
}

.lightbox-close:hover {
  color: var(--clr-gold);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition);
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--clr-gold);
  color: var(--clr-primary);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

/* ---------- Booking Form ---------- */
.booking-form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: var(--clr-white);
  border-radius: 16px;
  padding: 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--clr-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #e0ddd8;
  border-radius: 8px;
  font-family: var(--ff-body);
  font-size: 0.95rem;
  color: var(--clr-text-dark);
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--clr-offwhite);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--clr-gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ---------- Contact Section ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.contact-info-item .icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--clr-primary);
  flex-shrink: 0;
}

.contact-info-item h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--clr-primary);
}

.contact-info-item p,
.contact-info-item a {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
}

.contact-info-item a:hover {
  color: var(--clr-gold);
}

.map-wrapper {
  border-radius: 16px;
  overflow: hidden;
  height: 300px;
  margin-top: 20px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--clr-bg-dark);
  color: var(--clr-text-light);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--clr-gold);
  font-style: italic;
}

.footer-col p {
  font-size: 0.9rem;
  color: rgba(248, 245, 240, 0.6);
  line-height: 1.8;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(248, 245, 240, 0.6);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--clr-gold);
}

.footer-col .hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(248, 245, 240, 0.6);
  padding: 5px 0;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-gold);
  transition: all var(--transition);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-social a:hover {
  background: var(--clr-gold);
  color: var(--clr-primary);
}

/* ---------- Navbar Social Icons ---------- */
.nav-social {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-left: 5px;
}

.nav-social a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-gold);
  transition: all var(--transition);
}

.nav-social a svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.nav-social a:hover {
  background: var(--clr-gold);
  color: var(--clr-primary);
}

.footer-map {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(201, 169, 110, 0.15);
}

.footer-map h4 {
  color: var(--clr-white);
}

.footer-bottom {
  text-align: center;
  padding: 25px 0;
  font-size: 0.85rem;
  color: rgba(248, 245, 240, 0.4);
}

/* ---------- AI Chatbot Widget ---------- */
.chatbot-toggle {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-dark));
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--clr-primary);
  box-shadow: 0 5px 25px rgba(201, 169, 110, 0.4);
  z-index: 9999;
  transition: all var(--transition);
}

.chatbot-toggle:hover {
  transform: scale(1.1);
}

.chatbot-window {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 380px;
  max-height: 520px;
  background: var(--clr-white);
  border-radius: 16px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  z-index: 9998;
  display: none;
  flex-direction: column;
  overflow: hidden;
}

.chatbot-window.active {
  display: flex;
}

.chatbot-header {
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
  color: var(--clr-white);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chatbot-header h4 {
  font-size: 1rem;
}

.chatbot-header .close-chat {
  background: none;
  border: none;
  color: var(--clr-white);
  cursor: pointer;
  font-size: 1.3rem;
}

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  max-height: 350px;
}

.chat-message {
  margin-bottom: 15px;
  display: flex;
  gap: 10px;
}

.chat-message.bot {
  align-self: flex-start;
}

.chat-message.user {
  flex-direction: row-reverse;
}

.chat-message .message-bubble {
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: 85%;
}

.chat-message.bot .message-bubble {
  background: var(--clr-offwhite);
  border-bottom-left-radius: 4px;
}

.chat-message.user .message-bubble {
  background: var(--clr-gold);
  color: var(--clr-primary);
  border-bottom-right-radius: 4px;
}

.chat-book-btn {
  display: inline-block;
  padding: 10px 20px;
  font-size: 0.85rem;
  margin-top: 4px;
  text-decoration: none;
}

.chatbot-quick-replies {
  border-top: 1px solid #eee;
  padding: 10px 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  max-height: 180px;
  overflow-y: auto;
}

.quick-replies-label {
  width: 100%;
  font-size: 0.75rem;
  color: var(--clr-text-muted);
  margin: 0 0 2px;
  font-family: var(--ff-body);
}

.quick-reply-btn {
  background: var(--clr-offwhite, #f5f0e8);
  border: 1px solid #e0ddd8;
  border-radius: 18px;
  padding: 6px 12px;
  font-size: 0.78rem;
  font-family: var(--ff-body);
  cursor: pointer;
  transition: all var(--transition);
  color: var(--clr-primary, #0b0b0f);
  white-space: nowrap;
}

.quick-reply-btn:hover {
  background: var(--clr-gold);
  border-color: var(--clr-gold);
  color: var(--clr-primary);
}

/* ---------- AI Skin Analysis Modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background: var(--clr-white);
  border-radius: 16px;
  max-width: 550px;
  width: 90%;
  padding: 40px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--clr-text-muted);
}

.modal-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.modal-content p {
  color: var(--clr-text-muted);
  margin-bottom: 25px;
}

.upload-area {
  border: 2px dashed var(--clr-border);
  border-radius: 12px;
  padding: 50px;
  text-align: center;
  cursor: pointer;
  transition: border-color var(--transition);
  margin-bottom: 20px;
}

.upload-area:hover {
  border-color: var(--clr-gold);
}

.upload-area .upload-icon {
  font-size: 2.5rem;
  color: var(--clr-gold);
  margin-bottom: 10px;
}

.upload-area p {
  margin-bottom: 0;
}

.analysis-results {
  display: none;
}

.analysis-results.active {
  display: block;
}

.result-item {
  padding: 15px;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 12px;
}

.result-item h4 {
  font-size: 0.95rem;
  margin-bottom: 5px;
  color: var(--clr-primary);
}

.result-item p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* Analysis progress bar */
.analysis-progress {
  max-width: 300px;
  margin: 0 auto;
}

.analysis-progress p {
  color: var(--clr-gold);
  font-weight: 500;
  margin-bottom: 10px;
}

.progress-bar-container {
  width: 100%;
  height: 6px;
  background: rgba(0,0,0,0.1);
  border-radius: 3px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--clr-gold), var(--clr-gold-dark));
  border-radius: 3px;
  transition: width 0.3s ease;
}

/* Skin score circle */
.skin-score-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 4px solid var(--clr-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 0 auto 10px;
}

.skin-score-circle .score-num {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--clr-gold);
  line-height: 1;
}

.skin-score-circle .score-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--clr-text-muted);
}

/* Result meter bars */
.result-meter {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.result-meter-bar {
  flex: 1;
  height: 8px;
  background: rgba(0,0,0,0.08);
  border-radius: 4px;
  overflow: hidden;
}

.result-meter-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 0.6s ease;
}

.result-meter-value {
  font-size: 0.8rem;
  font-weight: 600;
  min-width: 35px;
  text-align: right;
}

.meter-good .result-meter-fill { background: linear-gradient(90deg, #4CAF50, #66BB6A); }
.meter-moderate .result-meter-fill { background: linear-gradient(90deg, #FF9800, #FFB74D); }
.meter-concern .result-meter-fill { background: linear-gradient(90deg, #f44336, #e57373); }

.result-item .concern-tag {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-left: 8px;
}

.concern-tag.good { background: rgba(76,175,80,0.15); color: #4CAF50; }
.concern-tag.moderate { background: rgba(255,152,0,0.15); color: #FF9800; }
.concern-tag.concern { background: rgba(244,67,54,0.15); color: #f44336; }

.face-not-detected {
  background: rgba(244,67,54,0.1);
  border: 1px solid rgba(244,67,54,0.3);
  border-radius: 8px;
  padding: 15px;
  text-align: center;
  color: #f44336;
  margin-bottom: 15px;
}

/* ---------- Quiz Section ---------- */
.quiz-section {
  background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-secondary) 100%);
  border-radius: 20px;
  padding: 60px;
  text-align: center;
  color: var(--clr-white);
  margin: 60px 0;
}

.quiz-section h2 {
  margin-bottom: 15px;
}

.quiz-section p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 30px;
}

.quiz-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.quiz-step {
  display: none;
}

.quiz-step.active {
  display: block;
}

.quiz-step h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  text-align: center;
}

.quiz-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.quiz-option {
  padding: 16px 20px;
  border: 2px solid rgba(201, 169, 110, 0.3);
  border-radius: 10px;
  cursor: pointer;
  text-align: center;
  transition: all var(--transition);
  font-size: 0.9rem;
}

.quiz-option:hover,
.quiz-option.selected {
  border-color: var(--clr-gold);
  background: rgba(201, 169, 110, 0.15);
}

.quiz-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 25px;
}

.quiz-results {
  display: none;
}

.quiz-results.active {
  display: block;
}

.quiz-results h3 {
  margin-bottom: 20px;
}

.recommended-services {
  display: grid;
  gap: 12px;
}

.recommended-service {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  border: 1px solid var(--clr-border);
}

.recommended-service .match-score {
  background: var(--clr-gold);
  color: var(--clr-primary);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}

/* ---------- Google Translate Widget ---------- */
#google_translate_element {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

#google_translate_element .goog-te-gadget {
  font-size: 0 !important;
  color: transparent !important;
}

#google_translate_element .goog-te-gadget span {
  display: none !important;
}

#google_translate_element select.goog-te-combo {
  background: rgba(197, 165, 90, 0.1);
  border: 1px solid rgba(197, 165, 90, 0.3);
  color: var(--clr-gold);
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--ff-body);
  cursor: pointer;
  outline: none;
  transition: all var(--transition);
  -webkit-appearance: auto;
}

#google_translate_element select.goog-te-combo:hover,
#google_translate_element select.goog-te-combo:focus {
  border-color: var(--clr-gold);
  background: rgba(197, 165, 90, 0.15);
}

/* Hide Google Translate top bar */
.goog-te-banner-frame {
  display: none !important;
}

body {
  top: 0 !important;
}

/* ---------- Pricing Highlight Banner ---------- */
.pricing-banner {
  background: linear-gradient(135deg, var(--clr-primary), #1a1a2e);
  padding: 45px 55px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(212, 175, 55, 0.15);
  transform: scale(1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-banner:hover {
  transform: scale(1.02);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(212, 175, 55, 0.25);
}

.pricing-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.pricing-badge {
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-dark));
  color: var(--clr-primary);
  font-family: var(--ff-heading);
  font-size: 1.6rem;
  font-weight: 800;
  padding: 22px 28px;
  border-radius: 14px;
  text-align: center;
  line-height: 1.1;
  flex-shrink: 0;
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.45);
  animation: badgePulse 2.5s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 6px 25px rgba(212, 175, 55, 0.45); }
  50% { box-shadow: 0 8px 35px rgba(212, 175, 55, 0.7); }
}

.pricing-banner-content {
  flex: 1;
  min-width: 200px;
}

.pricing-banner-content h2 {
  font-family: var(--ff-heading);
  font-size: 1.7rem;
  color: #fff;
  margin-bottom: 10px;
}

.pricing-banner-content h2 em {
  color: var(--clr-gold);
  font-style: italic;
}

.pricing-banner-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
}

.pricing-banner-content p strong {
  color: var(--clr-gold);
}

.pricing-banner .btn {
  flex-shrink: 0;
  white-space: nowrap;
}

/* ---------- Loyalty Points Banner ---------- */
.loyalty-banner {
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-dark));
  padding: 25px 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin: 40px 0;
}

.loyalty-banner h3 {
  color: var(--clr-primary);
  font-size: 1.2rem;
}

.loyalty-banner p {
  color: var(--clr-primary);
  opacity: 0.8;
  font-size: 0.9rem;
}

.loyalty-banner .btn {
  background: var(--clr-primary);
  color: var(--clr-gold);
  border: none;
}

.loyalty-banner .btn:hover {
  opacity: 0.9;
}

/* ---------- Dr. Anna Section ---------- */
.dr-anna-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.dr-anna-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  position: relative;
}

.dr-anna-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 2px solid var(--clr-gold);
  opacity: 0.3;
  pointer-events: none;
}

.dr-anna-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dr-anna-content h2 {
  font-size: 2.8rem;
  font-family: var(--ff-heading);
  margin-bottom: 5px;
}

.dr-anna-role {
  font-size: 1.1rem;
  color: var(--clr-gold);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.dr-anna-content p {
  color: var(--clr-text-muted);
  line-height: 1.8;
  margin-bottom: 15px;
}

.dr-anna-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 25px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--clr-offwhite);
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  border-left: 3px solid var(--clr-gold);
}

.highlight-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .dr-anna-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .dr-anna-content h2 {
    font-size: 2rem;
  }
  .dr-anna-highlights {
    grid-template-columns: 1fr;
  }
}

/* ---------- About Page ---------- */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-content .about-image {
  border-radius: 16px;
  overflow: hidden;
  height: 500px;
}

.about-content .about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content .about-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.about-content .about-text p {
  color: var(--clr-text-muted);
  margin-bottom: 15px;
  line-height: 1.8;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}

.team-card {
  text-align: center;
  background: var(--clr-white);
  border-radius: 12px;
  padding: 35px 25px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all var(--transition);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.team-card .team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.team-card h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.team-card .role {
  color: var(--clr-gold);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.team-card p {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
}

/* ---------- Scroll Reveal Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .about-content .about-image {
    height: 350px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 60px 0;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: var(--clr-bg-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 30px 30px;
    gap: 0;
    transition: right var(--transition);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    padding: 15px 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-dropdown .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: transparent;
    border: none;
    padding: 0 0 0 15px;
    margin: 0;
    min-width: unset;
  }

  .nav-hamburger {
    display: flex;
  }

  #google_translate_element {
    margin-top: 10px;
    width: 100%;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-track > .service-card {
    min-width: 260px;
    max-width: 260px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .devices-grid {
    grid-template-columns: 1fr;
  }

  .device-card-flip {
    height: 520px;
  }

  .device-card-flip.flipped .device-card-inner {
    transform: rotateY(180deg);
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .booking-form-wrapper {
    padding: 30px 20px;
  }

  .quiz-section {
    padding: 30px 15px;
    margin: 30px 0;
  }

  .quiz-options {
    grid-template-columns: 1fr;
  }

  .quiz-nav {
    flex-wrap: wrap;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    min-width: 280px;
    flex: 1 0 280px;
    padding: 30px 25px;
  }

  .testimonial-card blockquote {
    font-size: 1rem;
  }

  .chatbot-window {
    width: calc(100% - 30px);
    right: 15px;
    bottom: 90px;
    max-height: 70vh;
  }

  .chatbot-messages {
    max-height: 250px;
  }

  .loyalty-banner {
    padding: 25px 20px;
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }

  .loyalty-banner .btn {
    width: 100%;
    text-align: center;
  }

  .pricing-banner {
    padding: 30px 20px;
    flex-direction: column;
    text-align: center;
  }

  .pricing-badge {
    font-size: 1.2rem;
    padding: 14px 18px;
  }

  .pricing-banner-content h2 {
    font-size: 1.3rem;
  }

  .pricing-banner .btn {
    width: 100%;
    text-align: center;
  }

  .modal-content {
    padding: 30px 20px;
    width: 95%;
  }

  .upload-area {
    padding: 30px 15px;
  }

  .page-banner {
    padding: 130px 0 60px;
  }

  .page-banner h1 {
    font-size: 1.8rem;
  }

  .about-content .about-image {
    height: 280px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .contact-info-item .icon {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .section-header h2 {
    font-size: 1.6rem;
  }

  .testimonial-card {
    min-width: 260px;
    flex: 1 0 260px;
    padding: 25px 20px;
  }

  .testimonial-card blockquote {
    font-size: 0.95rem;
  }

  .btn {
    padding: 12px 28px;
    font-size: 0.85rem;
  }

  .quiz-section {
    padding: 25px 12px;
    border-radius: 12px;
  }

  .chatbot-toggle {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .footer-col .hours-list li {
    font-size: 0.8rem;
  }
}

/* ---------- Floating Contact Circles ---------- */
.floating-contact {
  position: fixed;
  bottom: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9997;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: all var(--transition);
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.floating-contact:hover {
  transform: scale(1.12);
}

.floating-contact svg {
  width: 28px;
  height: 28px;
}

.floating-whatsapp {
  left: 30px;
  background: #25D366;
}

.floating-whatsapp:hover {
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45);
}

.floating-whatsapp svg {
  fill: #fff;
}

.floating-call {
  right: 100px;
  background: var(--clr-gold);
}

.floating-call:hover {
  box-shadow: 0 6px 28px rgba(197, 165, 90, 0.45);
}

.floating-call svg {
  fill: var(--clr-primary);
}

/* Chatbot stays in bottom-right */
.chatbot-toggle {
  bottom: 30px;
}

@media (max-width: 768px) {
  .floating-contact {
    width: 52px;
    height: 52px;
    bottom: 24px;
  }

  .floating-contact svg {
    width: 24px;
    height: 24px;
  }

  .floating-whatsapp {
    left: 20px;
  }

  .floating-call {
    right: 82px;
  }

  .chatbot-window {
    bottom: 90px;
  }
}
