/* RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
@media (max-width: 768px) {
  html {
    scroll-behavior: auto;
  }
}
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  background: #0f0f0f;
  color: #eee;
}
img {
  display: block;
  max-width: 100%;
}
.mobile-br {
  display: none;
}
h1,
h2,
h3 {
  font-weight: 700;
}
p {
  font-weight: 400;
}

/* ===================== FADE-IN ANIMATIONS ===================== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content {
  opacity: 0;
  animation: fadeUp 0.55s ease forwards;
  animation-delay: 0.1s;

}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== SECTION HEADER ===================== */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
  gap: 12px;
}
.section-header h2 {
  margin-bottom: 0;
  margin-top: 0;
}
.section-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  opacity: 0.5;
  filter: brightness(0) invert(1);
}
@media (max-width: 500px) {
  .section-icon {
    width: 30px;
    height: 30px;
    opacity: 0.35;
  }
}

/* ===================== NAVBAR ===================== */
.nav {
  position: sticky;
  top: 0;
  background: #000;
  padding: 11px 20px;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}
.nav-container {
  max-width: 1000px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}
.logo-img {
  height: 50px;
  width: auto;
  display: block;
}
.nav-links a {
  margin-left: 18px;
  color: #aaa;
  text-decoration: none;
  font-size: 15px;
  position: relative;
  transition: color 0.2s, opacity 0.2s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 1px;
  background: #fff;
  transition: width 0.2s;
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-links a:hover {
  color: #fff;
  opacity: 1;
}
.nav-links a.active {
  color: #fff;
}
.nav-links a.active::after {
  width: 100%;
}

/* ===================== HERO ===================== */
.hero-section {
  min-height: 100dvh;
  background:
    linear-gradient(to right, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.2) 100%),
    url("images/hero.webp") center/cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  padding: 100px 20px;
}

/* Vignette overlay за дълбочина в ъглите */
.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    transparent 40%,
    rgba(0, 0, 0, 0.55) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 560px;
  margin-left: 6%;
  color: white;
}
.hero-content h1 {
  font-family: "Oswald", sans-serif;
  font-size: 60px;
  font-weight: 700;
  margin: 0;
  line-height: 1.05;
  letter-spacing: 2px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
}
.h1-main {
  font-weight: 700;
  letter-spacing: 3px;
}
.h1-sub {
  font-weight: 400;
  letter-spacing: 2px;
  opacity: 0.88;
}
.hero-content p {
  font-size: 19px;
  margin: 20px 0 32px;
  opacity: 0.88;
  letter-spacing: 0.4px;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.6);
  font-weight: 400;
}

/* Hero button — десктоп */
.hero-btn {
  background-color: #ffffff;
  color: #000000;
  padding: 16px 36px;
  border: 1px solid #ffffff;
  font-weight: 600;
  font-size: 15px;
  border-radius: 7px;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.3px;
}
.hero-btn:hover {
  background-color: #000000;
  color: #ffffff;
}

/* Trust bar */
.hero-info {
  margin-top: 30px;
  display: inline-flex;
  gap: 20px;
  align-items: center;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  flex-wrap: wrap;
}
.hero-info-divider {
  opacity: 0.3;
  font-size: 12px;
}

/* ===================== BUTTONS (non-hero) ===================== */
.btn {
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition:
    transform 0.2s,
    opacity 0.2s;
  cursor: pointer;
  display: inline-block;
}
.btn.primary {
  background: #1f3d2b;
  color: white;
  box-shadow: 0 4px 12px rgba(31, 61, 43, 0.35);
  animation: pulse 2s infinite;
}
@media (max-width: 768px) {
  .btn.primary {
    animation: none;
  }
}
.btn.primary:hover {
  box-shadow: 0 6px 18px rgba(31, 61, 43, 0.5);
  transform: translateY(-2px);
}
.btn.secondary {
  border: 2px solid white;
  color: white;
}
.btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(31, 61, 43, 0.6);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(31, 61, 43, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(31, 61, 43, 0);
  }
}

/* ===================== SECTIONS ===================== */
section {
  padding: 110px 20px;
  border-top: 1px solid #1f1f1f;
}
section:nth-of-type(even) {
  background: #111;
}
section:nth-of-type(odd) {
  background: #0f0f0f;
}
section h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 0;
  margin-top: 0;
  color: white;
}
section h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 60px;
  height: 3px;
  background: #1f3d2b;
  border-radius: 2px;
}
.container {
  max-width: 1100px;
  margin: auto;
}
.note {
  margin-top: 15px;
  font-size: 14px;
  opacity: 0.5;
  color: #aaa;
}

