/* ================================================
   CAMILLA SPA – LUXURY DARK DESIGN SYSTEM v2
   Premium International Spa Aesthetic
   ================================================ */

/* Google Fonts – Premium Serif + Modern Sans */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&display=swap');

/* ── CSS Custom Properties ─────────────────────── */
:root {
  /* Colors – Deep Noir + Champagne Gold */
  --clr-bg-primary: #08080c;
  --clr-bg-secondary: #0e0e14;
  --clr-bg-card: rgba(18, 18, 26, 0.85);
  --clr-bg-card-hover: rgba(28, 28, 42, 0.9);
  --clr-bg-overlay: rgba(0, 0, 0, 0.7);

  --clr-gold: #c9a96e;
  --clr-gold-light: #dfc08a;
  --clr-gold-dark: #a68640;
  --clr-gold-glow: rgba(201, 169, 110, 0.12);

  --clr-coral: #c4785e;
  --clr-coral-hover: #d4896f;
  --clr-coral-dark: #a5614a;

  --clr-text-primary: #f2ede8;
  --clr-text-secondary: #b0a89e;
  --clr-text-muted: #6b6560;

  --clr-border: rgba(201, 169, 110, 0.10);
  --clr-border-hover: rgba(201, 169, 110, 0.30);

  --clr-accent-warm: #e8d5b5;
  --clr-accent-cream: #f5efe6;

  /* Typography */
  --ff-heading: 'Playfair Display', 'Georgia', serif;
  --ff-body: 'Inter', 'Segoe UI', system-ui, sans-serif;
  --ff-accent: 'Cormorant Garamond', 'Georgia', serif;

  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.25rem;
  --fs-xl: 1.5rem;
  --fs-2xl: 2rem;
  --fs-3xl: 2.5rem;
  --fs-4xl: 3.25rem;
  --fs-5xl: 4rem;
  --fs-hero: clamp(2.8rem, 5.5vw, 5.5rem);

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-section: clamp(5rem, 10vw, 10rem);

  /* Borders & Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Shadows – Luxury Depth */
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.45);
  --shadow-gold: 0 0 40px rgba(201, 169, 110, 0.08);
  --shadow-glow: 0 0 80px rgba(201, 169, 110, 0.06);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3), 0 0 0 1px var(--clr-border);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Layout */
  --max-width: 1320px;
  --header-height: 80px;
}

/* ── CSS Reset ─────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--clr-text-primary);
  background-color: var(--clr-bg-primary);
  overflow-x: hidden;
  max-width: 100vw;
  background-image:
    radial-gradient(ellipse at 20% 0%, rgba(201, 169, 110, 0.03) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(201, 169, 110, 0.02) 0%, transparent 50%);
  background-attachment: fixed;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

iframe,
video,
embed,
object {
  max-width: 100%;
}

section,
.container {
  overflow-x: hidden;
}

table {
  max-width: 100%;
  overflow-x: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

/* ── Typography ────────────────────────────────── */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--ff-heading);
  font-weight: 500;
  line-height: 1.2;
  color: var(--clr-text-primary);
}

h1 {
  font-size: var(--fs-hero);
  letter-spacing: -0.02em;
}

h2 {
  font-size: var(--fs-4xl);
  letter-spacing: -0.01em;
}

h3 {
  font-size: var(--fs-2xl);
}

h4 {
  font-size: var(--fs-xl);
}

.text-gold {
  color: var(--clr-gold);
}

.text-accent {
  font-family: var(--ff-accent);
}

