/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  overflow-y: scroll;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #0b0b0b;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;

  min-height: 78px;
  padding: 14px 20px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  background: rgba(20, 20, 20, 0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  z-index: 1200;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 4px 18px rgba(0,0,0,0.18);

  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
  background: rgba(20, 20, 20, 0.96);
  box-shadow: 0 8px 24px rgba(0,0,0,0.28);
}

.logo {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1201;
  position: relative;
  left: 13px;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  gap: 32px;
  margin: 0 auto;
  position: relative;
  left: -24px;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #00c3ff;
}

/* HERO */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 20px 60px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('img/P1.WebP') center/cover no-repeat;
  transform: scale(1.08);
  filter: blur(2.5px);
  will-change: transform;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.72), rgba(0,0,0,0.45));
}

.hero-content {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 92%;
  max-width: 1250px;
  align-items: center;
  gap: 50px;
  z-index: 1;
}

.text-left {
  max-width: 690px;
}

/* Hero entrance animations */
.text-left h1 {
  font-size: 64px;
  margin-bottom: 18px;
  line-height: 1.1;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 0.7s ease 0.1s forwards;
}

.hero-subtext {
  color: #e4e4e4;
  margin-bottom: 24px;
  font-size: 1.15rem;
  max-width: 560px;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 0.7s ease 0.25s forwards;
}

.hero-points {
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 0.7s ease 0.4s forwards;
}

.hero-points p {
  color: #d7d7d7;
  margin-bottom: 12px;
  font-weight: 400;
  font-size: 1.08rem;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 0.7s ease 0.55s forwards;
}

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn-primary,
.btn-secondary {
  text-decoration: none;
  padding: 15px 24px;
  border-radius: 14px;
  font-weight: 700;
  transition: 0.3s;
}

.btn-primary {
  background: #00c3ff;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0,195,255,0.28);
}

.btn-primary:hover {
  background: #00a6d9;
  transform: translateY(-2px);
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  color: #fff;
}

.btn-secondary:hover {
  border-color: #00c3ff;
  color: #00c3ff;
}

/* SCROLL ANIMATION BASE CLASSES */
.fade-up {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 0.75s cubic-bezier(.22,.68,0,1.2),
              transform 0.75s cubic-bezier(.22,.68,0,1.2);
}

.fade-left {
  opacity: 0;
  transform: translateX(-52px);
  transition: opacity 0.7s cubic-bezier(.22,.68,0,1.2),
              transform 0.7s cubic-bezier(.22,.68,0,1.2);
}

.fade-right {
  opacity: 0;
  transform: translateX(52px);
  transition: opacity 0.7s cubic-bezier(.22,.68,0,1.2),
              transform 0.7s cubic-bezier(.22,.68,0,1.2);
}

.scale-in {
  opacity: 0;
  transform: scale(0.88);
  transition: opacity 0.65s ease,
              transform 0.65s cubic-bezier(.22,.68,0,1.2);
}

.stagger-child {
  transition-delay: calc(var(--i, 0) * 130ms);
}

.fade-up.visible,
.fade-left.visible,
.fade-right.visible,
.scale-in.visible {
  opacity: 1;
  transform: none;
}

/* COMMON */
section {
  position: relative;
  z-index: 2;
}

h2 {
  text-align: center;
  margin-bottom: 18px;
  font-size: 2.8rem;
  color: #fff;
}

.section-subtitle {
  max-width: 780px;
  margin: 0 auto 55px;
  text-align: center;
  color: #cfcfcf;
  font-size: 1.05rem;
}

/* ABOUT */
.about {
  padding: 100px 32px;
  background: #0f0f0f;
}

.about-grid {
  max-width: 1050px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.about-card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: center;
  padding: 20px;
  border-radius: 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 25px rgba(0,0,0,0.35);
  transition: transform 0.3s ease,
              border-color 0.4s ease,
              box-shadow 0.4s ease,
              background 0.4s ease;
}

