:root {
  --black: #0a0a0a;
  --lighter-black:#242222f8;
  --light-black: #272727fd;
  --gold: #e9b405;
  --white: #ffffff;
  --grey: #bbb8b8e0;
  --light-grey: #cecccc;
  --light-gold:#fad87a;
  /* New Variable for Utility Menu */
  --dark-blue: #00008b;
  --whatsapp-green: #25d366;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
  background-color: var(--black);
  color: var(--white);
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Navbar */
/* --- Base Navbar Styles --- */
header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 0 0.5px var(--gold);
}

.navbar {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 2rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.logo {
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: bold;
  font-family: "Playfair Display", serif;
}

/* --- Desktop Nav Links --- */
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  font-size: 18px;
}

.nav-links a {
  color: var(--grey);
  text-decoration: none;
  transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

/* --- Desktop Book Button --- */
.desktop-book-btn {
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 0.6rem 2rem;
  border-radius: 0;
  cursor: pointer;
  transition: 0.3s;
  font-size: 18px;
}
.desktop-book-btn:hover {
  box-shadow: 0 0 20px gold;
  transform: scale(1.05);
}

/* Hide mobile-specific elements on desktop */
.mobile-menu-top,
.mobile-book-btn-li,
.close-btn {
    display: none;
}

/* --- Hamburger Icon (Mobile Only) --- */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--gold);
  margin: 4px 0;
  transition: 0.3s;
}


/* ===================================
   MOBILE STYLES (760px and down)
====================================== */
@media (max-width: 760px) {
  
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--black);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 2rem;
    z-index: 1000;
    transform: translateX(-100%); 
    transition: transform 0.3s ease-in-out;
    gap: 0; 
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .mobile-menu-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
      padding-bottom: 2rem;
      border-bottom: 1px solid var(--gold);
      margin-bottom: 1rem;
  }
  
  .close-btn {
      display: block;
      font-size: 1.8rem;
      color: var(--gold);
      cursor: pointer;
  }

  .nav-links li {
      width: 100%;
      text-align: left;
  }

  .nav-links a {
      display: block;
      padding: 1rem 0;
      font-size: 1.2rem;
      text-transform: uppercase;
  }
  
  .mobile-book-btn-li {
      display: block;
      width: 100%;
      text-align: center;
      margin-top: 2rem;
  }
  
  .mobile-book-btn-li .book-btn {
      width: 100%;
      max-width: 300px; 
      padding: 1rem;
      font-size: 1.1rem;
     background-color: var(--gold);
  }

  .hamburger {
    display: flex;
  }

  .desktop-book-btn {
    display: none;
  }
}


/* Hero Section */
.hero {
  background: url("/image/hero-img.webp") center/cover no-repeat;
  height: 100vh;
  position: relative;
  display: flex;
  align-items:center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.671);
  z-index: 2;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  z-index: 3;
  color: var(--white);
  padding: 0 1rem;
  position: relative;
}

.hero-content h1 {
  position: relative;
  color: var(--white);
 font-size: clamp(2.5rem, 5vw, 5rem);
  text-align: center;
  letter-spacing: 3px;
  margin: 40px 0;
  font-weight: 600;
  font-family: "Playfair Display", serif;
}

@media (min-width:1200px){
.hero-content h1 {
  font-size: 5rem;
}
}

.hero-content h1::before,
.hero-content h1::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 120px;
  height: 2px;
  background: var(--gold);
  transform: translateX(-50%);
  box-shadow: 0 0 10px var(--gold);
}

.hero-content h1::before {
  top: -15px;
}
 
.hero-content h1::after {
  bottom: -15px;
}


.tagline {
    font-family: 'Great Vibes', cursive;
   font-size: clamp(1.5rem, 3vw, 2rem);
  color:  var(--light-gold);
  text-align: center;
  margin-top: 8px;
  letter-spacing: 1.5px;
}


.desc {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   font-size: clamp(1rem, 1.5vw, 1.4rem);
  margin: 20px;
  color: var(--light-grey);
}

@media (min-width: 1200px){
  .tagline {
    font-size: 3rem;
  }
  .desc {
    font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  }
}




.cta {
    background: var(--gold);
  color: var(--black);
  border: none;
  padding: 1rem 4rem;
  border-radius: 0;
  cursor: pointer;
  transition: 0.3s;
  font-size: 18px;
  margin-top: 1.5rem;
}