/* ===================== SERVICES ===================== */
.services {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: stretch;
}
.service {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #1a1a1a;
  padding: 20px 22px;
  border-radius: 10px;
  border: 1px solid #2a2a2a;
  position: relative;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.service::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  bottom: 15px;
  width: 4px;
  background: #1f3d2b;
  border-radius: 2px;
  opacity: 0.9;
}
.service:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  border-color: #333;
}
.service div {
  display: flex;
  flex-direction: column;
  padding-left: 10px;
}
.service strong {
  font-size: 15px;
  color: white;
}
.service p {
  margin: 4px 0 0;
  font-size: 13px;
  opacity: 0.5;
  color: #aaa;
}
.service > span {
  font-size: 16px;
  font-weight: bold;
  color: #1f3d2b;
  white-space: nowrap;
  min-width: 80px;
  text-align: right;
}
.vip-service {
  background: linear-gradient(135deg, #0a120d, #111f16);
  border-color: rgba(31, 61, 43, 0.5);
  cursor: pointer;
}
.vip-service::before {
  background: #1f3d2b;
  opacity: 1;
}
.vip-hint {
  margin: 6px 0 0 !important;
  font-size: 12px !important;
  color: #6dbf8a !important;
  opacity: 0.8 !important;
  letter-spacing: 0.3px;
}
.vip-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  flex-shrink: 0;
}
.vip-right > span {
  font-size: 16px;
  font-weight: bold;
  color: #1f3d2b;
  white-space: nowrap;
}
.vip-badge {
  background: #1f3d2b !important;
  color: white !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  padding: 2px 8px !important;
  border-radius: 20px !important;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
}
@keyframes vipPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(31, 61, 43, 0.6);
    border-color: #1f3d2b;
  }
  50% {
    box-shadow: 0 0 0 10px rgba(31, 61, 43, 0);
    border-color: #1f3d2b;
  }
  100% {
    box-shadow: 0 0 0 0 rgba(31, 61, 43, 0);
    border-color: rgba(31, 61, 43, 0.4);
  }
}
.vip-service.highlight-pulse {
  animation: vipPulse 1.5s ease;
}

/* ===================== SERVICES TOGGLE ===================== */
.services-toggle {
  background: transparent;
  border: 1px solid #1f3d2b;
  color: #1f3d2b;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  width: 100%;
  margin-top: 14px;
  font-family: "Inter", sans-serif;
}
.services-toggle:hover {
  background: #1f3d2b;
  color: white;
}
.services-hidden {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.45s ease,
    opacity 0.35s ease;
  opacity: 0;
}
.services-hidden.open {
  max-height: 1200px;
  opacity: 1;
}
.services-hidden .services {
  padding-top: 14px;
}

/* ===================== ABOUT ===================== */
.about {
  background: #111 !important;
  padding: 110px 20px;
}
.about-content {
  display: flex;
  align-items: stretch;
  gap: 48px;
  flex-wrap: wrap;
}
.about-image {
  flex: 1.2;
  min-width: 250px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.about-image img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #2a2a2a;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  display: block;
  transition: transform 0.4s ease;
}
.about-image img:hover {
  transform: scale(1.02);
}
.about-image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  color: white;
  font-size: 14px;
  font-weight: 600;
  padding: 40px 20px 16px;
  letter-spacing: 0.3px;
  text-align: right;
}
.about-quote {
  margin: 22px 0 0;
  padding: 0;
  border: none;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 17px;
  color: #1f3d2b;
  line-height: 1.5;
  letter-spacing: 0.3px;
}
.about-stats {
  display: flex;
  gap: 0;
  margin: 22px 0;
  border-top: 1px solid #2a2a2a;
  border-bottom: 1px solid #2a2a2a;
  padding: 18px 0;
}
.about-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  border-right: 1px solid #2a2a2a;
}
.about-stat:last-child {
  border-right: none;
}
.stat-icon {
  font-size: 18px;
}
.stat-number {
  font-size: 18px;
  font-weight: 700;
  color: white;
}
.stat-label {
  font-size: 11px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
}
.about-text {
  flex: 0.8;
  min-width: 250px;
  background: #1a1a1a;
  padding: 32px;
  border-radius: 12px;
  border: 1px solid #2a2a2a;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  position: relative;
  transition: all 0.3s ease;
}
.about-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  bottom: 20px;
  width: 4px;
  background: #1f3d2b;
  border-radius: 2px;
}
.about-text:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
}
.about-text h2 {
  color: white;
}
.about-text p {
  color: #ccc;
}
.social-buttons {
  margin-top: 22px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.social-btn {
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  color: white;
  font-size: 13px;
  display: inline-block;
  transition:
    transform 0.2s,
    opacity 0.2s;
}
.social-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}
.social-btn.insta {
  background: #e1306c;
}
.social-btn.tiktok {
  background: #010101;
  border: 1px solid #333;
}
.social-btn.facebook {
  background: #1877f2;
}

