* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, system-ui, sans-serif;
}

body {
  background: #faf6f5;
  color: #222;
}

 .page-bg {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #eee8cd, #adadae);
  z-index: -2;
}

/* HERO CARD */
.hero-card {
  max-width: 1200px;
  margin: 60px auto;
  background: white;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.25);
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  font-weight: 600;
}

.logo {
  font-size: 16px;
  white-space: nowrap;
}

.badge {
  justify-self: center;
  font-size: 14px;
  white-space: nowrap;
}

.nav-right {
  justify-self: end;
}


.phone {
  text-decoration: none;
  color: #111;
  font-size: 14px;
  white-space: nowrap;
}
.hero {
  position: relative;
  height: 420px;
  background: url("images/hero.jpg") center/cover no-repeat;

  display: flex;
 align-items: flex-start;   
  padding-top: 0.1px ;
  padding-left: 50px;  
  justify-content: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.hero-text {
  position: relative;
  padding: 20px;
  max-width: 620px;
  margin: 0 auto; 

  color: #fff;
  text-align: center;

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

  border-radius: 18px;

  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.14),
    rgba(255,255,255,0.06)
  );

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

  box-shadow:
    0 20px 40px rgba(0,0,0,0.35),
    inset 0 0 0 1px rgba(255,255,255,0.08);
}


.hero-text::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;

  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.18),
    0 0 0 1px rgba(0,0,0,0.1);
}

 .hero-text h1,
.hero-text p {
  text-shadow:
    0 2px 6px rgba(0, 0, 0, 0.75),
    0 0 1px rgba(0, 0, 0, 0.9);
}

.hero-cta {
  /* margin-top: 30px; */
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  margin-right: 12px;
}

.primary {
  /* background: #ffcc00;
  color: #000; */
  border: 2px solid #fff;
  color: #fff;
  
}

.ghost {
  border: 2px solid #fff;
  color: #fff;
}

/* INTRO */
.intro {
  padding: 30px 50px;
  font-size: 1.05rem;
}

/* SERVICES */
.services {
  max-width: 1200px;
  margin: 40px auto 24px;
  padding: 0 20px;
  text-align: center;
}

.services h2 {
  margin-bottom: 40px;
  font-size: 2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

.service-card {
  background: rgb(249, 248, 248);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  text-align: center;
}

.service-card h3 {
  padding: 15px;
  text-align: center;
}

.service-card p {
  padding: 0 15px 20px;
  color: #555;
}


.cta-strip {
  background: #a3a38a;
  color: rgb(33, 32, 32);
  text-align: center;
  padding: 30px 20px;
}

.large {
  font-size: 1.1rem;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 25px;
  color: #292828;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-text {
    padding: 40px;
  }

  .hero-text h1 {
    font-size: 2rem;
  }
}


.gallery-section {
  padding: 32px 60px 80px;
  max-width: 1200px;
  margin: auto;
}

.gallery-section h2 {
  font-size: 2.2rem;
  margin-bottom: 25px;
  text-align: center;
  color: #222;
}

.photo-gallery {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 15px;

  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.photo-gallery::-webkit-scrollbar {
  height: 8px;
}

.photo-gallery::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.25);
  border-radius: 10px;
}

.photo-gallery img {
  flex: 0 0 auto;
  width: 340px;
  height: 220px;
  object-fit: cover;

  border-radius: 14px;
  scroll-snap-align: start;

  transition: transform 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.photo-gallery img:hover {
  transform: scale(1.06);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}
@media (max-width: 768px) {
  .gallery-section {
    padding: 50px 20px;
  }

  .photo-gallery img {
    width: 280px;
    height: 190px;
  }
}

.reviews-section {
  max-width: 1200px;
  margin: 10px auto 24px;
  padding: 0 20px;
  text-align: center;
}

.reviews-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.reviews-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 0;
  scrollbar-width: none;
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  min-width: 320px;
  background: #fefefe;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  text-align: left;
}

.review-arrow {
  background: #fff;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: transform 0.2s ease;
}

.review-arrow:hover {
  transform: scale(1.1);
}

.review-arrow.left {
  margin-right: 10px;
}

.review-arrow.right {
  margin-left: 10px;
}
.reviews-section h2{
    font-size: 2.2rem;
  margin-bottom: 25px;
  text-align: center;
  color: #222;
}

.stars {
  color: #ffcc00;
  font-size: 18px;
  margin-bottom: 10px;
}
 

@media (max-width: 768px) {
  .hero {
    height: auto;
    padding: 40px 16px 60px;
  }

  .hero-text {
    margin: 0;
    max-width: 100%;
    padding: 28px 22px;
  }

  .hero-text h1 {
    font-size: 24px;
    line-height: 1.3;
  }

  .hero-text p {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .hero-cta {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .hero-cta .btn {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .intro {
    padding: 24px 20px;
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .nav {
    grid-template-columns: 1fr;
    text-align: center;
    row-gap: 8px;
  }

  .logo {
    justify-self: center;
    font-size: 15px;
  }

  .badge {
    font-size: 13px;
  }

  .nav-right {
    justify-self: center;
  }

  .phone {
    font-size: 14px;
  }
}