.subtitle {
  font-family: var(--ff-accent);
  font-size: var(--fs-lg);
  color: var(--clr-gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: var(--space-md);
}

.section-title {
  margin-bottom: var(--space-lg);
}

.section-desc {
  font-size: var(--fs-md);
  color: var(--clr-text-secondary);
  max-width: 600px;
  line-height: 1.8;
}

/* ── Layout Utilities ──────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.section {
  padding: var(--space-section) 0;
}

.section-center {
  text-align: center;
}

.section-center .section-desc {
  margin-left: auto;
  margin-right: auto;
}

.grid {
  display: grid;
  gap: var(--space-xl);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.flex {
  display: flex;
  align-items: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.gap-sm {
  gap: var(--space-sm);
}

.gap-md {
  gap: var(--space-md);
}

.gap-lg {
  gap: var(--space-lg);
}

.gap-xl {
  gap: var(--space-xl);
}

/* ── Buttons ───────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 14px 36px;
  border-radius: var(--radius-full);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--clr-coral) 0%, var(--clr-coral-dark) 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(211, 95, 75, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--clr-coral-hover) 0%, var(--clr-coral) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(211, 95, 75, 0.4);
}

.btn-outline {
  border: 1.5px solid var(--clr-gold);
  color: var(--clr-gold);
}

.btn-outline:hover {
  background: var(--clr-gold);
  color: var(--clr-bg-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-ghost {
  color: var(--clr-gold);
  padding: 10px 0;
  border-radius: 0;
  letter-spacing: 0.08em;
}

.btn-ghost::after {
  content: '→';
  margin-left: 8px;
  transition: transform var(--transition-fast);
}

.btn-ghost:hover::after {
  transform: translateX(4px);
}

.btn-ghost:hover {
  color: var(--clr-gold-light);
}

/* ── Header / Navigation ──────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  transition: all var(--transition-base);
  background: transparent;
}

.header.scrolled {
  background: rgba(8, 8, 12, 0.92);
  -webkit-backdrop-filter: blur(24px) saturate(1.8);
  backdrop-filter: blur(24px) saturate(1.8);
  box-shadow: 0 1px 0 var(--clr-border), 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--ff-heading);
  font-size: var(--fs-xl);
  font-weight: 600;
  color: var(--clr-text-primary);
  z-index: 1001;
}

.logo-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-gold) 0%, var(--clr-gold-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
}

.nav-links {
  display: flex;
  gap: var(--space-xl);
}

.nav-link {
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--clr-text-secondary);
  position: relative;
  padding: 8px 0;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--clr-gold);
  transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
  color: var(--clr-gold);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 28px;
  font-size: var(--fs-xs);
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  z-index: 1001;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--clr-text-primary);
  transition: all var(--transition-base);
  border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.nav-cta-mobile {
  display: none;
}

/* ── Language Toggle (Select Dropdown) ─────────── */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--clr-text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
  background: var(--clr-bg-secondary);
  letter-spacing: 0.02em;
  white-space: nowrap;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23b0a89e'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 30px;
}

.lang-toggle:hover,
.lang-toggle:focus {
  border-color: var(--clr-gold);
  color: var(--clr-gold);
  background-color: var(--clr-bg-card);
  outline: none;
}

.lang-toggle option {
  background: #1a1a2e;
  color: #f2ede8;
  padding: 8px;
}

/* ── Hero Section ──────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.30) saturate(0.9) contrast(1.1);
  animation: heroZoom 25s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.08);
  }
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(8, 8, 12, 0.2) 0%,
      rgba(8, 8, 12, 0.4) 40%,
      rgba(8, 8, 12, 0.85) 80%,
      rgba(8, 8, 12, 1) 100%),
    radial-gradient(ellipse at 30% 50%, rgba(201, 169, 110, 0.06) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding-top: calc(var(--header-height) + 4rem);
}

.hero-subtitle {
  font-family: var(--ff-accent);
  font-size: var(--fs-lg);
  color: var(--clr-gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.hero-subtitle::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--clr-gold);
}

.hero h1 {
  margin-bottom: var(--space-xl);
  font-weight: 400;
}

.hero h1 em {
  font-style: italic;
  color: var(--clr-gold);
}

.hero-desc {
  font-size: var(--fs-md);
  color: var(--clr-text-secondary);
  line-height: 1.9;
  margin-bottom: var(--space-2xl);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: var(--space-2xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: var(--clr-text-muted);
  font-size: var(--fs-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: float 3s ease-in-out infinite;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--clr-gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

@keyframes scrollLine {
  0% {
    opacity: 1;
    height: 40px;
  }

  50% {
    opacity: 0.3;
    height: 20px;
  }

  100% {
    opacity: 1;
    height: 40px;
  }
}

/* ── Features Section ──────────────────────────── */
.features {
  position: relative;
}

.features::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--clr-gold-glow) 0%, transparent 70%);
  pointer-events: none;
}