.about-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  background: rgba(255, 255, 255, 0.06);
}

.about-card:nth-child(even) .about-image {
  order: 2;
}

.about-card:nth-child(even) .about-text {
  order: 1;
}

.about-image {
  overflow: hidden;
  border-radius: 16px;
}

.about-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

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

.about-text h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #fff;
}

.about-badge {
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(0,195,255,0.12);
  border: 1px solid rgba(0,195,255,0.3);
  color: #00c3ff;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.about-text p {
  color: #d0d0d0;
  font-size: 0.97rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-points {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 18px;
}

.about-points p {
  color: #c7c7c7;
  font-size: 0.92rem;
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 0;
}

.about-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #00c3ff;
  font-weight: 700;
  font-size: 0.93rem;
  text-decoration: none;
  transition: color 0.25s ease;
}

.about-cta:hover {
  color: #66dbff;
}

/* LOCATIONS */
.locations {
  padding: 110px 40px;
  background: #0e0e0e;
}

.locations-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.locations-grid span {
  padding: 14px 22px;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: #eaeaea;
  font-weight: 500;
  opacity: 0;
  transform: scale(0.82) translateY(12px);
  transition: opacity 0.45s ease,
              transform 0.45s cubic-bezier(.22,.68,0,1.2),
              background 0.3s,
              border-color 0.3s,
              color 0.3s;
  cursor: default;
}

.locations-grid span.visible {
  opacity: 1;
  transform: none;
}

.locations-grid span:hover {
  background: rgba(0,195,255,0.12);
  border-color: rgba(0,195,255,0.35);
  transform: translateY(-3px);
  color: #00c3ff;
}

/* GALLERY */
.gallery {
  padding: 150px 40px;
}

.slider-wrapper {
  position: relative;
  max-width: 1120px;
  margin: auto;
}

.slider-window {
  overflow: hidden;
}

.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

.slide {
  min-width: 33.3333%;
  flex: 0 0 33.3333%;
  padding: 10px;
  border: none;
  background: none;
  cursor: pointer;
  display: block;
  -webkit-tap-highlight-color: transparent;
}

.slide img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 12px 28px rgba(0,0,0,0.3);
  transition: transform 0.35s ease, filter 0.35s ease, box-shadow 0.35s ease;
}

@media (hover: hover) and (pointer: fine) {
  .slide:hover img {
    transform: translateY(-4px) scale(1.02);
    filter: brightness(0.94);
    box-shadow: 0 16px 32px rgba(0,0,0,0.36);
  }
}

.slide:active img {
  transform: scale(0.98);
}

@media (max-width: 768px) {
  .slide {
    min-width: 100%;
    flex: 0 0 100%;
    padding: 4px;
  }

  .slide img {
    aspect-ratio: 1 / 1;
    border-radius: 14px;
  }
}

/* GALLERY ARROWS (same look as the review arrows, sitting on the sides) */
.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  width: 44px;
  height: 44px;

  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);

  background: rgba(255,255,255,0.045);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  color: #fff;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0;

  z-index: 20;

  transition: all 0.25s ease;
  -webkit-tap-highlight-color: transparent;
}

.prev svg,
.next svg {
  width: 17px;
  height: 17px;
}

.prev { left: -58px; }
.next { right: -58px; }

@media (hover: hover) and (pointer: fine) {
  .prev:hover,
  .next:hover {
    background: rgba(0,195,255,0.14);
    border-color: rgba(0,195,255,0.4);
    color: #00c3ff;
  }
}

.prev:active,
.next:active {
  transform: translateY(-50%) scale(0.96);
}

@media (max-width: 1200px) {
  .slider-wrapper {
    max-width: calc(100% - 90px);
  }

  .prev { left: -52px; }
  .next { right: -52px; }
}

