# CLEANED style.css

```css
/* style.css - Clean Version */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Montserrat:wght@400;500;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #FAF7F2;
}

/* ==================== TYPOGRAPHY ==================== */

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

h1 {
  font-size: 4.5rem;
}

h2 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 2.5rem;
  color: #333;
}

/* ==================== NAVBAR ==================== */

.navbar{
    position:sticky;
    top:0;
    left:0;
    width:100%;
    background:rgba(255,255,255,.92);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
    box-shadow:0 8px 30px rgba(0,0,0,.06);
    z-index:9999;
    transition:.35s ease;
}

.nav-container{

    max-width:1280px;

    margin:auto;

    padding:18px 30px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.logo img{

    height:72px;

    transition:.35s ease;

}

.logo img:hover {
  height: 90px;
}

.nav-menu a{

    color:#222;

    text-decoration:none;

    margin:0 18px;

    font-weight:500;

    letter-spacing:.5px;

    transition:.3s;

}

.nav-menu a:hover {
  color: #E8B923;
}

.wa-button{

    background:#C89B3C;

    color:#fff;

    padding:14px 28px;

    border-radius:40px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.wa-button:hover{

    background:#A67C2F;

    transform:translateY(-3px);

}

/* ==================== HERO ==================== */

.hero{

    position:relative;

    height:100vh;

    min-height:750px;

    display:flex;

    align-items:center;

    justify-content:center;

    overflow:hidden;

    background:
    linear-gradient(
    rgba(0,0,0,.45),
    rgba(0,0,0,.45)),
    url("hero.jpg")
    center center/cover
    no-repeat;

}

.hero-content{

    max-width:760px;

    text-align:center;

    color:#fff;

    z-index:2;

    padding:20px;

}

.subtitle {
  font-size: 2.3rem;
  margin: 1rem 0 0.5rem;
}

.location {
  font-size: 1.35rem;
  margin-bottom: 3rem;
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 34px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-primary {
  background: #E8B923;
  color: #222;
}

.btn-primary:hover {
  background: #f5c94a;
  transform: translateY(-3px);
}

.btn-secondary {
  border: 2px solid white;
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-secondary:hover {
  background: white;
  color: #333;
}

/* ==================== GENERAL ==================== */

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ==================== WELCOME ==================== */

.welcome {
  padding: 110px 0;
  background: white;
  text-align: center;
}

.welcome p {
  max-width: 820px;
  margin: 0 auto;
  font-size: 1.22rem;
  color: #555;
}

/* ==================== SERVICES ==================== */

.services {
  padding: 110px 0;
  background: #F5F0E8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.2rem;
}

.service-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-12px);
}

.service-image {
  height: 320px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.service-content {
  padding: 2.2rem;
}

.service-content h3 {
  color: #E8B923;
  margin-bottom: 1.3rem;
  font-size: 1.85rem;
}

.service-content ul li {
  padding: 9px 0;
  border-bottom: 1px solid #f0f0f0;
  color: #444;
}

/* ==================== PRICE LIST ==================== */

.price-list {
  padding: 120px 0;
  background: #f7efe6;
}

.price-list h2 {
  font-size: 3.2rem;
  margin-bottom: 4rem;
  text-align: center;
  color: #B58A52;
}

.price-category {
  font-family: 'Playfair Display', serif;
  font-size: 2.3rem;
  color: #B58A52;
  margin: 4rem 0 2rem;
  font-style: italic;
}

.price-item {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(181,138,82,0.18);
}

.price-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  position: relative;
  margin-bottom: 12px;
}

.price-top span:first-child {
  font-size: 1.45rem;
  font-family: 'Playfair Display', serif;
  color: #3b2b1f;
  background: #f7efe6;
  padding-right: 14px;
  z-index: 2;
}

.price-top span:last-child {
  font-size: 1.4rem;
  font-family: 'Playfair Display', serif;
  color: #B58A52;
  background: #f7efe6;
  padding-left: 14px;
  z-index: 2;
  white-space: nowrap;
}

.price-top::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 52%;
  border-bottom: 2px dotted #c8a97e;
  z-index: 1;
}

.price-item p {
  font-size: 1.02rem;
  color: #5b4a3b;
  line-height: 1.9;
  font-style: italic;
  max-width: 90%;
}

.price-button {
  margin-top: 4rem;
  text-align: center;
}

.price-button a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #B58A52;
  color: white;
  text-decoration: none;
  padding: 16px 38px;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.price-button a:hover {
  background: #9d7442;
  transform: translateY(-3px);
}

/* ==================== GALLERY ==================== */

.gallery {
  padding: 140px 0 110px;
  background: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 18px;
  cursor: pointer;
  transition: all 0.4s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

/* ==================== LIGHTBOX ==================== */

.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  text-align: center;
}

.lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 12px;
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: white;
  font-size: 40px;
  cursor: pointer;
}

/* ==================== CONTACT ==================== */

.contact {
  padding: 100px 0;
  background: #2C2C2C;
  color: white;
}

.contact h2 {
  color: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h3 {
  color: #E8B923;
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
}

.open-hours {
  margin-top: 8px;
  font-size: 14px;
  color: #ccc;
}

.open-hours i {
  margin-right: 6px;
  color: #f5c16c;
}

.wa-contact {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.8rem;
  color: #25D366;
  text-decoration: none;
  margin: 1rem 0;
}

.instagram,
.tiktok {
  font-size: 1.6rem;
  margin-top: 1rem;
}

.instagram a,
.tiktok a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.instagram a:hover {
  color: #E4405F;
}

.tiktok a:hover {
  color: #FF2D55;
}

.map-container {
  width: 100%;
}

.map-container iframe {
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.28);
}

/* ==================== FOOTER ==================== */

footer {
  background: #1a1a1a;
  color: #aaa;
  text-align: center;
  padding: 2.2rem 0;
  font-size: 0.95rem;
}

/* ==================== FLOATING WA ==================== */

.floating-wa {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25D366;
  color: white;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
  z-index: 999;
  transition: transform 0.3s;
  animation: waFloat 2s infinite;
}

.floating-wa:hover {
  transform: scale(1.12);
}

@keyframes waFloat {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

/* ==================== POPUP PROMO ==================== */



/* ==================== RESPONSIVE ==================== */

@media (max-width: 992px) {

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .map-container iframe {
    height: 350px;
  }
}

@media (max-width: 768px) {

  h1 {
    font-size: 3.2rem;
  }

  .subtitle {
    font-size: 1.8rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .btn {
    width: 85%;
    max-width: 320px;
    padding: 16px 20px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-image {
    height: 260px;
  }

  .logo img {
    height: 70px;
  }

  .price-list {
    padding: 90px 0;
  }

  .price-list h2 {
    font-size: 2.5rem;
  }

  .price-category {
    font-size: 1.9rem;
  }

  /* ================= MOBILE PRICE LIST FIX ================= */

  .price-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 8px;
  }

  .price-top::after {
    display: none;
  }

  .price-top span:first-child {
    font-size: 1.08rem;
    line-height: 1.5;
    max-width: 68%;
    background: transparent;
    padding: 0;
  }

  .price-top span:last-child {
    font-size: 1rem;
    white-space: nowrap;
    background: transparent;
    padding: 0;
    text-align: right;
  }

  .price-item p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: #6b5b4d;
    max-width: 100%;
  }

  .price-button a {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 576px) {

  h1 {
    font-size: 2.6rem;
  }

  .subtitle {
    font-size: 1.5rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .popup-box {
    max-width: 94%;
  }

  .popup-close {
    width: 38px;
    height: 38px;
    line-height: 38px;
    font-size: 26px;
  }
}
```
/* ==================== TRANSPORT ==================== */