.feature-card {
  background: rgba(18, 18, 26, 0.6);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-xl);
  text-align: center;
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--clr-gold), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.feature-card::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 0%, rgba(201, 169, 110, 0.04) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-slow);
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--clr-border-hover);
  box-shadow: var(--shadow-card), var(--shadow-glow);
  background: rgba(28, 28, 42, 0.75);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--space-lg);
  border-radius: 50%;
  background: var(--clr-gold-glow);
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: all var(--transition-base);
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--clr-gold) 0%, var(--clr-gold-dark) 100%);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 40px rgba(201, 169, 110, 0.35);
}

.feature-card h3 {
  font-size: var(--fs-xl);
  margin-bottom: var(--space-md);
}

.feature-card p {
  color: var(--clr-text-secondary);
  font-size: var(--fs-sm);
  line-height: 1.8;
}

/* ── Service Cards ─────────────────────────────── */
.service-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 420px;
  transition: all var(--transition-slow);
  box-shadow: var(--shadow-card);
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--clr-border-hover);
}

.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-card-img {
  transform: scale(1.08);
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(8, 8, 12, 0.95) 0%,
      rgba(8, 8, 12, 0.5) 40%,
      rgba(8, 8, 12, 0.1) 70%,
      transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-xl);
  transition: background var(--transition-base);
}

.service-card:hover .service-card-overlay {
  background: linear-gradient(to top,
      rgba(13, 13, 13, 0.98) 0%,
      rgba(13, 13, 13, 0.6) 60%,
      rgba(13, 13, 13, 0.3) 100%);
}

.service-card-icon {
  font-size: 2rem;
  margin-bottom: var(--space-sm);
}

.service-card h3 {
  font-size: var(--fs-xl);
  margin-bottom: var(--space-xs);
  transition: color var(--transition-fast);
}

.service-card:hover h3 {
  color: var(--clr-gold);
}

.service-card p {
  color: var(--clr-text-secondary);
  font-size: var(--fs-sm);
  margin-bottom: var(--space-md);
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition-base);
}

.service-card:hover p {
  opacity: 1;
  transform: translateY(0);
}

.service-card .btn-ghost {
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition-base) 0.1s;
  font-size: var(--fs-xs);
}

.service-card:hover .btn-ghost {
  opacity: 1;
  transform: translateY(0);
}

/* ── Pricing Section ───────────────────────────── */
.pricing-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-slow);
}

.pricing-card:hover {
  border-color: var(--clr-border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.pricing-card.featured {
  border-color: var(--clr-gold);
  position: relative;
}

.pricing-card.featured::before {
  content: 'Popular';
  position: absolute;
  top: 16px;
  right: -30px;
  background: var(--clr-gold);
  color: var(--clr-bg-primary);
  padding: 4px 40px;
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transform: rotate(45deg);
  z-index: 1;
}

.pricing-header {
  padding: var(--space-2xl) var(--space-xl) var(--space-lg);
  text-align: center;
  border-bottom: 1px solid var(--clr-border);
}

.pricing-header h3 {
  font-size: var(--fs-xl);
  margin-bottom: var(--space-xs);
}

.pricing-header .price-desc {
  color: var(--clr-text-secondary);
  font-size: var(--fs-sm);
}

.pricing-body {
  padding: var(--space-xl);
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(197, 160, 89, 0.08);
}

.pricing-item:last-child {
  border-bottom: none;
}

.pricing-item-name {
  font-size: var(--fs-sm);
  color: var(--clr-text-primary);
}

.pricing-item-price {
  font-family: var(--ff-heading);
  font-size: var(--fs-lg);
  color: var(--clr-gold);
  font-weight: 600;
}

.pricing-footer {
  padding: var(--space-md) var(--space-xl) var(--space-xl);
  text-align: center;
}

/* ── CTA Banner ────────────────────────────────── */
.cta-banner {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--clr-bg-card) 0%, rgba(197, 160, 89, 0.08) 100%);
  border: 1px solid var(--clr-border);
  padding: var(--space-4xl) var(--space-2xl);
  text-align: center;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 40%, var(--clr-gold-glow) 0%, transparent 50%);
  animation: ctaGlow 8s ease-in-out infinite alternate;
}

