/* RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  -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;
}

/* ===================== SECTION HEADER С ИКОНА ===================== */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  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: #0a0a0a;
  padding: 15px 20px;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(200, 20, 20, 0.4);
}

.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: 44px;
  width: auto;
}

.logo-text {
  font-weight: bold;
  font-size: 18px;
  color: white;
  position: relative;
  transition: color 0.2s;
}

.logo-text:hover {
  color: #c8141e;
}

.logo-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background: #c8141e;
  transition: width 0.2s;
}

.logo:hover .logo-text::after {
  width: 100%;
}

.nav-links a {
  margin-left: 20px;
  color: #ccc;
  text-decoration: none;
  font-size: 15px;
  position: relative;
  transition: color 0.2s;
}

.nav-links a:not(.nav-booking-btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background: #c8141e;
  transition: width 0.2s;
}

.nav-links a:not(.nav-booking-btn):hover::after {
  width: 100%;
}
.nav-links a:hover {
  color: white;
}

.nav-booking-btn {
  padding: 8px 16px;
  border-radius: 5px;
  font-size: 14px;
  color: white !important;
  margin-left: 20px;
}

.nav-booking-btn:hover {
  color: white !important;
  opacity: 0.9;
  transform: translateY(-2px);
}

/* ===================== HERO ===================== */
header {
  min-height: 85vh;
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.75)),
    url("images/гет9.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
}

.hero-content {
  max-width: 800px;
}

header h1 {
  font-size: 57px;
  color: white;
  margin-bottom: 15px;
  margin-top: 0;
  letter-spacing: 0.5px;
  line-height: 1.1;
  text-transform: uppercase;
  white-space: nowrap;
}

.subtitle {
  font-size: 20px;
  opacity: 0.85;
  color: white;
}
header p {
  font-size: 17px;
  color: white;
}

.hero-buttons {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-note {
  margin-top: 10px;
  font-size: 14px;
  opacity: 0.7;
}

.vip-banner {
  display: inline-block;
  margin-top: 20px;
  background: rgba(200, 20, 20, 0.15);
  border: 1px solid rgba(200, 20, 20, 0.5);
  color: #ff9090;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
}

.vip-banner:hover {
  background: rgba(200, 20, 20, 0.3);
  color: white;
}

/* ===================== BUTTONS ===================== */
.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: #c8141e;
  color: white;
  box-shadow: 0 4px 12px rgba(200, 20, 30, 0.35);
}

.btn.primary:hover {
  box-shadow: 0 6px 18px rgba(200, 20, 30, 0.5);
  transform: translateY(-2px);
}

.btn.secondary {
  border: 2px solid white;
  color: white;
}
.btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* ===================== SECTIONS ===================== */
section {
  padding: 70px 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: #c8141e;
  border-radius: 2px;
}

.container {
  max-width: 1100px;
  margin: auto;
}
.services-container,
.contact-container {
  position: relative;
}
.note {
  margin-top: 15px;
  font-size: 14px;
  opacity: 0.5;
  color: #aaa;
}

/* ===================== SERVICES ===================== */
.services {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}

.service {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #1a1a1a;
  padding: 18px 20px;
  border-radius: 10px;
  border: 1px solid #2a2a2a;
  position: relative;
  transition: all 0.25s ease;
}

.service::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  bottom: 15px;
  width: 4px;
  background: #c8141e;
  border-radius: 2px;
  opacity: 0.9;
}

.service:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  border-color: #333;
}

.service div {
  display: flex;
  flex-direction: column;
  padding-left: 10px;
}

.service strong {
  font-size: 15px;
  color: white;
}
.service p {
  margin: 3px 0 0;
  font-size: 13px;
  opacity: 0.5;
  color: #aaa;
}

.service span {
  font-size: 16px;
  font-weight: bold;
  color: #c8141e;
  white-space: nowrap;
  min-width: 80px;
  text-align: right;
}

.vip-service {
  background: linear-gradient(135deg, #1a0a0a, #2a1010);
  border-color: rgba(200, 20, 30, 0.4);
  cursor: pointer;
}

.vip-service::before {
  background: #c8141e;
  opacity: 1;
}

.vip-hint {
  margin: 6px 0 0 !important;
  font-size: 12px !important;
  color: #ff9090 !important;
  opacity: 0.8 !important;
  letter-spacing: 0.3px;
}

@keyframes vipPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(200, 20, 30, 0.6);
    border-color: #c8141e;
  }
  50% {
    box-shadow: 0 0 0 10px rgba(200, 20, 30, 0);
    border-color: #c8141e;
  }
  100% {
    box-shadow: 0 0 0 0 rgba(200, 20, 30, 0);
    border-color: rgba(200, 20, 30, 0.4);
  }
}

.vip-service.highlight-pulse {
  animation: vipPulse 1.5s ease;
}

