/*
Theme Name: Eximia Italy Medical Beauty
Theme URI: https://eximia-italy.uz
Description: Premium medical beauty WordPress theme for Eximia Italy clinic. Features Italian-inspired design with luxury gold and dark color scheme.
Author: Eximia Italy
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: eximia-italy
Tags: medical, beauty, clinic, luxury, dark, responsive
*/

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

:root {
  --gold: #C9A96E;
  --gold-light: #E8D5B0;
  --gold-dark: #8B6E3E;
  --dark: #0A0A0A;
  --dark-2: #111111;
  --dark-3: #1A1A1A;
  --dark-4: #242424;
  --white: #FAFAF8;
  --white-2: #F0EFE9;
  --gray: #888880;
  --gray-light: #CCCCCC;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  max-width: 100vw;
}

* {
  box-sizing: border-box;
}

img,
video {
  max-width: 100%;
  height: auto;
}

/* NAV */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 4rem;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
  min-height: 80px;
}

.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.site-logo-img {
  height: 60px;
  width: auto;
  max-width: 250px;
  display: block;
  filter: brightness(1.2);
}

.logo-link {
  display: block;
  line-height: 0;
}

.header-center {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: flex-end;
}

.lang-switcher {
  display: flex;
  gap: 0.5rem;
}

.lang-btn {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  background: transparent;
  color: var(--gray-light);
  border: 1px solid rgba(201, 169, 110, 0.5);
  padding: 0.5rem 0.8rem;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 3px;
}

.lang-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 169, 110, 0.1);
}

.lang-btn.active {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

.main-navigation {
  display: flex;
  align-items: center;
}

.main-navigation ul {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-navigation li {
  list-style: none;
  margin: 0;
}

.main-navigation a {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-light);
  text-decoration: none;
  transition: color 0.3s;
  display: block;
  white-space: nowrap;
}

.main-navigation a:hover {
  color: var(--gold);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.5rem 0.8rem;
  cursor: pointer;
  font-size: 1rem;
  border-radius: 3px;
  transition: all 0.3s;
}

.mobile-menu-toggle:hover {
  background: rgba(201, 169, 110, 0.1);
}

.mobile-menu-toggle[aria-expanded="true"] {
  background: rgba(201, 169, 110, 0.2);
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .site-header {
    padding: 0.8rem 0;
    min-height: 70px;
    position: relative;
  }

  .site-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    flex-shrink: 0;
  }

  .site-logo-img {
    height: 50px;
  }

  .header-center {
    flex: 0;
    display: none !important;
  }

  .header-actions {
    display: flex;
    gap: 1rem;
    width: 100%;
    justify-content: space-between;
    padding: 0 1.5rem;
  }

  .lang-switcher {
    order: 1;
  }

  .mobile-menu-toggle {
    order: 2;
  }

  .main-navigation {
    display: none;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201, 169, 110, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    z-index: 999;
  }

  .main-navigation.is-open {
    display: flex !important;
    flex-direction: column;
    padding: 0.8rem 0;
  }

  .main-navigation.is-open ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
    padding: 0;
    margin: 0;
  }

  .main-navigation.is-open li {
    width: 100%;
    border-bottom: 1px solid rgba(201, 169, 110, 0.1);
    list-style: none;
    margin: 0;
  }

  .main-navigation.is-open li:last-child {
    border-bottom: none;
  }

  .main-navigation.is-open a {
    display: block;
    padding: 0.9rem 1.2rem;
    font-size: 0.75rem;
    width: 100%;
    text-align: left;
    color: var(--gray-light);
    text-decoration: none;
    transition: all 0.3s;
  }

  .main-navigation.is-open a:hover {
    background: rgba(201, 169, 110, 0.1);
    color: var(--gold);
  }

  .mobile-menu-toggle {
    display: block;
  }

  .header-actions {
    gap: 1rem;
  }

  .lang-switcher {
    gap: 0.3rem;
  }

  .lang-btn {
    padding: 0.4rem 0.6rem;
    font-size: 0.6rem;
  }
}

.nav-cta,
.header-cta {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--gold);
  padding: 0.65rem 1.5rem;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  text-decoration: none;
}

.nav-cta:hover,
.header-cta:hover {
  background: var(--gold-light);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0;
  position: relative;
  overflow: hidden;
  padding-top: 70px;
  margin-top: 10px;
}

.hero-left {
  padding: 6rem 4rem 8rem 4rem;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-subtitle {
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 2.5rem;
  max-width: 450px;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.btn-primary {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--dark);
  padding: 1rem 2rem;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: block;
}

.btn-primary:hover {
  background: transparent;
  color: var(--gold);
}

.btn-ghost {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: transparent;
  color: var(--white);
  padding: 1rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: block;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-right {
  position: relative;
  height: 100vh;
  background: linear-gradient(135deg, #1a1208 0%, #0f0e0a 40%, #0A0A0A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 5rem;
}

.hero-video-wrapper {
  position: relative;
  width: 100%;
  max-width: 450px;
  aspect-ratio: 9/16;
}

.hero-video {
  width: 100%;
  height: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
  border: 3px solid rgba(201, 169, 110, 0.5);
  box-shadow: 0 20px 60px rgba(201, 169, 110, 0.15), inset 0 0 40px rgba(201, 169, 110, 0.05), 0 0 30px rgba(201, 169, 110, 0.1);
  opacity: 1;
  transition: all 0.4s ease;
  border-radius: 4px;
  display: block;
}

.hero-video:hover {
  border-color: rgba(201, 169, 110, 0.9);
  box-shadow: 0 40px 100px rgba(201, 169, 110, 0.35), inset 0 0 60px rgba(201, 169, 110, 0.15), 0 0 50px rgba(201, 169, 110, 0.2);
  transform: translateY(-12px);
}

.hero-badge {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 130px;
  height: 130px;
  background: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  z-index: 10;
}

.hero-badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--dark);
  line-height: 1;
}

.hero-badge-txt {
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dark-3);
  text-align: center;
}

.hero-image-placeholder {
  width: 340px;
  height: 480px;
  background: linear-gradient(160deg, rgba(201, 169, 110, 0.12) 0%, rgba(201, 169, 110, 0.03) 100%);
  border: 1px solid rgba(201, 169, 110, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
}

.hero-image-placeholder::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: linear-gradient(to bottom, rgba(201, 169, 110, 0.3), transparent 40%, transparent 60%, rgba(201, 169, 110, 0.15));
}

.cross-icon {
  color: var(--gold);
  font-size: 3rem;
  font-weight: 300;
  font-family: 'Cormorant Garamond', serif;
}

.hero-img-label {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
}

.hero-stats {
  display: flex;
  gap: 3rem;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 90px;
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  color: var(--gray);
  text-transform: uppercase;
  line-height: 1.4;
}

/* MARQUEE */
.marquee-bar {
  background: var(--gold);
  padding: 0.9rem 0;
  overflow: hidden;
}

