:root {
  --bg: #f5fbff;
  --white: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --sky: #1aa6e8;
  --sky-deep: #0d78ab;
  --green: #33c3a1;
  --green-soft: #e8fbf5;
  --dark: #0f172a;
  --shadow: 0 20px 70px -30px rgba(15, 23, 42, 0.25);
  --shadow-strong: 0 32px 95px -40px rgba(15, 23, 42, 0.34);
  --radius: 30px;
  --radius-sm: 22px;
  --transition: 0.35s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(26, 166, 232, 0.14), transparent 32%),
    radial-gradient(circle at top right, rgba(51, 195, 161, 0.16), transparent 34%),
    linear-gradient(180deg, #eef8ff 0%, #f8fffd 28%, #ffffff 60%, #f5fbff 100%);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
}

.small-container {
  width: min(920px, calc(100% - 32px));
}

.section {
  padding: 92px 0;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0;
  z-index: 9999;
  background: linear-gradient(90deg, var(--sky), var(--green));
  box-shadow: 0 0 18px rgba(26, 166, 232, 0.6);
}

.bg-blur {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  z-index: -1;
  opacity: 0.55;
}

.blur-1 {
  width: 360px;
  height: 360px;
  background: #8fdcff;
  top: -90px;
  left: -100px;
}

.blur-2 {
  width: 430px;
  height: 430px;
  background: #bfffe9;
  top: 130px;
  right: -140px;
}

.blur-3 {
  width: 320px;
  height: 320px;
  background: #d7f7ff;
  bottom: -80px;
  left: 18%;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1200;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
}

.nav {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.logo-box {
  padding: 10px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 30px -18px rgba(15, 23, 42, 0.25);
}

.logo {
  height: 54px;
  width: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.desktop-nav a {
  font-size: 14px;
  font-weight: 700;
  color: #475569;
  transition: var(--transition);
}

.desktop-nav a:hover {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
  transition: var(--transition);
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--dark);
  color: #fff;
}

.btn-dark:hover {
  background: #1e293b;
}

.btn-light {
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  border-color: var(--line);
}

.btn-white {
  background: #fff;
  color: var(--text);
}

.btn-outline-white {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.35);
}

.full {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 14px;
  padding: 18px 16px 20px;
  background: rgba(255, 255, 255, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.55);
}

.mobile-menu a {
  font-weight: 700;
  color: #334155;
}

.mobile-menu.active {
  display: flex;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(191, 219, 254, 0.86);
  color: var(--sky-deep);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 900;
}

.eyebrow.center {
  margin-bottom: 18px;
}

.eyebrow.white {
  color: rgba(255, 255, 255, 0.86);
  background: transparent;
  border: none;
  padding: 0;
  margin-bottom: 14px;
}

.section-title {
  text-align: center;
  max-width: 870px;
  margin: 0 auto 54px;
}

.section-title h2 {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
  font-weight: 900;
}

.section-title p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.88;
}

.hero {
  padding-top: 58px;
  padding-bottom: 78px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 52px;
}

.hero-content h1 {
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.02;
  margin-top: 18px;
  letter-spacing: -0.055em;
  font-weight: 900;
}