@keyframes ctaGlow {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  100% {
    transform: translate(5%, 5%) rotate(10deg);
  }
}

.cta-banner>* {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  font-size: var(--fs-3xl);
  margin-bottom: var(--space-lg);
}

.cta-banner p {
  color: var(--clr-text-secondary);
  font-size: var(--fs-md);
  max-width: 500px;
  margin: 0 auto var(--space-2xl);
}

/* ── Newsletter ────────────────────────────────── */
.newsletter-form {
  display: flex;
  gap: var(--space-md);
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 24px;
  background: var(--clr-bg-secondary);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-full);
  color: var(--clr-text-primary);
  font-size: var(--fs-sm);
  outline: none;
  transition: border-color var(--transition-fast);
}

.newsletter-form input::placeholder {
  color: var(--clr-text-muted);
}

.newsletter-form input:focus {
  border-color: var(--clr-gold);
  box-shadow: 0 0 0 3px var(--clr-gold-glow);
}

/* ── Footer ────────────────────────────────────── */
.footer {
  background: var(--clr-bg-secondary);
  border-top: 1px solid var(--clr-border);
  padding-top: var(--space-4xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-3xl);
}

.footer-brand p {
  color: var(--clr-text-secondary);
  font-size: var(--fs-sm);
  margin-top: var(--space-lg);
  line-height: 1.8;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-text-secondary);
  transition: all var(--transition-fast);
  font-size: var(--fs-sm);
}

.footer-social a:hover {
  background: var(--clr-gold);
  border-color: var(--clr-gold);
  color: var(--clr-bg-primary);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-text-primary);
  margin-bottom: var(--space-lg);
}

.footer-col ul li {
  margin-bottom: var(--space-sm);
}

.footer-col ul li a {
  color: var(--clr-text-secondary);
  font-size: var(--fs-sm);
  transition: all var(--transition-fast);
}

.footer-col ul li a:hover {
  color: var(--clr-gold);
  padding-left: 6px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  color: var(--clr-text-secondary);
  font-size: var(--fs-sm);
}

.footer-contact-item .icon {
  color: var(--clr-gold);
  font-size: var(--fs-md);
  min-width: 20px;
}

.footer-bottom {
  border-top: 1px solid var(--clr-border);
  padding: var(--space-xl) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
}

/* ── Page Banner ───────────────────────────────── */
.page-banner {
  position: relative;
  padding: calc(var(--header-height) + var(--space-4xl)) 0 var(--space-4xl);
  text-align: center;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, var(--clr-gold-glow) 0%, transparent 60%);
  pointer-events: none;
}

.page-banner .subtitle {
  position: relative;
  z-index: 1;
}

.page-banner h1 {
  position: relative;
  z-index: 1;
  margin-bottom: var(--space-lg);
}

.page-banner p {
  position: relative;
  z-index: 1;
  color: var(--clr-text-secondary);
  max-width: 600px;
  margin: 0 auto;
  font-size: var(--fs-md);
}

/* ── About Section ─────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.8s;
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

.about-image-badge {
  position: absolute;
  bottom: var(--space-xl);
  right: var(--space-xl);
  background: rgba(13, 13, 13, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-xl);
  text-align: center;
}

.about-image-badge .number {
  font-family: var(--ff-heading);
  font-size: var(--fs-3xl);
  color: var(--clr-gold);
  font-weight: 600;
  line-height: 1;
}

.about-image-badge .label {
  font-size: var(--fs-xs);
  color: var(--clr-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.about-content .subtitle {
  margin-bottom: var(--space-md);
}

.about-content h2 {
  margin-bottom: var(--space-xl);
}

.about-content p {
  color: var(--clr-text-secondary);
  margin-bottom: var(--space-lg);
  line-height: 1.9;
}

.about-stats {
  display: flex;
  gap: var(--space-2xl);
  margin-top: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--clr-border);
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: var(--ff-heading);
  font-size: var(--fs-3xl);
  color: var(--clr-gold);
  font-weight: 600;
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stat-label {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── Team Section ──────────────────────────────── */
.team-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-slow);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.team-card-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 0.6s;
}

.team-card:hover .team-card-img {
  transform: scale(1.05);
}

