/* ===== NAVBAR SECTION ===== */

.navbar {
 
  background: linear-gradient(to bottom, #c89e15, #d9b84a);



  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  padding: 15px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5em;
  font-weight: bold;
  text-decoration: none;
  color: #1A1A1A;
  
}

.menu-toggle {
  all: unset; /* Reset all inherited styles safely */
  display: inline-block;
  cursor: pointer;
  font-size: 1.8em;
  color: #333;
  padding: 8px 12px;;
  border-radius: 6px;
  transition: background 0.2s ease;
  margin-left: auto;
}

.menu-toggle:hover {
  background: #1A1A1A;
}


.nav-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  display: flex;
  flex-direction: column;
}


.nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links li {
  margin: 10px 0;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}


.nav-menu.active .nav-links li {
  opacity: 1;
  transform: translateY(0);
}

.nav-menu.active .nav-links li:nth-child(1) { transition-delay: 0.05s; }
.nav-menu.active .nav-links li:nth-child(2) { transition-delay: 0.1s; }
.nav-menu.active .nav-links li:nth-child(3) { transition-delay: 0.15s; }
.nav-menu.active .nav-links li:nth-child(4) { transition-delay: 0.2s; }
.nav-menu.active .nav-links li:nth-child(5) { transition-delay: 0.25s; }



.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.2s;
  padding: 5px;
}

.nav-links a:hover {
  color: #c89e15;
  background-color: #1A1A1A;
  border-radius: 4px;
}

.nav-menu.active {
  max-height: 300px;
}





body.home.scrolled .navbar {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}


body.home .navbar {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-20px);
  

  height: 0;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
  
  transition: 
    opacity 0.4s ease, 
    transform 0.4s ease, 
    height 0.4s ease, 
    padding 0.4s ease;
}


body.home.scrolled .navbar {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  

  height: auto;
  padding-top: 15px;
  padding-bottom: 15px;
}





/* ===== HERO SECTION ===== */
#hero {
  position: relative;
  height: 100vh;
  background: url('images/mobile-hero-for-retina-display.jpg?v=2') no-repeat center center;
  background-size: cover;
  
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 1;
  overflow: hidden;
}



#hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}



#hero h1,
#hero h2,
#hero button {
  position: relative;
  z-index: 2;
}

#hero .hero-title {
  font-size: 4em;
  color: #c89e15;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
  text-decoration: none;
}

#hero-subtitle {
  font-size: 2.7em;
  color: #c89e15;
  margin-bottom: 20px;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #D4AF37;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

/* ===== SERVICES SECTION ===== */
#services {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.service {
  background-color: #fff;
  border: 1px solid #c89e15;
  padding: 20px;
  margin: 10px;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}



.icons {
  width: 48px;
  height: 48px;
  stroke: #c89e15;
  stroke-width: 2;
  padding: 16px;
  border: 2px solid #c89e15;
  border-radius: 50%;
  transition: transform 0.3s ease;
  margin-bottom: 15px;
}

.icons:hover {
  transform: scale(1.15);
  stroke: #b9922f;
}

h2 {
  font-size: 1.7em;
  color: #c89e15;
}

h3 {
  color: #1A1A1A;
  font-size: 1.5em;
}

#services h1 {
  color: #1A1A1A;
  font-size: 2.2em;
  margin-bottom: 20px;
}


.quote {
  margin-bottom: 20px;
  margin-top: 35px;
  height: 50px;
}

.cta {
font-size: 1.7rem;
color: #c89e15
}

/* ===== ABOUT SECTION ===== */

.about {
  padding: 80px 20px;
  background-color: #ffffff;
  color: #333;
  text-align: center;
  
  margin: 0 auto;
}

.about h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #c89e15;
  position: relative;
  display: inline-block;
}

.about h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #c89e15;
  margin: 8px auto 0;
}

.about p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #444;
  max-width: 750px;
  margin: 0 auto;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {

  padding: 100px 20px;
  position: relative;
  text-align: center;

  box-shadow: inset 0 8px 12px rgba(0, 0, 0, 0.03);
}

.testimonial-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid #D4AF37;
}

.testimonials h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #c89e15;
}

.testimonial-intro {
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 30px;
}

.testimonial-offer {
  background: #fff;
  border-left: 5px solid #D4AF37;
  padding: 20px;
  font-size: 1.1rem;
  border-radius: 8px;
  color: #1A1A1A;
}

.testimonial-offer span {
  color: #D4AF37;
  font-weight: bold;
}

.testimonial-offer a {
  color: #D4AF37;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.testimonial-offer a:hover {
  color: #1A1A1A;
}


/* ===== CALL TO ACTION SECTION ===== */
#call-to-action h2{
  font-size: 2.2em;
  margin-bottom: 50px;
}