.hero-content h1 span {
  display: block;
  background: linear-gradient(90deg, var(--sky), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  margin-top: 24px;
  max-width: 650px;
  font-size: 19px;
  color: var(--muted);
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero-features {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.mini-card,
.trust-card,
.service-card,
.method-card,
.calendar-card,
.booking-card,
.contact-left,
.contact-right,
.faq-item,
.hero-shell,
.cta-banner,
.blog-card,
.blog-cta {
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.mini-card {
  padding: 18px;
  border-radius: var(--radius-sm);
}

.mini-icon {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  background: var(--dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.mini-card p {
  font-weight: 800;
  color: #334155;
}

.floating-card {
  animation: floatY 5s ease-in-out infinite;
}

.delay-float {
  animation-delay: 0.8s;
}

.hero-shell {
  position: relative;
  border-radius: 34px;
  padding: 18px;
  overflow: visible;
}

.hero-main-card {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-main-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.hero-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}

.hero-mini-card {
  position: relative;
  padding: 14px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.hero-mini-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 18px;
}

.card-chip {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #eef8ff;
  color: var(--sky-deep);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-floating-box {
  position: absolute;
  right: 24px;
  bottom: -20px;
  width: 310px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-strong);
}

.floating-top {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.floating-pill {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--dark);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.floating-pill.soft {
  background: var(--green-soft);
  color: #0f766e;
}

.hero-floating-box h3 {
  font-size: 24px;
  line-height: 1.15;
  margin-bottom: 10px;
}

.hero-floating-box p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 14px;
}

.service-marquee-section {
  padding: 18px 0 26px;
  overflow: hidden;
}

.service-marquee {
  width: 100%;
  padding: 14px 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.98), rgba(13, 120, 171, 0.98), rgba(51, 195, 161, 0.96));
  box-shadow: 0 24px 80px -40px rgba(15, 23, 42, 0.45);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  animation: marqueeMove 26s linear infinite;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  white-space: nowrap;
  color: #fff;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 900;
}

.marquee-item span {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.18);
}

.trust-section {
  padding-top: 30px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.trust-card {
  padding: 28px 22px;
  border-radius: 26px;
  text-align: center;
  transition: var(--transition);
}

.trust-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
}

.trust-value {
  display: block;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}

.trust-label {
  display: block;
  font-size: 14px;
  color: var(--muted);
}

.services-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card,
.blog-card {
  border-radius: 30px;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover,
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}

.featured-service,
.featured-blog {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(232,250,244,0.96));
  border-color: rgba(51, 195, 161, 0.22);
}

.service-image,
.blog-image {
  position: relative;
  overflow: hidden;
}

.service-image img,
.blog-image img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.service-card:hover .service-image img,
.blog-card:hover .blog-image img {
  transform: scale(1.06);
}

.service-body,
.blog-content {
  padding: 26px;
  flex: 1;
}

.service-badge,
.blog-category {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  background: #eef8ff;
  color: var(--sky-deep);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.service-badge.important {
  background: #0f172a;
  color: #fff;
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--sky), var(--green));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.service-body h3,
.blog-content h3 {
  font-size: 25px;
  margin-bottom: 10px;
  line-height: 1.2;
}

.service-body p,
.blog-content p {
  color: var(--muted);
  line-height: 1.85;
}

.services-note {
  margin-top: 24px;
  text-align: center;
}

.services-note p {
  display: inline-block;
  max-width: 780px;
  padding: 16px 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.64);
  box-shadow: var(--shadow);
  color: var(--muted);
  line-height: 1.8;
}

.method-grid,
.appointment-grid,
.contact-grid {
  display: grid;
  gap: 24px;
}

.method-grid {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.method-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.large-photo {
  grid-column: 1 / -1;
}

.method-photo {
  overflow: hidden;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.method-photo img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.large-photo img {
  height: 360px;
}

.zoom-card:hover img {
  transform: scale(1.06);
}

.method-right {
  display: grid;
  gap: 16px;
}

.method-card {
  border-radius: 26px;
  padding: 26px;
}

.step-badge {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--sky), var(--green));
  color: #fff;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.method-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.method-card p {
  color: var(--muted);
  line-height: 1.9;
}

.blog-section {
  background:
    radial-gradient(circle at top right, rgba(51, 195, 161, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.25), rgba(238,248,255,0.45));
}

.blog-content details {
  margin-top: 18px;
}

.blog-content summary {
  cursor: pointer;
  display: inline-flex;
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--dark);
  color: #fff;
  font-weight: 900;
  list-style: none;
}

.blog-content summary::-webkit-details-marker {
  display: none;
}

.article-body {
  margin-top: 18px;
  padding: 18px;
  border-radius: 20px;
  background: #f8fbff;
  border: 1px solid var(--line);
}

.article-body p + p {
  margin-top: 12px;
}