.transport{
    padding:110px 0;
    background:#fff;
}

.transport-box{
    max-width:850px;
    margin:auto;
    background:#F8F5EF;
    padding:55px;
    border-radius:24px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.transport-icon{
    font-size:70px;
    color:#E8B923;
    margin-bottom:20px;
}

.transport-box h3{
    font-size:2rem;
    margin-bottom:20px;
    color:#333;
}

.transport-box p{
    font-size:1.15rem;
    line-height:1.9;
    color:#555;
    margin-bottom:35px;
}

.transport-area{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;
    margin-bottom:35px;
}

.transport-area span{
    background:#E8B923;
    color:#fff;
    padding:12px 20px;
    border-radius:40px;
    font-weight:600;
}

.transport-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#25D366;
    color:white;
    text-decoration:none;
    padding:16px 35px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.transport-btn:hover{
    transform:translateY(-3px);
}

.transport-box small{
    display:block;
    margin-top:25px;
    color:#777;
}

@media(max-width:768px){

.transport-box{
    padding:35px 25px;
}

.transport-box h3{
    font-size:1.5rem;
}

.transport-box p{
    font-size:1rem;
}

.transport-area span{
    font-size:.9rem;
    padding:10px 16px;
}

}

/*======================================================
PAGE BANNER
======================================================*/

.page-banner{

    background:linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
    url("hero.jpg") center center/cover no-repeat;

    height:320px;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    color:#fff;

}

.page-banner h1{

    font-family:'Playfair Display',serif;

    font-size:58px;

    margin-bottom:15px;

    letter-spacing:1px;

}

.page-banner p{

    font-size:20px;

    color:#f5f5f5;

}

@media(max-width:768px){

.page-banner{

height:220px;

padding:20px;

}

.page-banner h1{

font-size:38px;

}

.page-banner p{

font-size:16px;

}

}

/*======================================================
SECTION TITLE
======================================================*/

.section-title{

    font-size:48px;

    text-align:center;

    margin-bottom:15px;

    color:#222;

}

.section-subtitle{

    color:#C89B3C;

    text-transform:uppercase;

    letter-spacing:4px;

    text-align:center;

    font-weight:600;

    margin-bottom:15px;

}

/*======================================================
SMOOTH HOVER
======================================================*/

.service-card,
.gallery-grid img,
.transport-box,
.price-item{

transition:.35s ease;

}

.service-card:hover{

transform:translateY(-10px);

}

.gallery-grid img:hover{

transform:scale(1.03);

}

.transport-box:hover{

transform:translateY(-6px);

}

/* HERO TITLE */

.hero h1{

    font-size:72px;

    line-height:1.1;

    margin-bottom:20px;

    color:#fff;

    font-weight:700;

}

.hero h1{

    font-size:72px;

    color:#fff;

    line-height:1.1;

    margin-bottom:20px;

    text-shadow:0 8px 20px rgba(0,0,0,.25);

}

.hero .subtitle{

    font-size:28px;

    color:#fff;

    font-weight:400;

    margin-bottom:18px;

    letter-spacing:1px;

}

.hero .location{

    font-size:20px;

    color:rgba(255,255,255,.9);

    margin-bottom:45px;

}

/* ================= TOP ANNOUNCEMENT ================= */

.top-announcement{

    background:#C89B3C;

    color:#fff;

    text-align:center;

    padding:12px 20px;

    font-size:15px;

    font-weight:500;

}

.top-announcement a{

    color:#fff;

    font-weight:700;

    margin-left:15px;

    text-decoration:none;

    border-bottom:1px solid rgba(255,255,255,.5);

}

.top-announcement a:hover{

    opacity:.8;

}