.marquee-inner {
  display: flex;
  gap: 3rem;
  animation: marquee 18s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.marquee-dot {
  width: 4px;
  height: 4px;
  background: var(--dark);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* SERVICES */
.services {
  padding: 8rem 4rem;
  background: var(--dark-2);
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-eyebrow {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(201, 169, 110, 0.1);
}

.service-card {
  background: var(--dark-2);
  padding: 3rem 2rem;
  transition: background 0.4s;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.service-card:hover {
  background: var(--dark-3);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(201, 169, 110, 0.15);
  margin-bottom: 1.5rem;
  line-height: 1;
}

.service-icon {
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
  display: block;
}

.service-name {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.service-desc {
  font-size: 0.7rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--gray);
}

.service-arrow {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  color: var(--gold);
  font-size: 1.2rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover .service-arrow {
  opacity: 1;
}

/* ABOUT STRIP */
.about-strip {
  padding: 7rem 4rem;
  background: var(--dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-left {
  position: relative;
}

.about-img-block {
  width: 100%;
  max-width: 600px;
  aspect-ratio: 9/16;
  background: linear-gradient(160deg, rgba(201, 169, 110, 0.08) 0%, rgba(10, 10, 10, 0.5) 100%);
  border: 3px solid rgba(201, 169, 110, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(201, 169, 110, 0.15), inset 0 0 40px rgba(201, 169, 110, 0.05), 0 0 30px rgba(201, 169, 110, 0.1);
  transition: all 0.4s ease;
  position: relative;
  border-radius: 4px;
  overflow: visible;
}

.about-img-block:hover {
  border-color: rgba(201, 169, 110, 0.9);
  box-shadow: 0 40px 100px rgba(201, 169, 110, 0.35), inset 0 0 60px rgba(201, 169, 110, 0.15), 0 0 50px rgba(201, 169, 110, 0.2);
  transform: translateY(-12px);
}

.about-img-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 300;
  color: rgba(201, 169, 110, 0.2);
  font-style: italic;
}

.about-video {
  width: 100%;
  height: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
  border: 1px solid rgba(201, 169, 110, 0.2);
}

.about-badge {
  position: absolute;
  bottom: -2.5rem;
  right: -2.5rem;
  width: 140px;
  height: 140px;
  background: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  border-radius: 0;
  z-index: 10;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.about-badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--dark);
  line-height: 1;
}

.about-badge-txt {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dark-3);
  text-align: center;
  line-height: 1.2;
}

.about-right p {
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 2.1;
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.feature-bar {
  width: 2px;
  height: 40px;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.feature-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.feature-sub {
  font-size: 0.65rem;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.6;
}

/* TREATMENTS */
.treatments {
  padding: 8rem 4rem;
  background: var(--dark-3);
}

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(201, 169, 110, 0.08);
  margin-top: 4rem;
}

.treatment-item {
  background: var(--dark-3);
  padding: 2.5rem 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  transition: background 0.3s;
  cursor: pointer;
}

.treatment-item:hover {
  background: var(--dark-4);
}

.treatment-num-box {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 169, 110, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.treatment-num-box span {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--gold);
}

.treatment-name {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.treatment-detail {
  font-size: 0.65rem;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.7;
}

/* TEAM */
.team {
  padding: 8rem 4rem;
  background: var(--dark-2);
}

.team-photo-container {
  margin-top: 4rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.team-photo {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border: 1px solid rgba(201, 169, 110, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.doctor-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.doctor-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(180deg, rgba(201, 169, 110, 0.08) 0%, rgba(201, 169, 110, 0.03) 100%);
  border: 1px solid rgba(201, 169, 110, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  transition: border-color 0.3s;
}

.doctor-card:hover .doctor-photo {
  border-color: rgba(201, 169, 110, 0.4);
}

.doctor-initial {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 300;
  color: rgba(201, 169, 110, 0.25);
  font-style: italic;
}

.doctor-name {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.doctor-spec {
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
}

/* BOOKING */
.booking {
  padding: 8rem 4rem;
  background: var(--dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.booking-left .section-title {
  text-align: left;
}

.booking-left p {
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 2;
  color: var(--gray);
  margin-top: 1.5rem;
}

.contact-items {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
  flex-shrink: 0;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.contact-icon:hover,
.contact-item:hover .contact-icon {
  background: rgba(201, 169, 110, 0.1);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(201, 169, 110, 0.2);
}

.contact-text {
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--gray-light);
}

.contact-text a {
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.contact-text a:hover {
  color: var(--gold);
}

.location-btn {
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.2), rgba(201, 169, 110, 0.1)) !important;
  padding: 1.2rem 2rem !important;
  border: 1px solid var(--gold) !important;
  border-radius: 4px !important;
  font-weight: 500 !important;
  font-size: 1.1rem !important;
  color: var(--gold) !important;
  cursor: pointer;
  transition: all 0.3s ease !important;
}

.location-btn:hover {
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.3), rgba(201, 169, 110, 0.2)) !important;
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201, 169, 110, 0.2) !important;
}

.contact-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
  display: block;
}

.location-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking-form {
  background: var(--dark-2);
  border: 1px solid rgba(201, 169, 110, 0.2);
  padding: 3rem;
}

.form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.booking-phone-number {
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 1rem;
  text-align: center;
}

.form-group label {
  display: block;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 169, 110, 0.2);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  padding: 0.8rem 1rem;
  outline: none;
  transition: border-color 0.3s;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group select option {
  background: var(--dark-3);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.submit-btn {
  width: 100%;
  background: var(--gold);
  color: var(--dark);
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 1.1rem;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 0.5rem;
}

.submit-btn:hover {
  background: var(--gold-light);
}

/* FOOTER */
.site-footer {
  background: var(--dark-2);
  border-top: 1px solid rgba(201, 169, 110, 0.12);
  padding: 4rem;
  margin-top: 0;
  position: relative;
  z-index: 1;
}

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

.footer-logo {
  height: 45px;
  width: auto;
  max-width: 180px;
  margin-bottom: 1.5rem;
}

.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.footer-brand-sub {
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
}

.footer-brand-desc {
  font-size: 0.65rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--gray);
  margin-top: 1.2rem;
}

.footer-col-title {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  list-style: none;
  margin: 0;
}

.footer-links a {
  font-size: 0.68rem;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.3s;
}

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

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-link {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(201, 169, 110, 0.2);
  transition: all 0.3s;
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(201, 169, 110, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 0.62rem;
  color: var(--gray);
}

.footer-italy {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  font-style: italic;
  color: var(--gold);
}

/* POPUP AD - BOOKING FORM STYLE */
.popup-ad-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow-y: auto;
  padding: 20px;
}

.popup-ad-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup-ad {
  background: var(--dark-2);
  color: var(--white);
  padding: 2.5rem;
  position: relative;
  width: 90%;
  max-width: 500px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  border: 1px solid rgba(201, 169, 110, 0.2);
}

.popup-ad-overlay.active .popup-ad {
  transform: translateY(0);
  opacity: 1;
}

.popup-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  font-size: 1.8rem;
  color: var(--gray);
  cursor: pointer;
  transition: color 0.3s;
  line-height: 1;
}

.popup-close:hover {
  color: var(--gold);
}

.popup-content {
  text-align: center;
  position: relative;
  z-index: 10;
}

.popup-celebration {
  margin-bottom: 1.5rem;
  color: var(--gold);
  font-size: 1.8rem;
  font-weight: 700;
}

.celebration-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  line-height: 1.1;
}

.popup-header {
  margin-bottom: 2rem;
}

.popup-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.popup-subtitle {
  font-size: 0.8rem;
  color: var(--white);
  letter-spacing: 0.05em;
}

.popup-form {
  margin-top: 1.5rem;
}

.popup-form .form-group {
  margin-bottom: 1rem;
  text-align: left;
}

.popup-form label {
  font-size: 0.7rem;
  color: var(--gray);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  display: block;
}

.popup-form input[type="text"],
.popup-form input[type="tel"] {
  width: 100%;
  padding: 0.9rem 1rem;
  background: var(--dark-3);
  border: 1px solid rgba(201, 169, 110, 0.3);
  color: var(--white);
  font-size: 1rem;
  border-radius: 4px;
  outline: none;
}

.popup-form input[type="text"]::placeholder,
.popup-form input[type="tel"]::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.popup-form input[type="text"]:focus,
.popup-form input[type="tel"]:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(201, 169, 110, 0.3);
}

.phone-input-wrapper {
  display: flex;
  align-items: center;
  border: 1px solid rgba(201, 169, 110, 0.3);
  background: var(--dark-3);
  border-radius: 4px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.phone-input-wrapper:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(201, 169, 110, 0.3);
}

.phone-prefix {
  padding: 0.9rem 0.8rem;
  color: var(--gold);
  background: var(--dark-4);
  border-right: 1px solid rgba(201, 169, 110, 0.2);
  font-size: 1rem;
  height: 100%;
  display: flex;
  align-items: center;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.phone-input-wrapper input {
  border: none;
  background: transparent;
  flex-grow: 1;
  padding-left: 0.8rem;
  color: var(--white);
  border-radius: 0 4px 4px 0;
}

.popup-submit-btn {
  width: 100%;
  padding: 1rem 1.5rem;
  background: var(--gold);
  color: var(--dark);
  border: none;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  margin-top: 1.5rem;
}

.popup-submit-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.popup-timer-section {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.popup-timer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--dark-3);
  padding: 0.7rem 1.2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  color: var(--white);
  border: 1px solid rgba(201, 169, 110, 0.3);
}

.popup-timer span {
  color: var(--white);
}

.popup-timer .timer-icon {
  font-size: 1.2rem;
  color: var(--gold);
}

.popup-timer strong {
  color: var(--gold);
  font-weight: 600;
}

.popup-timer strong.warning {
  color: #ff4d4d; /* Red color for warning */
  animation: pulse-red 1s infinite;
}

@keyframes pulse-red {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.8; }
  100% { transform: scale(1); opacity: 1; }
}

.popup-spots {
  background: var(--dark-3);
  padding: 0.7rem 1.2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  color: var(--white);
  border: 1px solid rgba(201, 169, 110, 0.3);
}

.popup-spots,
.popup-spots span {
  color: var(--white);
}

.popup-spots strong {
  color: var(--gold);
  font-weight: 600;
}

/* CONFETTI EFFECT */
.confetti-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.confetti {
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: var(--gold);
  opacity: 0;
  animation: confetti-fall 3s ease-out infinite;
}

.confetti:nth-child(2) {
  left: 10%;
  background-color: var(--white);
  animation-delay: 0.5s;
}

.confetti:nth-child(3) {
  left: 30%;
  background-color: #ff8c00; /* Dark Orange */
  animation-delay: 1s;
}

.confetti:nth-child(4) {
  left: 50%;
  background-color: #ffd700; /* Gold */
  animation-delay: 1.5s;
}

.confetti:nth-child(5) {
  left: 70%;
  background-color: #da70d6; /* Orchid */
  animation-delay: 2s;
}

@keyframes confetti-fall {
  0% {
    transform: translateY(-100px) rotateZ(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(600px) rotateZ(360deg);
    opacity: 0;
  }
}

/* LASER AD HOOK DESIGN */
/* LASER POPUP AD - COMPACT & RESPONSIVE */
.laser-ad {
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  border: 2px solid var(--gold);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.7);
  max-width: 420px;
  width: 90%;
  animation: popupSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.laser-content {
  padding: 1.8rem;
  position: relative;
  z-index: 2;
}

/* Badge */
.laser-badge-top {
  display: inline-block;
  background: rgba(201, 169, 110, 0.15);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  animation: fadeIn 0.6s ease-out 0.1s both;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Title */
.laser-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 0.3rem;
  line-height: 1.1;
  animation: fadeIn 0.6s ease-out 0.15s both;
}

.laser-subtitle {
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 400;
  margin-bottom: 1.2rem;
  animation: fadeIn 0.6s ease-out 0.2s both;
}

/* Compact offers */
.laser-offers-compact {
  background: rgba(201, 169, 110, 0.08);
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  animation: fadeIn 0.6s ease-out 0.25s both;
}

.offer-compact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

.offer-compact:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.offer-compact:first-child {
  padding-top: 0;
}

.offer-price-discount {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.2rem;
}

.price-original {
  font-size: 0.75rem;
  color: #888880 !important;
  text-decoration: line-through;
  font-weight: 400;
}

.price-final {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold) !important;
}

.offer-label {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
}

.offer-price-compact {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
}

/* Form styling */
.laser-popup-form {
  animation: fadeIn 0.6s ease-out 0.3s both;
}

.laser-popup-form .form-group {
  margin-bottom: 0.9rem;
}

.laser-popup-form input {
  width: 100%;
  background: var(--dark-4);
  border: 1px solid rgba(201, 169, 110, 0.3);
  color: var(--white);
  font-size: 0.9rem;
  padding: 0.85rem 1rem;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.3s ease;
  outline: none;
}

.laser-popup-form input::placeholder {
  color: var(--gold);
  opacity: 0.8;
}

.laser-popup-form input:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(201, 169, 110, 0.2);
}

.phone-input-wrapper {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.phone-input-wrapper:focus-within {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(201, 169, 110, 0.2);
}

.phone-prefix {
  padding: 0.85rem 0.8rem;
  color: var(--gold);
  background: rgba(201, 169, 110, 0.1);
  border-right: 1px solid rgba(201, 169, 110, 0.2);
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
}

.phone-input-wrapper input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0.85rem 1rem;
  color: var(--white);
}

/* Submit button */
.laser-submit-btn {
  width: 100%;
  background: var(--gold);
  color: var(--dark);
  border: none;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(201, 169, 110, 0.25);
  margin-bottom: 0.8rem;
  animation: fadeIn 0.6s ease-out 0.35s both;
}

.laser-submit-btn:hover {
  background: #E8D5B0;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 169, 110, 0.35);
}

.laser-submit-btn:active {
  transform: translateY(0);
}

/* Form note */
.form-note {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.05em;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .laser-ad {
    max-width: 95%;
    width: 100%;
  }

  .laser-content {
    padding: 1.5rem;
  }

  .laser-title {
    font-size: 1.8rem;
  }

  .laser-subtitle {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }

  .offer-label {
    font-size: 0.8rem;
  }

  .offer-price-compact {
    font-size: 0.85rem;
  }

  .laser-submit-btn {
    padding: 0.9rem;
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .laser-ad {
    max-width: 95%;
    border-radius: 10px;
  }

  .laser-content {
    padding: 1.2rem;
  }

  .laser-badge-top {
    font-size: 0.6rem;
    padding: 0.4rem 0.8rem;
    margin-bottom: 0.8rem;
  }

  .laser-title {
    font-size: 1.6rem;
    margin-bottom: 0.2rem;
  }

  .laser-subtitle {
    font-size: 0.8rem;
    margin-bottom: 0.9rem;
  }

  .laser-offers-compact {
    padding: 0.8rem;
    margin-bottom: 1.2rem;
  }

  .offer-compact {
    padding: 0.6rem 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }

  .offer-label {
    font-size: 0.75rem;
  }

  .offer-price-compact {
    font-size: 0.8rem;
    align-self: flex-start;
  }

  .laser-popup-form .form-group {
    margin-bottom: 0.8rem;
  }

  .laser-popup-form input {
    padding: 0.8rem 0.9rem;
    font-size: 0.85rem;
  }

  .phone-prefix {
    padding: 0.8rem 0.7rem;
    font-size: 0.85rem;
  }

  .laser-submit-btn {
    padding: 0.85rem;
    font-size: 0.7rem;
    margin-bottom: 0.6rem;
  }

  .form-note {
    font-size: 0.7rem;
  }
}

/* Responsive adjustments for popups */
@media (max-width: 500px) {
  .popup-ad {
    padding: 1.5rem;
    max-width: 95%;
  }

  .popup-title {
    font-size: 1.5rem;
  }

  .celebration-text {
    font-size: 1.8rem;
  }

  .popup-timer-section {
    flex-direction: column;
    gap: 1rem;
  }
}


/* GOLD LINE ACCENT */
.gold-rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem auto;
}

.gold-rule.left {
  margin-left: 0;
}

/* RESULTS SECTION */
.results {
  padding: 6rem 4rem;
  background: var(--dark-2);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.result-card {
  background: var(--dark-3);
  border: 1px solid rgba(201, 169, 110, 0.1);
  overflow: hidden;
  transition: all 0.4s;
}

.result-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
}

.result-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  max-height: 400px;
}

.result-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

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

.result-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(10, 10, 10, 0.8) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.result-badge {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(10, 10, 10, 0.8);
  padding: 0.5rem 1rem;
  border: 1px solid var(--gold);
}

.result-info {
  padding: 1.5rem;
}

.result-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.result-desc {
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  color: var(--gray);
}

/* WordPress specific classes */
.wp-block-image {
  margin: 2rem 0;
}

.wp-block-quote {
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
  margin: 2rem 0;
  font-style: italic;
}

.wp-block-button .wp-block-button__link {
  background: var(--gold);
  color: var(--dark);
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  font-weight: 600;
}

/* PAGE TEMPLATES */
.page-hero {
  padding: 10rem 4rem 4rem 4rem;
  background: var(--dark-2);
  text-align: center;
}

.page-eyebrow {
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
}

.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--white);
  margin: 1rem 0;
}