/* ===== FOOTER SECTION ===== */
.footer {
  color: #c89e15;
  padding: 20px;
  text-align: center;
}

.footer h1 {
  font-size: 2.2em;
  margin-bottom: 10px;
}

.footer-content {
  color: #c89e15;
  background-color: #fff;
  border: 1px solid #c89e15;
  padding: 20px;
  margin: 10px;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.footer h2 {
  color: #1A1A1A;
}

.email {

  color: #c89e15;
  text-decoration: none;
  transition: color 0.3s ease;
}

#email:hover {
  color: #1A1A1A;
}

#trademark {
  color: #1A1A1A
}
/* ===== SERVICES SECTION ===== */
#services-section {
  background: linear-gradient(to bottom, #fff, #f9f9f9);
}

/* Pricing Section */
#pricing {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
}

.section-title {
  font-size: 2.5em;
  color: #c89e15;
  margin-bottom: 10px;
}

.section-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 5px;
  background-color: #c89e15;
  margin: 8px auto 0;
}

.section-subtitle {
  font-size: 1.2em;
  color: #666;
  margin-bottom: 40px;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-bottom: 40px;
  flex-direction: row;
}




.pricing-card {
  background: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 30px;
  flex: 1 1 300px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  position: relative;
}


.pricing-card h3 {
  font-size: 1.6em;
  color: #000;
  margin-bottom: 10px;
}

.price {
  font-size: 2.2em;
  color: #D4AF37;
  margin: 10px 0 20px;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.pricing-card ul li {
  margin: 8px 0;
  color: #444;
}

.tag {
  font-size: 0.9em;
  color: #555;
  display: inline-block;
  background: #eee;
  padding: 5px 10px;
  border-radius: 6px;
}

.tag.gold {
  background: #D4AF37;
  color: #fff;
}

.featured {
  border: 2px solid #D4AF37;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.badge {
  font-size: 0.75em;
  background: #D4AF37;
  color: #fff;
  padding: 3px 7px;
  border-radius: 5px;
  margin-left: 5px;
  vertical-align: middle;
}

.maintenance {
  margin-bottom: 40px;
}

.maintenance h4 {
  font-size: 1.3em;
  margin-bottom: 10px;
  color: #333;
}


/* About Section */



#about {
  padding: 80px 20px;
  max-width: 900px;
  margin: auto;
  background-color: #ffffff;
}

.about-title {
  font-size: 3.5em;
  color: #c89e15;
  font-family: 'Playfair Display', serif;
  margin-bottom: 0.4em;
  text-align: center;
}

.about-subtitle {
  font-size: 1.6em;
  color: #c89e15;
  text-align: center;
  margin-bottom: 2.5em;
  font-weight: 400;
}

.about-text,
.about-list {
  font-size: 1.15em;
  color: #222;
  margin-bottom: 2em;
}

.about-list {
  padding-left: 1.2em;
}

.about-list li {
  margin-bottom: 0.8em;
  list-style-type: none;
}

.about-cta {
  text-align: center;
  margin-top: 3em;
}

.cta-button {
  background-color: #c89e15;
  color: #fff;
  font-weight: bold;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1em;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #b48e2e;
}

/* FAQ Section */

.faq-section {
    max-width: 900px;
    margin: auto;
    padding: 20px;
    text-align: left;
    background-color: #ffffff;
  }
  
  .faq-section h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #1A1A1A;
    text-align: center;
  }
  
  #faq-items {
    background-color: #fff;
    border: 1px solid #D4AF37;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }
  
  .faq-item {
    border-bottom: 1px solid #ddd;
    padding: 1.2rem 0;
  }
  
  .faq-item:last-child {
    border-bottom: none;
  }
  
  .faq-question {
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1em;
    position: relative;
    padding-right: 20px;
    transition: color 0.3s ease;
  }
  
  .faq-question:hover {
    color: #D4AF37;
  }
  
  .faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-weight: normal;
    font-size: 1.2em;
    transition: transform 0.3s ease;
  }
  
  .faq-item.active .faq-question::after {
    content: '−';
    transform: rotate(180deg);
  }
  
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    font-size: 1em;
    padding-top: 8px;
    color: #444;
    line-height: 1.5;
  }
  .faq-item.active .faq-answer {
    max-height: 500px; 
  }

  .faq-title h2 {
        font-size: 3em;
        color: #D4AF37;
        margin: 0;
      }

/* Contact Section */