.team-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-xl);
  background: linear-gradient(to top, rgba(13, 13, 13, 0.95) 0%, transparent 100%);
}

.team-card-info h3 {
  font-size: var(--fs-lg);
  margin-bottom: 2px;
}

.team-card-info p {
  color: var(--clr-gold);
  font-size: var(--fs-sm);
  font-family: var(--ff-accent);
}

/* ── Pricing Table (Prices Page) ───────────────── */
.price-table {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-2xl);
  transition: all var(--transition-base);
}

.price-table:hover {
  border-color: var(--clr-border-hover);
}

.price-table-header {
  padding: var(--space-xl) var(--space-2xl);
  background: linear-gradient(135deg, rgba(197, 160, 89, 0.08) 0%, transparent 100%);
  border-bottom: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.price-table-header .icon {
  font-size: 1.8rem;
}

.price-table-header h3 {
  font-size: var(--fs-xl);
}

.price-table-header p {
  color: var(--clr-text-secondary);
  font-size: var(--fs-sm);
  margin-top: 2px;
}

.price-table-body {
  padding: var(--space-md) var(--space-2xl);
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(197, 160, 89, 0.06);
  transition: all var(--transition-fast);
}

.price-row:last-child {
  border-bottom: none;
}

.price-row:hover {
  padding-left: 8px;
}

.price-row:hover .price-name {
  color: var(--clr-gold);
}

.price-name {
  color: var(--clr-text-primary);
  font-size: var(--fs-sm);
  transition: color var(--transition-fast);
}

.price-value {
  font-family: var(--ff-heading);
  color: var(--clr-gold);
  font-size: var(--fs-lg);
  font-weight: 600;
}

/* ── Contact Form ──────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--clr-text-secondary);
  margin-bottom: var(--space-xs);
  letter-spacing: 0.03em;
}

.form-control {
  width: 100%;
  padding: 14px 20px;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  color: var(--clr-text-primary);
  font-size: var(--fs-base);
  outline: none;
  transition: all var(--transition-fast);
}

.form-control:focus {
  border-color: var(--clr-gold);
  box-shadow: 0 0 0 3px var(--clr-gold-glow);
}

.form-control::placeholder {
  color: var(--clr-text-muted);
}

textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

.contact-info-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
}

.contact-info-item {
  display: flex;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--clr-border);
}

.contact-info-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-info-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--clr-gold-glow);
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-info-text h4 {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-info-text p,
.contact-info-text a {
  color: var(--clr-text-secondary);
  font-size: var(--fs-sm);
}

.contact-info-text a:hover {
  color: var(--clr-gold);
}

/* ── Map ───────────────────────────────────────── */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  height: 400px;
  margin-top: var(--space-2xl);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: brightness(0.85) contrast(1.1) saturate(0.3);
}

/* ── Blog Cards ────────────────────────────────── */
.blog-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-slow);
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: var(--clr-border-hover);
  box-shadow: var(--shadow-md);
}

.blog-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s;
}

.blog-card:hover .blog-card-img {
  transform: scale(1.05);
}

.blog-card-body {
  padding: var(--space-xl);
}

.blog-card-meta {
  font-size: var(--fs-xs);
  color: var(--clr-gold);
  font-family: var(--ff-accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.blog-card-body h3 {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-sm);
  transition: color var(--transition-fast);
}

.blog-card:hover .blog-card-body h3 {
  color: var(--clr-gold);
}

.blog-card-body p {
  color: var(--clr-text-secondary);
  font-size: var(--fs-sm);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

/* ── Divider ───────────────────────────────────── */
.divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--clr-gold), transparent);
  margin: var(--space-lg) 0;
}

.divider-center {
  margin-left: auto;
  margin-right: auto;
}

/* ── Scroll Reveal Animations ──────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays */
.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

.delay-5 {
  transition-delay: 0.5s;
}

/* ── Testimonial ───────────────────────────────── */
.testimonial-card {
  background: rgba(18, 18, 26, 0.6);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-xl);
  position: relative;
  transition: all var(--transition-slow);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: var(--clr-border-hover);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--ff-heading);
  font-size: 8rem;
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.12;
  position: absolute;
  top: -10px;
  left: 20px;
  line-height: 1;
  pointer-events: none;
}

