body{
  margin:0;
  font-family:Arial,sans-serif;
  background:#000;
  color:#dcb471;
}



/* ===== SERVICES PAGE FIX ===== */

#services-page{
padding-top:10px;
background:#050505;
min-height:100vh;
}

#services-page .sp-hero{
height:430px;
background:linear-gradient(135deg,#000,#111,#1a1a1a);
display:flex;
justify-content:center;
align-items:center;
text-align:center;
position:relative;
padding:20px;
}

#services-page .sp-overlay{
position:absolute;
inset:0;
background:rgba(0,0,0,.55);
}

#services-page .sp-content{
position:relative;
z-index:2;
max-width:800px;
}

#services-page .sp-content h1{
font-size:58px;
color:#dcb471;
margin-bottom:15px;
}

#services-page .sp-content p{
font-size:18px;
opacity:.9;
}

#services-page .sp-grid{
max-width:1300px;
margin:auto;
padding:70px 30px;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:28px;
}

#services-page .sp-card{
background:rgba(255,255,255,.05);
border:1px solid rgba(255,255,255,.08);
backdrop-filter:blur(14px);
padding:30px;
border-radius:22px;
transition:.35s;
}

#services-page .sp-card:hover{
transform:translateY(-8px);
box-shadow:0 18px 35px rgba(212,175,55,.15);
}

#services-page .sp-card h2{
font-size:28px;
color:#dcb471;
margin-bottom:18px;
}

#services-page .sp-card p{
display:flex;
justify-content:space-between;
padding:12px 0;
border-bottom:1px solid rgba(255,255,255,.08);
}

#services-page .sp-card p:last-child{
border-bottom:none;
}

#services-page .sp-card b{
color:#dcb471;
}

#services-page .sp-cta{
padding:40px 20px 90px;
}

#services-page .sp-cta-box{
max-width:900px;
margin:auto;
padding:50px;
text-align:center;
border-radius:24px;
background:rgba(255,255,255,.05);
border:1px solid rgba(255,255,255,.08);
}

#services-page .sp-cta-box h2{
font-size:42px;
margin-bottom:15px;
}

#services-page .sp-cta-box p{
opacity:.8;
margin-bottom:24px;
}

@media(max-width:768px){

#services-page .sp-content h1{
font-size:38px;
}

#services-page .sp-grid{
grid-template-columns:1fr;
padding:50px 20px;
}

#services-page .sp-card{
padding:22px;
}

#services-page .sp-card p{
flex-direction:column;
align-items:flex-start;
gap:6px;
}

#services-page .sp-cta-box{
padding:35px 24px;
}

}

/* ===== SERVICES PAGE HERO WITH IMAGE BACKGROUND ===== */

#services-page .sp-hero{
height:230px;
position:relative;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
padding:20px;
overflow:hidden;

background:
linear-gradient(rgba(0,0,0,.60), rgba(0,0,0,.60)),
url('../images/about.jpeg');

background-size:cover;
background-position:center;
background-repeat:no-repeat;
}


/* ===================================
   CONTACT PAGE STYLING
   Paste into style/style.css
=================================== */

/* HERO */

.contact-hero{
  min-height:60vh;
  position:relative;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:30px 10px 10px;
  overflow:hidden;

  background:
  linear-gradient(rgba(0,0,0,.62), rgba(0,0,0,.62)),
  url('../images/contact-banner.jpg') center center/cover no-repeat;
}

.contact-overlay{
  position:absolute;
  inset:0;
}

.contact-hero-content{
  position:relative;
  z-index:2;
  max-width:820px;
}

.contact-hero .mini-title{
  display:block;
  color:#dcb471;
  letter-spacing:2px;
  font-size:14px;
  font-weight:600;
  margin-bottom:15px;
  text-transform:uppercase;
}

.contact-hero h1{
  font-size:56px;
  margin-bottom:14px;
  color:#fff;
}

.contact-hero p{
  font-size:18px;
  color:#fff;
  opacity:.88;
  line-height:1.7;
}


/* MAIN SECTION */

.contact-page{
  max-width:1300px;
  margin:auto;
  padding:90px 50px;

  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
}


/* GLASS */

.glass{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  box-shadow:0 10px 30px rgba(0,0,0,.25);
}


/* INFO BOX */

.contact-info{
  padding:35px;
  border-radius:22px;
}

.contact-info h2{
  font-size:34px;
  margin-bottom:18px;
}

.contact-info p{
  opacity:.82;
  margin-bottom:25px;
  line-height:1.7;
}

.info-item{
  padding:16px 0;
  border-bottom:1px solid rgba(255,255,255,.08);
  font-size:16px;
  line-height:1.7;
}

.info-item:last-child{
  border-bottom:none;
}

.info-item strong{
  color:#dcb471;
  display:block;
  margin-bottom:4px;
}

.info-item a{
  color:#fff;
  transition:.3s;
}

.info-item a:hover{
  color:#22c55e;
}


/* FORM BOX */

.contact-form-box{
  padding:35px;
  border-radius:22px;
}

.contact-form-box h2{
  font-size:34px;
  margin-bottom:22px;
}

.contact-form{
  display:flex;
  flex-direction:column;
  gap:16px;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  padding:14px 16px;
  border:none;
  outline:none;
  border-radius:12px;
  background:#111827;
  color:#fff;
  font-size:15px;
}