.cta:hover {
  background: #e1c063;
}

.scroll-indicator {
  border: 2px solid var(--gold);
  height: 4rem;
  width: 2rem;
  margin-top: 2rem;
  border-radius: 25px;
  animation: scroll-animation 2s ease 1s infinite ;
}

.scroll-line {
    border: 2px solid var(--gold);
  transform: rotate(90deg);
 margin-top: 30px;
  
}

@keyframes scroll-animation {
  0% , 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(20px);
  }
  
}


.about-text {
  flex: 1;
  margin-right: 10px;
  text-align: left;
  padding-bottom: 15rem;
}

.about-text p {
  font-family: sans-serif;
  
}

.lined-heading {
  font-family: "playfair Display",serif;
  font-size: 2.5rem;
  line-height: 1;
}

.about {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  background-color: var(--light-black);
padding-top: 5rem;
}

.about-image {
  flex: 1;
  max-width: 40vw;
  height: auto;
  margin: 20px;
  box-shadow: 0 0 50px #ffd9002d;
  transition: box-shadow 1s ease, transform 0.4s ease;
}

.about-image:hover {
  box-shadow: 0 0 50px #ffd9007a;
}

.about-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  transition: transform 2s ease;

}

.about-image:hover img {
  transform: scale(1.02);
}

.lined-heading {
  position: relative;
  display: inline-block;
  padding-top: 20px;
}
.lined-heading::before {
    transition: width 0.4s ease;
  content: "";
  position: absolute;
  top: 0;
  width: 60px;
  height: 3px;
  background-color: var(--gold);
  border-radius: 2px;
}
.lined-heading:hover::before {
  width: 100px; }

.about-text{
   flex: 1;
  padding: 2rem
}

.about-text p {
 font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--light-grey);
  font-size: clamp(1rem, 1vw + 0.8rem, 1.3rem);
  line-height: 1.6;
  margin-top: 2rem;
  font-size: 20px;
}



/* Responsive */
@media (max-width: 760px) {
   .hero h1 {
    font-size: 3rem;
  }

  .about {
    display: flex;
    flex-direction: column;
    max-width: 100%;
  }
  
 .about {
  display: flex;
  flex-direction: column;
gap: 20px;
  justify-content: left;
  align-items: left;
  width: 100%;
  background-color: var(--light-black);
padding-top: 5rem;

}

.about-image {
 max-width: 300px;
 max-height: 650px;
box-shadow: 0 0 50px  #ffd9006e;
transition: box-shadow 1s ease;
}
.about-image:hover {
  box-shadow: 0 0 50px #ffd9007a;
}
.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
  transition: scale 2s ease;  
 
}

  
  .hero-content{
    margin-top: 1rem;
    
  }
  .tagline{
    margin-top: 3px;
    letter-spacing: 1px;
    font-size: 2.5rem;
  }
  .desc {
    margin: 10px;
    font-size: 1.2rem;
  }
  .cta {
      font-size: 1.2rem;
    padding: 1rem 4rem;
    white-space: nowrap;
    font-weight: 700;
  }
} /* Closing the @media (max-width: 760px) query */

/* === Section Titles (Used on multiple pages) && Section Header */
.section-title-container {
    text-align: center;
    padding: 80px 5% 40px;
}

.section-title {
    font-size: 2.7rem;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    font-family: "playfair Display", serif;
}

.section-title::before {
    content: '';
    display: block;
    width: 50%;
    height: 3px;
    background: var(--gold);
    margin: 10px auto 0;
}

.section-subtitle {
    font-size: 1.5rem;
    color: var(--light-grey);
    max-width: 600px;
    margin: 0 auto;
}

/* === Services Grid (Used on index.html and services.html) === */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    padding: 0 5% 80px;
}

.service-card {
    width: 100%;
    background-color: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s ease, box-shadow 0.4s ease; 
}


.service-card:hover {
    transform: scale(1.02); 
    box-shadow: 0 10px 30px rgba(255, 238, 0, 0.247); 
}

.card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.card-content {
    padding: 30px;
}

.card-title {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 15px;
    font-family: "Playfair Display", serif;
    text-align: center;
}

.card-description {
    color: var(--grey);
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.5;
    font-family: sans-serif;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}


