/* css/styles.css */
/* Reset & Base */
*  {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body  {
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #333;
}

a  {
  text-decoration: none;
}


/* Header */
header  {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  z-index: 20;
}

nav a  {
  margin-left: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #333;
  font-size: 1rem;
}

nav a:hover  {
  opacity: 0.20;
}


/* Section Container */
.section-container  {
  max-width: 1200px;
  margin: 0 auto;
 
}


/* Hero */
.hero  {
  margin-top: 100px;
  height: 60vh;
  background: url('../images/hero.png') center/cover no-repeat;
  position: relative;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  border-radius: 6px;
  overflow: hidden;
}

.hero-content  {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  max-width: 480px;
  background: rgba(255,255,255,0.9);
  padding: 2rem;
  border-radius: 0 16px 16px 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.hero-content p {
  margin-bottom: 2rem;
}


.btn  {
  background: #000;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
}

.swiper  {
  flex: 1 1 auto;
  width: 100%;
  border-radius: 6px;
}

.swiper-wrapper  {
  height: 100%;
  flex: 1 1 auto;
  width: 100%;
}

.swiper-slide  {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
}


.service-caption  {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.6);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  color: #fff;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
}


/* Contact */
#contact  {
  padding: 2rem 1rem;
  max-width: 500px;
  margin: 0 auto;
}

#contact h2  {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

#contact form  {
  display: grid;
  gap: 1rem;
}

#contact input,
#contact textarea  {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

#contact button  {
  background: #000;
  color: #fff;
  padding: 0.75rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
}


/* Footer */
.site-footer  {
  border-top: 1px solid #eee;
  font-size: .9rem;
  color: #777;
  padding: 2rem 1rem;
  text-align: center;
  background: #fff;
}

.trusted-bar  {
  margin-top: 1rem;
  color: #666;
  font-size: .9rem;
}


/* Live Chat Button */
.live-chat  {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #000;
  color: #fff;
  padding: .75em 1.3em;
  border-radius: 24px;
  font-weight: 600;
  cursor: pointer;
  z-index: 50;
}


/* Hide Swiper arrows */
.swiper-button-prev,
.swiper-button-next  {
  display: none !important;
}



/* Services carousel standalone, between About/Quote and Contact */
#services  {
  width: 100%;
  max-width: 1200px;   /* match your hero container max-width */
  height: 65vh;      /* 90% of hero height (65vh * 0.9) */
  overflow: hidden;    /* clip overflow */
}


/* Ensure Swiper fills the container */
#services .swiper {
  height: 65vh;
}
#services.swiper .swiper-wrapper,
#services.swiper .swiper-slide {
  width: 100%;
  height: 100%;
  display: flex;      /* ensures horizontal flow */
  flex-shrink: 0;
}

#services.swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}



/* Images cover the area without distortion */
#services img  {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* Uniform panel spacing between section-containers */
.section-container  {
  margin-top: 1rem !important;
}




/* Boutique styling for Services page */
#services-hero  {
  background-color: #faf7f2;
  padding: 4rem 2rem;
  text-align: center;
}


.service-panel  {
  background-color: #ffffff;
  border: 1px solid #ece8e3;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}



/* Services Page Styling - matching landing page scheme */
#services .section-title  {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
  color: #333;
}

.packages  {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.service-panel  {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  padding: 1.5rem;
}





/* ===== Services Page Overrides ===== */
#services.section-container  {
  display: block !important;
  height: auto !important;
  margin: 100px auto 2rem auto !important;  /* same 100px offset as hero plus bottom space */
  padding: 2rem 0 !important;
}



/* Price styling for service packages */
.service-panel .price  {
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: #2e2a23;
}