.contact-form textarea{
  min-height:160px;
  resize:vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder{
  color:rgba(255,255,255,.55);
}


/* BUTTON */

.contact-form .btn{
  border:none;
  cursor:pointer;
  width:fit-content;
}


/* MAP */

.map-section{
  padding:0 50px 90px;
}

.map-section iframe{
  width:100%;
  height:430px;
  border:0;
  border-radius:22px;
}


/* MOBILE */

@media(max-width:992px){

  .contact-page{
    grid-template-columns:1fr;
    padding:70px 30px;
  }

}

@media(max-width:768px){

  .contact-hero{
    min-height:auto;
    padding:135px 20px 75px;
  }

  .contact-hero h1{
    font-size:38px;
  }

  .contact-hero p{
    font-size:16px;
  }

  .contact-page{
    padding:55px 20px;
    gap:22px;
  }

  .contact-info,
  .contact-form-box{
    padding:24px;
  }

  .contact-info h2,
  .contact-form-box h2{
    font-size:28px;
  }

  .map-section{
    padding:0 20px 60px;
  }

  .map-section iframe{
    height:320px;
    border-radius:18px;
  }

}

/* GOLD DESIGNER LINE UNDER CONTACT HERO TEXT */

.contact-hero-content p{
  font-size:18px;
  color:#fff;
  opacity:.88;
  line-height:1.7;
  margin-bottom:28px;
  position:relative;
}

/* GOLD LINE */
.contact-hero-content p::after{
  content:"";
  display:block;
  width:140px;
  height:4px;
  margin:22px auto 0;

  background:linear-gradient(
    90deg,
    transparent,
    #dcb471,
    #f7e08a,
    #dcb471,
    transparent
  );

  border-radius:30px;
  box-shadow:0 0 14px rgba(212,175,55,.45);
}


/* =====================================
   FOOTER BLACK + GOLD THEME
   Replace your current footer CSS
===================================== */

.footer{
  background:#000;
  padding:70px 20px 0;
  margin-top:0;
  border-top:1px solid rgba(212,175,55,.18);
}

/* TOP GRID */

.footer-top{
  max-width:1300px;
  margin:auto;
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1.2fr;
  gap:45px;
  padding-bottom:50px;
}

/* HEADINGS */

.footer h3,
.footer h4{
  color:#dcb471;
  margin-bottom:18px;
  font-weight:700;
}

.footer h3{
  font-size:26px;
}

.footer h4{
  font-size:18px;
  position:relative;
  padding-bottom:12px;
}

.footer h4::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:55px;
  height:3px;
  border-radius:30px;
  background:#dcb471;
}

/* BRAND */

.footer-logo{
  display:inline-block;
  margin-bottom:18px;
}

.footer-logo img{
  width:80px;
  height:80px;
  object-fit:cover;
  border-radius:50%;
  border:2px solid rgba(212,175,55,.45);
}

.footer-brand p{
  color:#dcb471;
  opacity:.9;
  line-height:1.8;
  margin-bottom:24px;
  max-width:340px;
}

/* LINKS */

.footer-links,
.footer-services,
.footer-contact{
  display:flex;
  flex-direction:column;
}

.footer-links a,
.footer-services span,
.footer-contact a,
.footer-contact p{
  color:#dcb471;
  margin-bottom:12px;
  font-size:15px;
  line-height:1.7;
  transition:.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover{
  color:#fff;
  transform:translateX(4px);
}

/* BUTTON */

.footer-call-btn{
  display:inline-block;
  background:#dcb471;
  color:#000;
  font-weight:700;
  padding:12px 22px;
  border-radius:40px;
  width:fit-content;
  transition:.3s ease;
}

.footer-call-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 12px 24px rgba(212,175,55,.25);
}

/* BOTTOM */

.footer-bottom{
  border-top:1px solid rgba(212,175,55,.18);
  text-align:center;
  padding:22px 15px;
  margin-top:10px;
}

.footer-bottom p{
  color:#dcb471;
  font-size:14px;
  letter-spacing:.3px;
}

/* RESPONSIVE */

@media(max-width:1100px){

  .footer-top{
    grid-template-columns:1fr 1fr;
    gap:35px;
  }

}

@media(max-width:768px){

  .footer{
    padding:55px 20px 0;
  }

  .footer-top{
    grid-template-columns:1fr;
    gap:30px;
    text-align:center;
  }

  .footer h4::after{
    left:50%;
    transform:translateX(-50%);
  }

  .footer-brand p{
    max-width:100%;
    margin-left:auto;
    margin-right:auto;
  }

  .footer-links,
  .footer-services,
  .footer-contact{
    align-items:center;
  }

  .footer-call-btn,
  .footer-logo{
    margin:auto;
  }

}

/* =====================================
   FOOTER ICONS FOR ADDRESS / PHONE / EMAIL
   Add below your footer CSS
===================================== */

/* make links/lines align nicely */
.footer-contact p,
.footer-contact a{
  position:relative;
  padding-left:30px;
  display:block;
}

/* =================================
   FOOTER CLEAN ICON FIX
================================= */

.footer-contact p,
.footer-contact a{
  display:flex;
  align-items:flex-start;
  gap:10px;
  margin-bottom:14px;
  line-height:1.7;
  position:relative;
}

/* WHITE ICONS IN NORMAL FLOW */

.footer-contact p:first-of-type::before{
  content:"•";
  color:#ffffff;
  font-size:18px;
}

.footer-contact a[href^="tel"]::before{
  content:"•";
  color:#ffffff;
  font-size:18px;
}

.footer-contact a[href^="mailto"]::before{
  content:"•";
  color:#ffffff;
  font-size:18px;
}

.footer-contact p:last-of-type::before{
  content:"•";
  color:#ffffff;
  font-size:18px;
}

/* MOBILE */

@media(max-width:768px){

  .footer-contact p,
  .footer-contact a{
    gap:8px;
    font-size:14px;
  }

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

  .footer-contact p,
  .footer-contact a{
    padding-left:0;
    text-align:center;
  }

  .footer-contact p::before,
  .footer-contact a::before{
    position:static;
    display:block;
    margin-bottom:6px;
  }

}

/* ===================================
   HOME PAGE NEW SECTIONS CSS
   Add into style/style.css
=================================== */

/* HERO VIDEO */
.hero{
  position:relative;
  height:100vh;
  overflow:hidden;
}

.hero video{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  object-fit:cover;
}

.hero .overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.58);
}

.hero-content{
  position:relative;
  z-index:2;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:0 20px;
  max-width:900px;
  margin:auto;
}

.hero-content h1{
  font-size:62px;
  line-height:1.1;
  margin-bottom:16px;
}

.hero-content p{
  font-size:18px;
  opacity:.9;
  line-height:1.7;
  margin-bottom:28px;
}

.hero-buttons{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  justify-content:center;
}

.btn-outline{
  background:transparent;
  border:2px solid #dcb471;
  color:#dcb471;
}

.btn-outline:hover{
  background:#dcb471;
  color:#000;
}

/* GOLD MINI TITLE */

.mini-title{
  color:#dcb471;
  letter-spacing:2px;
  text-transform:uppercase;
  font-size:14px;
  font-weight:700;
  display:block;
  margin-bottom:14px;
}

/* SECTION TITLE */

.section-title{
  text-align:center;
  max-width:760px;
  margin:0 auto 50px;
}

.section-title h2{
  font-size:42px;
  margin-bottom:12px;
}

.section-title p{
  opacity:.82;
  line-height:1.7;
}

/* HOME INTRO */