/* Static service list (for homepage) */
.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    font-size: 0.9rem;
    color: var(--light-grey);
    margin-bottom: 8px;
    position: relative;
    padding-left: 18px;
}

.service-list li::before {
    content: '•';
    color: var(--gold);
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: -2px;
}

/* === Client Experiences Section (Testimonials) === */
.client-experiences {
    background-color: var(--light-black);
    padding: 60px 5%;
    text-align: center;
}

/* === Responsive Design for Services/Testimonials === */
@media (max-width: 760px) {
    .section-title-container {
        padding-top: 50px;
    }

    /* --- THIS IS THE FIX FOR HOMEPAGE OVERFLOW --- */
    .services-grid {
        grid-template-columns: 1fr;
        padding: 0 5% 60px;
    }
}

/* --- Client Experiences Section Styles --- */
.client-experiences {
    background-color: var(--light-black);
    padding: 80px 5%; 
    text-align: center;
}

.client-experiences .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--gold);
    margin: 10px auto 20px;
}

.client-experiences .section-title {
    font-size: 2.5rem !important; 
    font-weight: 700;
    margin-bottom: 5px;
}

.client-experiences .section-subtitle {
    margin-bottom: 50px;
}

/* --- Testimonials Grid --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 30px; 
    max-width: 1200px; 
    margin: 0 auto;
}

/* --- Individual Card Styling --- */
.testimonial-card {
    background-color: var(--black); 
    padding: 30px;
    text-align: left;
    border-radius: 4px;
    box-shadow: 0 0 0 0.4px var(--gold);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px); 
    box-shadow: 0 10px 20px rgba(233, 180, 5, 0.3); 
}

.stars {
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--light-grey);
    font-weight: 300; 
}

.client-name {
    font-size: 1rem;
    font-weight: bold;
    color: var(--white);
    margin-bottom: 3px;
    text-transform: uppercase;
}

.service-type {
    font-size: 0.85rem;
    color: var(--gold); 
    font-style: italic;
}


/* --- Responsive Design for Testimonials --- */
@media (max-width: 760px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}
/* --- Contact Section Styles (Get In Touch) --- */
.contact-section {
    padding: 80px 0;
    background-color: var(--black);
}

.contact-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-section .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--gold);
    margin: 10px auto 20px;
}

/* --- Content Grid Layout --- */
.contact-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; 
}

/* --- Left Column: Contact Info --- */
.contact-info {
    text-align: left;
    padding-top: 15px; 
}

.contact-info h3 {
    font-size: 1.8rem;
    font-family: "Playfair Display", serif;
    margin-bottom: 30px;
    color: var(--white);
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.icon-circle {
    font-size: 1.2rem;
    color: var(--gold);
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--gold);
    border-radius: 50%;
    margin-right: 15px;
    
}

.info-label {
    font-size: 0.9rem;
    color: var(--light-grey);
    margin-bottom: 2px;
}

.info-detail {
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 500;
}

.contact-cta {
    padding: 1rem 3rem;
    width: 100%;
    margin-top: 20px;
}


/* --- Right Column: Contact Form --- */
.contact-form-wrapper {
    background-color: var(--light-black); 
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 0 0 0.4px var(--gold);
}

.contact-form-wrapper h3 {
    font-size: 1.8rem;
    font-family: "Playfair Display", serif;
    margin-bottom: 30px;
    color: var(--white);
    text-align: left;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    background-color: var(--black); 
    border: 1px solid var(--light-black);
    color: var(--white);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--grey);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 5px var(--gold);
}

.contact-form textarea {
    resize: vertical;
}

.submit-btn {
    padding: 1rem 3rem;
    width: 100%;
    margin-top: 5px;
}


/* --- Mobile Responsiveness for Contact Section --- */
@media (max-width: 760px) {
    
    .contact-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        padding: 0 10px;
    }

    .contact-form-wrapper {
        padding: 25px;
    }
}
/* --- Footer Styling --- */
.main-footer {
    background: var(--light-black); 
    color: var(--light-grey);
    font-family: Arial, sans-serif;
    padding: 50px 0 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items:center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

/* Brand Info Column */
.brand-info .logo {
    color: var(--gold);
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 15px;
    font-family: "Playfair Display", serif; 
}

.brand-info p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--grey);
}
.connect-us {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
/* Quick Links and Connect With Us Columns */
.footer-col h4 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 600;
    font-family: "playfair Display",serif;
}