/* ===================== SERVICES TOGGLE ===================== */
.services-toggle {
  background: transparent;
  border: 1px solid #c8141e;
  color: #c8141e;
  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: 12px;
  font-family: "Inter", sans-serif;
}

.services-toggle:hover {
  background: #c8141e;
  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: 12px;
}

/* ===================== ABOUT ===================== */
.about {
  background: #111 !important;
  padding: 100px 20px;
}

.about-content {
  display: flex;
  align-items: stretch;
  gap: 40px;
  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: 20px 0 0;
  padding: 0;
  border: none;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 17px;
  color: #c8141e;
  line-height: 1.5;
  letter-spacing: 0.3px;
}

.about-stats {
  display: flex;
  gap: 0;
  margin: 20px 0;
  border-top: 1px solid #2a2a2a;
  border-bottom: 1px solid #2a2a2a;
  padding: 16px 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: 30px;
  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: #c8141e;
  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: 20px;
  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: 80px 20px;
}

.gallery-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

/* Gallery header inside the grid */
.gallery-header-inline {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
  text-align: left;
}

.gallery-header-inline h2 {
  margin: 0;
}

.gallery-sub {
  font-size: 14px;
  opacity: 0.4;
  letter-spacing: 0.5px;
  font-weight: 400;
}

.gallery-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  cursor: pointer;
  border: 1px solid #1a1a1a;
}

.gallery-img:hover {
  transform: scale(1.04);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-color: #c8141e;
}

.gallery-insta-cta {
  margin-top: 35px;
  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;
}

.review-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 4px;
  background: #c8141e;
  border-radius: 2px;
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  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: #c8141e;
  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 */
.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: #c8141e;
  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 column */
.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;
}

.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: #c8141e;
  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: 20px 10px;
  background: #050505;
  color: #555;
  font-size: 14px;
  border-top: 1px solid rgba(200, 20, 20, 0.4);
}

footer p {
  margin: 5px 0;
  font-size: 13px;
}
footer a {
  color: #c8141e;
  text-decoration: none;
}

/* ===================== 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 22px;
  font-size: 14px;
  color: #666;
}

.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: #c8141e;
  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;
}

/* ===================== STICKY BAR ===================== */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1500;
  background: #0a0a0a;
  border-top: 1px solid #1f1f1f;
  height: 60px;
  transition: transform 0.3s ease;
}

.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;
}

.sticky-item:hover {
  background: rgba(255, 255, 255, 0.05);
}
.sticky-item.highlight {
  background: #c8141e;
  color: white;
}
.sticky-item.highlight:hover {
  background: #a01015;
}

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

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

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 60px;
    right: 0;
    background: #0a0a0a;
    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 #1f1f1f;
  }

  .nav-links.active {
    transform: translateY(0);
  }
  .nav-links a {
    margin: 0;
    font-size: 18px;
  }
  .nav-booking-btn {
    display: none;
  }

  .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;
  }
}

@media (max-width: 650px) {
  header h1 {
    font-size: 36px;
    white-space: normal;
  }
}

@media (max-width: 600px) {
  .mobile-br {
    display: block;
  }
  header {
    padding: 60px 15px;
    min-height: 75vh;
  }
  header h1 {
    font-size: 32px;
    white-space: normal;
  }
  .gallery-img {
    height: 160px;
  }
  .hero-buttons {
    flex-wrap: nowrap;
    gap: 8px;
  }
  .btn {
    padding: 10px 14px;
    font-size: 13px;
  }
  .vip-banner {
    font-size: 12px;
    padding: 8px 14px;
  }
}

@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;
  }

  .social-btn {
    padding: 8px 10px;
    font-size: 11px;
  }
}

@media (max-width: 400px) {
  .social-buttons {
    flex-wrap: nowrap;
  }

  .social-btn {
    flex: 1;
    font-size: 11px;
    padding: 8px 6px;
    white-space: nowrap;
  }
}

/* ===================== HERO BUTTON FIX ===================== */
.hero-buttons .btn.primary {
  padding: 14px 20px;
  font-size: 16px;
}

/* ===================== BUTTON ANIMATION ===================== */
.btn.primary {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(200, 20, 30, 0.6);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(200, 20, 30, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(200, 20, 30, 0);
  }
}

/* ===================== MOBILE HERO FIX ===================== */
@media (max-width: 600px) {
  .hero-buttons {
    flex-direction: column;
    gap: 8px;
  }

  .hero-buttons .btn {
    width: 100%;
    text-align: center;
    padding: 10px 14px;
    font-size: 14px;
  }
}

/* ===================== SOCIAL BUTTONS FIX ===================== */
@media (max-width: 400px) {
  .social-buttons {
    flex-wrap: nowrap;
  }

  .social-btn {
    flex: 1;
    font-size: 12px;
    padding: 9px 6px;
    white-space: nowrap;
  }
}