.home-intro{
    position:relative;
    max-width:1200px;
    margin:60px auto;
    padding:90px 40px;
    text-align:center;

    background:
    linear-gradient(
    135deg, 
    rgb(255 255 255 / 28%) 0%, 
    rgb(253 253 253 / 18%) 40%, 
    rgba(255, 255, 255, .08) 100%);

    backdrop-filter:blur(54px);
    -webkit-backdrop-filter:blur(18px);

    border:1px solid rgba(220,180,113,.45);
    border-radius:28px;

    overflow:hidden;

    box-shadow:
    0 30px 80px rgba(0,0,0,.35),
    0 0 40px rgba(220,180,113,.15);
}

.home-intro::before{
    content:"";
    position:absolute;

    width:450px;
    height:450px;

    background:
    radial-gradient(
        circle,
        rgba(225,225,113,.08),
        transparent 70%
    );

    top:-180px;
    left:-120px;

    z-index:0;
}

.home-intro::after{
    content:"";
    position:absolute;

    width:350px;
    height:350px;

    background:
    radial-gradient(
        circle,
        rgba(225,225,113,.08),
        transparent 70%
    );

    bottom:-150px;
    right:-120px;

    z-index:0;
}

.home-intro .section-title{
    position:relative;
    z-index:2;
}

.home-intro .pin-left{
    position:absolute;
    top:20px;
    left:20px;

    width:18px;
    height:18px;

    border-radius:50%;

    background:
    radial-gradient(circle at 30% 30%,
    #fff,
    #f4d89d 30%,
    #dcb471 100%);

    box-shadow:
    0 3px 10px rgba(0,0,0,.35);

    z-index:3;
}

.home-intro .pin-right{
    position:absolute;
    top:20px;
    right:20px;

    width:18px;
    height:18px;

    border-radius:50%;

    background:
    radial-gradient(circle at 30% 30%,
    #fff,
    #f4d89d 30%,
    #dcb471 100%);

    box-shadow:
    0 3px 10px rgba(0,0,0,.35);

    z-index:3;
}

/* HOME SERVICES */

/* ===== SERVICES SECTION ===== */

.home-services{
    padding:80px 20px;
    background:#000;
}

/* GRID */
.services-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    max-width:1300px;
    margin:auto;
}

/* CARD */
.service-card{
    position:relative;
    overflow:hidden;
    border-radius:18px;

    background:rgba(255,255,255,0.05);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);

    border:1px solid rgba(212,175,55,0.25);
    box-shadow:0 15px 30px rgba(0,0,0,0.35);

    transition:.4s ease;
    cursor:pointer;
}
.service-card{
    display:flex;
    flex-direction:column;
    height:100%;
}

.service-card ul{
    margin-top:20px;
}

.service-card .btn-gold{
    margin-top:auto;
}

/* IMAGE */
.service-card img{
    width:100%;
    height:420px;
    object-fit:cover;
    display:block;
    transition:.5s ease;
}

/* OVERLAY CONTENT */
.service-content{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;

    padding:18px 22px; /* FIXED spacing */

    background:linear-gradient(
        to top,
        rgba(0,0,0,0.90),
        rgba(0,0,0,0.69),
        rgba(0,0,0,0.10)
    );

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

    box-sizing:border-box; /* PREVENT TEXT CUT */
}

/* TITLE */
.service-content h3{
    color:#dcb471;
    margin-bottom:6px;
    font-size:18px;
    font-weight:600;
}

/* TEXT */
.service-content p{
    color:#fff;
    font-size:14px;
    line-height:1.5;

    padding-right:10px; /* FIX RIGHT EDGE CUT */
}

/* HOVER EFFECT */
.service-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 40px rgba(212,175,55,0.15);
}

.service-card:hover img{
    transform:scale(1.08);
}

/* BUTTON CENTER */
.center-btn{
    text-align:center;
    margin-top:40px;
}

/* RESPONSIVE */
@media(max-width:992px){
.services-grid{
    grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:576px){
.services-grid{
    grid-template-columns:1fr;
}

.service-card img{
    width:100%;
    aspect-ratio:4/5;
    height:auto;
    object-fit:cover;
    display:block;
}
}

/* GOLDEN INNER BORDER */
.service-card::before{
    content:"";
    position:absolute;
    inset:6px; /* space from edges */
    border:1px solid rgba(212,175,55,0.35);
    border-radius:14px;
    pointer-events:none;
    z-index:2;
}

/* MAKE SURE CONTENT IS ABOVE BORDER */
.service-content{
    z-index:3;
}


/* CTA SECTION */
/* =====================================
   WATER GLASS CTA SECTION
===================================== */

.home-cta{
    position:relative;
    padding:120px 20px;
    overflow:hidden;

    background:
    linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
    url('https://images.pexels.com/photos/3993449/pexels-photo-3993449.jpeg?auto=compress&cs=tinysrgb&w=1600');

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

/* SOFT GLOW */

.cta-overlay{
    position:absolute;
    inset:0;

    background:
    radial-gradient(
        circle at center,
        rgba(220,180,113,.18),
        transparent 70%
    );

    z-index:1;
}

/* WATER GLASS CARD */

.cta-box{
    position:relative;
    z-index:2;

    max-width:900px;
    margin:auto;

    padding:70px 50px;
    text-align:center;

    overflow:hidden;

    background:
    linear-gradient(
        135deg,
        rgba(255,255,255,.22),
        rgba(255,255,255,.08)
    );

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

    border:1px solid rgba(255,255,255,.25);
    border-radius:30px;

    box-shadow:
    0 25px 60px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.35),
    inset 0 -1px 0 rgba(255,255,255,.08);
}

/* GLASS SHINE */

.cta-box::before{
    content:"";
    position:absolute;

    top:-100px;
    left:-100px;

    width:280px;
    height:280px;

    background:
    radial-gradient(
        circle,
        rgba(255,255,255,.28),
        transparent 70%
    );

    pointer-events:none;
}

/* MOVING LIGHT REFLECTION */

.cta-box::after{
    content:"";
    position:absolute;
    top:0;
    left:-150%;

    width:60%;
    height:100%;

    background:
    linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.12),
        transparent
    );

    transform:skewX(-25deg);

    animation:glassShine 8s linear infinite;
}

@keyframes glassShine{
    0%{
        left:-150%;
    }
    100%{
        left:180%;
    }
}

/* TEXT */

.cta-box h2{
    color:#fff;
    font-size:52px;
    margin-bottom:15px;
    position:relative;
    z-index:2;
}

.cta-box p{
    color:#fff;
    opacity:.92;
    font-size:18px;
    line-height:1.8;
    margin-bottom:30px;
    position:relative;
    z-index:2;
}