/* ===================== GALLERY ===================== */
.gallery {
  text-align: center;
  background: #0a0a0a !important;
  color: #fff;
  padding: 110px 20px;
}
.gallery-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-header-inline {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
  text-align: left;
}
.gallery-header-inline h2 {
  margin: 0;
}
.gallery-sub {
  display: block;
  margin-top: 16px;
  font-size: 14px;
  opacity: 0.4;
  letter-spacing: 0.5px;
  font-weight: 400;
}
.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid #1a1a1a;
  transition: border-color 0.3s;
}
.gallery-item:hover {
  border-color: #1f3d2b;
}
.gallery-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.gallery-item:hover .gallery-img {
  transform: scale(1.07);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.gallery-overlay span {
  font-size: 28px;
  opacity: 0;
  transform: scale(0.7);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}
.gallery-item:hover .gallery-overlay {
  background: rgba(0, 0, 0, 0.45);
}
.gallery-item:hover .gallery-overlay span {
  opacity: 1;
  transform: scale(1);
}
.gallery-insta-cta {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.gallery-insta-cta p {
  font-size: 14px;
  opacity: 0.4;
  margin: 0;
}
.insta-follow-btn {
  background: linear-gradient(
    135deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
  color: white;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  transition:
    transform 0.2s,
    opacity 0.2s;
  display: inline-block;
}
.insta-follow-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* ===================== LIGHTBOX ===================== */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 3000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 8px;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 36px;
  color: white;
  cursor: pointer;
  line-height: 1;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.lightbox-close:hover {
  opacity: 1;
}

/* ===================== REVIEWS + CONTACT ===================== */
#reviews-contact {
  background: #111 !important;
}
.rc-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.rc-left h2,
.rc-right h2 {
  margin-bottom: 8px;
}
.reviews-rating-line {
  margin: 0 0 24px;
  font-size: 14px;
  color: #888;
}
.reviews-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}
.review-card {
  background: #1a1a1a;
  border-radius: 12px;
  border: 1px solid #2a2a2a;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.25s ease;
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.review-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 4px;
  background: #1f3d2b;
  border-radius: 2px;
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  border-color: #333;
}
.review-card-stars {
  color: #fbbc05;
  font-size: 16px;
  letter-spacing: 2px;
}
.review-card-text {
  margin: 0;
  font-size: 14px;
  color: #ccc;
  line-height: 1.65;
}
.review-card-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid #2a2a2a;
  padding-top: 10px;
}
.review-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #1f3d2b;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
  flex-shrink: 0;
}
.review-card-footer strong {
  display: block;
  color: white;
  font-size: 13px;
}
.review-card-source {
  font-size: 11px;
  color: #666;
}
.review-google-g {
  width: 18px;
  height: 18px;
  margin-left: auto;
  flex-shrink: 0;
}
.google-reviews-card {
  background: #1a1a1a;
  border-radius: 12px;
  border: 1px solid #2a2a2a;
  padding: 18px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.25s ease;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.google-reviews-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #4285f4;
  border-radius: 12px 12px 0 0;
}
.google-reviews-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}
.google-reviews-top {
  display: flex;
  align-items: center;
  gap: 12px;
}
.google-g {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.google-reviews-info strong {
  font-size: 14px;
  color: white;
  display: block;
}
.google-reviews-info p {
  margin: 2px 0 0;
  font-size: 12px;
  color: #888;
}
.google-reviews-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.google-btn-read {
  padding: 9px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  background: #1f3d2b;
  color: white;
  transition:
    transform 0.2s,
    opacity 0.2s;
  white-space: nowrap;
}
.google-btn-read:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}
.google-btn-write {
  padding: 9px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  border: 1px solid #333;
  color: #ccc;
  transition:
    transform 0.2s,
    opacity 0.2s,
    border-color 0.2s;
  white-space: nowrap;
}
.google-btn-write:hover {
  border-color: #4285f4;
  color: #4285f4;
  transform: translateY(-1px);
}
.contact-sub {
  margin: 0 0 24px;
  opacity: 0.6;
  color: #aaa;
  font-size: 14px;
}
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  padding: 14px 16px;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.contact-info-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  border-color: #333;
}
.contact-info-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-info-item strong {
  display: block;
  color: white;
  font-size: 14px;
  margin-bottom: 4px;
}
.contact-info-item p {
  margin: 2px 0 0;
  font-size: 13px;
  color: #aaa;
  opacity: 0.8;
}
.contact-info-item a {
  color: #1f3d2b;
  text-decoration: none;
  font-weight: bold;
}
.contact-info-item a:hover {
  text-decoration: underline;
}
.contact-map {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #2a2a2a;
}
.contact-map iframe {
  width: 100%;
  height: 220px;
  border: 0;
  display: block;
}
.trust {
  margin-top: 16px;
  font-size: 13px;
  opacity: 0.4;
  color: #aaa;
}