.page-content,
.pricing-section,
.certificates-section,
.reviews-section,
.contact-page,
.team-page {
  padding: 4rem;
  background: var(--dark);
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--white-2);
}

.content-wrapper h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  margin: 2rem 0 1rem;
  color: var(--gold);
}

.content-wrapper p {
  margin-bottom: 1.5rem;
}

/* PRICING */
.pricing-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.price-category {
  margin-bottom: 3rem;
}

.price-cat-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.price-list {
  background: var(--dark-2);
  padding: 2rem;
  border: 1px solid rgba(201, 169, 110, 0.1);
}

.price-item {
  display: flex;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(201, 169, 110, 0.05);
}

.price-item:last-child {
  border-bottom: none;
}

.price-name {
  font-size: 0.85rem;
  color: var(--white);
}

.price-dots {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 169, 110, 0.2) 50%, transparent);
  margin: 0 1rem;
}

.price-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
}

/* CERTIFICATES */
.certificates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.certificate-card {
  aspect-ratio: 3/4;
  background: var(--dark-2);
  border: 1px solid rgba(201, 169, 110, 0.1);
}

.certificate-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.cert-icon {
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.3;
}

.cert-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
}

/* REVIEWS */
.testimonials {
  padding: 6rem 4rem;
  background: var(--dark);
}

.testimonials-carousel {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonial-video-container {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-video-slide {
  min-width: 100%;
  padding: 0 1rem;
  position: relative;
}

.testimonial-video-wrapper {
  position: relative;
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
  cursor: pointer;
  aspect-ratio: 9/16;
  overflow: hidden;
  border-radius: 8px;
  transition: transform 0.4s ease;
  border: 3px solid rgba(201, 169, 110, 0.5);
  box-shadow: 0 20px 60px rgba(201, 169, 110, 0.15), inset 0 0 40px rgba(201, 169, 110, 0.05), 0 0 30px rgba(201, 169, 110, 0.1);
}

.testimonial-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  border: 2px solid rgba(201, 169, 110, 0.4);
  box-shadow: 0 15px 50px rgba(201, 169, 110, 0.15), inset 0 0 30px rgba(201, 169, 110, 0.05);
  background: #000;
  transition: all 0.4s ease;
}

.testimonial-video-wrapper:hover .testimonial-video {
  border-color: rgba(201, 169, 110, 0.9);
  box-shadow: 0 25px 70px rgba(201, 169, 110, 0.3), inset 0 0 40px rgba(201, 169, 110, 0.1);
}

.testimonial-video-wrapper:hover {
  transform: translateY(-15px);
}

.video-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 10, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.3s;
  pointer-events: all;
  z-index: 10;
}

.video-play-overlay.hidden {
  opacity: 0;
}

.play-button {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gold);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--dark);
  cursor: pointer;
  transition: all 0.3s;
  pointer-events: all;
}