.quick-links ul {
    list-style: none;
    padding: 0;
}

.quick-links li {
    margin-bottom: 10px;
}

.quick-links a {
    color: var(--light-grey);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.quick-links a:hover {
    color: var(--gold);
    padding-left: 5px; 
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 20px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #272727; 
    color: var(--gold);
    border-radius: 50%;
    font-size: 2rem;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
    font-weight: 300;
}

.social-icon:hover {
    background-color: var(--gold);
    color: var(--black);
    box-shadow: 0 0 10px rgba(233, 180, 5, 0.5);
}

/* Copyright Bar */
.copyright-bar {
    text-align: center;
    padding: 2rem;
    background: var(--light-black);
    color: var(--grey);
    font-size: 1rem;
    box-shadow: 0 0 0 0.4px var(--gold);
}


/* --- Mobile Responsiveness for Footer --- */
@media (max-width: 760px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-col {
        margin-bottom: 30px;
    }

    .quick-links ul {
        display: inline-block;
        text-align: left; 
    }
    
    .social-icons {
        justify-content: center; 
    }
}
/* --- About Page Hero Banner (About Shebah Spa) --- */
.page-hero-about {
    background: url("/image/about1.webp") center/cover no-repeat;
    height: 90vh; 
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 70px;
  
}

.page-hero-about .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(to top, rgb(7, 7, 7), rgba(0,0,0,0)); 
}

.page-hero-about .hero-content h1 {
    font-size: clamp(2rem, 4vw, 4.5rem);
    margin: 20px 0;
    font-weight: 700;
}
.page-hero-about .hero-content h1::after {
    content: "";
    position: absolute;
    left: 50%;
    width: 80px;
    height: 2px;
    background: var(--gold);
    transform: translateX(-50%);
    bottom: -15px; 
    box-shadow: none; 
}
.page-hero-about .hero-content h1::before {
    display: none;
}

.page-hero-about .tagline {
    font-size: clamp(1.2rem, 2vw, 3rem);
    color: var(--light-grey);
     
}


/* --- Our Story Section --- */
.about-story {
    background-color: var(--black);
    padding: 80px 0;
   

}

    

.story-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr; 
    gap: 50px;
    align-items: center;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.story-title {
    font-family: "Playfair Display", serif;
    font-size: 3rem; 
    color: var(--gold); 
}

.story-text {
    text-align: left;
}

.story-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--light-grey);
    margin-top: 15px;
}

.story-image {
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
    border-radius: 4px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 40vh;
    display: block;
    object-fit: cover;
   
   
}


/* --- Our Values Section --- */
.about-values {
    background-color: var(--lighter-black);
    padding: 80px 0;
    text-align: center;
}

.gold-title {
    color: var(--gold);
    font-family: "Playfair Display", serif;
    font-size: 3rem;
    margin-bottom: 50px;
}
.gold-title::before {
    display: none; 
}


.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.value-card {
    background-color: transparent; 
    padding: 30px 10px;
    border-radius: 4px;
    text-align: center;
    box-shadow: 0 0 0 0.4px var(--gold);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 10px;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0px 30px 5px rgba(233, 180, 5, 0.671);
}

.value-icon {
    font-size: 1.5rem;
    color: var(--gold);
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: 50%;
    background-color: var(--gold);
    box-shadow: 0 0 0 15px rgba(233, 180, 5, 0.281);
}

.value-card h3 {
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 10px;
    font-weight: 600;
}

.value-card p {
    font-size: 1.2rem;
    color: var(--grey);
    line-height: 1.2;
}


/* --- Our Mission Section --- */
.about-mission {
    background-color: var(--black);
    padding: 80px 0;
    text-align: center;
}

.mission-text {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--light-grey);
    padding: 0 20px;
}

.mission-cta {
    padding: 1rem 3rem;
    font-size: 1.1rem;
}


/* --- Responsive Styles (Added to your existing @media (max-width: 760px)) --- */
@media (max-width: 760px) {

    .story-grid {
        grid-template-columns: 1fr; 
        gap: 30px;
    }
    
    .story-text {
        order: 2; 
    }

    .story-image {
        order: 1; 
    }

    .values-grid {
        grid-template-columns: 1fr; 
        max-width: 400px; 
        margin: 0 auto;
    }

    .about-values, .about-mission {
        padding: 50px 20px;
    }

    .gold-title {
        font-size: 2.5rem;
    }

    .mission-text {
        font-size: 1rem;
    }

    .page-hero-about {
        height: 60vh;
        margin-top: 0;
    }
}
/* --- Contact Page Hero Banner --- */
.page-hero-contact {
    background: url("/image/FrontDesk.webp") center/cover no-repeat;
    height: 90vh; 
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 70px; 
}