.dots {
  text-align: center;
  margin-top: 24px;
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(6,6,6,0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 2000;
  padding: 32px;
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-image-wrap {
  max-width: 1100px;
  max-height: 82vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image-wrap img {
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.55);
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  z-index: 5;
}

.lightbox-close svg {
  width: 18px;
  height: 18px;
}

@media (hover: hover) and (pointer: fine) {
  .lightbox-close:hover {
    background: rgba(0,195,255,0.14);
    border-color: rgba(0,195,255,0.4);
    color: #00c3ff;
  }
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.045);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  z-index: 5;
  -webkit-tap-highlight-color: transparent;
}

.lightbox-arrow svg {
  width: 18px;
  height: 18px;
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

@media (hover: hover) and (pointer: fine) {
  .lightbox-arrow:hover {
    background: rgba(0,195,255,0.14);
    border-color: rgba(0,195,255,0.4);
    color: #00c3ff;
  }
}

@media (max-width: 768px) {
  .lightbox-arrow {
    display: none !important;
  }
}

.lightbox-dots {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
}

/* Compact position indicator — a small fixed-size thumb gliding on a short
   track. It deliberately does not encode the slide count. */
.progress-track {
  position: relative;
  width: 56px;
  height: 4px;
  margin: 0 auto;
  background: rgba(255,255,255,0.14);
  border-radius: 999px;
  overflow: hidden;
}

.progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 100%;
  background: #00c3ff;
  border-radius: 999px;
  transition: transform 0.4s cubic-bezier(.22,.68,0,1.2);
}


/* CONTACT */
.contact {
  padding: 120px 40px;
}

.contact h2 {
  color: #e7e7e7;
}

form {
  max-width: 620px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
  background: rgba(255,255,255,0.05);
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

input,
textarea {
  padding: 17px;
  border-radius: 12px;
  border: none;
  outline: none;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 1rem;
  transition: background 0.3s, box-shadow 0.3s;
  font-family: 'Montserrat', sans-serif;
}

input:focus,
textarea:focus {
  background: rgba(255,255,255,0.12);
  box-shadow: 0 0 0 2px rgba(0,195,255,0.4);
}

input::placeholder,
textarea::placeholder {
  color: #c9c9c9;
}

textarea {
  resize: none;
  height: 150px;
}

button[type="submit"] {
  padding: 17px;
  border: none;
  border-radius: 15px;
  background: #00c3ff;
  color: white;
  cursor: pointer;
  transition: 0.3s;
  font-size: 1.08rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
}

button[type="submit"]:hover {
  background: #0099cc;
  transform: translateY(-2px);
}

/* FOOTER */
.footer {
  background: linear-gradient(180deg, #0c0c0c, #050505);
  padding: 50px 20px 25px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-simple {
  max-width: 1200px;
  margin: 0 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.footer-contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.3s ease,
              border-color 0.3s,
              box-shadow 0.3s,
              background 0.3s,
              opacity 0.75s cubic-bezier(.22,.68,0,1.2);
  width: 320px;
}

.footer-contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(100, 100, 100, 0.35);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.12);
  background: rgba(255,255,255,0.08);
}

.footer-contact-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #00c3ff, #0077ff);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0,195,255,0.22);
}

.footer-contact-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-contact-label {
  color: #00c3ff;
  font-size: 0.9rem;
  font-weight: 700;
}

.footer-contact-value {
  color: #e2e2e2;
  font-size: 0.95rem;
  word-break: break-word;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

.footer-bottom p {
  color: #9d9d9d;
  font-size: 0.95rem;
}

/* BURGER */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1202;
  flex-shrink: 0;
}

.burger span {
  display: block;
  width: 28px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.35s ease, background 0.35s ease;
}

.burger span + span {
  margin-top: 6px;
}

.burger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.burger.open span:nth-child(2) {
  opacity: 0;
}

.burger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* OVERLAY */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
  z-index: 1100;
}

.nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .text-left {
    max-width: 100%;
  }

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

  .about-card {
    grid-template-columns: 1fr;
  }

  .about-card:nth-child(even) .about-image,
  .about-card:nth-child(even) .about-text {
    order: unset;
  }
}