.play-button:hover {
  transform: scale(1.1);
  background: var(--gold-light);
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.carousel-btn {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s;
}

.carousel-btn:hover {
  background: var(--gold);
  color: var(--dark);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.carousel-dot.active {
  background: var(--gold);
  width: 30px;
  border-radius: 5px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.review-card {
  background: var(--dark-2);
  padding: 2rem;
  border: 1px solid rgba(201, 169, 110, 0.1);
}

.review-header {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.review-avatar {
  width: 50px;
  height: 50px;
  background: var(--gold);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 50%;
}

.review-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
}

.review-service {
  font-size: 0.7rem;
  color: var(--gray);
  margin-top: 0.3rem;
}

.review-rating {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.review-text {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--white-2);
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--gold);
}

.contact-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.5rem;
}

.contact-value {
  font-size: 0.9rem;
  color: var(--white);
  text-decoration: none;
}

.contact-value:hover {
  color: var(--gold);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-link {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  padding: 0.7rem 1.5rem;
  border: 1px solid rgba(201, 169, 110, 0.2);
  transition: all 0.3s;
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.contact-map {
  aspect-ratio: 1;
  background: var(--dark-2);
  border: 1px solid rgba(201, 169, 110, 0.1);
}

.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.map-icon {
  font-size: 3rem;
}

.map-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
}

/* DOCTORS PAGE */
.doctor-card-full {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  background: var(--dark-2);
  padding: 2rem;
  border: 1px solid rgba(201, 169, 110, 0.1);
  margin-bottom: 2rem;
}

.doctor-photo-large {
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, rgba(201, 169, 110, 0.08), rgba(10, 10, 10, 0.5));
  border: 1px solid rgba(201, 169, 110, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.doctor-initial {
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem;
  font-weight: 300;
  color: rgba(201, 169, 110, 0.3);
}

.doctor-exp {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin: 0.5rem 0 1rem;
}

.doctor-desc {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--white-2);
}

/* CTA SECTION */
.cta-section {
  padding: 6rem 4rem;
  background: var(--dark-2);
  text-align: center;
}

.cta-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 2rem;
}


/* ==========================================================================
   RESPONSIVE DESIGN - REFACTORED & CLEANED
   ========================================================================== */

/* TABLET (1024px and down) */
@media (max-width: 1024px) {
  .site-header {
    padding: 1rem 2rem;
  }

  .hero-left {
    padding: 6rem 2rem;
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .services {
    padding: 6rem 2rem;
  }

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

  .about-strip {
    padding: 6rem 2rem;
    gap: 3rem;
  }

  .treatments {
    padding: 6rem 2rem;
  }

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

  .team {
    padding: 6rem 2rem;
  }

  .results {
    padding: 6rem 2rem;
  }

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

  .testimonials {
    padding: 6rem 2rem;
  }

  .booking {
    padding: 6rem 2rem;
    gap: 3rem;
  }

  .site-footer {
    padding: 4rem 2rem;
  }

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

/* MOBILE (768px and down) */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
  }

  .site-header {
    padding: 0.8rem 1.2rem;
    min-height: 70px;
  }

  .site-logo-img {
    height: 45px;
    max-width: 150px;
  }

  .header-center {
    display: none;
  }

  .header-actions {
    flex: 1;
    justify-content: flex-end;
    gap: 1rem;
  }

  .mobile-menu-toggle {
    display: block;
    order: 2;
    margin-left: auto;
  }

  .lang-switcher {
    order: 1;
  }

  .lang-btn {
    padding: 0.4rem 0.6rem;
    font-size: 0.6rem;
    min-width: 40px;
  }

  /* Mobile Nav Overlay */
  .main-navigation {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw;
    background: var(--dark-2);
    border-bottom: 1px solid var(--gold-dark);
    padding: 2rem 1.5rem;
    z-index: 1000;
  }

  .main-navigation.is-open {
    display: block;
  }

  .main-navigation ul {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .main-navigation a {
    font-size: 0.9rem;
    padding: 0.5rem 0;
    width: 100%;
  }

  /* Hero Section */
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 80px;
    text-align: center;
  }

  .hero-left {
    padding: 4rem 1.5rem 2rem;
    order: 1;
  }

  .hero-eyebrow {
    justify-content: center;
  }

  .hero-eyebrow::before {
    display: none;
  }

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

  .hero-subtitle {
    margin: 0 auto 2.5rem;
    font-size: 0.9rem;
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
    flex-direction: column;
    width: 100%;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
    text-align: center;
    margin-bottom: 0.5rem;
  }

  .hero-stats {
    justify-content: center;
    gap: 2rem;
  }

  .hero-right {
    order: 2;
    height: 50vh;
    padding: 2rem;
    min-height: 400px;
  }

  .hero-video-wrapper {
    max-width: 280px;
    height: auto;
    aspect-ratio: 9/16;
  }

  /* Sections Spacing */
  .services,
  .about-strip,
  .treatments,
  .team,
  .results,
  .testimonials,
  .booking,
  .site-footer {
    padding: 4rem 1.5rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  /* Grids to Single Column */
  .services-grid,
  .treatments-grid,
  .results-grid,
  .footer-top {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* About Strip */
  .about-strip {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 0;
  }

  .about-left {
    margin-bottom: 3rem;
  }

  .about-right {
    text-align: center;
  }

  .about-right .section-title,
  .about-right .section-eyebrow {
    text-align: center;
  }

  .gold-rule.left {
    margin: 1.5rem auto;
  }

  .about-img-block {
    max-width: 300px;
    height: auto;
    aspect-ratio: 9/16;
  }

  .about-badge {
    width: 100px;
    height: 100px;
    right: -1rem;
    bottom: -1rem;
  }

  .about-badge-num {
    font-size: 2.5rem;
  }

  .about-features {
    grid-template-columns: 1fr;
    text-align: left;
  }

  /* Booking Form */
  .booking {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .booking-left {
    order: 1;
  }

  .booking-form {
    order: 2;
    padding: 2rem 1.5rem;
  }

  .contact-items {
    align-items: center;
  }

  /* Footer */
  .footer-top {
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    padding-bottom: 2rem;
  }
}

/* SMALL MOBILE (480px and down) */
@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .hero-right {
    height: 40vh;
    min-height: 320px;
  }

  .hero-video-wrapper {
    max-width: 240px;
  }

  .about-img-block {
    max-width: 260px;
  }

  .testimonial-video-wrapper {
    max-width: 100%;
  }

  .site-header {
    padding: 0.8rem 1rem;
  }

  .services,
  .about-strip,
  .treatments,
  .team,
  .results,
  .testimonials,
  .booking {
    padding: 3rem 1rem;
  }

  .stat-num {
    font-size: 1.8rem;
  }

  .marquee-item {
    font-size: 0.7rem;
    gap: 1rem;
  }

  .about-badge {
    width: 65px !important;
    height: 65px !important;
    bottom: -0.8rem !important;
    gap: 0.2rem !important;
  }

  .about-badge-num {
    font-size: 1.2rem !important;
  }

  .about-badge-txt {
    font-size: 0.3rem !important;
    line-height: 1;
    word-break: break-word;
    overflow: hidden;
  }
}

/* FIX TESTIMONIALS MOBILE */
@media (max-width: 768px) {
  .testimonial-video-wrapper {
    max-width: 280px;
    height: auto;
    aspect-ratio: 9/16;
  }
}

/* PREVENT OVERFLOW ON ALL SECTIONS */
section,
div,
header,
footer {
  max-width: 100% !important;
  box-sizing: border-box !important;
}

/* FIX HORIZONTAL SCROLLING HACK */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}


/* FIX HEADER MOBILE RESPONSIVENESS */
@media (max-width: 768px) {
  .site-header {
    padding: 0.8rem 1rem !important;
    min-height: 60px !important;
    flex-wrap: nowrap !important;
  }
  
  .site-logo {
    flex-shrink: 0 !important;
    max-width: 50% !important;
  }
  
  .site-logo-img {
    height: 40px !important;
    width: auto !important;
    max-width: 150px !important;
  }
  
  .header-actions {
    flex-shrink: 0 !important;
    gap: 0.5rem !important;
  }
  
  .lang-btn {
    padding: 0.4rem 0.6rem !important;
    font-size: 0.6rem !important;
    min-width: 35px !important;
  }
  
  .mobile-menu-toggle {
    padding: 0.4rem 0.6rem !important;
    font-size: 1.2rem !important;
    min-width: 40px !important;
    min-height: 40px !important;
  }
}

@media (max-width: 480px) {
  .site-header {
    padding: 0.6rem 0.8rem !important;
    min-height: 55px !important;
  }
  
  .site-logo-img {
    height: 35px !important;
    max-width: 130px !important;
  }
  
  .lang-btn {
    padding: 0.3rem 0.5rem !important;
    font-size: 0.55rem !important;
    min-width: 32px !important;
  }
  
  .mobile-menu-toggle {
    padding: 0.3rem 0.5rem !important;
    min-width: 38px !important;
    min-height: 38px !important;
  }
}


/* ========================================
   COMPLETE MOBILE RESPONSIVE FIX
   ======================================== */

@media (max-width: 768px) {
  /* Prevent horizontal scroll */
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
  }
  
  /* All sections proper padding */
  .services,
  .about-strip,
  .treatments,
  .team,
  .results,
  .testimonials,
  .booking {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  
  /* All images and videos fit screen */
  img, video {
    max-width: 100% !important;
    height: auto !important;
  }
  
  .hero-video,
  .about-video,
  .testimonial-video {
    object-fit: cover !important;
  }
  
  /* Text wrapping */
  h1, h2, h3, h4, h5, h6, p, a, span, div {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
  }
  
  /* Buttons full width */
  .btn-primary,
  .btn-ghost {
    width: 100% !important;
    padding: 1.2rem 2rem !important;
  }
}

@media (max-width: 480px) {
  .services,
  .about-strip,
  .treatments,
  .team,
  .results,
  .testimonials,
  .booking {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}


/* Fix contact link colors */
.contact-item a {
  color: var(--white) !important;
  text-decoration: none !important;
}

.contact-item a:hover {
  color: var(--gold) !important;
}

.footer-links a {
  color: var(--gray-light) !important;
  text-decoration: none !important;
}

.footer-links a:hover {
  color: var(--gold) !important;
}

/* Location button style */
.contact-item a[href*="yandex"],
.contact-item a[href*="maps"],
.contact-item a[href*="navi"] {
  display: inline-block !important;
  background: var(--gold) !important;
  color: var(--dark) !important;
  padding: 0.8rem 1.5rem !important;
  border-radius: 4px !important;
  margin-top: 0.5rem !important;
  transition: all 0.3s !important;
  font-weight: 500 !important;
}

.contact-item a[href*="yandex"]:hover,
.contact-item a[href*="maps"]:hover,
.contact-item a[href*="navi"]:hover {
  background: var(--gold-light) !important;
  color: var(--dark) !important;
}


/* Dropdown menu styles */
.nav-item-with-dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201,169,110,0.3);
  min-width: 220px;
  padding: 0.5rem 0;
  list-style: none;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.nav-item-with-dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  margin: 0;
  padding: 0;
}

.dropdown-menu a {
  display: block;
  padding: 0.8rem 1.5rem;
  color: var(--gray-light) !important;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 0.65rem !important;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(201,169,110,0.1);
}

.dropdown-menu li:last-child a {
  border-bottom: none;
}

.dropdown-menu a:hover {
  background: rgba(201,169,110,0.15);
  color: var(--gold) !important;
  padding-left: 2rem;
}

@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    display: none;
    border: none;
    padding-left: 1rem;
    margin-top: 0;
    transform: none;
    box-shadow: none;
  }
  
  .nav-item-with-dropdown.open .dropdown-menu {
    display: block;
  }
  
  .dropdown-menu a {
    padding: 0.6rem 1rem;
    font-size: 0.7rem !important;
  }
}


/* Service detail pages */
.page-hero {
  padding: 10rem 4rem 4rem;
  background: var(--dark-2);
  text-align: center;
  border-bottom: 1px solid rgba(201,169,110,0.2);
}

.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.page-subtitle {
  font-size: 1rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

.service-detail {
  padding: 6rem 4rem;
  background: var(--dark);
}

.service-content {
  max-width: 900px;
  margin: 0 auto;
}

.service-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  color: var(--gold);
  margin: 3rem 0 1.5rem;
}

.service-content h3 {
  font-size: 1.5rem;
  color: var(--white);
  margin: 2rem 0 1rem;
}

.service-content p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.procedures-list {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.procedure-item {
  background: var(--dark-2);
  padding: 2rem;
  border: 1px solid rgba(201,169,110,0.2);
}

.procedure-item h3 {
  color: var(--gold);
  margin-top: 0;
}

.procedure-item ul {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.procedure-item li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--gray-light);
  font-size: 0.85rem;
}

.procedure-item li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.process-steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.process-steps li {
  counter-increment: step;
  padding: 1.5rem;
  padding-left: 4rem;
  position: relative;
  background: var(--dark-2);
  margin-bottom: 1rem;
  border-left: 3px solid var(--gold);
  color: var(--gray-light);
  font-size: 0.9rem;
  line-height: 1.7;
}