/* HIC number styling */
.hic  { font-size: 0.9rem; color: #555; text-align: center; margin-top: 0.5rem; }


/* ─────────── MATCH TESTIMONIAL TO ABOUT ─────────── */



/* About + Quote Section Layout */
.about-quote-wrapper {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;

 
  padding: 0;
  box-sizing: border-box;

 }
.about-box, .quote-box {
  flex: 1;
  
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.about-box {
  margin: 0px 1rem 0px 0px;


}


.about-box img, .quote-box img {
  height: 250px;
  width: 100%;
  object-fit: cover;
  display: block;
}
.about-content, .quote-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}



header .logo {
  display: flex;
  align-items: center;
  max-height: 100px;
  padding: 10px 0;
}


.logo img {
  width: 200px !important;
  height: auto;
  max-height: 100%;
  object-fit: contain;
}


.logo {
  padding: 10px;
}

.logo img {
  width: 225px !important;
  height: auto;
  max-height: 100%;
  object-fit: contain;
}

/* ─── homepage carousel only ─── */
/* matches the <section id="services" class="swiper"> on index.html */
#services.swiper {
  height: 60vh !important;
  overflow: hidden !important;
}
#services.swiper .swiper-wrapper,
#services.swiper .swiper-slide {
  height: 100% !important;
}

/* tagline under sub-headline */
.hero-tagline {
  margin: 0.75rem 0;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* align two buttons side by side */
.hero-ctas {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

/* solid primary button */
.btn-primary {
  background: #000;
  color: #fff;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  border-radius: 4px;
}

/* outlined secondary button */
.btn-secondary {
  background: transparent;
  border: 2px solid #000;
  color: #000;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  border-radius: 4px;
}

/* service cards—just like your about-box & quote-box */
.service-box {
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: center;
  max-width: 320px;
  margin: 0 auto;
}



.service-content h3 {
  font-size: 1.25rem;
  margin: 0.5rem 0;
}

.service-content p {
  font-size: 0.95rem;
  line-height: 1.4;
  opacity: 0.85;
}


/* give the box a floating‐card style */
#services .service-box {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 2rem;
  width: 100%;
  max-width: 320px;
  margin: 0;
}




/* Parallax image + white “card” for About section */
.about-box {
  position: relative;
  background-image: url('../images/ars.png');
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  padding: 4rem 2rem;
  min-height: 400px;
  overflow: hidden;
}

.about-box img {
  display: none;
}

.about-content {
  position: relative;
  z-index: 1;
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  max-width: 600px;
  margin: 0 auto;
}

/* disable fixed background on small screens */
@media (max-width: 768px) {
  .about-box {
    background-attachment: scroll;
  }
}


/* ——————————————————————————————————————————————
   Remove *any* gap above the hero (first section)
   —————————————————————————————————————————————— */
.section-container:first-of-type {
  margin-top:   0 !important;
  padding-top:  0 !important;
}

/* In case the <section> itself has built-in margin */
section.hero {
  margin-top: 7.75rem !important;
}

/* Hide the image and center the text in the About tile */
.about-box img {
  display: none !important;
}

.about-box {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem !important;          /* adjust for breathing room */
  background: #fff !important;        /* ensure white card */
  border-radius: 8px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
}

.about-content {
  text-align: center !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Subtle full-page parallax background with white-washed opacity */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: url('../images/bg.png') center center / cover fixed no-repeat;
  opacity: 0.3;              /* adjust between 0.05–0.2 to control visibility */
  pointer-events: none;      /* let clicks pass through */
  z-index: -1;               /* sit behind all content */
}



/* Remove the white page background so your full‐page parallax shows at the edges */
html,
body {
  background: transparent !important;
}

/* Add blur to the full‐page parallax background */
body::before {
  filter: blur(8px);            /* adjust the px value for more/less blur */
  -webkit-filter: blur(8px);    /* support for older WebKit browsers */
}
/* Card style for the Contact Us section – matches Services swiper width */
#contact {
  background: #fff !important;
  max-width: 1200px;             /* same as your Services card */
  margin-bottom: 4rem;
  padding: 4rem !important;      /* inner spacing */
  border-radius: 16px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
}

#contact form { height: 50vh; }

body > section:not(#home) {
  background: white;
}



  /* 2. Make your card (service-box) fill the slide */
  #services .service-box {
    width: 100% !important;
    max-width: none !important;
    padding: 0 !important;
    background: #fff !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
  }

  /* 3. Stretch the image to cover top 40% of the 60vh */
  #services .service-box img {
    width: 100% !important;
    height: 70% !important;
    object-fit: cover !important;
  }

  /* 4. Push your text underneath */
  #services .service-content {
    flex: 1;
    padding: 1rem;
    overflow: auto;
  }


