/* Day Spa Ajman — custom styles on top of Bootstrap 5 */

:root {
  --forest: #0f2a22;
  --emerald: #1b4d3e;
  --gold: #c9a86a;
  --gold-soft: #d8c08a;
  --cream: #f4f0e6;
  --muted: #6b7d75;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Lato", sans-serif;
  color: var(--forest);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
  margin: 0;
}

h1, h2, h3, h4, h5, .font-serif {
  font-family: "Playfair Display", serif;
}

::selection {
  background-color: var(--gold);
  color: var(--forest);
}

a { text-decoration: none; }

.text-gold { color: var(--gold) !important; }
.text-gold-soft { color: var(--gold-soft) !important; }
.text-cream { color: var(--cream) !important; }
.text-forest { color: var(--forest) !important; }
.text-muted-spa { color: var(--muted) !important; }
.bg-forest { background-color: var(--forest) !important; }
.bg-emerald { background-color: var(--emerald) !important; }
.bg-cream { background-color: var(--cream) !important; }
.bg-gold { background-color: var(--gold) !important; }

.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
}

/* Buttons */
.btn-gold {
  background-color: var(--gold);
  color: var(--forest);
  font-weight: 700;
  border: none;
  border-radius: 999px;
  transition: filter 0.2s ease, transform 0.2s ease;
}
.btn-gold:hover { filter: brightness(1.07); color: var(--forest); }

.btn-outline-cream {
  border: 1px solid rgba(244, 240, 230, 0.28);
  color: var(--cream);
  font-weight: 700;
  border-radius: 999px;
  background: transparent;
  transition: background 0.2s ease;
}
.btn-outline-cream:hover { background: rgba(244, 240, 230, 0.1); color: var(--cream); }

.btn-emerald {
  background-color: rgba(27, 77, 62, 0.55);
  color: var(--cream);
  font-weight: 700;
  border: none;
  border-radius: 999px;
  transition: background 0.2s ease;
}
.btn-emerald:hover { background-color: var(--emerald); color: var(--cream); }

/* Header / navbar */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1030;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background-color: rgba(15, 42, 34, 0.95);
  backdrop-filter: blur(10px);
  border-bottom-color: rgba(201, 168, 106, 0.2);
}
.nav-link-spa {
  position: relative;
  color: rgba(244, 240, 230, 0.8);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.25rem 0;
  transition: color 0.2s ease;
}
.nav-link-spa::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  height: 1px; width: 0;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-link-spa:hover { color: var(--cream); }
.nav-link-spa:hover::after { width: 100%; }

.brand-mark { font-family: "Playfair Display", serif; font-size: 1.25rem; color: var(--cream); letter-spacing: 0.02em; }

.menu-toggle {
  width: 42px; height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(244, 240, 230, 0.28);
  background: transparent;
  color: var(--cream);
  display: inline-flex; align-items: center; justify-content: center;
}

.mobile-menu {
  background-color: rgba(15, 42, 34, 0.97);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(201, 168, 106, 0.15);
}
.mobile-menu a.menu-link {
  display: block;
  padding: 0.85rem 0;
  color: rgba(244, 240, 230, 0.85);
  border-bottom: 1px solid rgba(244, 240, 230, 0.1);
}

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--forest);
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.45; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--forest), rgba(15,42,34,0.7) 55%, rgba(15,42,34,0.4));
}
.hero h1 { font-size: clamp(2.8rem, 8vw, 6rem); line-height: 1.02; font-weight: 500; color: var(--cream); }
.hero p { color: rgba(244, 240, 230, 0.7); }
.hero-rule {
  position: absolute; bottom: 0; left: 0; height: 1px; width: 100%;
  background: linear-gradient(to right, transparent, rgba(201,168,106,0.4), transparent);
}

/* Section helpers */
.section { padding: 6rem 0; }
.hairline { height: 1px; width: 6rem; background: var(--gold); margin: 1.5rem auto 0; }

.why-point { border-left: 2px solid rgba(201, 168, 106, 0.6); padding-left: 1.5rem; }
.why-img { border-radius: 1rem; object-fit: cover; width: 100%; aspect-ratio: 4/5; box-shadow: 0 20px 45px rgba(0,0,0,0.2); }
.why-badge {
  position: absolute; bottom: -1.5rem; left: -1.5rem;
  background: var(--forest); padding: 1.25rem 2rem; border-radius: 0.75rem;
  box-shadow: 0 25px 50px rgba(0,0,0,0.35);
}