.process-steps li:before {
  content: counter(step);
  position: absolute;
  left: 1rem;
  top: 1.5rem;
  width: 2rem;
  height: 2rem;
  background: var(--gold);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.equipment-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

.equipment-item {
  background: var(--dark-2);
  padding: 2rem;
  border: 1px solid rgba(201,169,110,0.2);
}

.equipment-item h4 {
  color: var(--gold);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.equipment-item ul {
  list-style: none;
  padding: 0;
}

.equipment-item li {
  padding: 0.5rem 0;
  color: var(--gray-light);
  font-size: 0.85rem;
}

.cta-block {
  background: var(--dark-2);
  padding: 3rem;
  text-align: center;
  margin: 4rem 0 2rem;
  border: 1px solid rgba(201,169,110,0.3);
}

.cta-block h3 {
  color: var(--gold);
  margin-top: 0;
}

.cta-block p {
  margin-bottom: 2rem;
}

.cta-block .btn-primary {
  display: inline-block !important;
  font-size: 0.65rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  background: var(--gold) !important;
  color: var(--dark) !important;
  padding: 1rem 2rem !important;
  border: 1px solid var(--gold) !important;
  cursor: pointer !important;
  transition: all 0.3s !important;
  text-decoration: none !important;
}

.cta-block .btn-primary:hover {
  background: transparent !important;
  color: var(--gold) !important;
}

@media (max-width: 768px) {
  .page-hero {
    padding: 8rem 1.5rem 3rem;
  }
  
  .page-title {
    font-size: 2.5rem;
  }
  
  .page-subtitle {
    font-size: 0.9rem;
  }
  
  .service-detail {
    padding: 3rem 1.5rem;
  }
  
  .equipment-list {
    grid-template-columns: 1fr;
  }
  
  .cta-block {
    padding: 2rem 1.5rem;
  }
}


/* Fix testimonial video size */
.testimonial-video-wrapper {
  width: 100% !important;
  max-width: 400px !important;
  margin: 0 auto !important;
  aspect-ratio: 9/16 !important;
  height: auto !important;
}

.testimonial-video {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

@media (max-width: 768px) {
  .testimonial-video-wrapper {
    max-width: 280px !important;
  }
}


/* Force button styling on all pages */
button[type="submit"],
input[type="submit"],
.btn-primary,
a.btn-primary {
  display: inline-block !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 0.65rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  background: var(--gold) !important;
  color: var(--dark) !important;
  padding: 1rem 2rem !important;
  border: 1px solid var(--gold) !important;
  cursor: pointer !important;
  transition: all 0.3s !important;
  text-decoration: none !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  border-radius: 0 !important;
}

button[type="submit"]:hover,
input[type="submit"]:hover,
.btn-primary:hover,
a.btn-primary:hover {
  background: transparent !important;
  color: var(--gold) !important;
  border: 1px solid var(--gold) !important;
}


/* Make service cards clickable */
a.service-card {
  text-decoration: none !important;
  color: inherit !important;
  display: block !important;
  cursor: pointer !important;
}

a.service-card:hover {
  transform: translateY(-5px) !important;
}


/* Fix team photo size */
.team-photo-container {
  width: 100% !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
}

.team-photo {
  width: 100% !important;
  height: auto !important;
  max-height: 600px !important;
  object-fit: cover !important;
  object-position: center !important;
}

@media (max-width: 768px) {
  .team-photo {
    max-height: 400px !important;
  }
}


/* Fix footer logo mobile */
@media (max-width: 768px) {
  .footer-logo {
    height: 50px !important;
    width: auto !important;
    max-width: 200px !important;
    margin: 0 auto 1rem !important;
    display: block !important;
  }
}

@media (max-width: 480px) {
  .footer-logo {
    height: 40px !important;
    max-width: 150px !important;
  }
}


/* COMPLETE FOOTER MOBILE FIX */
@media (max-width: 768px) {
  .site-footer {
    padding: 2rem 1rem 1rem !important;
  }
  
  .footer-top {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    text-align: center !important;
  }
  
  .footer-top > div {
    width: 100% !important;
    max-width: 100% !important;
  }
  
  .footer-logo {
    height: 50px !important;
    width: auto !important;
    max-width: 180px !important;
    margin: 0 auto 1rem !important;
    display: block !important;
  }
  
  .footer-brand-desc {
    font-size: 0.8rem !important;
    line-height: 1.6 !important;
    margin: 0 auto !important;
    max-width: 100% !important;
    word-wrap: break-word !important;
  }
  
  .footer-col-title {
    font-size: 0.9rem !important;
    margin-bottom: 1rem !important;
    font-weight: 600 !important;
  }
  
  .footer-links {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  
  .footer-links li {
    margin-bottom: 0.6rem !important;
  }
  
  .footer-links a {
    font-size: 0.8rem !important;
    line-height: 1.5 !important;
    word-wrap: break-word !important;
    display: inline-block !important;
    max-width: 100% !important;
  }
  
  .footer-social {
    display: flex !important;
    justify-content: center !important;
    gap: 0.8rem !important;
    margin-top: 1rem !important;
    flex-wrap: wrap !important;
  }
  
  .social-link {
    font-size: 0.75rem !important;
    padding: 0.5rem 1rem !important;
    display: inline-block !important;
  }
  
  .footer-bottom {
    flex-direction: column !important;
    gap: 0.5rem !important;
    text-align: center !important;
    margin-top: 2rem !important;
    padding-top: 1.5rem !important;
  }
  
  .footer-copy,
  .footer-italy {
    font-size: 0.7rem !important;
    display: block !important;
    word-wrap: break-word !important;
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding: 1.5rem 0.8rem 1rem !important;
  }
  
  .footer-logo {
    height: 40px !important;
    max-width: 150px !important;
  }
  
  .footer-brand-desc {
    font-size: 0.75rem !important;
  }
  
  .footer-col-title {
    font-size: 0.85rem !important;
  }
  
  .footer-links a {
    font-size: 0.75rem !important;
  }
  
  .social-link {
    font-size: 0.7rem !important;
    padding: 0.4rem 0.8rem !important;
  }
  
  .footer-copy,
  .footer-italy {
    font-size: 0.65rem !important;
  }
}


/* Location button in footer */
.footer-links a[href*="yandex"],
.footer-links a[href*="maps"],
.footer-links a[href*="navi"] {
  display: inline-block !important;
  background: var(--gold) !important;
  color: var(--dark) !important;
  padding: 0.7rem 1.5rem !important;
  border-radius: 4px !important;
  margin-top: 0.5rem !important;
  transition: all 0.3s !important;
  font-weight: 500 !important;
  text-decoration: none !important;
}

.footer-links a[href*="yandex"]:hover,
.footer-links a[href*="maps"]:hover,
.footer-links a[href*="navi"]:hover {
  background: var(--gold-light) !important;
  color: var(--dark) !important;
  transform: translateY(-2px) !important;
}

@media (max-width: 768px) {
  .footer-links a[href*="yandex"],
  .footer-links a[href*="maps"],
  .footer-links a[href*="navi"] {
    padding: 0.6rem 1.2rem !important;
    font-size: 0.75rem !important;
  }
}


/* MOBILE MENU FIX - FORCE DISPLAY */
@media (max-width: 768px) {
  .main-navigation {
    display: none !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    background: rgba(10,10,10,0.98) !important;
    backdrop-filter: blur(12px) !important;
    border-bottom: 1px solid rgba(201,169,110,0.2) !important;
    z-index: 999 !important;
  }
  
  .main-navigation.is-open {
    display: block !important;
  }
  
  .main-navigation ul {
    flex-direction: column !important;
    gap: 0 !important;
    padding: 1rem 0 !important;
  }
  
  .main-navigation li {
    width: 100% !important;
    border-bottom: 1px solid rgba(201,169,110,0.1) !important;
  }
  
  .main-navigation li:last-child {
    border-bottom: none !important;
  }
  
  .main-navigation a {
    display: block !important;
    padding: 1rem 1.5rem !important;
    font-size: 0.75rem !important;
    width: 100% !important;
    text-align: left !important;
  }
  
  .mobile-menu-toggle {
    display: block !important;
  }
}


/* FIX MOBILE LAYOUT ISSUES */
@media (max-width: 768px) {
  /* Fix booking form width */
  .booking {
    padding: 2rem 1rem !important;
  }
  
  .booking-form {
    max-width: 100% !important;
    padding: 1.5rem 1rem !important;
    margin: 0 !important;
  }
  
  .booking-left {
    padding: 0 1rem !important;
  }
  
  /* Fix service card images */
  .service-card img {
    max-width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
  }
  
  /* Fix hero section */
  .hero-left {
    padding: 6rem 1rem 2rem !important;
  }
  
  .hero-title {
    font-size: 2.5rem !important;
    margin-bottom: 1rem !important;
  }
  
  .hero-subtitle {
    font-size: 0.85rem !important;
    margin-bottom: 1.5rem !important;
  }
  
  .hero-actions {
    margin-bottom: 2rem !important;
  }
  
  /* Fix form inputs */
  .cf7-booking-form input[type="text"],
  .cf7-booking-form input[type="tel"] {
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  /* Fix footer columns */
  .footer-top > div {
    padding: 0 1rem !important;
  }
}

@media (max-width: 480px) {
  .booking {
    padding: 1.5rem 0.5rem !important;
  }
  
  .booking-form {
    padding: 1rem 0.8rem !important;
  }
  
  .hero-left {
    padding: 5rem 0.8rem 1.5rem !important;
  }
  
  .hero-title {
    font-size: 2rem !important;
  }
}


/* ==========================================================================
   COMPREHENSIVE MOBILE RESPONSIVE OVERHAUL
   Consolidates all mobile styles. These override previous declarations.
   ========================================================================== */

/* ──────────────────────────────────────────────
   SKIP LINK
   ────────────────────────────────────────────── */
.skip-to-main {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--gold);
  color: var(--dark);
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 9999;
  border-radius: 0 0 4px 4px;
  text-decoration: none;
}
.skip-to-main:focus {
  top: 0;
}

/* ──────────────────────────────────────────────
   BASE: prevent any horizontal overflow
   ────────────────────────────────────────────── */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

/* ──────────────────────────────────────────────
   TABLET  ≤ 1100px
   ────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .main-navigation ul {
    gap: 1.5rem;
  }

  .hero-left {
    padding: 5rem 2.5rem 5rem;
  }

  .hero-title {
    font-size: 3.2rem;
  }

  .services {
    padding: 6rem 2rem;
  }

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

  .about-strip {
    padding: 6rem 2rem;
    gap: 3rem;
  }

  .treatments {
    padding: 6rem 2rem;
  }

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

  .team { padding: 6rem 2rem; }
  .results { padding: 6rem 2rem; }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials { padding: 6rem 2rem; }

  .booking {
    padding: 6rem 2rem;
    gap: 3rem;
  }

  .site-footer { padding: 3rem 2rem; }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

/* ──────────────────────────────────────────────
   MOBILE  ≤ 768px
   ────────────────────────────────────────────── */
@media (max-width: 768px) {

  /* --- HEADER --- */
  .site-header {
    padding: 0 1.2rem !important;
    min-height: 64px !important;
    flex-wrap: nowrap !important;
    gap: 0 !important;
  }

  .site-logo {
    flex: 0 0 auto;
  }

  .site-logo-img {
    height: 42px !important;
    width: auto !important;
    max-width: 160px !important;
  }

  /* Hide the desktop nav wrapper so it doesn't occupy space */
  .header-center {
    display: none !important;
  }

  .header-actions {
    flex: 1 1 auto !important;
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
    gap: 0.6rem !important;
  }

  .lang-switcher {
    display: flex;
    gap: 0.3rem;
  }

  .lang-btn {
    padding: 0.35rem 0.55rem !important;
    font-size: 0.58rem !important;
    min-width: 34px !important;
    min-height: 34px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .mobile-menu-toggle {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 40px !important;
    min-height: 40px !important;
    font-size: 1.1rem !important;
    padding: 0.4rem !important;
    flex-shrink: 0 !important;
  }

  /* Mobile slide-down nav */
  .main-navigation {
    display: none !important;
    position: fixed !important;
    top: 64px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-height: calc(100vh - 64px) !important;
    overflow-y: auto !important;
    background: rgba(10, 10, 10, 0.99) !important;
    backdrop-filter: blur(16px) !important;
    border-bottom: 1px solid rgba(201, 169, 110, 0.25) !important;
    z-index: 9990 !important;
    padding: 0 !important;
  }

  .main-navigation.is-open {
    display: block !important;
  }

  .main-navigation ul {
    flex-direction: column !important;
    gap: 0 !important;
    padding: 0.5rem 0 1rem !important;
    width: 100% !important;
    align-items: flex-start !important;
  }

  .main-navigation li {
    width: 100% !important;
    border-bottom: 1px solid rgba(201, 169, 110, 0.1) !important;
    list-style: none !important;
    margin: 0 !important;
  }

  .main-navigation li:last-child {
    border-bottom: none !important;
  }

  .main-navigation a {
    display: block !important;
    padding: 0.95rem 1.5rem !important;
    font-size: 0.8rem !important;
    letter-spacing: 0.15em !important;
    width: 100% !important;
    text-align: left !important;
    white-space: normal !important;
  }

  .main-navigation a:hover,
  .main-navigation a:focus {
    background: rgba(201, 169, 110, 0.08) !important;
    color: var(--gold) !important;
  }

  /* --- HERO --- */
  .hero {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
    padding-top: 64px !important;
  }

  .hero-left {
    padding: 3rem 1.5rem 2rem !important;
    order: 1;
    text-align: center;
  }

  .hero-eyebrow {
    justify-content: center;
  }

  .hero-eyebrow::before {
    display: none;
  }

  .hero-title {
    font-size: 2.6rem !important;
    margin-bottom: 1.2rem !important;
  }

  .hero-subtitle {
    font-size: 0.82rem !important;
    margin: 0 auto 2rem !important;
    max-width: 100% !important;
  }

  .hero-actions {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.8rem !important;
    margin-bottom: 2.5rem !important;
  }

  .btn-primary,
  .btn-ghost {
    width: 100% !important;
    text-align: center !important;
    padding: 1rem 1.5rem !important;
  }

  /* Override the global !important on btn-primary for mobile */
  a.btn-primary,
  button.btn-primary {
    display: block !important;
  }

  .hero-stats {
    justify-content: center !important;
    gap: 1.5rem !important;
    flex-wrap: wrap !important;
  }

  .stat {
    min-width: 70px;
    align-items: center;
    text-align: center;
  }

  .stat-num {
    font-size: 1.8rem !important;
  }

  .hero-right {
    order: 2;
    height: auto !important;
    min-height: 380px !important;
    padding: 1.5rem 1.5rem 2.5rem !important;
  }

  .hero-video-wrapper {
    max-width: 260px !important;
    margin: 0 auto !important;
  }

  /* --- MARQUEE --- */
  .marquee-bar {
    padding: 0.7rem 0;
  }

  .marquee-item {
    font-size: 0.62rem;
    gap: 1rem;
  }

  /* --- SERVICES --- */
  .services {
    padding: 4rem 1.2rem !important;
  }

  .services-grid {
    grid-template-columns: 1fr !important;
    gap: 1px !important;
  }

  .service-card {
    padding: 2rem 1.5rem !important;
  }

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

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

  /* --- ABOUT --- */
  .about-strip {
    grid-template-columns: 1fr !important;
    padding: 4rem 1.2rem !important;
    gap: 3rem !important;
    text-align: center !important;
  }

  .about-left {
    margin-bottom: 0;
  }

  .about-img-block {
    max-width: 280px !important;
    margin: 0 auto !important;
  }

  .about-badge {
    width: 85px !important;
    height: 85px !important;
    right: calc(50% - 140px - 42px) !important;
    bottom: -1rem !important;
    gap: 0.2rem !important;
  }

  .about-badge-num {
    font-size: 1.6rem !important;
  }

  .about-badge-txt {
    font-size: 0.4rem !important;
  }

  .about-right {
    text-align: center;
  }

  .about-right .section-title,
  .about-right .section-eyebrow {
    text-align: center !important;
  }

  .gold-rule.left {
    margin: 1.2rem auto !important;
  }

  .about-features {
    grid-template-columns: 1fr !important;
    text-align: left;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  /* --- TREATMENTS --- */
  .treatments {
    padding: 4rem 1.2rem !important;
  }

  .treatments-grid {
    grid-template-columns: 1fr !important;
    margin-top: 2rem;
  }

  .treatment-item {
    padding: 1.8rem 1.2rem !important;
  }

  /* --- TEAM --- */
  .team {
    padding: 4rem 1.2rem !important;
  }

  .team-photo-container {
    margin-top: 2rem !important;
  }

  .team-photo {
    max-height: 320px !important;
  }

  /* --- RESULTS --- */
  .results {
    padding: 4rem 1.2rem !important;
  }

  .results-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    max-width: 100% !important;
  }

  .result-img-wrap {
    max-height: 340px !important;
  }

  /* --- TESTIMONIALS --- */
  .testimonials {
    padding: 4rem 1.2rem !important;
  }

  .testimonials-carousel {
    max-width: 100% !important;
  }

  .testimonial-video-wrapper {
    max-width: 260px !important;
    margin: 0 auto !important;
  }

  .play-button {
    width: 60px !important;
    height: 60px !important;
    font-size: 1.4rem !important;
  }

  .carousel-btn {
    width: 44px !important;
    height: 44px !important;
    font-size: 1rem !important;
  }

  /* --- BOOKING --- */
  .booking {
    grid-template-columns: 1fr !important;
    padding: 4rem 1.2rem !important;
    gap: 2.5rem !important;
    text-align: center !important;
  }

  .booking-left {
    order: 1;
    padding: 0 !important;
  }

  .booking-left .section-title {
    text-align: center !important;
  }

  .booking-left .section-eyebrow {
    text-align: center !important;
  }

  .gold-rule.left {
    margin: 1rem auto !important;
  }

  .booking-form {
    order: 2;
    padding: 2rem 1.2rem !important;
    max-width: 100% !important;
  }

  .contact-items {
    align-items: center !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .contact-item {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 0.7rem;
  }

  .form-row {
    grid-template-columns: 1fr !important;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px !important; /* prevent iOS zoom on focus */
  }

  /* --- FOOTER --- */
  .site-footer {
    padding: 3rem 1.2rem 1.5rem !important;
  }

  .footer-top {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    text-align: center !important;
  }

  .footer-logo {
    height: 46px !important;
    max-width: 170px !important;
    margin: 0 auto 1rem !important;
    display: block !important;
  }

  .footer-brand-desc {
    font-size: 0.78rem !important;
    max-width: 100% !important;
  }

  .footer-social {
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 0.6rem !important;
  }

  .footer-bottom {
    flex-direction: column !important;
    gap: 0.5rem !important;
    text-align: center !important;
    margin-top: 2rem !important;
    padding-top: 1.2rem !important;
    padding-bottom: 1rem;
  }

  /* --- GENERAL --- */
  h1, h2, h3, h4, h5, h6, p, span, a, li, div {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  img, video {
    max-width: 100% !important;
    height: auto;
  }

  .hero-video,
  .about-video {
    object-fit: cover !important;
  }
}

/* ──────────────────────────────────────────────
   SMALL MOBILE  ≤ 480px
   ────────────────────────────────────────────── */
@media (max-width: 480px) {

  .site-header {
    padding: 0 1rem !important;
    min-height: 58px !important;
  }

  .site-logo-img {
    height: 36px !important;
    max-width: 130px !important;
  }

  .main-navigation {
    top: 58px !important;
    max-height: calc(100vh - 58px) !important;
  }

  .lang-btn {
    padding: 0.28rem 0.45rem !important;
    font-size: 0.55rem !important;
    min-width: 30px !important;
    min-height: 30px !important;
  }

  .mobile-menu-toggle {
    min-width: 36px !important;
    min-height: 36px !important;
    font-size: 1rem !important;
  }

  .hero {
    padding-top: 58px !important;
  }

  .hero-left {
    padding: 2.5rem 1rem 1.8rem !important;
  }

  .hero-title {
    font-size: 2.1rem !important;
  }

  .hero-right {
    min-height: 330px !important;
    padding: 1rem 1rem 2rem !important;
  }

  .hero-video-wrapper {
    max-width: 220px !important;
  }

  .hero-stats {
    gap: 1rem !important;
  }

  .stat-num {
    font-size: 1.6rem !important;
  }

  .section-title {
    font-size: 1.75rem !important;
  }

  .services,
  .about-strip,
  .treatments,
  .team,
  .results,
  .testimonials,
  .booking {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .about-img-block {
    max-width: 240px !important;
  }

  .about-badge {
    right: calc(50% - 120px - 45px) !important;
    width: 80px !important;
    height: 80px !important;
  }

  .about-badge-num {
    font-size: 1.9rem !important;
  }

  .service-card {
    padding: 1.8rem 1.2rem !important;
  }

  .treatment-item {
    padding: 1.5rem 1rem !important;
    gap: 1rem !important;
  }

  .testimonial-video-wrapper {
    max-width: 220px !important;
  }

  .booking-form {
    padding: 1.5rem 1rem !important;
  }

  .btn-primary,
  .btn-ghost {
    padding: 0.9rem 1.2rem !important;
    font-size: 0.6rem !important;
  }

  .site-footer {
    padding: 2.5rem 1rem 1.2rem !important;
  }

  .footer-logo {
    height: 38px !important;
    max-width: 140px !important;
  }
}

/* ──────────────────────────────────────────────
   VERY SMALL  ≤ 360px
   ────────────────────────────────────────────── */
@media (max-width: 360px) {
  .hero-title {
    font-size: 1.85rem !important;
  }

  .hero-stats {
    gap: 0.8rem !important;
  }

  .stat {
    min-width: 60px;
  }

  .stat-num {
    font-size: 1.4rem !important;
  }

  .section-title {
    font-size: 1.55rem !important;
  }

  .hero-video-wrapper {
    max-width: 200px !important;
  }

  .main-navigation a {
    padding: 0.85rem 1.2rem !important;
    font-size: 0.75rem !important;
  }

  .testimonial-video-wrapper {
    max-width: 200px !important;
  }
}

/* ──────────────────────────────────────────────
   iOS SAFARI FIXES
   ────────────────────────────────────────────── */
@supports (-webkit-touch-callout: none) {
  /* Prevent double-tap zoom on buttons */
  .btn-primary,
  .btn-ghost,
  .carousel-btn,
  .lang-btn,
  .mobile-menu-toggle,
  .play-button {
    touch-action: manipulation;
  }

  /* Fix fixed header on iOS */
  .site-header {
    -webkit-backdrop-filter: blur(12px);
  }
}

/* ──────────────────────────────────────────────
   TOUCH DEVICE: enlarge tap targets
   ────────────────────────────────────────────── */
@media (hover: none) and (pointer: coarse) {
  .carousel-btn {
    min-width: 48px !important;
    min-height: 48px !important;
  }

  .carousel-dot {
    min-width: 18px !important;
    min-height: 18px !important;
  }

  .nav-links a {
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  .social-link {
    padding: 0.65rem 1.1rem !important;
  }
}

/* ──────────────────────────────────────────────
   REDUCED MOTION
   ────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .marquee-inner {
    animation: none;
  }

  .hero-video:hover,
  .about-img-block:hover,
  .testimonial-video-wrapper:hover,
  .result-card:hover {
    transform: none !important;
  }

  * {
    transition-duration: 0.01ms !important;
  }
}


/* ==========================================================================
   MOBILE NAVIGATION — dedicated element outside .header-center
   ========================================================================== */

/* Hidden on desktop — only the .main-navigation inside .header-center shows */
.mobile-navigation {
  display: none;
}

@media (max-width: 768px) {
  /* Desktop nav wrapper stays hidden */
  .header-center {
    display: none !important;
  }

  /* Mobile nav: hidden by default, slides in when .is-open */
  .mobile-navigation {
    display: block;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    background: rgba(10, 10, 10, 0.99);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(201, 169, 110, 0.25);
    z-index: 9990;
    transition: max-height 0.35s ease, opacity 0.3s ease;
    opacity: 0;
  }

  .mobile-navigation.is-open {
    max-height: 80vh;
    overflow-y: auto;
    opacity: 1;
  }

  .mobile-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0.5rem 0 1rem;
  }

  .mobile-navigation li {
    border-bottom: 1px solid rgba(201, 169, 110, 0.1);
  }

  .mobile-navigation li:last-child {
    border-bottom: none;
  }

  .mobile-navigation a {
    display: block;
    padding: 1rem 1.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-light);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }

  .mobile-navigation a:hover,
  .mobile-navigation a:focus,
  .mobile-navigation a:active {
    background: rgba(201, 169, 110, 0.08);
    color: var(--gold);
    outline: none;
  }
}

@media (max-width: 480px) {
  .mobile-navigation {
    top: 58px;
  }
}

@media (max-width: 360px) {
  .mobile-navigation {
    top: 55px;
  }

  .mobile-navigation a {
    padding: 0.9rem 1.2rem;
    font-size: 0.75rem;
  }
}/* ============================================
   UNIFIED RESPONSIVE FIX - ALL SECTIONS
   Complete mobile responsiveness for entire website
   ============================================ */

/* ============================================
   GLOBAL FIXES
   ============================================ */

* {
  box-sizing: border-box !important;
}

html {
  overflow-x: hidden !important;
  width: 100% !important;
}

body {
  overflow-x: hidden !important;
  width: 100% !important;
  position: relative !important;
}

img, video {
  max-width: 100% !important;
  height: auto !important;
}

h1, h2, h3, h4, h5, h6, p, span, div, a {
  word-wrap: break-word !important;
  overflow-wrap: break-word !important;
}

/* ============================================
   LOGO FIX - ALL DEVICES
   ============================================ */

/* Desktop Logo */
.site-logo-img {
  height: 45px !important;
  width: auto !important;
  max-width: 180px !important;
}

@media (min-width: 1200px) {
  .site-logo-img {
    height: 50px !important;
    max-width: 200px !important;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .site-logo-img {
    height: 42px !important;
    max-width: 170px !important;
  }
}

/* Footer Logo */
.footer-logo {
  height: 50px !important;
  max-width: 200px !important;
}

/* ============================================
   MOBILE MENU FIX
   ============================================ */

@media (max-width: 768px) {
  .header-center {
    display: none !important;
  }
  
  .mobile-menu-toggle {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: none !important;
    border: 1px solid #C9A96E !important;
    color: #C9A96E !important;
    padding: 0.5rem 0.8rem !important;
    cursor: pointer !important;
    font-size: 1.2rem !important;
    border-radius: 3px !important;
    transition: all 0.3s !important;
    z-index: 1001 !important;
    min-width: 44px !important;
    min-height: 44px !important;
  }
  
  .mobile-navigation {
    display: block !important;
    position: fixed !important;
    top: 60px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-height: 0 !important;
    overflow: hidden !important;
    background: rgba(10, 10, 10, 0.98) !important;
    backdrop-filter: blur(12px) !important;
    transition: max-height 0.4s ease, opacity 0.3s ease !important;
    z-index: 999 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5) !important;
    opacity: 0 !important;
  }
  
  .mobile-navigation.is-open {
    max-height: calc(100vh - 60px) !important;
    overflow-y: auto !important;
    border-bottom: 1px solid rgba(201, 169, 110, 0.15) !important;
    opacity: 1 !important;
  }
  
  .mobile-navigation ul {
    list-style: none !important;
    padding: 0.5rem 0 !important;
    margin: 0 !important;
    width: 100% !important;
  }
  
  .mobile-navigation li {
    width: 100% !important;
    border-bottom: 1px solid rgba(201, 169, 110, 0.08) !important;
    margin: 0 !important;
    list-style: none !important;
  }
  
  .mobile-navigation li:last-child {
    border-bottom: none !important;
  }
  
  .mobile-navigation a {
    display: block !important;
    padding: 1rem 1.5rem !important;
    color: #FAFAF8 !important;
    text-decoration: none !important;
    font-size: 0.85rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    transition: all 0.3s ease !important;
    font-weight: 500 !important;
    width: 100% !important;
  }
  
  .mobile-navigation a:hover,
  .mobile-navigation a:active {
    background: rgba(201, 169, 110, 0.15) !important;
    color: #C9A96E !important;
    padding-left: 2rem !important;
  }
}

/* ============================================
   MOBILE RESPONSIVE (768px and below)
   ============================================ */

@media (max-width: 768px) {
  
  /* HEADER */
  .site-header {
    padding: 0.8rem 1rem !important;
    min-height: 60px !important;
    gap: 0.5rem !important;
  }
  
  .site-logo-img {
    height: 40px !important;
    max-width: 160px !important;
  }
  
  .lang-btn {
    font-size: 0.65rem !important;
    padding: 0.4rem 0.6rem !important;
    min-width: 36px !important;
    min-height: 36px !important;
  }
  
  /* HERO */
  .hero {
    flex-direction: column !important;
    padding: 5rem 1rem 2.5rem !important;
    gap: 1.5rem !important;
  }
  
  .hero-left,
  .hero-right {
    width: 100% !important;
    max-width: 100% !important;
  }
  
  .hero-title {
    font-size: 2rem !important;
    line-height: 1.15 !important;
  }
  
  .hero-subtitle {
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
  }
  
  .hero-actions {
    flex-direction: column !important;
    gap: 0.8rem !important;
    width: 100% !important;
  }
  
  .hero-actions a,
  .btn-primary,
  .btn-ghost {
    width: 100% !important;
    text-align: center !important;
    padding: 0.85rem 1.5rem !important;
    font-size: 0.85rem !important;
  }
  
  .hero-stats {
    display: flex !important;
    justify-content: space-around !important;
    gap: 0.5rem !important;
  }
  
  .stat {
    flex: 1 !important;
    text-align: center !important;
  }
  
  .stat-num {
    font-size: 1.6rem !important;
  }
  
  .stat-label {
    font-size: 0.65rem !important;
  }
  
  .hero-video-wrapper {
    max-height: 400px !important;
    border-radius: 8px !important;
    overflow: hidden !important;
  }
  
  /* MARQUEE */
  .marquee-bar {
    padding: 0.8rem 0 !important;
  }
  
  .marquee-item {
    font-size: 0.75rem !important;
  }
  
  /* SERVICES */
  .services {
    padding: 2.5rem 1rem !important;
  }
  
  .section-title {
    font-size: 1.8rem !important;
  }
  
  .section-eyebrow {
    font-size: 0.7rem !important;
  }
  
  .services-grid {
    grid-template-columns: 1fr !important;
    gap: 1.2rem !important;
  }
  
  .service-card {
    padding: 1.8rem 1.3rem !important;
  }
  
  .service-name {
    font-size: 1.1rem !important;
  }
  
  .service-desc {
    font-size: 0.85rem !important;
  }
  
  /* ABOUT SECTION */
  .about-strip {
    flex-direction: column !important;
    padding: 2.5rem 1rem !important;
  }
  
  .about-left,
  .about-right {
    width: 100% !important;
  }
  
  .about-video {
    max-height: 350px !important;
    object-fit: cover !important;
  }
  
  /* ABOUT BADGE - SQUARE NOT CIRCLE */
  .about-badge {
    position: absolute !important;
    bottom: 1rem !important;
    right: 1rem !important;
    width: 100px !important;
    height: 100px !important;
    background: rgba(201, 169, 110, 0.95) !important;
    border-radius: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5) !important;
  }
  
  .about-badge-num {
    font-size: 2rem !important;
    font-weight: 300 !important;
    color: #0A0A0A !important;
  }
  
  .about-badge-txt {
    font-size: 0.65rem !important;
    color: #0A0A0A !important;
    font-weight: 600 !important;
  }
  
  .about-right p {
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
  }
  
  .feature-label {
    font-size: 0.95rem !important;
  }
  
  .feature-sub {
    font-size: 0.75rem !important;
  }
  
  /* TREATMENTS */
  .treatments {
    padding: 2.5rem 1rem !important;
  }
  
  .treatments-grid {
    grid-template-columns: 1fr !important;
    gap: 0.8rem !important;
  }
  
  .treatment-item {
    padding: 1rem !important;
    display: flex !important;
    gap: 1rem !important;
  }
  
  .treatment-num-box {
    width: 38px !important;
    height: 38px !important;
    font-size: 0.85rem !important;
  }
  
  .treatment-name {
    font-size: 0.95rem !important;
  }
  
  .treatment-detail {
    font-size: 0.75rem !important;
  }
  
  /* TEAM */
  .team {
    padding: 2.5rem 1rem !important;
  }
  
  .team-photo {
    max-height: 400px !important;
    object-fit: cover !important;
  }
  
  /* RESULTS SECTION - FIXED */
  .results {
    padding: 2.5rem 1rem !important;
    overflow-x: hidden !important;
  }
  
  .results-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  
  .result-card {
    display: flex !important;
    flex-direction: column !important;
    background: #1A1A1A !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
  }
  
  .result-img-wrap {
    width: 100% !important;
    aspect-ratio: 4/3 !important;
    position: relative !important;
    overflow: hidden !important;
    background: #000 !important;
  }
  
  .result-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
  }
  
  .result-overlay {
    position: absolute !important;
    inset: 0 !important;
    background: rgba(0, 0, 0, 0.4) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 1 !important;
  }
  
  .result-badge {
    background: rgba(201, 169, 110, 0.95) !important;
    color: #0A0A0A !important;
    padding: 0.5rem 1rem !important;
    border-radius: 4px !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
  }
  
  .result-info {
    padding: 1.2rem 1rem !important;
  }
  
  .result-title {
    font-size: 1.1rem !important;
    color: #C9A96E !important;
  }
  
  .result-desc {
    font-size: 0.85rem !important;
    color: #CCCCCC !important;
  }
  
  /* TESTIMONIALS */
  .testimonials {
    padding: 2.5rem 1rem !important;
  }
  
  .testimonial-video-wrapper {
    aspect-ratio: 9/16 !important;
    max-height: 600px !important;
    border-radius: 8px !important;
    overflow: hidden !important;
  }
  
  .carousel-btn {
    width: 42px !important;
    height: 42px !important;
  }
  
  /* BOOKING */
  .booking {
    flex-direction: column !important;
    padding: 2.5rem 1rem !important;
    gap: 2rem !important;
  }
  
  .booking-left,
  .booking-form {
    width: 100% !important;
  }
  
  .contact-icon {
    width: 36px !important;
    height: 36px !important;
  }
  
  .contact-text {
    font-size: 0.85rem !important;
  }
  
  .booking-form {
    padding: 1.8rem 1.2rem !important;
    background: #1A1A1A !important;
    border-radius: 8px !important;
  }
  
  .form-group input,
  .form-group button {
    font-size: 0.9rem !important;
    padding: 0.85rem 1rem !important;
  }
  
  .form-group button {
    width: 100% !important;
  }
  
  /* FOOTER */
  .site-footer {
    padding: 2.5rem 1rem 1.5rem !important;
  }
  
  .footer-top {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  
  .footer-logo {
    height: 45px !important;
    max-width: 180px !important;
  }
  
  .footer-brand-desc {
    font-size: 0.85rem !important;
  }
  
  .footer-col-title {
    font-size: 1rem !important;
  }
  
  .footer-links a {
    font-size: 0.85rem !important;
  }
  
  .footer-social {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0.8rem !important;
  }
  
  .social-link {
    padding: 0.6rem 1rem !important;
    font-size: 0.85rem !important;
    min-height: 44px !important;
    border: 1px solid rgba(201, 169, 110, 0.3) !important;
    border-radius: 4px !important;
  }
  
  .footer-bottom {
    flex-direction: column !important;
    text-align: center !important;
    font-size: 0.75rem !important;
  }
}

/* ============================================
   SMALL MOBILE (480px and below)
   ============================================ */

@media (max-width: 480px) {
  
  .site-header {
    padding: 0.6rem 0.8rem !important;
    min-height: 56px !important;
  }
  
  .site-logo-img {
    height: 36px !important;
    max-width: 140px !important;
  }
  
  .mobile-navigation {
    top: 56px !important;
  }
  
  .mobile-navigation.is-open {
    max-height: calc(100vh - 56px) !important;
  }
  
  .hero {
    padding: 4.5rem 0.8rem 2rem !important;
  }
  
  .hero-title {
    font-size: 1.7rem !important;
  }
  
  .stat-num {
    font-size: 1.4rem !important;
  }
  
  .stat-label {
    font-size: 0.6rem !important;
  }
  
  .services,
  .treatments,
  .results,
  .team,
  .testimonials,
  .booking,
  .about-strip {
    padding: 2rem 0.8rem !important;
  }
  
  .section-title {
    font-size: 1.6rem !important;
  }
  
  .about-badge {
    width: 90px !important;
    height: 90px !important;
  }
  
  .about-badge-num {
    font-size: 1.8rem !important;
  }
  
  .result-img-wrap {
    aspect-ratio: 1/1 !important;
  }
  
  .result-info {
    padding: 1rem 0.8rem !important;
  }
  
  .result-title {
    font-size: 1rem !important;
  }
  
  .result-desc {
    font-size: 0.8rem !important;
  }
  
  .footer-logo {
    height: 40px !important;
    max-width: 150px !important;
  }
  
  .footer-social {
    justify-content: center !important;
  }
  
  .social-link {
    font-size: 0.8rem !important;
  }
}

/* ============================================
   VERY SMALL MOBILE (360px and below)
   ============================================ */

@media (max-width: 360px) {
  
  .hero-title {
    font-size: 1.5rem !important;
  }
  
  .stat-num {
    font-size: 1.2rem !important;
  }
  
  .stat-label {
    font-size: 0.55rem !important;
  }
  
  .section-title {
    font-size: 1.4rem !important;
  }
  
  .services,
  .treatments,
  .results,
  .team,
  .testimonials,
  .booking,
  .about-strip {
    padding: 1.5rem 0.6rem !important;
  }
  
  .about-badge {
    width: 80px !important;
    height: 80px !important;
  }
  
  .about-badge-num {
    font-size: 1.6rem !important;
  }
  
  .about-badge-txt {
    font-size: 0.55rem !important;
  }
  
  .result-img-wrap {
    aspect-ratio: 4/3 !important;
  }
  
  .result-info {
    padding: 0.8rem 0.6rem !important;
  }
  
  .result-title {
    font-size: 0.9rem !important;
  }
  
  .result-desc {
    font-size: 0.75rem !important;
  }
  
  .footer-logo {
    height: 36px !important;
    max-width: 130px !important;
  }
  
  .social-link {
    font-size: 0.75rem !important;
    padding: 0.4rem 0.7rem !important;
  }
}

/* ============================================
   LANDSCAPE MODE
   ============================================ */

@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    padding: 3rem 1rem 2rem !important;
  }
  
  .hero-video-wrapper {
    max-height: 250px !important;
  }
  
  .mobile-navigation.is-open {
    max-height: 70vh !important;
  }
}

/* Animated Phone Badge */
.phone-badge {
  position: relative;
  display: inline-block;
}

.phone-badge::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 8px;
  width: 20px;
  height: 20px;
  background: rgba(139, 0, 0, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: phone-pulse 2s infinite;
}

@keyframes phone-pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}

.phone-badge:hover::before {
  animation: phone-pulse 1s infinite;
}

/* Responsive button sizing */
@media (max-width: 768px) {
  .location-btn {
    padding: 1rem 1.5rem !important;
    font-size: 1rem !important;
  }
}

@media (max-width: 480px) {
  .location-btn {
    padding: 0.9rem 1.3rem !important;
    font-size: 0.95rem !important;
  }
}

/* PHONE BADGE */
.phone-badge-container {
  position: fixed;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  z-index: 999;
}

.phone-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 75px;
  height: 75px;
  background: var(--white);
  color: var(--dark);
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  border: 1px solid rgba(201, 169, 110, 0.2);
  position: relative;
  overflow: hidden;
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15), 0 0 0 0 rgba(76, 175, 80, 0.4);
  }
  50% {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15), 0 0 0 10px rgba(76, 175, 80, 0);
  }
}