.hamburger {
  display: none;
}

.nav-wrapper {
  display: block;
}


.contact-phone {
  font-size: 1.1rem;
  font-weight: 500;
  color: #777;
  margin-top: 10px;
}
.contact-phone a {
  color: #777;
  text-decoration: none;
}
.contact-phone a:hover {
  text-decoration: underline;
}


#services .service-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
}



.quote-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
  padding: 2rem;
}


body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background:
    linear-gradient(to top, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0) 50%),
    url('../images/bg.png') center center / cover fixed no-repeat;
  filter: blur(8px);
  -webkit-filter: blur(8px);
  pointer-events: none;
  z-index: -1;
}


.about-box,
.quote-box {
  height: 40vh;
min-height: 400px;
}



/* ✅ On mobile: stack vertically and match hero width */
@media (max-width: 960px) {

  .hamburger {
    display: block;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 30px;
    right: 20px;
    z-index: 100;
  }

  .nav-wrapper {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 99;
  }

  .nav-wrapper.show {
    display: block;
  }

  .nav-wrapper nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
  }

  .nav-wrapper nav a {
    padding: 0.75rem 1rem;
    width: 100%;
    font-size: 1.2rem;
    border-bottom: 1px solid #eee;
  }

  .nav-wrapper nav a:last-child {
    border-bottom: none;
  }

.about-quote-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 0;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 !important;
  box-sizing: border-box;
}

.about-box,
.quote-box {
  flex: 1 1 48%;
  background: white;
  border-radius: 0 !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  overflow: hidden;
}


  .about-quote-wrapper {
    flex-direction: column;
    align-items: center;
    padding: 0 1rem;
  }

  .about-box,
  .quote-box {
    width: 100%;
    max-width: 1200px;
    padding: 0;
    margin: 0 auto;
    box-sizing: border-box;
  }

  .about-box img,
  .quote-box img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
  }

  .about-content,
  .quote-content {
    width: 100%;
    padding: 1.5rem 1rem;
    text-align: center;
  }

  .site-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    padding: 2rem 1rem;
    position: relative; /* reset anchor point */
  }

  /* Un-float the SSL trust logo */
  .site-footer > div {
    position: static !important;
    width: auto;
    margin-bottom: 1rem;
  }

  .site-footer > div img {
    display: block;
    margin: 0 auto;
  }

  .site-footer p,
  .site-footer .trusted-bar {
    width: 100%;
  }


.site-footer > div > div[style*="position: absolute"] { position: static !important; text-align: center !important; margin-bottom: 0.5rem; }

/* In case the <section> itself has built-in margin */
section.hero {
  margin-top: 6.3rem !important;
}

.hero {
  height: calc(100vh - 100px);
}


/* Uniform panel spacing between section-containers */
.section-container  {
  margin-top: 0 !important;
}


#contact {
    
    margin-bottom: 0;
    
    
}

.about-box,
.quote-box {
  height: calc(100vh - 100px);
min-height: calc(100vh - 100px);
}


.quote-box {
    height: calc(100vh - 100px) !important;
    min-height: calc(100vh - 100px) !important;

  }

  .quote-content {
    height: 100% !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
  }
  
  .quote-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
    padding: 2rem;
  }
  
  
.section-container  {
    border-radius: 0;
    
}

.swiper  {
    border-radius: 0;
    
}


#contact {
display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center !important;
  text-align: center !important;
  border-radius: 0 !important;
  height: calc(100vh - 100px);
}

#contact-form {
  width: 80vw;
  max-width: 100%;
  margin: 0 auto; /* optional: centers the form */
}


#services .service-box {

  border-radius: 0;
  
 
}

#services.swiper {
    height: calc(100vh - 100px) !important;
  }

  #services.swiper .swiper-wrapper,
  #services.swiper .swiper-slide {
    height: 100% !important;
  }

  #services .service-box {
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .quote-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .quote-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
    padding: 2rem;
  }

}