/* BUTTON */

.cta-box .btn{
    position:relative;
    z-index:2;

    display:inline-block;

    background:linear-gradient(
        135deg,
        #dcb471,
        #f7e08a
    );

    color:#000;
    text-decoration:none;

    padding:15px 36px;
    border-radius:50px;

    font-weight:700;

    box-shadow:
    0 10px 25px rgba(220,180,113,.25);

    transition:.35s ease;
}

.cta-box .btn:hover{
    transform:translateY(-4px);

    box-shadow:
    0 18px 35px rgba(220,180,113,.35);
}

/* MOBILE */

@media(max-width:768px){

    .home-cta{
        padding:80px 20px;
    }

    .cta-box{
        padding:50px 25px;
    }

    .cta-box h2{
        font-size:34px;
    }

    .cta-box p{
        font-size:16px;
    }

}

/* BUTTON */

.btn{
    display:inline-block;

    background:linear-gradient(
        135deg,
        #dcb471,
        #f4d89d
    );

    color:#000;

    padding:14px 32px;

    border-radius:40px;

    font-weight:700;

    border:2px solid #000;

    transition:.35s ease;

    box-shadow:
    0 8px 20px rgba(0,0,0,.25),
    0 0 20px rgba(220,180,113,.20);
}

.btn:hover{
    transform:translateY(-4px);

    border-color:rgba(255,255,255,.5);

    box-shadow:
    0 15px 35px rgba(0,0,0,.35),
    0 0 35px rgba(220,180,113,.35);
}

/* MOBILE */

@media(max-width:992px){

  .hero-content h1{
    font-size:48px;
  }

  .home-services,
  .why-us{
    padding:70px 30px;
  }

}

@media(max-width:768px){

  .hero{
    height:90vh;
  }

  .hero-content h1{
    font-size:34px;
  }

  .hero-content p{
    font-size:16px;
  }

  .section-title h2,
  .cta-box h2{
    font-size:30px;
  }

  .home-intro,
  .home-services,
  .why-us,
  .home-cta{
    padding:55px 20px;
  }

  .services-grid,
  .why-container{
    grid-template-columns:1fr;
  }

  .service-card,
  .why-card,
  .cta-box{
    padding:24px;
  }

}

/* ===================================
   ABOUT PAGE FULL CSS
   Add into style/style.css
=================================== */

/* HERO */

.about-hero{
  min-height:75vh;
  position:relative;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:10px 20px 80px;
  overflow:hidden;

  background:
  linear-gradient(rgba(0,0,0,.62), rgba(0,0,0,.62)),
  url('../images/about.jpeg') center center/cover no-repeat;
}

.about-overlay{
  position:absolute;
  inset:0;
}

.about-content{
  position:relative;
  z-index:2;
  max-width:850px;
}

.about-content h1{
  font-size:58px;
  margin-bottom:15px;
}

.about-content p{
  font-size:18px;
  line-height:1.7;
  opacity:.88;
}

.mini-title{
  display:block;
  color:#dcb471;
  letter-spacing:2px;
  font-size:14px;
  font-weight:700;
  text-transform:uppercase;
  margin-bottom:15px;
}

/* STORY */

.about-story{
  padding:90px 50px;
  background:#000;
}

.about-grid{
  max-width:1300px;
  margin:auto;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:35px;
  align-items:center;
}

.about-text{
  padding:35px;
  border-radius:24px;
}

.about-text h2{
  font-size:42px;
  margin-bottom:16px;
}

.about-text p{
  opacity:.85;
  line-height:1.8;
  margin-bottom:18px;
}

.about-image img{
  width:100%;
  height:100%;
  min-height:520px;
  object-fit:cover;
  border-radius:24px;
}

/* GLASS */

.glass{
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  box-shadow:0 10px 30px rgba(0,0,0,.22);
}

/* SECTION TITLE */

.section-title{
  text-align:center;
  max-width:760px;
  margin:0 auto 50px;
}

.section-title h2{
  font-size:42px;
  margin-bottom:12px;
}

.section-title p{
  opacity:.82;
  line-height:1.7;
}

/* WHY US */

.why-us{
  padding:90px 50px;
  background:#000;
}

.why-container{
  max-width:1300px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:28px;
}

.why-card{
  padding:30px;
  border-radius:22px;
  transition:.35s ease;
}

.why-card:hover{
  transform:translateY(-8px);
  box-shadow:0 16px 30px rgba(212,175,55,.14);
}