/* ===================== FOOTER ===================== */
footer {
  text-align: center;
  padding: 24px 10px;
  background: #050505;
  color: #555;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
footer p {
  margin: 5px 0;
  font-size: 13px;
}
footer a {
  color: #fff;
  text-decoration: none;
}
.demo-note {
  margin-top: 12px !important;
  color: #555 !important;
  opacity: 0.8 !important;
  font-size: 12px !important;
  font-style: italic;
}

/* ===================== MODAL ===================== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}
.modal-content {
  background: #1a1a1a;
  border-radius: 16px;
  padding: 35px 30px;
  max-width: 400px;
  width: 100%;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  animation: modalIn 0.25s ease;
  border: 1px solid #2a2a2a;
}
@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.close-modal {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 26px;
  cursor: pointer;
  color: #555;
  line-height: 1;
  transition: color 0.2s;
}
.close-modal:hover {
  color: #ccc;
}
.modal-content h3 {
  margin: 0 0 6px;
  font-size: 22px;
  color: white;
}
.modal-content > p {
  margin: 0 0 14px;
  font-size: 14px;
  color: #666;
}
.modal-hours {
  background: #111;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.modal-hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.modal-hours-label {
  color: #888;
  font-size: 13px;
  white-space: nowrap;
}
.modal-hours-badge {
  background: #2a2a2a;
  color: #ddd;
  font-weight: 600;
  font-size: 12px;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
}
.modal-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.modal-btn {
  display: block;
  padding: 14px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 15px;
  text-align: center;
  transition:
    transform 0.2s,
    opacity 0.2s;
}
.modal-btn:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}
.modal-btn.call {
  background: #1f3d2b;
  color: white;
}
.modal-btn.insta {
  background: linear-gradient(
    135deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
  color: white;
}
.modal-btn.maps {
  background: #2a2a2a;
  color: white;
  border: 1px solid #333;
}

/* ===================== SCROLL ARROW ===================== */
.scroll-arrow {
  display: none; /* скрита на десктоп */
}

@keyframes arrowBounce {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50%       { transform: translateY(7px); opacity: 1; }
}

/* ===================== STICKY BAR (mobile) ===================== */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1500;
  background: rgba(6, 6, 6, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  height: 60px;
  transition: transform 0.3s ease;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}
.sticky-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  height: 100%;
  text-decoration: none;
  color: white;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s;
  gap: 7px;
}
.sticky-item:hover {
  background: rgba(255, 255, 255, 0.06);
}
.sticky-item.highlight {
  background: #fff;
  color: #000;
}
.sticky-item.highlight:hover {
  background: #e8e8e8;
}

/* ===================== DESKTOP FLOATING BUTTON ===================== */
.desktop-float-btn {
  display: none;
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 1500;
  background: #fff;
  color: #000;
  font-weight: 700;
  font-size: 14px;
  padding: 14px 22px;
  border-radius: 50px;
  text-decoration: none;
  border: 1px solid #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    opacity 0.3s;
}
.desktop-float-btn:hover {
  background: #000;
  color: #fff;
}
.desktop-float-btn.hidden {
  opacity: 0;
  pointer-events: none;
}

/* ===================== HAMBURGER ===================== */
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: white;
}

/* ===================== RESPONSIVE ===================== */

/* TABLET */
@media (max-width: 1024px) and (min-width: 769px) {
  .hero-section {
    min-height: 100dvh;
    align-items: center;
    justify-content: flex-start;
    padding: 0 48px;
    background:
      linear-gradient(
        to right,
        rgba(0, 0, 0, 0.82) 0%,
        rgba(0, 0, 0, 0.55) 55%,
        rgba(0, 0, 0, 0.25) 100%
      ),
      linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0) 30%,
        rgba(0, 0, 0, 0) 70%,
        rgba(0, 0, 0, 0.5) 100%
      ),
      url("images/hero.webp") 60% center/cover no-repeat;
  }
  .hero-content {
    margin-left: 0;
    max-width: 500px;
    text-align: left;
    align-items: flex-start;
  }
  .hero-content h1 {
    font-size: 44px;
  }
  .hero-btn {
    width: auto;
  }
}

