/* css/styles.css */

/*=============================================================================
  1. Global resets & base
=============================================================================*/
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;700&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: #f8f9fa;
  color: #333;
}

/*=============================================================================
  2. Navbar & Brand
=============================================================================*/
.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0;
}

.brand-logo {
  height: 48px;
  width: auto;
}

.brand-text {
  font-family: 'Dancing Script', cursive;
  font-size: 1.75rem;
  color: #8daf00;
  line-height: 1;
}

.nav-link {
  font-weight: 500;
  color: #333;
}

.nav-link:hover,
.nav-link:focus {
  color: #f58220;
  text-decoration: none;
}

/*=============================================================================
  3. Limited-Time Offer Banner
=============================================================================*/
.offer-banner {
  background-color: #f58220;
  color: #fff;
  font-size: 0.9rem;
  text-align: center;
  padding: 0.5rem 0;
}

/*=============================================================================
  4. Hero Banner (index.html)
=============================================================================*/
.hero-banner {
  position: relative;
  background: url('../images/hero.jpg') no-repeat center/cover;
  height: 75vh;
  min-height: 400px;
  display: flex;
  align-items: center;
}

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

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
}

.hero-content .display-4 {
  font-size: 5.5rem;
  font-family: 'Dancing Script', cursive;
}

.hero-content .lead {
  font-size: 1.25rem;
}

/*=============================================================================
  4. Gallery Section*/

#gallery img {
  width: 100%;       /* keeps it responsive */
  max-width: 400px;  /* caps it at 300px wide */
  margin: 0 auto;    /* center inside its column */
  display: block;    /* ensure margin auto works */
}

#gallery p {
  font-size: 1.5rem;
  font-style: italic;
}


/*=============================================================================
  5. Proof-Strip
=============================================================================*/
.proof-strip {
  background: #fff;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  font-size: 0.9rem;
  text-align: center;
  padding: 0.5rem 0;
}

.proof-strip i {
  vertical-align: middle;
}

/*=============================================================================
  6. How It Works
=============================================================================*/
.how-it-works {
  background: #fff;
  padding: 3rem 0;
}

.how-it-works h2 {
  color: #333;
  margin-bottom: 2rem;
}

.how-it-works .text-brand,
.how-it-works .bi {
  color: #f58220 !important;
}

/*=============================================================================
  7. About Section
=============================================================================*/
#about {
  background-color: #fff;
  padding: 3rem 0;
}

#about .rounded-circle {
  border: 5px solid #fff;
}

#about h2 {
  margin-bottom: 1rem;
}

#about p {
  margin-bottom: 1rem;
  color: #555;
}

/*=============================================================================
  8. Sticky “Book Now” Button
=============================================================================*/
.book-now-sticky {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 1000;
}

/*=============================================================================
  9. Buttons
=============================================================================*/
.btn-primary {
  background: #f58220;
  border-color: #f58220;
}

.btn-primary:hover,
.btn-primary:focus {
  background: #e06f1a;
  border-color: #e06f1a;
}

/*=============================================================================
  10. Services Page—Enhanced Styling
=============================================================================*/

/* 1) Hero Banner */

.services-hero {
  position: relative;
  background: url('../images/services-hero.jpg') center/cover no-repeat;
  height: 50vh; min-height: 300px;
  display: flex; align-items: center; justify-content: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 70%;
}

.services-hero .overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0.5);
}
.services-hero .display-4 {
  font-family: 'Dancing Script', cursive;
  font-size: 3rem;
  z-index: 1;
}
.services-hero .lead,
.services-hero .btn-light {
  z-index: 1;
}

/* 2) Stats Counter */
.stats-section .stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #f58220;
}
.stats-section .stat-label {
  color: #555;
  margin-top: .25rem;
}

/* 3) Service Cards */
.services-grid .service-card {
  background: #fff;
  border-radius: .75rem;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,0.05);
  transition: transform .3s, box-shadow .3s;
  display: flex; flex-direction: column;
}
.services-grid .service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 1rem 1.5rem rgba(0,0,0,0.1);
}
.services-grid .service-card i {
  color: #f58220;
}
.services-grid .pricing {
  margin-top: auto;
  margin-bottom: 1rem;
}
.feature-list {
  list-style: none; padding-left: 0;
}
.feature-list li {
  position: relative; padding-left: 1.5rem; margin-bottom: .5rem;
}
.feature-list li::before {
  content: "\f111"; /* circle */
  font-family: "bootstrap-icons";
  position: absolute; left: 0; top: .2em;
  font-size: .6rem; color: #f58220;
}

/* 4) Sticky CTA */
.book-now-sticky {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 1000;
}

/* 5) Responsive */
@media (max-width:768px) {
  .services-hero .display-4 { font-size: 2rem; padding: 0 1rem; }
  .stats-section { text-align: center; }
  .stats-section .col-6 { margin-bottom: 1.5rem; }
}

/*=============================================================================
  Testimonials Page Styles
=============================================================================*/