.why-card h3{
  font-size:24px;
  color:#dcb471;
  margin-bottom:14px;

  text-align:center;
  line-height:1.3;

  min-height:62px;

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

.why-card p{
  opacity:.85;
  line-height:1.7;
}

/* REVIEWS */

.reviews-section{
  padding:90px 50px;
  background:#000;
}

.reviews-grid{
  max-width:1300px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:28px;
}

.review-card{
  padding:30px;
  border-radius:22px;
  transition:.35s ease;
}

.review-card:hover{
  transform:translateY(-8px);
}

.review-card h3{
  font-size:28px;
  color:#dcb471;
  margin-bottom:16px;
}

.review-card p{
  line-height:1.8;
  opacity:.85;
  margin-bottom:16px;
}

.review-card span{
  color:#dcb471;
  font-weight:700;
}

/* ====================================
   LUXURY GLASS CONTACT CTA
==================================== */

.about-contact{
    padding:100px 20px;
    background:#000;
}

.contact-card{
    position:relative;
    width:100%;
    margin:auto;
    padding:80px 50px;
    border-radius:32px;

    text-align:center;
    overflow:hidden;

    /* SALON IMAGE */
    background:
    linear-gradient(
        rgba(0,0,0,.45),
        rgba(0,0,0,.45)
    ),
    url('https://images.pexels.com/photos/3993449/pexels-photo-3993449.jpeg?auto=compress&cs=tinysrgb&w=1600');

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    box-shadow:
    0 25px 60px rgba(0,0,0,.45);
}

/* WATER GLASS PANEL */

.contact-card::before{
    content:"";
    position:absolute;
    inset:25px;

    background:
    linear-gradient(
        135deg,
        rgba(255,255,255,.28),
        rgba(255,255,255,.10)
    );

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

    border:1px solid rgba(255,255,255,.25);

    border-radius:24px;

    box-shadow:
    inset 0 1px 0 rgba(255,255,255,.35),
    inset 0 -1px 0 rgba(255,255,255,.08),
    0 15px 35px rgba(0,0,0,.25);

    z-index:1;
}

/* SHINE EFFECT */

.contact-card::after{
    content:"";
    position:absolute;

    width:300px;
    height:300px;

    background:
    radial-gradient(
        circle,
        rgba(255,255,255,.25),
        transparent 70%
    );

    top:-120px;
    right:-80px;

    z-index:2;
}

/* CONTENT ABOVE GLASS */

.contact-card > *{
    position:relative;
    z-index:3;
}

/* MINI TITLE */

.contact-card .mini-title{
    display:inline-block;
    color:#f7e08a;
    letter-spacing:3px;
    text-transform:uppercase;
    font-size:14px;
    font-weight:700;
    margin-bottom:18px;
}

/* HEADING */

.contact-card h2{
    color:#fff;
    font-size:54px;
    margin-bottom:18px;
    line-height:1.15;
}

/* TEXT */

.contact-card p{
    color:#fff;
    opacity:.92;
    max-width:700px;
    margin:0 auto 30px;
    line-height:1.8;
    font-size:18px;
}

/* CONTACT DETAILS */

.contact-lines{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:18px;
    margin-bottom:35px;
}

.contact-lines a,
.contact-lines span{
    padding:12px 22px;

    background:rgba(255,255,255,.10);

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

    border:1px solid rgba(255,255,255,.15);

    border-radius:50px;

    color:#fff;
    text-decoration:none;

    transition:.35s ease;
}

.contact-lines a:hover{
    background:rgba(220,180,113,.85);
    color:#000;
}

/* BUTTON */

.contact-card .btn{
    display:inline-block;

    background:linear-gradient(
        135deg,
        #dcb471,
        #f7e08a
    );

    color:#000;
    text-decoration:none;

    padding:16px 36px;
    border-radius:50px;

    font-weight:700;
    font-size:16px;

    box-shadow:
    0 10px 25px rgba(220,180,113,.30);

    transition:.35s ease;
}

.contact-card .btn:hover{
    transform:translateY(-4px);
    box-shadow:
    0 18px 35px rgba(220,180,113,.35);
}

/* MOBILE */

@media(max-width:768px){

    .contact-card{
        padding:60px 25px;
    }

    .contact-card::before{
        inset:15px;
    }

    .contact-card h2{
        font-size:34px;
    }

    .contact-card p{
        font-size:16px;
    }

    .contact-lines{
        flex-direction:column;
    }

    .contact-lines a,
    .contact-lines span{
        width:100%;
        box-sizing:border-box;
    }
}

/* BUTTON */

.btn{
  display:inline-block;
  background:#dcb471;
  color:#000;
  padding:14px 28px;
  border-radius:40px;
  font-weight:700;
  transition:.3s ease;
}

.btn:hover{
  transform:translateY(-3px);
  box-shadow:0 12px 25px rgba(212,175,55,.25);
}

/* RESPONSIVE */

@media(max-width:992px){

  .about-story,
  .why-us,
  .reviews-section{
    padding:70px 30px;
  }

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

  .about-image img{
    min-height:380px;
  }

}

@media(max-width:768px){

  .about-hero{
    min-height:auto;
    padding:135px 20px 75px;
  }

  .about-content h1{
    font-size:38px;
  }

  .about-content p{
    font-size:16px;
  }

  .about-story,
  .why-us,
  .reviews-section,
  .about-contact{
    padding:55px 20px;
  }

  .section-title h2,
  .about-text h2,
  .contact-card h2{
    font-size:30px;
  }

  .about-text,
  .why-card,
  .review-card,
  .contact-card{
    padding:24px;
  }

  .reviews-grid,
  .why-container{
    grid-template-columns:1fr;
  }

}

/* =====================================
   FIX RIGHT SIDE OF ABOUT STORY SECTION
   Replace existing about-image CSS
===================================== */

.about-image{
  position:relative;
  min-height:520px;
  border-radius:24px;
  overflow:hidden;

  background:
  linear-gradient(rgba(0,0,0,.28), rgba(0,0,0,.28)),
  url('../images/aboutus.jpeg') center center/cover no-repeat;

  box-shadow:0 20px 40px rgba(0,0,0,.25);
}

/* remove dull image styling */
.about-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:24px;
  opacity:0;   /* hides broken/plain image if needed */
}

/* luxury gold accent border */
.about-image::before{
  content:"";
  position:absolute;
  inset:0;
  border:1px solid rgba(212,175,55,.22);
  border-radius:24px;
  pointer-events:none;
}

/* floating badge */
.about-image::after{
  content:"Luxury Beauty Care";
  position:absolute;
  left:25px;
  bottom:25px;

  background:rgba(0,0,0,.68);
  color:#dcb471;

  padding:12px 18px;
  border-radius:40px;
  font-size:14px;
  font-weight:700;
  letter-spacing:1px;

  border:1px solid rgba(212,175,55,.28);
  backdrop-filter:blur(10px);
}

/* MOBILE */

@media(max-width:768px){

  .about-image{
    min-height:320px;
  }

  .about-image::after{
    left:18px;
    bottom:18px;
    font-size:12px;
    padding:10px 14px;
  }

}

/* ==========================
   HEADER FINAL FIX
========================== */

header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:9999;

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

  padding:14px 28px;
  background:#000;
  border-bottom:1px solid rgba(212,175,55,.12);
}

/* LOGO */

.logo img{
  height:58px;
  width:auto;
  display:block;
}

/* NAV DESKTOP */

header nav{
  display:flex;
  align-items:center;
  gap:30px;
}

header nav a{
  color:#dcb471;
  font-size:15px;
  font-weight:500;
  text-decoration:none;
  transition:.3s;
}

header nav a:hover{
  color:#fff;
}

/* CALL BUTTON */

.call-btn{
  background:#dcb471;
  color:#000;
  padding:10px 18px;
  border-radius:40px;
  font-weight:700;
  text-decoration:none;
  font-size:14px;
}

/* HAMBURGER */

.menu-toggle{
  display:none;
  font-size:32px;
  color:#dcb471;
  cursor:pointer;
  line-height:1;
}

/* ==========================
   MOBILE
========================== */

@media(max-width:900px){

  header{
    padding:12px 16px;
    gap:10px;
  }

  .logo img{
    height:48px;
  }

  .call-btn{
    padding:8px 14px;
    font-size:12px;
  }

  .menu-toggle{
    display:block;
  }

  header nav{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    width:100%;

    background:#000;
    flex-direction:column;
    align-items:flex-start;
    gap:0;
    padding:10px 20px;
  }

  header nav.show{
    display:flex;
  }

  header nav a{
    width:100%;
    padding:14px 0;
    border-bottom:1px solid rgba(255,255,255,.08);
    font-size:16px;
  }

}