.phone-badge:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  border-color: rgba(201, 169, 110, 0.4);
  animation: none;
}

.phone-badge:active {
  transform: scale(0.95);
}

.phone-badge::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.phone-badge:active::before {
  animation: badgeRipple 0.8s ease-out;
}

@keyframes badgeRipple {
  0% {
    width: 0;
    height: 0;
    opacity: 0.6;
  }
  100% {
    width: 120px;
    height: 120px;
    opacity: 0;
  }
}

.phone-badge-icon {
  width: 32px;
  height: 32px;
  stroke-linecap: round;
  stroke-linejoin: round;
  position: relative;
  z-index: 1;
}

.phone-badge-text {
  display: none;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .phone-badge-container {
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%);
  }

  .phone-badge {
    width: 68px;
    height: 68px;
  }

  .phone-badge-icon {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 480px) {
  .phone-badge-container {
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
  }

  .phone-badge {
    width: 60px;
    height: 60px;
  }

  .phone-badge-icon {
    width: 24px;
    height: 24px;
  }
}


/* POPUP AD - BOOKING FORM STYLE */
.popup-ad-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeIn 0.3s ease-out;
  backdrop-filter: blur(4px);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.popup-ad {
  position: relative;
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  animation: slideUp 0.4s ease-out;
  border: 1px solid rgba(201, 169, 110, 0.2);
  overflow: hidden;
}

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