.blog-cta {
  margin-top: 28px;
  padding: 28px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.blog-cta h3 {
  font-size: 28px;
  margin-bottom: 8px;
}

.blog-cta p {
  color: var(--muted);
}

.pricing-slider-section {
  overflow: hidden;
}

.pricing-slider-wrapper {
  position: relative;
}

.pricing-slider {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 5px 26px;
  scrollbar-width: none;
}

.pricing-slider::-webkit-scrollbar {
  display: none;
}

.pricing-card-slider {
  flex: 0 0 330px;
  padding: 28px;
  border-radius: 30px;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(226,232,240,0.92);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.pricing-card-slider:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}

.featured-price {
  background: linear-gradient(180deg, #ffffff, #e8fbf5);
  border-color: rgba(51, 195, 161, 0.32);
}

.pricing-tag {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--dark);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.pricing-tag.light {
  background: #eaf8ff;
  color: var(--sky-deep);
}

.alcohol-tag {
  background: #1e293b;
}

.cannabis-tag {
  background: #047857;
}

.pricing-card-slider h3 {
  font-size: 24px;
  line-height: 1.25;
  margin-bottom: 8px;
}

.pricing-subtitle {
  color: var(--muted);
  font-size: 15px;
  min-height: 48px;
}

.price-line {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin: 20px 0 12px;
}

.price {
  font-size: 45px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.small-price {
  font-size: 31px;
  letter-spacing: -0.04em;
}

.currency {
  font-size: 15px;
  color: var(--muted);
  font-weight: 800;
  margin-bottom: 6px;
}

.duration-box {
  display: inline-flex;
  padding: 9px 14px;
  border-radius: 14px;
  background: #f8fbff;
  border: 1px solid var(--line);
  color: #334155;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 18px;
}

.pricing-list {
  list-style: none;
  margin-bottom: 22px;
}

.pricing-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  color: #334155;
}

.pricing-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 900;
}

.pricing-arrow {
  position: absolute;
  top: 45%;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 1px solid rgba(226,232,240,0.9);
  background: rgba(255,255,255,0.92);
  box-shadow: var(--shadow);
  cursor: pointer;
  z-index: 10;
  font-size: 36px;
  color: var(--text);
  transition: var(--transition);
}

.pricing-arrow:hover {
  transform: scale(1.06);
}

.pricing-prev {
  left: -12px;
}

.pricing-next {
  right: -12px;
}

.testimonials-section {
  overflow: hidden;
}

.testimonial-stage {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-carousel {
  position: relative;
  width: 100%;
  height: 410px;
  max-width: 1120px;
  margin: 0 auto;
  perspective: 1200px;
}

.testimonial-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(520px, 86vw);
  min-height: 340px;
  padding: 30px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(248,252,255,0.9));
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-strong);
  transform: translate(-50%, -50%) scale(0.72);
  opacity: 0;
  filter: blur(10px);
  transition: 0.55s ease;
  cursor: pointer;
  overflow: hidden;
}

.testimonial-card.active {
  opacity: 1;
  filter: blur(0);
  transform: translate(-50%, -50%) scale(1);
  z-index: 10;
  cursor: default;
}

.testimonial-card.left {
  opacity: 0.55;
  filter: blur(3px);
  transform: translate(calc(-50% - 330px), -50%) scale(0.82) rotateY(10deg);
  z-index: 6;
}

.testimonial-card.right {
  opacity: 0.55;
  filter: blur(3px);
  transform: translate(calc(-50% + 330px), -50%) scale(0.82) rotateY(-10deg);
  z-index: 6;
}

.testimonial-card.far-left,
.testimonial-card.far-right {
  opacity: 0.16;
  filter: blur(6px);
  z-index: 3;
}

.testimonial-card.far-left {
  transform: translate(calc(-50% - 555px), -50%) scale(0.68);
}

.testimonial-card.far-right {
  transform: translate(calc(-50% + 555px), -50%) scale(0.68);
}

.testimonial-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: var(--shadow);
}

.testimonial-person h4 {
  font-size: 22px;
  line-height: 1.15;
  margin-bottom: 4px;
}

.testimonial-person p {
  color: var(--muted);
  font-size: 14px;
}

.testimonial-stars {
  color: #f59e0b;
  letter-spacing: 3px;
  font-size: 17px;
  white-space: nowrap;
}

.quote-icon {
  font-size: 54px;
  line-height: 1;
  color: rgba(26, 166, 232, 0.15);
  font-weight: 900;
}

.testimonial-text {
  font-size: 23px;
  line-height: 1.75;
  color: #1e293b;
}