/* Hero Banner */
.testimonials-hero {
  position: relative;
  background: url('../images/testimonials-hero.jpg') center/cover no-repeat;
  background-position: 50% 47%;
  height: 40vh;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonials-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.testimonials-hero .display-4 {
  position: relative;
  z-index: 1;
  font-family: 'Dancing Script', cursive;
  font-size: 2.5rem;
  color: #fff;
}
.testimonials-hero .lead {
  position: relative;
  z-index: 1;
  color: #f0f0f0;
}

/* Testimonials Section */
#testimonials {
  padding: 3rem 0;
  background-color: #f8f9fa;
}
#testimonials h2 {
  font-family: 'Dancing Script', cursive;
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 2rem;
  text-align: center;
}

/* Testimonial Cards */
#testimonials .testimonial-card {
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#testimonials .testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 1rem 1.5rem rgba(0, 0, 0, 0.1);
}

/* Avatar */
#testimonials .testimonial-card img.rounded-circle {
  width: 60px;
  height: 60px;
  object-fit: cover;
}

/* Reviewer Name & Role */
#testimonials .testimonial-card h5 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}
#testimonials .testimonial-card small.text-muted {
  font-size: 0.85rem;
  color: #777;
}

/* Quote */
#testimonials .testimonial-card p {
  font-style: italic;
  color: #555;
  margin-bottom: 1rem;
}

/* Star Rating */
#testimonials .testimonial-card .bi-star-fill {
  color: #f58220;
  margin-right: 0.125rem;
}

/* Sticky “Book Now” Button */
.book-now-sticky {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 1000;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .testimonials-hero {
    height: 30vh;
  }
  .testimonials-hero .display-4 {
    font-size: 2rem;
    padding: 0 1rem;
  }
  #testimonials .testimonial-card {
    text-align: center;
  }
  #testimonials .testimonial-card .d-flex {
    justify-content: center;
  }
}

/*=============================================================================
  12. FAQ + Trust Hub
=============================================================================*/

.faq-hero {
  position: relative;
  background: url('../images/faq-hero.png') center/cover no-repeat;
  background-position: 50% 30%;
  height: 40vh;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}
.faq-hero .display-4 {
  font-size: 2.5rem;
  color: #fff;
  z-index: 1;
}
.faq-hero .lead {
  color: #f0f0f0;
  z-index: 1;
}

#faq-hub {
  background-color: #f8f9fa;
}
#faq-hub h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 1.5rem;
}

/* Accordion overrides */
.accordion-button {
  color: #333;
}
.accordion-button:not(.collapsed) {
  color: #f58220;
  background-color: #fff;
}
.accordion-body {
  color: #555;
}

/* Trust box */
.trust-box {
  background: #fff;
}
.trust-badge {
  width: 40px;
  height: auto;
}

/* Buttons */
.btn-primary {
  background-color: #f58220;
  border-color: #f58220;
}
.btn-primary:hover,
.btn-primary:focus {
  background-color: #e06f1a;
  border-color: #e06f1a;
}
.btn-outline-primary {
  color: #f58220;
  border-color: #f58220;
}
.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background-color: #f58220;
  color: #fff;
}

/* Sticky CTA */
.book-now-sticky {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 1000;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .faq-hero { height: 30vh; }
  .faq-hero .display-4 { font-size: 2rem; padding: 0 1rem; }
  #faq-hub .accordion-button { font-size: 0.95rem; }
  #faq-hub h2 { font-size: 1.75rem; }
}


/*=============================================================================
  13. Footer
=============================================================================*/
footer {
  background: #f8f9fa;
  color: #555;
  margin-top: auto;
  padding: 1rem 0;
}

/*=============================================================================
  Mobile tweaks (max-width: 576px)
=============================================================================*/
@media (max-width: 576px) {

  /* Hero text scales back */
  .hero-content .display-4 {
    font-size: 5rem;
    line-height: 1.2;
    padding: 0 1rem;
  }
  .hero-content .lead {
    font-size: 1rem;
    padding: 0 1rem;
  }

  /* Tighten the proof-strip into a column */
  .proof-strip {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8rem;
    padding: 0.25rem 0;
  }
  .proof-strip span {
    margin: 0;
  }

  /* How-It-Works: smaller icons & text */
  .how-it-works .bi {
    font-size: 2rem !important;
  }
  .how-it-works h4 {
    font-size: 1.1rem;
    margin-top: 0.5rem;
  }
  .how-it-works p {
    font-size: 0.9rem;
    line-height: 1.4;
    padding: 0 0.5rem;
  }

  /* About image & text tweaks */
  #about .rounded-circle {
    max-width: 150px;
    margin: 0 auto 1rem;
  }
  #about h2 {
    font-size: 1.5rem;
    text-align: center;
  }
  #about p {
    font-size: 0.95rem;
    text-align: center;
    padding: 0 1rem;
  }
  #about .row.align-items-center {
    flex-direction: column;
  }

  /* Sticky button sits above iOS home-indicator */
  .book-now-sticky {
    bottom: calc(env(safe-area-inset-bottom, 1rem) + 0.5rem);
    right: 1rem;
    left: 1rem;
    width: auto;
    max-width: calc(100% - 2rem);
    text-align: center;
    padding: 0.75rem;
  }

  /* Navbar brand smaller */
  .brand-logo {
    height: 36px;
  }
  .brand-text {
    font-size: 1.25rem;
  }

  /* Footer padding less */
  footer {
    padding: 0.75rem 0;
    font-size: 0.85rem;
  }
}