.confetti-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.confetti {
  position: absolute;
  width: 10px;
  height: 10px;
  background: linear-gradient(45deg, #C9A96E, #FFD700, #FF69B4, #00CED1);
  animation: confettiFall 3s ease-in infinite;
}

.confetti:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
  background-color: #C9A96E;
}

.confetti:nth-child(2) {
  left: 25%;
  animation-delay: 0.2s;
  background-color: #FFD700;
}

.confetti:nth-child(3) {
  left: 50%;
  animation-delay: 0.4s;
  background-color: #FF69B4;
}

.confetti:nth-child(4) {
  left: 75%;
  animation-delay: 0.6s;
  background-color: #00CED1;
}

.confetti:nth-child(5) {
  left: 90%;
  animation-delay: 0.8s;
  background-color: #C9A96E;
}

@keyframes confettiFall {
  0% {
    transform: translateY(-10px) rotateZ(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(400px) rotateZ(720deg);
    opacity: 0;
  }
}

.popup-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 32px;
  height: 32px;
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 50%;
  color: var(--dark);
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  padding: 0;
  z-index: 10;
}

.popup-close:hover {
  background: rgba(201, 169, 110, 0.2);
  transform: rotate(90deg);
  border-color: rgba(201, 169, 110, 0.5);
}