.contact-section {
      max-width: 700px;
      margin: 0 auto;
      padding: 60px 20px;
      text-align: center;
    }

    .contact-section h1 {
      font-size: 2.8em;
      margin-bottom: 10px;
      color: #D4AF37;
    }

    .contact-section p {
      font-size: 1.1em;
      margin-bottom: 40px;
    }

    form {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    input,
    textarea {
      padding: 15px;
      font-size: 1em;
      border: 1px solid #ccc;
      border-radius: 8px;
      background-color: #f9f9f9;
      transition: border 0.2s;
    }

    input:focus,
    textarea:focus {
      border: 1px solid #D4AF37;
      outline: none;
      background-color: #fff;
    }

   

    .direct-contact {
      margin-top: 30px;
      font-size: 1em;
    }

    .direct-contact a {
      color: #D4AF37;
      text-decoration: none;
    }

    .direct-contact a:hover {
      text-decoration: underline;
    }


/* ===== GLOBAL STYLES ===== */
body {
  background-color: #f9f9f9;
  color: #1A1A1A;
  margin: 0;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
}

html {
  scroll-behavior: smooth;
}

section {
  padding: 5%;
  
}

section:nth-child(even) {
  background-color: #f2f2f2;
}

button,
.cta-button {
  background-color: #c89e15;
  color: #1A1A1A;
  border: none;
  padding: 10px 20px;
  font-size: 1.2em;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin-top: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  font-weight: bold;
  width: 50%;
  max-width: 300px;
  text-align: center;
  display: inline-block;
  text-decoration: none;
  margin: auto;
}
 
button:hover,
.cta-button:hover {
  background-color: #1A1A1A;
  color: #c89e15;
}

h1 {
  color: #c89e15;
  font-size: 3em;
  margin-top: 50px;
  
}

h1::after {
  content: "";
  display: block;
  width: 80px;
  height: 7px;
  background-color: #c89e15;
  margin: 8px auto 0;
  
}

a {
  color: #1A1A1A;
  text-decoration: none;
  transition: color 0.3s ease;
}

/* ===== MEDIA QUERIES ===== */
@media (min-width: 600px) {
  section {
    padding: 3%;
  }

  .service {
    margin: 20px auto;
    max-width: 80%;
  }

  button {
    width: 40%;
  }
}

@media (min-width: 768px) {
  #hero {
    background: url('images/hero-2.png') no-repeat center center;
    background-size: cover;
  }

  .menu-toggle {
    display: none; /* hide hamburger on bigger screens */
  }

  .nav-menu {
    display: flex !important; /* show nav links */
    max-height: none; /* remove height restriction */
    flex-direction: row;
    margin-top: 0;
  }

  .nav-links {
    display: flex;
    flex-direction: row;
    gap: 30px; 
  }

  .nav-links li {
    margin: 0;
    opacity: 1 !important; 
    transform: none !important;
    transition: none !important;
  }

  .nav-links a {
  font-weight: bold;     
  text-decoration: none; 
}

.nav-links a:hover {
  text-decoration: underline;  
  background-color: transparent;
  color: #1A1A1A; 
}
}

@media (min-width: 900px) {
  #services {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    gap: 40px;
    text-align: center;
    padding: 20px;
  }

  .service {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 300px;
    height: auto;
    padding: 20px;
    text-align: center;
    margin: 20px;
    background-color: #fff;
    border: 1px solid #c89e15;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }

  button {
    width: 275px;
  }

  h1 {
    font-size: 3.5em;
  }

  h2 {
    font-size: 2.2em;
  }

  .faq-section {
        max-width: 1200px;
        margin: 40px auto;
        padding: 20px;
        text-align: left;
        display: flex;
        gap: 40px; /* spacing between title and items */
      }
    
      .faq-title {
        flex: 1; /* takes about 1 part */
        display: flex;
        align-items: top; /* vertically center the title */
        justify-content: flex-start; /* align left */
        padding-left: 20px;
      }
    
      
    
      #faq-items {
        flex: 3; /* takes about 3 parts */
        background-color: #fff;
        border: none;
        padding: 20px;
        margin: 0; /* no margin inside flex */
        border-radius: 10px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
        display: flex;
        flex-direction: column;
      }
    
      .faq-item {
        padding: 1.5rem 0;
      }
    
      .faq-question {
        font-size: 1.3em;
        padding-right: 30px;
        cursor: pointer;
        position: relative;
        font-weight: bold;
      }
    
      .faq-question::after {
        content: '+';
        position: absolute;
        right: 0;
        font-size: 1.4em;
        font-weight: normal;
        transition: transform 0.3s ease;
      }
    
      .faq-item.active .faq-question::after {
        content: '−';
      }
    
      .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        font-size: 1em;
        padding-top: 8px;
        color: #444;
        line-height: 1.5;
      }
      .faq-item.active .faq-answer {
        max-height: 500px; /* Arbitrary large value that fits most content */
      }
      .faq-section {
        border-style: none;
      }
}



