/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: #0d0d0f;
  color: #e4e4e7;
  line-height: 1.7;
}

/* Header / Navigation */
header.nav {
  display: flex;
  justify-content: space-between;
  padding: 22px 40px;
  background: rgba(20, 20, 22, 0.65);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
}

nav a {
  margin-left: 22px;
  color: #cfcfd4;
  text-decoration: none;
  transition: 0.3s;
}

nav a:hover {
  color: #fff;
}

/* Hero Section */
.hero {
  height: 85vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 40px;
  background: linear-gradient(135deg, #0d0d0f, #18181b);
}

/* Apple-style hero intro */
.hero-content {
  opacity: 0;
  transform: translateY(40px);
  animation: heroIntro 1.6s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}

@keyframes heroIntro {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  font-size: 3.3rem;
  font-weight: 700;
}

.hero p {
  margin-top: 12px;
  font-size: 1.25rem;
  color: #b1b1b7;
}

.cta {
  margin-top: 28px;
  padding: 13px 32px;
  background: #ffffff10;
  border: 1px solid #ffffff30;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
}

.cta:hover {
  background: #ffffff20;
}

/* Sections */
.section {
  padding: 120px 40px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.section h2 {
  font-size: 2.2rem;
  margin-bottom: 18px;
}

/* Services list */
.services {
  list-style: none;
  padding-left: 0;
}

.services li {
  text-align: center;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

/* ------------------------------------------- */
/*  SCROLL REVEAL ANIMATIONS                   */
/* ------------------------------------------- */
.fade-in {
  animation: fadeIn 1.4s ease forwards;
  opacity: 0;
}

.fade-up {
  animation: fadeUp 1.4s ease forwards;
  opacity: 0;
}

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

@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(25px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Scroll reveal base */
.section, .review-card {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s ease-out;
}

/* Scroll reveal active */
.reveal-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Footer */
.footer {
  padding: 35px;
  text-align: center;
  color: #7e7e85;
  border-top: 1px solid #1f1f22;
  margin-top: 40px;
}

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

  .hero {
    padding: 80px 20px;
    height: 75vh;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

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

  .section {
    padding: 80px 25px;
  }

  /* Faster movement but smaller spacing */

  nav a {
    margin-left: 14px;
    font-size: 0.92rem;
  }
}

/* Space between list items */
ul.services li {
  margin: 8px 0;
}

/* General spacing between tiers */
h3.tier-title {
  margin-top: 40px;
  margin-bottom: 15px;
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 700;
  position: relative;
}

/* SILVER glow (black/dark subtle) */
.tier-silver {
  color: #333;
  animation: glow-silver 2.5s ease-in-out infinite;
}

@keyframes glow-silver {
  0%   { text-shadow: 0 0 2px #000, 0 0 4px #111; }
  50%  { text-shadow: 0 0 4px #000, 0 0 8px #222; }
  100% { text-shadow: 0 0 2px #000, 0 0 4px #111; }
}

/* PLATINUM glow (white/light metallic) */
.tier-platinum {
  color: #E5E4E2;
  animation: glow-platinum 2.5s ease-in-out infinite;
}

@keyframes glow-platinum {
  0%   { text-shadow: 0 0 5px #E5E4E2, 0 0 10px #E5E4E2; }
  50%  { text-shadow: 0 0 10px #E5E4E2, 0 0 20px #E5E4E2; }
  100% { text-shadow: 0 0 5px #E5E4E2, 0 0 10px #E5E4E2; }
}

h3.divider {
  padding-bottom: 6px;               /* space between text and line */
  margin-bottom: 15px;               /* space under the line */
  border-bottom: 2px solid #ccc;     /* the actual line */
  display: inline-block;             /* makes the line only as wide as the text */
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  max-width: 1000px;
}

/* Desktop */
@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 3rem;
  }
}

.contact-location {
  margin-top: 50px;
  text-align: center;
}

.contact-location h3 {
  margin-bottom: 20px;
}

.location-image {
  width: 100%;
  max-width: 500px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* ------------------------------------------- */
/*  REVIEW CARDS — CLICK SLIDER                */
/* ------------------------------------------- */

.reviews-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 50px;
}

.reviews-viewport {
  overflow: hidden;
  width: 100%;
  max-width: 820px;
}

.reviews-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
}

/* Card (taller, premium feel) */
.review-card {
  min-width: 260px;
  max-width: 260px;
  background: #18181b;
  border-radius: 18px;
  padding: 26px 22px 30px;
  border: 1px solid #2e2e33;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  text-align: center;
}

.review-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 18px 0 20px;
  color: #d4d4d8;
}

.review-card span {
  font-size: 0.8rem;
  opacity: 0.65;
}

/* Stars */
.stars {
  color: #f5c451;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

/* Navigation arrows */
.review-nav {
  background: #ffffff10;
  border: 1px solid #ffffff25;
  color: #fff;
  font-size: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.review-nav:hover {
  background: #ffffff20;
}

/* Mobile */
@media (max-width: 768px) {
  .reviews-viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .reviews-track {
    scroll-snap-align: start;
  }

  .review-card {
    scroll-snap-align: center;
  }

  .review-nav {
    display: none;
  }
}

/* Mobile swipe layout */
.reviews-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 10px;
}

.review-card {
  flex: 0 0 85%;
  scroll-snap-align: center;
  background: #18181b;
  padding: 22px;
  border-radius: 16px;
  border: 1px solid #2e2e33;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* Hide scrollbar */
.reviews-scroll::-webkit-scrollbar {
  display: none;
}

.google-review {
  position: relative;
}

.google-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 22px;
  opacity: 0.9;
}