@media (max-width: 768px) {
  .navbar {
    min-height: 74px;
    padding: 14px 20px;
  }

  .navbar.scrolled {
    background: rgba(20, 20, 20, 0.96);
  }

  .logo {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
  }

  .burger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    width: 100%;
    height: calc(100dvh - 74px);

    background: rgba(10, 10, 10, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    gap: 28px;

    margin: 0;
    padding: 20px;

    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease, transform 0.28s ease;

    z-index: 1201;
  }

  .nav-links.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-links a {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: #fff;
    text-align: center;
    transition: color 0.3s ease, transform 0.3s ease;
  }

  .nav-links a:hover {
    color: #00c3ff;
    transform: scale(1.04);
  }

  .text-left h1 {
    font-size: 64px;
  margin-bottom: 18px;
  line-height: 1.1;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 0.7s ease 0.1s forwards;
  font-size: clamp(28px, 8vw, 64px);
  }

  .hero-subtext {
    font-size: 1rem;
  }

  .gallery {
    padding: 50px 0;
  }

  .gallery h2,
  .gallery .section-subtitle {
    padding: 0 20px;
  }

  .reviews,
  .contact,
  .about,
  .locations {
    padding: 90px 20px;
  }

  .reviews-container {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .review-card {
    width: 100%;
    max-width: 360px;
  }

  form {
    width: 100%;
    padding: 26px 20px;
  }

  .about-image img {
    height: 220px;
  }

  .about-text h3 {
    font-size: 1.3rem;
  }

  .about-text p {
    font-size: 0.95rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  .footer {
    padding: 45px 20px 20px;
  }

  .footer-contact-card {
    max-width: 100%;
    width: 100%;
  }

  /* Swipe is the primary control on touch/mobile — arrows step aside */
  .prev,
  .next,
  .review-arrow,
  .lightbox-arrow {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .slide {
    padding: 0;
  }

  .slide img {
    aspect-ratio: 4 / 3;
    border-radius: 14px;
  }
}
/* REVIEWS */
.reviews {
  padding: 130px 40px;
  background:
    radial-gradient(circle at top, rgba(13, 27, 31, 0.12), transparent 38%),
    linear-gradient(180deg, #0b0b0b, #101010);

  overflow-x: hidden;
}

.reviews-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}

.reviews-badge {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(0,195,255,0.12);
  border: 1px solid rgba(0,195,255,0.35);
  color: #00c3ff;
  font-weight: 800;
  font-size: 0.9rem;
}

.reviews-header p {
  color: #cfcfcf;
  font-size: 1.05rem;
  margin-bottom: 22px;
}

.google-rating {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff;
  font-weight: 800;
}

.stars,
.review-stars {
  color: #ffc107;
  letter-spacing: 2px;
}

.reviews-slider-wrapper {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
}

.reviews-window {
  overflow: hidden;
  padding: 8px 4px 18px;
}

.reviews-slider {
  display: flex;
  justify-content: center;
  transition: transform 0.45s ease;
  will-change: transform;
}

.reviews-slider.is-slider {
  justify-content: flex-start;
}

.google-review-card {
  flex: 0 0 calc(33.3333% - 24px);
  margin: 0 12px;
  min-height: auto;
  padding: 26px 24px;
  border-radius: 18px;

  background: rgba(255,255,255,0.035);

  border: 1px solid rgba(255,255,255,0.07);

  box-shadow: 0 8px 22px rgba(0,0,0,0.22);

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.google-review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,195,255,0.25);
  background: rgba(255,255,255,0.05);
}

.review-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.review-avatar {
  width: 38px;
  height: 38px;
  min-width: 38px;

  border-radius: 50%;

  background: rgba(0,195,255,0.14);

  color: #00c3ff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 700;
  font-size: 0.92rem;

  border: 1px solid rgba(0,195,255,0.22);
}

.review-top h3 {
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 2px;
}

.review-top span {
  display: block;
  font-size: 0.78rem;
  line-height: 1.2;
  color: #909090;
}

.review-text {
  color: #c8c8c8;
  font-size: 0.92rem;
  line-height: 1.65;
  margin-top: 10px;
  cursor: default;
  user-select: none;
}

/* REVIEW BUTTONS (slider arrows) */
.review-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  width: 44px;
  height: 44px;

  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);

  background: rgba(255,255,255,0.045);

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  color: #fff;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  line-height: 1;
  padding: 0;

  z-index: 20;

  transition: all 0.25s ease;

  -webkit-tap-highlight-color: transparent;
}