/* EXTRA SMALL */

@media(max-width:500px){

  .logo img{
    height:42px;
  }

  .call-btn{
    font-size:11px;
    padding:8px 12px;
  }

  .menu-toggle{
    font-size:28px;
  }

}

/* =====================================
   HEADER PERFECT FIX
   Desktop + Mobile One Line Layout
===================================== */

header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:9999;

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

  padding:8px 22px;
  background:#000;
  border-bottom:1px solid rgba(212,175,55,.12);
}

/* LEFT LOGO */
.logo{
  display:flex;
    align-items:center;
}

.logo img{
    height:75px;
    width:auto;
    object-fit:contain;
    transition:.3s ease;
}

.logo img:hover{
    transform:scale(1.05);
}

/* CENTER MENU DESKTOP */
header nav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:42px;

  flex:1;
}

header nav a{
  color:#dcb471;
  text-decoration:none;
  font-size:16px;
  font-weight:500;
  transition:.3s;
}

header nav a:hover{
  color:#fff;
}

/* RIGHT BUTTON AREA */
.call-btn{
  flex:0 0 auto;

  background:#dcb471;
  color:#000;
  text-decoration:none;
  font-weight:700;
  font-size:14px;

  padding:10px 18px;
  border-radius:40px;
  white-space:nowrap;
}

/* MENU ICON */
.menu-toggle{
  display:none;
  color:#dcb471;
  font-size:30px;
  cursor:pointer;
  line-height:1;
  margin-left:17px;
}

/* =====================================
   MOBILE
===================================== */

@media(max-width:900px){

  header{
    padding:10px 14px;
    gap:23px;
    justify-content:space-between;
  }

  /* Keep one line */
  

  .call-btn{
    padding:8px 14px;
    font-size:12px;
    margin-left:auto;
  }

  .menu-toggle{
    display:block;
  }

  /* Hide desktop nav */
  header nav{
    display:none;

    position:absolute;
    top:100%;
    left:0;
    width:100%;

    background:#000;
    border-top:1px solid rgba(212,175,55,.10);

    flex-direction:column;
    align-items:flex-start;
    gap:0;

    padding:10px 20px;
  }

  /* Dropdown active */
  header nav.show{
    display:flex;
  }

  header nav a{
    width:100%;
    padding:14px 0;
    border-bottom:1px solid rgba(255,255,255,.08);
    font-size:15px;
  }

}

/* SMALL MOBILE */

@media(max-width:480px){

  .logo img{
    height:40px;
  }

  .call-btn{
    font-size:11px;
    padding:7px 12px;
  }

  .menu-toggle{
    font-size:28px;
  }

}

/* MOBILE HEADER POSITION FIX */

@media(max-width:900px){

  header{
    padding:10px 18px;   /* more side breathing room */
  }

  /* logo slightly right */
  .logo{
    margin-left:6px;
  }

  /* menu icon slightly left from edge */
  .menu-toggle{
    margin-left:8px;
    margin-right:61px;
    font-size:30px;
  }

  /* keep call button centered nicely */
  .call-btn{
    margin-left:auto;
    margin-right:6px;
  }

}

/* REMOVE LINK UNDERLINE */
.footer-contact a{
  text-decoration:none !important;
  color:#dcb471;
}

/* KEEP UNDERLINE OFF ON ICON/BULLET */
.footer-contact a::before{
  text-decoration:none !important;
  display:inline-block;
}

/* OPTIONAL HOVER */
.footer-contact a:hover{
  color:#ffffff;
}

/* HOME CATEGORY SECTION */
.salon-category-section{
    padding:70px 20px;
    background:#000;
}

.category-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.category-box{
    position:relative;
    overflow:hidden;
    border-radius:18px;
    box-shadow:0 15px 35px rgba(0,0,0,0.35);
}

.category-box img{
    width:100%;
    height:420px;
    object-fit:cover;
    transition:0.5s ease;
}

.category-box:hover img{
    transform:scale(1.08);
}

.category-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(0,0,0,0.65), rgba(0,0,0,0.15));
    display:flex;
    justify-content:center;
    align-items:end;
    padding-bottom:35px;
}

.category-btn{
    background:rgba(212,175,55,0.18);
    border:1px solid #dcb471;
    color:#fff;
    text-decoration:none;
    padding:14px 34px;
    border-radius:40px;
    font-size:18px;
    font-weight:600;
    backdrop-filter:blur(10px);
    transition:0.4s ease;
}

.category-btn:hover{
    background:#dcb471;
    color:#000;
}

@media(max-width:768px){
    .category-grid{
        grid-template-columns:1fr;
    }

    .category-box img{
        height:320px;
    }
}

/* WELCOME SECTION GLASS EFFECT */
.home-intro{
    position:relative;

    max-width:1200px;
    margin:60px auto;
    padding:40px 40px;

    text-align:center;

    background:
    linear-gradient(
        135deg,
        rgba(225,225,225,.28) 0%,
        rgba(225,225,225,.18) 40%,
        rgba(255,255,255,.08) 100%
    );

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

    border:4px solid rgba(220,180,113,.45);

    border-radius:24px;

    box-shadow:
    0 20px 45px rgba(0,0,0,.35),
    0 0 40px rgba(220,180,113,.25);

    overflow:hidden;
}

/* Animated Shine Effect */
.home-intro::before{
    content:"";
    position:absolute;
    top:0;
    left:-130%;
    width:60%;
    height:100%;
    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.08),
        transparent
    );
    transform:skewX(-25deg);
    animation:glassMove 7s linear infinite;
}

@keyframes glassMove{
    0%{left:-130%;}
    100%{left:180%;}
}

.home-intro .section-title{
    position:relative;
    z-index:2;
}

.home-intro .mini-title{
    display:inline-block;
    color:#dcb471;
    font-size:14px;
    font-weight:600;
    letter-spacing:4px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.home-intro h2{
    font-size:56px;
    color:#dcb471;
    margin:0 0 20px;
    font-weight:700;
}

.home-intro p{
    max-width:780px;
    margin:auto;
    color:#f5e7b8;
    font-size:22px;
    line-height:1.8;
}

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

.home-intro{
    margin:35px 15px;
    padding:65px 20px;
}

.home-intro h2{
    font-size:36px;
}

.home-intro p{
    font-size:17px;
}

}