/* Service cards */
.service-card {
  background: rgba(27, 77, 62, 0.25);
  border: 1px solid rgba(244, 240, 230, 0.1);
  border-radius: 1rem;
  overflow: hidden;
  height: 100%;
  display: flex; flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.service-card:hover { transform: translateY(-4px); border-color: rgba(201, 168, 106, 0.4); }
.service-media { position: relative; aspect-ratio: 3/2; overflow: hidden; }
.service-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.service-card:hover .service-media img { transform: scale(1.06); }
.service-badge {
  position: absolute; left: 0.75rem; top: 0.75rem;
  background: var(--gold); color: var(--forest);
  font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em;
  padding: 0.25rem 0.75rem; border-radius: 999px;
}
.service-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.btn-mini {
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em;
  border-radius: 0.4rem; padding: 0.55rem 0.75rem;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.35rem;
}

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; border-radius: 1rem; }
.gallery-grid .g-big { grid-column: span 2; grid-row: span 2; }
@media (min-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .gallery-grid .g-tall { aspect-ratio: 3/4; }
  .gallery-grid .g-wide { grid-column: span 2; }
}

/* Testimonials */
.review-card {
  background: #fbfaf5;
  border: 1px solid rgba(201, 168, 106, 0.2);
  border-radius: 1rem;
  padding: 2rem;
  height: 100%;
  display: flex; flex-direction: column;
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}
.review-quote { font-style: italic; font-size: 1.05rem; line-height: 1.6; color: rgba(15,42,34,0.85); flex: 1; }
.stars { color: var(--gold); display: flex; gap: 0.25rem; margin-bottom: 1rem; }

/* Contact */
.contact-card { background: rgba(27,77,62,0.25); border: 1px solid rgba(244,240,230,0.1); border-radius: 1rem; padding: 2.5rem; }

/* Sticky bar */
.sticky-bar {
  position: fixed; bottom: 1rem; left: 50%; transform: translateX(-50%);
  z-index: 1040; width: calc(100% - 1.5rem); max-width: 28rem;
}
.sticky-inner {
  display: flex; gap: 0.5rem;
  border: 1px solid rgba(201,168,106,0.25);
  background: rgba(15,42,34,0.95);
  backdrop-filter: blur(10px);
  padding: 0.4rem; border-radius: 999px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.35);
}

.icon { width: 1.1em; height: 1.1em; display: inline-block; vertical-align: -0.15em; }

/* Reveal animation */
.reveal { opacity: 0; }
.reveal.in-view { animation: reveal-up 0.9s cubic-bezier(0.16,1,0.3,1) both; }
@keyframes reveal-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.quick-sec .btn-outline-cream {
    border: 1px solid rgba(244, 240, 230, 0.28);
    color: #142b21;
    font-weight: 700;
    border-radius: 999px;
    background: transparent;
    transition: background 0.2s ease;
    border: 1px solid #132a21;
}
.whatsapp-footer:hover{    background-color: #c9a86a;}

@media(max-width:650px){
  .hero {
    padding: 100px 0px;
}
.hero h1 {
    font-size: 33px;
}
.section {
    padding: 3rem 0;
}
.sticky-inner {
    display: none;
}
html,body{overflow-x: hidden;}
.section.bg-cream.quick-sec{padding-top: 0px !important;}
.mobile-menu.d-md-none.show{height: 100vh;}
}


.review-section{
    background:url("images/review-bg.jpg") center/cover no-repeat;
    padding:80px 0;
}

.google-review-card{
    background:#fff;
    padding:35px 25px;
    text-align:center;
    height:100%;
    transition:.3s;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

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

.review-avatar{
    width:70px;
    height:70px;
    border-radius:50%;
    background:#556774;
    color:#fff;
    font-size:38px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 20px;
}

.review-avatar.green{
    background:#009688;
}

.review-avatar.dark{
    background:#004d40;
}

.stars{
    color:#f4b400;
    font-size:22px;
    margin-bottom:18px;
}

.stars span{
    color:#d6d6d6;
}

.five{
    letter-spacing:2px;
}

.review-text{
    font-size:22px;
    font-family:Georgia, serif;
    color:#222;
    min-height:90px;
    margin-bottom:0px;
    line-height:1.5;
}

.review-link{
    color:#000;
    text-decoration:none;
    font-size:20px;
    display:inline-block;
    margin-bottom:35px;
}

.review-link:hover{
    color:#b18b48;
}

.review-footer{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
}

.review-footer img{
    width:24px;
}

.review-footer strong{
    font-size:16px;
    font-weight:500;
}

.review-footer small{
    color:#666;
}

@media(max-width:991px){

.google-review-card{
    margin-bottom:25px;
}

.review-text{
    font-size:19px;
}

}

@media(max-width:576px){

.review-section{
    padding:60px 0;
}

.google-review-card{
    padding:25px 18px;
}

.review-avatar{
    width:60px;
    height:60px;
    font-size:30px;
}

.review-text{
    font-size:18px;
    min-height:auto;
}

.review-link{
    font-size:18px;
}

}