.page-hero-contact .overlay {
    background: rgba(0, 0, 0, 0.65); 
}

.page-hero-contact .hero-content h1 {
  font-family: "playfair Display";
    font-size: clamp(2.5rem, 5vw, 5rem);
    margin: 20px 0;
    font-weight: 700;
}
.page-hero-contact .hero-content h1::after {
    content: "";
    position: absolute;
    left: 50%;
    width: 80px;
    height: 2px;
    background: var(--gold);
    transform: translateX(-50%);
    bottom: -15px; 
    box-shadow: none; 
}
.page-hero-contact .hero-content h1::before {
    display: none; 
}

.page-hero-contact .tagline {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: clamp(1rem, 1.5vw, 1.4rem);
    color: var(--light-grey); 
    max-width: 600px;
    margin: 25px auto 0;
}


/* --- Contact Cards Section (Below Hero) --- */
.contact-cards-section {
    background-color: var(--black);
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card {
    background-color: var(--light-black); 
    padding: 30px 15px;
    border-radius: 4px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 0 0.3px var(--gold);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0px 20px 5px rgba(233, 180, 5, 0.541);
}

.card-icon {
    font-size: 2rem;
    color: var(--gold);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: 50%;
    border: 2px solid var(--gold);
}

.contact-card h4 {
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: "playfair Display",serif;
}

.contact-card p {
    font-size: 0.95rem;
    color: var(--light-grey);
    line-height: 1.5;
}


/* --- Map Placeholder Section --- */
.map-placeholder {
    background-color: var(--light-black); 
    padding: 100px 20px;
    text-align: center;
    box-shadow: 0 0 10px 5px rgba(233, 180, 5, 0.1); 
    border-top: 1px solid var(--gold);
    border-bottom: 1px solid var(--gold);
    margin: 5rem;
}

.map-content .map-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.map-content p {
    font-size: 1.2rem;
    color: var(--grey);
}


/* --- Mobile Responsiveness for Contact Page --- */
@media (max-width: 760px) {

    .page-hero-contact {
        height: 45vh;
    }

    .contact-grid {
        grid-template-columns: 1fr; 
        max-width: 400px;
        margin: 0 auto;
    }

    .contact-cards-section {
        padding: 50px 20px;
    }

    .map-placeholder {
        padding: 60px 20px;
    }
}


/* ============================================
NEW STYLES FOR SERVICES PAGE (services.html)
============================================
*/

/* --- Services Hero Section --- */
.services-hero {
    height: 80vh; 
    background: url('/image/guygettingmsg.webp') no-repeat center center/cover;
    margin-top: 70px;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.services-hero .hero-content {
    max-width: 800px;
}

.services-hero .hero-content h1 {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 20px;
    line-height: 1.2;
}

.services-hero .hero-content p {
    font-size: 1.3rem;
    color: var(--light-grey);
    margin-bottom: 30px;
    line-height: 1.5;
}

/* --- Accordion Styles (for Service Cards) --- */
.service-accordion {
    border-top: 1px solid #333;
    margin-top: 10px;
}

.accordion-item {
    border-bottom: 1px solid #333;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-subheader {
    color: var(--gold);
    font-size: 1.1rem;
    font-family: "Playfair Display", serif;
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px dashed #333;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5px;
    cursor: pointer;
    color: var(--light-grey);
    font-weight: 500;
    transition: color 0.2s;
    font-size: 1rem;
}

.accordion-header:hover {
    color: var(--gold);
}

.accordion-header::after {
    font-size: 1.2rem;
    color: var(--gold);
    font-weight: 300;
    transition: transform 0.3s ease-out;
    transform: rotate(0deg); 
}

.accordion-header.active::after {
    content: '\2303';
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 5px;
}

.accordion-content.open {
    max-height: 400px;
    padding: 10px 5px 20px;
}

.service-description-detail {
     font-size: 0.9rem; 
     color: var(--grey); 
     margin-bottom: 10px;
}

.price-details {
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
    padding: 5px 0;
    border-top: 1px dashed #222;
}

.price-details:last-child {
    border-bottom: none;
}

.price-details span {
    font-size: 0.9rem;
}

.price-details .duration {
    color: var(--grey);
}

.price-details .price {
    color: var(--gold);
    font-weight: bold;
}

/* --- Mobile Responsiveness for Services Hero --- */
@media (max-width: 760px) {
    .services-hero {
        height: 60vh;
        margin-top: 0;
    }
    
    .services-hero .hero-content h1 {
        font-size: 2rem;
    }
    .services-hero .hero-content p {
        font-size: 1rem;
    }
}
.book-btn {
    background: var(--gold);
    color: var(--black);
    border: none;
    padding: 0.6rem 2rem;
    cursor: pointer;
    transition: 0.3s;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    border-radius: 4px;
}

.book-btn:hover {
    box-shadow: 0 0 10px var(--gold);
    transform: scale(1.02);
}

/* ------------------------------------------------ */
/* CSS for the new 'Book Now' Button in the Service Card */
/* ------------------------------------------------ */
.card-footer {
    margin-top: 20px; 
    padding-top: 20px;
    border-top: 1px solid #333;
    text-align: center;
}

.card-footer .book-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.card-footer .book-btn i {
    margin-left: 8px;
}
/* --- For the Contact Form Status Message --- */

.status-message {
    margin-top: 1em;
    padding: 0.5em;
    border-radius: 4px;
    font-size: 0.9em;
    display: none;
}

.status-message.success {
    display: block;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.status-message.error {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ================================================= */
/* --- NEW UTILITY MENU & BACK TO TOP STYLES (GLOBAL) --- */
/* ================================================= */

.utility-menu-container {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
}

.utility-toggle {
    width: 60px;
    height: 60px;
    background-color: var(--dark-blue); 
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.utility-toggle.active {
    transform: rotate(360deg);
}

.utility-action-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    text-decoration: none;
    color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    margin-bottom: 10px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(10px);
}

.utility-action-btn.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.utility-action-btn.whatsapp {
    background-color: var(--whatsapp-green); 
}

.back-to-top {
    width: 50px;
    height: 50px;
    background-color: var(--gold); 
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    position: fixed;
    bottom: 165px; /* <-- THIS IS THE FIX */
    right: 30px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 10001;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}
.utility-toggle,
.back-to-top {
  
  border: none;

}

/* ================================================
  == NEW CSS FOR HERO SLIDESHOW (KEN BURNS)
  ================================================
*/

#hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-name: kenBurns, imageFade;
  animation-duration: 24s;
}

.hero-bg:nth-child(1) {
  animation-delay: 0s;
}
.hero-bg:nth-child(2) {
  animation-delay: 8s;
}
.hero-bg:nth-child(3) {
  animation-delay: 16s;
}

@keyframes kenBurns {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}

@keyframes imageFade {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  33% {
    opacity: 1;
  }
  43% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* ================================================
  == NEW CSS FOR NAV DROPDOWN (Stargenius)
  ================================================
*/

/* 1. Base item styling */
.nav-item-dropdown {
  position: relative;
}

.nav-link-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dropdown-icon {
  font-size: 0.7em;
  transition: transform 0.3s ease;
}

/* 2. Desktop Dropdown (NOW A VERTICAL LIST) */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--black);
  box-shadow: 0 4px 12px rgba(233, 180, 5, 0.4);
  border-top: 2px solid var(--gold);
  padding: 1rem;
  border-radius: 0 0 4px 4px;
  min-width: 250px;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

/* Desktop hover interaction */
.nav-item-dropdown:hover .dropdown-menu {
  display: block; /* This makes it vertical */
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-item-dropdown:hover .dropdown-icon {
  transform: rotate(180deg);
}

/* 3. Dropdown Content Styling */
.dropdown-category {
  margin-bottom: 1rem;
}
.dropdown-category:last-child {
  margin-bottom: 0;
}

.dropdown-category h4 {
  font-size: 1.1rem;
  font-family: "Playfair Display", serif;
  color: var(--gold);
  padding-bottom: 0.5rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid var(--gold);
}

.dropdown-category a {
  display: block;
  color: var(--grey);
  text-decoration: none;
  font-size: 0.95rem;
  padding: 0.5rem 0.25rem;
  border-radius: 4px;
  transition: background-color 0.2s, color 0.2s;
}

.dropdown-category a:hover {
  color: var(--black);
  background-color: var(--gold);
}


/* 4. Mobile Dropdown Behavior (Unchanged) */
@media (max-width: 760px) {
  .dropdown-menu {
    position: static;
    display: block; 
    width: 100%;
    min-width: 0;
    box-shadow: none;
    border-top: none;
    border-radius: 0;
    padding: 0.5rem 0 0.5rem 1.5rem;
    background-color: transparent;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    transform: none;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    pointer-events: auto; 
  }

  .dropdown-menu.open {
    max-height: 500px;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  
  .dropdown-category {
    min-width: 0;
    margin-bottom: 0.5rem;
  }
  
  .dropdown-category h4 {
    font-size: 1rem;
  }
  
  .dropdown-category a {
    font-size: 0.9rem;
    padding: 0.4rem 0.25rem;
  }

  .dropdown-icon.open {
    transform: rotate(180deg);
  }
}

/* ============================================
  NEW STYLES FOR services.html ACCORDION
  ============================================
*/
.services-accordion {
    max-width: 1200px;
    margin: 0 auto 5rem;
    padding: 0 5%; /* Matches grid padding */
}

.accordion-item {
    background-color: var(--light-black);
    border: 1px solid var(--gold);
    border-radius: 4px;
    margin-bottom: 1.5rem;
    overflow: hidden; /* Ensures child elements respect border radius */
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1.5rem 2rem;
    background-color: transparent;
    border: none;
    color: var(--white);
    cursor: pointer;
    text-align: left;
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background-color: #3a3a3a; /* Slightly lighter than --light-black */
}

.accordion-header h2 {
    font-family: "Playfair Display", serif;
    font-size: 2.2rem;
    color: var(--gold);
    margin: 0;
}

.accordion-header .icon {
    font-size: 1.5rem;
    color: var(--gold);
    transition: transform 0.3s ease;
    flex-shrink: 0; /* Prevents icon from shrinking */
    margin-left: 1rem;
}

.accordion-header.active .icon {
    transform: rotate(180deg);
}

.accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background-color: var(--black); /* Darker background for content */
    border-top: 1px solid var(--gold);
}



.accordion-panel-inner {
    padding: 1rem 2rem 2rem;
}

.service-link {
    display: block;
    font-size: 1.1rem;
    color: var(--light-grey);
    text-decoration: none;
    padding: 0.75rem 1rem;
    margin: 0.25rem 0;
    border-radius: 4px;
    transition: background-color 0.2s, color 0.2s, padding-left 0.2s;
}

.service-link:hover {
    background-color: var(--gold);
    color: var(--black);
    padding-left: 1.5rem;
}

@media (max-width: 760px) {
    .accordion-header h2 {
        font-size: 1.8rem;
    }
    .accordion-header {
        padding: 1.2rem 1.5rem;
    }
    .service-link {
        font-size: 1rem;
        padding: 0.75rem;
    }
    .accordion-panel-inner {
        padding: 0.5rem 1rem 1.5rem;
    }
}

/* ===================================================
  STYLES FOR service-details.html (Overflow Fix)
  ===================================================
*/

/* * This class ".service-detail-content" MATCHES your HTML file.
*/
.service-detail-content {
    /* Handles long strings of text */
    overflow-wrap: break-word;
    word-wrap: break-word;
}

/* * This targets the ".description" <p> tag INSIDE your container.
 * This is where the .innerHTML is being injected.
*/
.service-detail-content .description {
    line-height: 1.7;
    color: var(--light-grey);
    overflow-wrap: break-word;
    word-wrap: break-word;
}

/* * This is the MOST IMPORTANT FIX.
 * It targets any image injected INSIDE the description.
*/
.service-detail-content .description img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1.5rem auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* These rules style other HTML that might come from your admin panel */
.service-detail-content .description p {
    margin-bottom: 1rem;
}

.service-detail-content .description h1,
.service-detail-content .description h2,
.service-detail-content .description h3,
.service-detail-content .description h4 {
    color: var(--gold);
    font-family: "Playfair Display", serif;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.service-detail-content .description ul,
.service-detail-content .description ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.service-detail-content .description li {
    margin-bottom: 0.5rem;
}