.popup-content {
  position: relative;
  z-index: 2;
}

.popup-celebration {
  text-align: center;
  margin-bottom: 1.5rem;
  animation: bounceIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.celebration-text {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  text-shadow: 0 2px 4px rgba(201, 169, 110, 0.2);
}

@keyframes bounceIn {
  0% {
    transform: scale(0.3) rotateZ(-10deg);
    opacity: 0;
  }
  50% {
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1) rotateZ(0deg);
    opacity: 1;
  }
}

.popup-header {
  text-align: center;
  margin-bottom: 2rem;
}

.popup-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

.popup-subtitle {
  font-size: 0.95rem;
  color: var(--gray);
  font-weight: 500;
  letter-spacing: 0.3px;
}

.popup-form {
  margin-bottom: 1.5rem;
}

.popup-form .form-group {
  margin-bottom: 1.2rem;
}

.phone-input-wrapper {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.phone-input-wrapper:focus-within {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.8);
}

.phone-prefix {
  padding: 0.8rem 0.8rem;
  font-weight: 700;
  color: var(--dark);
  background: rgba(201, 169, 110, 0.1);
  border-right: 1px solid rgba(201, 169, 110, 0.2);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  white-space: nowrap;
}

.phone-input-wrapper input {
  flex: 1;
  border: none;
  background: transparent;
  color: var(--dark);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  padding: 0.8rem 1rem;
  outline: none;
}

.popup-form .form-group label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.5rem;
}

.popup-form .form-group input {
  width: 100%;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(201, 169, 110, 0.2);
  color: var(--dark);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  padding: 0.8rem 1rem;
  outline: none;
  transition: border-color 0.3s;
  border-radius: 4px;
}

.popup-form .form-group input:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.8);
}

.popup-submit-btn {
  width: 100%;
  background: var(--gold);
  color: var(--dark);
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(201, 169, 110, 0.2);
}

.popup-submit-btn:hover {
  background: #8B6E3E;
  box-shadow: 0 6px 16px rgba(201, 169, 110, 0.3);
  transform: translateY(-2px);
}

.popup-submit-btn:active {
  transform: translateY(0);
}

.popup-timer-section {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201, 169, 110, 0.1);
}

.popup-timer {
  font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

#countdown {
  background: rgba(201, 169, 110, 0.15);
  color: var(--gold);
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

#countdown.warning {
  animation: timerFlash 0.5s ease-in-out infinite;
  background: rgba(211, 47, 47, 0.15);
  color: #d32f2f;
}

@keyframes timerFlash {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

.popup-spots {
  font-size: 0.85rem;
  color: var(--gray);
  font-weight: 600;
}

.spots-remaining {
  color: var(--gold);
  font-weight: 700;
}

.timer-icon {
  font-size: 1rem;
  display: inline-block;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  from {
    transform: rotateZ(0deg);
  }
  to {
    transform: rotateZ(360deg);
  }
}

/* Mobile responsive */
@media (max-width: 768px) {
  .popup-ad {
    padding: 2rem 1.5rem;
    max-width: 90%;
  }

  .popup-title {
    font-size: 1.5rem;
  }

  .celebration-text {
    font-size: 1.2rem;
  }

  .popup-submit-btn {
    padding: 0.9rem;
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .popup-ad {
    padding: 1.5rem;
  }

  .popup-celebration {
    margin-bottom: 1rem;
  }

  .celebration-text {
    font-size: 1rem;
  }

  .popup-header {
    margin-bottom: 1.5rem;
  }

  .popup-title {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
  }

  .popup-subtitle {
    font-size: 0.85rem;
  }

  .popup-form .form-group {
    margin-bottom: 1rem;
  }

  .popup-form .form-group input {
    font-size: 0.9rem;
    padding: 0.7rem 0.8rem;
  }
}