.testimonial-stars {
  color: var(--clr-gold);
  font-size: var(--fs-sm);
  margin-bottom: var(--space-md);
  letter-spacing: 4px;
}

.testimonial-text {
  color: var(--clr-text-secondary);
  font-size: var(--fs-md);
  line-height: 1.9;
  font-style: italic;
  margin-bottom: var(--space-xl);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-gold) 0%, var(--clr-gold-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-heading);
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--clr-bg-primary);
}

.testimonial-author-name {
  font-weight: 600;
  font-size: var(--fs-sm);
}

.testimonial-author-title {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
}

/* ── Back to Top ───────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: var(--space-xl);
  right: var(--space-xl);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--clr-gold);
  color: var(--clr-bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-lg);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-base);
  box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--clr-gold-light);
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(197, 160, 89, 0.4);
}

/* ── Appointment Modal ─────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  max-width: 500px;
  width: 90%;
  transform: scale(0.9) translateY(20px);
  transition: transform var(--transition-spring);
}

.modal-overlay.active .modal {
  transform: scale(1) translateY(0);
}

.modal-close {
  float: right;
  font-size: var(--fs-xl);
  color: var(--clr-text-muted);
  cursor: pointer;
  transition: color var(--transition-fast);
  padding: 4px;
}

.modal-close:hover {
  color: var(--clr-coral);
}

.modal h2 {
  font-size: var(--fs-2xl);
  margin-bottom: var(--space-xs);
}

.modal p {
  color: var(--clr-text-secondary);
  font-size: var(--fs-sm);
  margin-bottom: var(--space-xl);
}

/* ── Responsive ────────────────────────────────── */