.review-arrow svg {
  width: 17px;
  height: 17px;
}

/* DESKTOP */
.review-prev {
  left: -58px;
}

.review-next {
  right: -58px;
}

@media (hover: hover) and (pointer: fine) {
  .review-arrow:hover {
    background: rgba(0,195,255,0.14);
    border-color: rgba(0,195,255,0.4);
    color: #00c3ff;
  }
}

.review-arrow:active {
  transform: translateY(-50%) scale(0.96);
}

/* DOTS */
.reviews-dots {
  text-align: center;
  margin-top: 18px;
}

/* GOOGLE BUTTON (base) */
.google-review-button {
  display: table;
  margin: 34px auto 0;

  padding: 16px 26px;

  border-radius: 16px;

  background: #00c3ff;
  color: #fff;

  text-decoration: none;
  font-weight: 800;

  box-shadow: 0 12px 32px rgba(0,195,255,0.28);

  transition: 0.3s ease;
}

.google-review-button:hover {
  background: #00a6d9;
  transform: translateY(-3px);
}

/* =========================================================
   GOOGLE REVIEW BUTTONS — LEAVE REVIEW / READ ALL REVIEWS
   (Base/global rules — apply at every screen size, not just mobile)
   ========================================================= */

.reviews-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 38px;
  width: 100%;
}

.reviews-buttons .google-review-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  width: auto;
  min-width: 230px;
  height: 58px;

  margin: 0;
  padding: 0 30px;

  border-radius: 999px;
  border: 1.5px solid transparent;

  text-align: center;
  text-decoration: none;

  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.2px;

  box-sizing: border-box;
  transition: transform 0.35s cubic-bezier(.22,.68,0,1.2),
              box-shadow 0.35s ease,
              background 0.35s ease,
              color 0.35s ease,
              border-color 0.35s ease;
}

.reviews-buttons .google-review-button svg {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
  transition: transform 0.35s ease;
}

.reviews-buttons .google-review-button:hover svg {
  transform: scale(1.12) rotate(-4deg);
}

.reviews-buttons .google-review-button:active {
  transform: translateY(-1px) scale(0.98);
}

/* READ ALL REVIEWS — primary, gradient fill */
.reviews-buttons .google-review-button:not(.leave-review-button) {
  background: linear-gradient(135deg, #00c3ff, #0077ff);
  color: #fff;
  box-shadow: 0 14px 34px rgba(0,195,255,0.32);
}

.reviews-buttons .google-review-button:not(.leave-review-button):hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(0,195,255,0.42);
}

/* LEAVE REVIEW — secondary, glass outline that fills to match on hover.
   The gradient lives in a ::before layer so it can fade in via opacity
   instead of the background snapping instantly, which is what caused
   the abrupt/jarring hover before. */
.leave-review-button {
  position: relative;
  overflow: hidden;
  z-index: 1;

  background: rgba(255,255,255,0.05);
  color: #00c3ff;
  border-color: rgba(0,195,255,0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.25);

  transition:
    color 0.45s ease,
    border-color 0.45s ease,
    box-shadow 0.45s ease,
    transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.leave-review-button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, #00c3ff, #0077ff);
  opacity: 0;
  transition: opacity 0.45s ease;
}

.leave-review-button:hover {
  color: #fff;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(0,195,255,0.42);
}

.leave-review-button:hover::before {
  opacity: 1;
}