.testimonial-service {
  margin-top: 22px;
  display: inline-flex;
  padding: 9px 14px;
  border-radius: 999px;
  background: #eaf8ff;
  color: var(--sky-deep);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.testimonial-arrow {
  position: absolute;
  top: 50%;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: 1px solid rgba(226,232,240,0.9);
  background: rgba(255,255,255,0.92);
  color: #0f172a;
  box-shadow: var(--shadow);
  font-size: 34px;
  cursor: pointer;
  transform: translateY(-50%);
  z-index: 30;
}

.testimonial-arrow.left {
  left: 0;
}

.testimonial-arrow.right {
  right: 0;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background: #cbd5e1;
  cursor: pointer;
  transition: var(--transition);
}

.testimonial-dot.active {
  width: 34px;
  background: linear-gradient(90deg, var(--sky), var(--green));
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border-radius: 24px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 22px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  font-size: 18px;
  font-weight: 900;
  color: #0f172a;
  text-align: left;
}

.faq-question span {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eaf8ff;
  color: var(--sky-deep);
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
  background: var(--dark);
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 0 24px 24px;
  color: var(--muted);
  line-height: 1.88;
}

.appointment-grid {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: start;
}

.calendar-card,
.booking-card,
.contact-left,
.contact-right {
  border-radius: 30px;
  padding: 28px;
}

.calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.calendar-head button {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  font-size: 28px;
}

.calendar-head h3 {
  text-transform: capitalize;
  font-size: 24px;
}

.weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}

.weekdays {
  margin-bottom: 10px;
}

.weekdays span {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.day-btn,
.empty-day {
  min-height: 48px;
  border-radius: 16px;
}

.day-btn {
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  font-weight: 800;
  transition: var(--transition);
}

.day-btn:hover {
  background: #eef8ff;
  transform: translateY(-2px);
}

.day-btn.active {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}

.day-btn.disabled {
  background: #f1f5f9;
  color: #94a3b8;
  cursor: not-allowed;
  transform: none;
}

.day-btn.booked {
  background: #fee2e2;
  border-color: #fecaca;
  color: #991b1b;
}

.times-box {
  margin-top: 28px;
}

.times-box h4 {
  margin-bottom: 14px;
}

.times-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.time-btn {
  min-height: 46px;
  border-radius: 15px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  font-weight: 800;
  transition: var(--transition);
}

.time-btn:hover {
  background: #eef8ff;
}

.time-btn.active {
  background: linear-gradient(135deg, var(--sky), var(--green));
  color: #fff;
  border-color: transparent;
}

.time-btn.disabled {
  background: #f1f5f9;
  color: #94a3b8;
  cursor: not-allowed;
}

.calendar-loading,
.calendar-error,
.time-placeholder {
  grid-column: 1 / -1;
  color: var(--muted);
  background: #f8fbff;
  border: 1px solid var(--line);
  padding: 14px;
  border-radius: 16px;
}

.calendar-error {
  color: #991b1b;
  background: #fee2e2;
  border-color: #fecaca;
}

.booking-card h3,
.contact-right h3 {
  font-size: 28px;
  margin-bottom: 22px;
}

.booking-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 22px;
}

.booking-summary div {
  padding: 16px;
  border-radius: 18px;
  background: #f8fbff;
  border: 1px solid var(--line);
}

.booking-summary span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 6px;
}

.booking-summary strong {
  font-size: 15px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-weight: 900;
  margin-bottom: 8px;
  color: #334155;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.86);
  border-radius: 16px;
  padding: 14px 16px;
  outline: none;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(26,166,232,0.6);
  box-shadow: 0 0 0 4px rgba(26,166,232,0.12);
}

.success-message {
  display: none;
  margin-top: 18px;
  padding: 16px;
  border-radius: 18px;
  background: #ecfdf5;
  border: 1px solid #bbf7d0;
  color: #166534;
}

.success-message.show {
  display: block;
}

.contact-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

.contact-left h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.04em;
  margin: 18px 0;
}

.contact-left p {
  color: var(--muted);
  line-height: 1.85;
}

.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  border-radius: 22px;
  background: #f8fbff;
  border: 1px solid var(--line);
}