/* ── Tablet (1024px) ───────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    gap: var(--space-2xl);
  }

  .service-card {
    height: 360px;
  }

  .section-header h2 {
    font-size: var(--fs-3xl);
  }
}

/* ── Mobile (768px) ────────────────────────────── */
@media (max-width: 768px) {
  :root {
    --header-height: 64px;
    --fs-4xl: 2.25rem;
    --fs-3xl: 1.75rem;
    --fs-hero: clamp(2rem, 8vw, 3rem);
    --space-section: clamp(3rem, 6vw, 5rem);
  }

  .container {
    padding: 0 var(--space-md);
  }

  /* ── Mobile Nav ── */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 360px;
    height: 100vh;
    height: 100dvh;
    background: var(--clr-bg-secondary);
    flex-direction: column;
    padding: calc(var(--header-height) + var(--space-2xl)) var(--space-xl) var(--space-2xl);
    gap: 0;
    transition: right var(--transition-base);
    border-left: 1px solid var(--clr-border);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-link {
    font-size: var(--fs-base);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--clr-border);
  }

  .menu-toggle {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .nav-cta-mobile {
    display: block !important;
    margin-top: var(--space-lg);
    text-align: center;
  }

  .lang-toggle {
    font-size: 11px;
    padding: 6px 12px;
  }

  /* ── Grids ── */
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  /* ── Hero ── */
  .hero {
    min-height: 100vh;
    min-height: 100dvh;
  }

  .hero-content {
    padding: calc(var(--header-height) + var(--space-2xl)) 0 var(--space-2xl);
    max-width: 100%;
  }

  .hero h1 {
    font-size: var(--fs-hero);
    margin-bottom: var(--space-lg);
  }

  .hero h1 em {
    display: inline;
  }

  .hero p,
  .hero-desc {
    font-size: var(--fs-sm);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
  }

  .hero .subtitle {
    font-size: var(--fs-sm);
    letter-spacing: 0.12em;
    margin-bottom: var(--space-sm);
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: var(--space-md);
  }

  .hero-actions .btn {
    width: 100%;
    padding: 16px 24px;
    font-size: var(--fs-sm);
  }

  /* ── Feature Cards ── */
  .feature-card {
    padding: var(--space-xl) var(--space-lg);
  }

  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .feature-card h3 {
    font-size: var(--fs-lg);
  }

  /* ── Service Cards ── */
  .service-card {
    height: 280px;
  }

  .service-card-icon {
    font-size: 1.6rem;
  }

  .service-card h3 {
    font-size: var(--fs-lg);
  }

  .services-section .section-header h2 {
    font-size: var(--fs-3xl);
  }

  /* ── Section Headers ── */
  .section-header {
    margin-bottom: var(--space-xl);
  }

  .section-header .subtitle {
    font-size: var(--fs-sm);
    letter-spacing: 0.1em;
  }

  /* ── Testimonials ── */
  .testimonial-card {
    padding: var(--space-xl) var(--space-lg);
  }

  .testimonial-card::before {
    font-size: 5rem;
    top: -5px;
    left: 14px;
  }

  .testimonial-text {
    font-size: var(--fs-sm);
    line-height: 1.8;
  }

  /* ── CTA Banner ── */
  .cta-banner {
    padding: var(--space-2xl) var(--space-lg);
    border-radius: var(--radius-lg);
  }

  .cta-banner h2 {
    font-size: var(--fs-2xl);
  }

  .cta-banner p {
    font-size: var(--fs-sm);
  }

  .newsletter-form {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .newsletter-form input {
    padding: 14px 20px;
  }

  .newsletter-form .btn {
    width: 100%;
  }

  /* ── Pricing ── */
  .pricing-header {
    padding: var(--space-xl) var(--space-lg) var(--space-md);
  }

  .pricing-body {
    padding: var(--space-lg);
  }

  /* ── Footer ── */
  .footer {
    padding-top: var(--space-2xl);
  }

  .footer-brand p {
    max-width: 100%;
  }

  .footer-col h4 {
    margin-bottom: var(--space-md);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
    padding: var(--space-lg) 0;
  }

  /* ── About ── */
  .about-image img {
    height: 300px;
  }

  .about-stats {
    flex-wrap: wrap;
    gap: var(--space-lg);
  }

  .stat {
    flex: 1 0 40%;
  }

  /* ── Blog ── */
  .blog-card-img {
    height: 200px;
  }

  /* ── Back to top ── */
  .back-to-top {
    width: 42px;
    height: 42px;
    bottom: var(--space-lg);
    right: var(--space-lg);
  }

  /* ── Modal ── */
  .modal {
    width: 94%;
    padding: var(--space-xl);
    max-height: 90vh;
    overflow-y: auto;
    border-radius: var(--radius-lg);
  }

  .modal h2 {
    font-size: var(--fs-xl);
  }

  /* ── Page Banner ── */
  .page-banner {
    padding: calc(var(--header-height) + var(--space-2xl)) 0 var(--space-2xl);
  }

  .page-banner h1 {
    font-size: var(--fs-3xl);
  }

  /* ── Toast ── */
  .form-toast {
    left: var(--space-md);
    right: var(--space-md);
    bottom: var(--space-md);
    max-width: none;
  }
}

/* ── Small Mobile (480px) ──────────────────────── */
@media (max-width: 480px) {
  :root {
    --fs-4xl: 1.75rem;
    --fs-3xl: 1.5rem;
    --fs-2xl: 1.35rem;
    --fs-hero: clamp(1.8rem, 7vw, 2.5rem);
  }

  .container {
    padding: 0 var(--space-sm);
  }

  .feature-card {
    padding: var(--space-lg);
  }

  .feature-icon {
    width: 52px;
    height: 52px;
    font-size: 1.3rem;
  }

  .service-card {
    height: 240px;
  }

  .service-card h3 {
    font-size: var(--fs-base);
  }

  .service-card-overlay {
    padding: var(--space-lg);
  }

  .cta-banner {
    padding: var(--space-xl) var(--space-md);
  }

  .cta-banner h2 {
    font-size: var(--fs-xl);
  }

  .btn {
    padding: 12px 24px;
    font-size: 12px;
  }

  .testimonial-card::before {
    font-size: 4rem;
    top: -2px;
    left: 10px;
  }

  .about-image img {
    height: 240px;
  }

  .footer-social a {
    width: 38px;
    height: 38px;
  }

  .pricing-item {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-xs);
  }
}

/* ── Services 2-col on larger mobiles ─────────── */
@media (min-width: 481px) and (max-width: 768px) {
  .services-section .grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

  .service-card {
    height: 260px;
  }
}

/* ── Custom Scrollbar ──────────────────────────── */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--clr-bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--clr-bg-card-hover);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--clr-gold-dark);
}