```css id="f8m2qa"
/* HOME CATEGORY SECTION */
.salon-category-section{
    padding:80px 20px;
    background:#000;
}

.section-title{
    text-align:center;
    margin-bottom:45px;
}

.section-title h2{
    font-size:42px;
    color:#dcb471;
    margin-bottom:10px;
    font-weight:700;
}

.section-title p{
    color:#ddd;
    font-size:17px;
}

/* GRID */
.category-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

/* IMAGE BOX */
.category-box{
    position:relative;
    overflow:hidden;
    border-radius:22px;

    /* THIN GOLD BORDER */
    border:1px solid rgba(212,175,55,0.35);

    /* Premium Shadow */
    box-shadow:0 15px 35px rgba(0,0,0,0.35);

    background:rgba(255,255,255,0.03);
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);

    transition:0.4s ease;
}

.category-box:hover{
    transform:translateY(-6px);
    box-shadow:0 22px 45px rgba(212,175,55,0.12);
}

/* Optional inner thin glow border */
.category-box::before{
    content:"";
    position:absolute;
    inset:8px;
    border:1px solid rgba(212,175,55,0.15);
    border-radius:18px;
    z-index:2;
    pointer-events:none;
}

.category-box img{
    width:100%;
    height:420px;
    object-fit:cover;
    transition:0.5s ease;
}

.category-box:hover img{
    transform:scale(1.08);
}

.category-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(0,0,0,0.72), rgba(0,0,0,0.12));
    display:flex;
    justify-content:center;
    align-items:end;
    padding-bottom:35px;
    z-index:3;
}

.category-btn{
    background:rgba(212,175,55,0.18);
    border:1px solid #dcb471;
    color:#fff;
    text-decoration:none;
    padding:14px 34px;
    border-radius:40px;
    font-size:18px;
    font-weight:600;
    backdrop-filter:blur(10px);
    transition:0.4s ease;
}

.category-btn:hover{
    background:#dcb471;
    color:#000;
}

@media(max-width:768px){

.category-grid{
    grid-template-columns:1fr;
}

.category-box img{
    height:320px;
}

.section-title h2{
    font-size:32px;
}

}

```css
/* FIX HAIR / BEAUTY MENU PAGE LAYOUT */

.menu-page{
    max-width:1300px;
    margin:0 auto;
    padding:80px 20px;
    
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

/* CARD BLOCKS */
.menu-card{
    position:relative;
    background:rgba(255,255,255,0.05);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);

    border:1px solid rgba(212,175,55,0.28);
    border-radius:22px;

    padding:30px;
    box-shadow:0 18px 35px rgba(0,0,0,0.35);
    transition:0.35s ease;
}

.menu-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 45px rgba(212,175,55,0.12);
}

/* INNER BORDER */
.menu-card::before{
    content:"";
    position:absolute;
    inset:8px;
    border:1px solid rgba(212,175,55,0.12);
    border-radius:16px;
    pointer-events:none;
}

/* HEADINGS */
.menu-card h2{
    font-size:32px;
    color:#dcb471;
    margin:0 0 22px;
    font-weight:700;
    letter-spacing:1px;
    position:relative;
    z-index:2;
}

/* MENU ROWS */
.menu-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;

    padding:14px 0;
    border-bottom:1px solid rgba(255,255,255,0.08);

    position:relative;
    z-index:2;
}

.menu-row:last-child{
    border-bottom:none;
}

.menu-row span{
    color:#fff;
    font-size:17px;
    line-height:1.5;
}

.menu-row strong{
    color:#dcb471;
    font-size:18px;
    font-weight:700;
    white-space:nowrap;
}

/* PAGE BANNER */
.page-banner{
    text-align:center;
    padding:83px 20px 30px;
}

.page-banner h1{
    font-size:52px;
    color:#dcb471;
    margin-bottom:10px;
}

.page-banner p{
    color:#eee;
    font-size:18px;
}

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

.menu-page{
    grid-template-columns:1fr;
    padding:50px 15px;
}

.menu-card{
    padding:24px;
}

.menu-card h2{
    font-size:28px;
}

.menu-row span{
    font-size:15px;
}

.menu-row strong{
    font-size:16px;
}

.page-banner h1{
    font-size:36px;
}

}
/* FORCE FIX HAIR / BEAUTY MENU PAGE */
.menu-page{
display:grid !important;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr)) !important;
gap:30px !important;
max-width:1300px !important;
margin:auto !important;
padding:80px 20px !important;
}

.menu-card{
display:block !important;
background:rgba(255,255,255,.05) !important;
border:1px solid rgba(212,175,55,.28) !important;
border-radius:22px !important;
padding:30px !important;
backdrop-filter:blur(14px);
box-sizing:border-box !important;
}

.menu-card h2{
display:block !important;
font-size:30px !important;
margin-bottom:20px !important;
color:#dcb471 !important;
}

.menu-row{
display:flex !important;
justify-content:space-between !important;
align-items:center !important;
padding:14px 0 !important;
border-bottom:1px solid rgba(255,255,255,.08) !important;
gap:15px !important;
width:100% !important;
}

.menu-row span{
display:block !important;
color:#fff !important;
font-size:17px !important;
}

.menu-row strong{
display:block !important;
color:#dcb471 !important;
font-weight:700 !important;
white-space:nowrap !important;
}

/* SIZE TABLE */
.size-head,
.size-row{
display:grid;
grid-template-columns:2.4fr repeat(4,1fr);
gap:10px;
align-items:center;
padding:12px 0;
text-align:center;
}

.size-head{
border-bottom:1px solid rgba(212,175,55,.25);
margin-bottom:10px;
font-weight:700;
color:#dcb471;
}

.size-head span{
text-align:left;
}

.size-row{
border-bottom:1px solid rgba(255,255,255,.08);
}

.size-row span{
text-align:left;
color:#fff;
font-size:15px;
line-height:1.5;
}

.size-row b{
color:#dcb471;
font-weight:700;
font-size:15px;
}

.size-row:last-of-type{
border-bottom:none;
}

/* BOOK BUTTON */
.book-btn{
display:block;
margin-top:25px;
text-align:center;
background:#dcb471;
color:#000;
text-decoration:none;
padding:14px 20px;
border-radius:40px;
font-weight:700;
transition:.3s ease;
}

.book-btn:hover{
background:#fff;
transform:translateY(-3px);
}

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

.size-head,
.size-row{
grid-template-columns:1.8fr repeat(4,1fr);
gap:6px;
font-size:12px;
}