.contact-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--sky), var(--green));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.social-block {
  margin-top: 28px;
}

.social-block h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.social-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 18px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: 20px;
  background: #f8fbff;
  border: 1px solid var(--line);
  transition: var(--transition);
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -28px rgba(15, 23, 42, 0.22);
}

.social-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
  flex-shrink: 0;
}

.social-link small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.social-link.whatsapp .social-icon { background: #25d366; }
.social-link.facebook .social-icon { background: #1877f2; }
.social-link.instagram .social-icon { background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4); }
.social-link.tiktok .social-icon { background: #000; }

.hours-list {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.hours-list div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  border-radius: 18px;
  background: #f8fbff;
  border: 1px solid var(--line);
}

.hours-list span {
  color: var(--muted);
}

.map-box {
  margin-bottom: 20px;
}

.map-box h4 {
  margin-bottom: 12px;
}

.map-box iframe {
  border-radius: 22px;
  overflow: hidden;
  margin-bottom: 12px;
}

.cta-banner {
  border-radius: 34px;
  padding: 42px;
  background: linear-gradient(135deg, #0f172a, #0d78ab, #33c3a1);
  color: #fff;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
}

.cta-banner h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  margin-bottom: 12px;
}

.cta-banner p {
  color: rgba(255,255,255,0.82);
  max-width: 650px;
}

.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.footer {
  padding: 42px 0;
  background: rgba(255,255,255,0.6);
  border-top: 1px solid rgba(226,232,240,0.8);
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-logo {
  height: 54px;
}

.footer p {
  color: var(--muted);
  max-width: 360px;
}

.footer-links,
.footer-socials {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links a,
.footer-socials a {
  font-weight: 800;
  color: #334155;
}

.footer-socials a {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--line);
}

.floating-socials {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1300;
  display: grid;
  gap: 10px;
}

.social-float {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 45px -24px rgba(15, 23, 42, 0.35);
  transition: 0.35s ease;
  color: #fff;
}

.social-float:hover {
  transform: translateY(-3px) scale(1.05);
}

.social-float svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

.social-float.whatsapp { background: #25d366; }
.social-float.facebook { background: #1877f2; }
.social-float.instagram { background: linear-gradient(135deg, #f58529 0%, #feda77 20%, #dd2a7b 50%, #8134af 75%, #515bd4 100%); }
.social-float.tiktok { background: #000; }

.glass-shine {
  position: relative;
  overflow: hidden;
}

.glass-shine::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.42), transparent);
  transform: skewX(-18deg);
  transition: 0.7s ease;
}

.glass-shine:hover::before {
  left: 130%;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.22s; }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes marqueeMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 1100px) {
  .desktop-nav,
  .desktop-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-grid,
  .method-grid,
  .appointment-grid,
  .contact-grid,
  .cta-banner {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .section {
    padding: 68px 0;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .hero-features,
  .services-grid,
  .blog-grid,
  .trust-grid,
  .social-links,
  .booking-summary {
    grid-template-columns: 1fr;
  }

  .hero-main-card img {
    height: 260px;
  }

  .hero-mini-grid,
  .method-gallery {
    grid-template-columns: 1fr;
  }

  .hero-floating-box {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 16px;
  }

  .large-photo {
    grid-column: auto;
  }

  .large-photo img,
  .method-photo img {
    height: 260px;
  }

  .blog-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .times-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-stage {
    min-height: 380px;
  }

  .testimonial-card {
    min-height: 320px;
    padding: 24px;
  }

  .testimonial-card.left,
  .testimonial-card.right,
  .testimonial-card.far-left,
  .testimonial-card.far-right {
    opacity: 0;
    pointer-events: none;
  }

  .testimonial-arrow {
    width: 46px;
    height: 46px;
    font-size: 28px;
  }

  .testimonial-arrow.left { left: -6px; }
  .testimonial-arrow.right { right: -6px; }

  .testimonial-text {
    font-size: 18px;
  }

  .floating-socials {
    right: 12px;
    bottom: 12px;
    gap: 8px;
  }

  .social-float {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  .footer-wrap {
    flex-direction: column;
    text-align: center;
  }
}