/* TABLET */
@media (max-width: 1200px) {

  .reviews-slider-wrapper {
    max-width: calc(100% - 90px);
  }

  .review-prev {
    left: -52px;
  }

  .review-next {
    right: -52px;
  }
}

/* SMALL TABLET */
/* ============================================================
   TABLET OPTIMIZATION — REVIEWS SECTION
   Paste this block at the END of your style.css
   (after the existing mobile @media blocks)
   ============================================================ */

/* ----------------------------------------------------------
   TABLET PORTRAIT  (600px – 900px)
   Single card per view, centred arrows beside the window
   ---------------------------------------------------------- */
@media (min-width: 600px) and (max-width: 900px) {

  .reviews {
    padding: 100px 24px;
  }

  /* Full-width slider window with room for arrows */
  .reviews-slider-wrapper {
    max-width: 100%;
    padding: 0 62px;        /* space reserved for arrows */
  }

  /* Arrows sit just outside the window */
  .review-prev { left: 0; }
  .review-next { right: 0; }

  /* Each card occupies the full window width */
  .google-review-card {
    flex: 0 0 calc(100% - 24px);
    min-height: auto;
    padding: 24px 22px;
  }

  /* Slightly smaller arrow buttons */
  .review-arrow {
    width: 46px;
    height: 46px;
    font-size: 18px;
  }

  /* Rating badge */
  .google-rating {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  /* Review text readable size */
  .review-text {
    font-size: 0.95rem;
  }

  /* Google button full-width feel */
  .google-review-button {
    padding: 14px 22px;
    font-size: 0.97rem;
  }
}

/* ----------------------------------------------------------
   TABLET LANDSCAPE  (901px – 1199px)
   Two cards per view — avoids overflow on medium screens
   ---------------------------------------------------------- */
@media (min-width: 901px) and (max-width: 1199px) {

  .reviews {
    padding: 110px 32px;
  }

  /* Arrows outside the window */
  .reviews-slider-wrapper {
    max-width: calc(100% - 112px);
    margin: 0 auto;
  }

  .review-prev { left: -56px; }
  .review-next { right: -56px; }

  /* Two cards per row */
  .google-review-card {
    flex: 0 0 calc(50% - 24px);
    min-height: auto;
    padding: 24px 22px;
  }

  .review-text {
    font-size: 0.94rem;
  }
}

/* MOBILE */
@media (max-width: 599px) {

  .reviews {
    padding: 70px 20px;
  }

  .reviews-slider-wrapper {
    max-width: 100%;
    padding: 0;
  }

  .reviews-window {
    overflow: hidden;
    padding: 4px 0 14px;
  }

  .review-prev {
    left: -10px;
  }

  .review-next {
    right: -10px;
  }

  .reviews-slider {
    width: 100%;
  }

  .google-review-card {
  flex: 0 0 calc(100% - 32px);
  margin: 0 16px;
  min-height: auto;
  padding: 20px 18px;
  border-radius: 18px;
  box-sizing: border-box;
}

  .review-top {
    gap: 10px;
    margin-bottom: 10px;
  }

  .review-avatar {
    width: 38px;
    height: 38px;
    min-width: 38px;
  }

  .review-top h3 {
    font-size: 0.95rem;
  }

  .review-top span {
    font-size: 0.78rem;
  }

  .review-stars {
    font-size: 0.85rem;
  }

  .review-text {
    font-size: 0.88rem;
    line-height: 1.6;
    margin-top: 8px;
  }

  .review-arrow {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  .google-review-button {
    padding: 13px 20px;
    font-size: 0.9rem;
  }
}

/* Smaller phones: shrink the leave/read buttons */
@media (max-width: 600px) {

  .reviews-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .reviews-buttons .google-review-button {
    min-width: 0;
    width: 100%;
    max-width: 280px;
    height: 50px;
    padding: 0 22px;
    gap: 8px;
    font-size: 13px;
  }

  .reviews-buttons .google-review-button svg {
    width: 16px;
    height: 16px;
  }
}