@media (max-width: 900px) {
  .rc-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  /* Премахване на всички анимации на мобилен — предотвратява прескачането */
  .hero-content {
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
    will-change: auto !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    will-change: auto !important;
  }
  .reveal.visible {
    opacity: 1 !important;
    transform: none !important;
  }

  .menu-toggle {
    display: block;
  }

  /* лого на мобилен — малко по-голямо от десктоп за четливост */
  .logo-img {
    height: 54px;
  }

  .nav-links {
    position: absolute;
    /* CHANGED: коригиран top спрямо мобилната navbar height */
    top: 74px;
    right: 0;
    background: #000;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
    transform: translateY(-200%);
    transition: transform 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .nav-links.active {
    transform: translateY(0);
  }
  .nav-links a {
    margin: 0;
    font-size: 18px;
  }

  .hero-section {
    background:
      linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(0, 0, 0, 0.22) 28%,
        rgba(0, 0, 0, 0.32) 58%,
        rgba(0, 0, 0, 0.82) 100%
      ),
      url("images/hero.webp") 72% center/cover no-repeat;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    min-height: 100dvh;
  }

  .hero-content {
    text-align: center;
    align-items: center;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    margin-top: -20px;
  }

  /* CHANGED: по-голям h1 на мобилен */
  .hero-content h1 {
    font-size: 36px;
    letter-spacing: 2px;
    line-height: 1.12;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.9), 0 0 40px rgba(0, 0, 0, 0.7);
  }

  /* CHANGED: по-голям subtitle */
  .hero-content p {
    font-size: 18px;
    margin: 14px 0 28px;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.85);
  }

  /* Бял бутон на мобилен — оригинален стил */
  .hero-btn {
    width: 90%;
    max-width: 320px;
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #ffffff;
    font-weight: 600;
  }
  .hero-btn:hover {
    background-color: #000000;
    color: #ffffff;
  }

  /* CHANGED: по-голям и по-четлив info блок */
  .hero-info {
    justify-content: center;
    margin-top: 24px;
    font-size: 16px;
    line-height: 2;
    gap: 2px;
    flex-direction: column;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.95);
  }

  .scroll-arrow {
    display: flex;
    margin-top: 28px;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    opacity: 0.75;
  }
  .scroll-arrow svg {
    width: 26px;
    height: 26px;
    filter: drop-shadow(0 1px 4px rgba(0,0,0,0.8));
  }

  .about-content {
    flex-direction: column;
    text-align: center;
  }
  .about-text {
    order: 1;
  }
  .about-image {
    order: 2;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .google-reviews-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .google-reviews-actions {
    width: 100%;
  }
  .google-btn-read,
  .google-btn-write {
    flex: 1;
    text-align: center;
  }
  .mobile-sticky-bar {
    display: flex;
  }
  .desktop-float-btn {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .desktop-float-btn {
    display: block;
  }
}

@media (max-width: 600px) {
  .mobile-br {
    display: block;
  }
  .hero-section {
    min-height: 100dvh;
  }

  /* CHANGED: по-голям h1 на малки телефони */
  .hero-content h1 {
    font-size: 30px;
    letter-spacing: 1.5px;
  }
  .hero-content p {
    font-size: 17px;
    margin: 12px 0 24px;
  }
  .hero-info {
    font-size: 15px;
    gap: 2px;
    line-height: 2;
    flex-direction: column;
    margin-top: 20px;
  }
  .gallery-img {
    height: 160px;
  }
  section {
    padding: 70px 20px;
  }
  .about {
    padding: 70px 20px;
  }
  .gallery {
    padding: 70px 20px;
  }
}

@media (max-width: 500px) {
  .service {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .service > span {
    min-width: unset;
    text-align: right;
    align-self: flex-end;
  }
  .vip-right {
    flex-direction: row;
    align-items: center;
    align-self: flex-end;
  }
  .social-btn {
    padding: 8px 10px;
    font-size: 11px;
  }
  .hero-info-divider {
    display: none;
  }
}

@media (max-width: 400px) {
  .social-buttons {
    flex-wrap: nowrap;
  }
  .social-btn {
    flex: 1;
    font-size: 11px;
    padding: 8px 6px;
    white-space: nowrap;
  }
}