.size-row span{
font-size:13px;
}

.size-row b{
font-size:12px;
}

.book-btn{
padding:12px;
font-size:14px;
}

}

/* BEAUTY 4 COLUMN */
.beauty-four{
display:grid !important;
grid-template-columns:repeat(4,1fr) !important;
gap:25px !important;
max-width:1500px !important;
margin:auto !important;
padding:70px 20px !important;
}

/* RESPONSIVE */
@media(max-width:1200px){
.beauty-four{
grid-template-columns:repeat(2,1fr) !important;
}
}

@media(max-width:768px){
.beauty-four{
grid-template-columns:1fr !important;
}
}

/* REMOVE EXTRA EMPTY SPACE IN MENU CARDS */

.menu-page{
align-items:start !important;
}

.menu-card{
height:auto !important;
min-height:auto !important;
padding-bottom:25px !important;
display:flex !important;
flex-direction:column !important;
justify-content:flex-start !important;
}

/* BOOK BUTTON STAYS BELOW ITEMS */
.book-btn{
margin-top:20px !important;
}

/* BEAUTY PAGE 4 COLUMN FIX */
.beauty-four .menu-card{
height:auto !important;
min-height:unset !important;
}

/* DROPDOWN MENU */
#mainMenu{
display:flex;
align-items:center;
gap:35px;
}

#mainMenu a{
text-decoration:none;
color:#dcb471;
font-weight:500;
}

/* DROPDOWN */
.dropdown{
position:relative;
}

.drop-btn{
cursor:pointer;
display:inline-block;
padding:10px 0;
}

.dropdown-menu{
position:absolute;
top:100%;
left:0;
min-width:220px;

background:rgba(0,0,0,.96);
border:1px solid rgba(212,175,55,.25);
border-radius:12px;

padding:12px 0;
display:none;
z-index:999;

box-shadow:0 15px 30px rgba(0,0,0,.35);
}

/* SHOW ON HOVER */
.dropdown-menu{
    display:none;
}

.dropdown.active .dropdown-menu{
    display:block;
}

.dropdown-menu a{
display:block;
padding:12px 18px;
color:#fff !important;
font-size:15px;
transition:.3s ease;
}

.dropdown-menu a:hover{
background:#dcb471;
color:#000 !important;
padding-left:24px;
}

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

#mainMenu{
flex-direction:column;
gap:0;
}

.dropdown{
width:100%;
}

.drop-btn{
width:100%;
display:block;
padding:15px 20px;
}

.dropdown-menu{
position:static;
display:none;
width:100%;
border:none;
border-top:1px solid rgba(255,255,255,.08);
border-radius:0;
box-shadow:none;
background:#111;
}

.dropdown:hover .dropdown-menu{
display:block;
}

.dropdown-menu a{
padding:14px 35px;
}

}

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

#mainMenu{
display:none;
flex-direction:column;
width:100%;
background:#000;
position:absolute;
top:100%;
left:0;
padding:20px 0;
z-index:999;
}

#mainMenu.show{
display:flex;
}

.menu-toggle{
display:block;
cursor:pointer;
font-size:34px;
color:#dcb471;
}

}

/* =========================
   WHATSAPP FLOAT BUTTON
========================= */

.whatsapp-float{
    position:fixed;
    bottom:25px;
    right:25px;

    width:65px;
    height:65px;

    background:#25D366;
    border-radius:50%;

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

    z-index:99999;

    box-shadow:0 10px 25px rgba(0,0,0,0.35);

    animation:whatsappPulse 2s infinite;
    transition:.3s ease;
}

.whatsapp-float:hover{
    transform:scale(1.1);
}

.whatsapp-float img{
    width:34px;
    height:34px;
}

/* PULSE ANIMATION */
@keyframes whatsappPulse{

    0%{
        transform:scale(1);
        box-shadow:0 0 0 0 rgba(37,211,102,.6);
    }

    70%{
        transform:scale(1.05);
        box-shadow:0 0 0 18px rgba(37,211,102,0);
    }

    100%{
        transform:scale(1);
        box-shadow:0 0 0 0 rgba(37,211,102,0);
    }

}

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

.whatsapp-float{
    width:58px;
    height:58px;
    right:18px;
    bottom:18px;
}

.whatsapp-float img{
    width:30px;
    height:30px;
}

/* =================================
   GOOGLE REVIEWS SECTION
================================= */

.google-reviews-section{
    padding:90px 20px;
    background:#000;
}

/* HEADER CARD */

.google-review-header{
    max-width:850px;
    margin:0 auto 60px;
    padding:35px 30px;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:25px;

    text-align:left;

    background:rgba(255,255,255,.04);
    border:1px solid rgba(212,175,55,.20);
    border-radius:24px;

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

    box-shadow:0 15px 35px rgba(0,0,0,.35);
}

/* GOOGLE LOGO */

.google-icon{
    flex-shrink:0;
}

.google-icon img{
    width:65px;
    height:auto;
    display:block;
}

/* CONTENT */

.google-info{
    flex:1;
}

.google-info h2{
    margin:0 0 8px;
    color:#dcb471;
    font-size:36px;
    font-weight:700;
    line-height:1.2;
}

.google-info p{
    margin:0 0 12px;
    color:#d7d7d7;
    font-size:15px;
}

/* RATING */

.google-rating{
    color:#fbbc04;
    font-size:22px;
    font-weight:700;
}

.google-rating span{
    color:#fff;
    font-size:15px;
    margin-left:8px;
    font-weight:500;
}

/* SHAPO CONTAINER */

.reviews-widget{
    max-width:1300px;
    margin:auto;
    overflow:hidden;
}

/* SHAPO TEXT FIX */

.reviews-widget *{
    color:#fff !important;
}

.reviews-widget p{
    color:#fff !important;
}

.reviews-widget h1,
.reviews-widget h2,
.reviews-widget h3,
.reviews-widget h4,
.reviews-widget span{
    color:#dcb471 !important;
}

.reviews-widget time{
    color:#bdbdbd !important;
}

/* MOBILE */

@media(max-width:768px){

    .google-review-header{
        flex-direction:column;
        text-align:center;
        padding:30px 20px;
    }

    .google-icon img{
        width:55px;
    }

    .google-info h2{
        font-size:28px;
    }

    .google-info p{
        font-size:14px;
    }

    .google-rating{
        font-size:20px;
    }

    .google-rating span{
        display:block;
        margin-top:6px;
        margin-left:0;
    }
}