/* ── Loading Skeleton ──────────────────────────── */
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

.skeleton {
  background: linear-gradient(90deg, var(--clr-bg-card) 25%, var(--clr-bg-card-hover) 50%, var(--clr-bg-card) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
  border-radius: var(--radius-md);
}

/* ── Floating particles effect ─────────────────── */
.particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--clr-gold);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0% {
    opacity: 0;
    transform: translateY(100vh) scale(0);
  }

  10% {
    opacity: 0.6;
  }

  90% {
    opacity: 0.2;
  }

  100% {
    opacity: 0;
    transform: translateY(-10vh) scale(1);
  }
}

/* ── Form Toast Notification ──────────────────── */
.form-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  padding: 16px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 420px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.form-toast.show {
  transform: translateY(0);
  opacity: 1;
}

.form-toast-success {
  background: linear-gradient(135deg, #065f46 0%, #064e3b 100%);
  border: 1px solid #10b981;
  color: #d1fae5;
}

.form-toast-error {
  background: linear-gradient(135deg, #7f1d1d 0%, #991b1b 100%);
  border: 1px solid #f87171;
  color: #fecaca;
}

/* ══════════════════════════════════════════════
   Floating WhatsApp/Zalo Buttons
   ══════════════════════════════════════════════ */
.floating-buttons {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9990;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
}

.float-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.4);
}

.float-zalo {
  background: linear-gradient(135deg, #0068ff 0%, #0052cc 100%);
}

.float-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.float-btn svg {
  width: 24px;
  height: 24px;
}

/* Pulse animation on floating buttons */
.float-btn::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  animation: floatPulse 2s ease-in-out infinite;
}

.float-zalo::after {
  box-shadow: 0 0 0 0 rgba(0, 104, 255, 0.4);
}

.float-whatsapp::after {
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
}

@keyframes floatPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(255, 255, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

/* Frontend toast slide-up animation */
@keyframes slideUp {
  from {
    transform: translateX(-50%) translateY(30px);
    opacity: 0;
  }

  to {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}

/* ── Shop Page ──────────────────────────────── */
.shop-filter {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.shop-filter-btn {
  padding: 10px 24px;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  border-radius: 30px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.shop-filter-btn:hover,
.shop-filter-btn.active {
  background: var(--gold);
  color: #000;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #ef4444;
  color: #fff;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-badge.out-of-stock {
  background: #6b7280;
}

.product-img-wrapper {
  height: 260px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
}

.product-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img-wrapper img {
  transform: scale(1.08);
}

.product-info {
  padding: 1.5rem;
}

.product-category {
  font-size: 0.75rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.product-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin: 8px 0;
  color: #fff;
}

.product-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px;
  line-height: 1.5;
}

.product-pricing {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.product-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
}

.product-price-old {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: line-through;
}

.product-price-sale {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ef4444;
}

.btn-product-contact {
  display: block;
  text-align: center;
  padding: 12px;
  background: linear-gradient(135deg, var(--gold), #b8860b);
  color: #000;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-product-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 134, 11, 0.3);
}

/* ── Map Section ────────────────────────────── */
.map-section {
  background: var(--bg-dark);
}

.map-wrapper {
  width: 100%;
  line-height: 0;
}

.map-wrapper iframe {
  width: 100%;
  min-height: 350px;
}

@media (max-width: 768px) {
  .shop-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .product-img-wrapper {
    height: 180px;
  }

  .product-info {
    padding: 1rem;
  }

  .product-name {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .shop-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Map Section ── */
.map-section {
  width: 100%;
  overflow: hidden;
}

.map-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.map-wrapper iframe {
  width: 100%;
  max-width: 100%;
  display: block;
}

/* ── Back to Top Button ── */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--clr-gold);
  background: rgba(8, 8, 12, 0.85);
  color: var(--clr-gold);
  font-size: 1.25rem;
  font-weight: 700;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 20px rgba(201, 169, 110, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--clr-gold);
  color: #08080c;
  box-shadow: 0 4px 24px rgba(201, 169, 110, 0.35);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .back-to-top {
    width: 42px;
    height: 42px;
    bottom: 1.5rem;
    right: 1.5rem;
    font-size: 1.1rem;
  }
}