/*-- --------------------- -->
<---         Reset         -->
<--- --------------------- -*/
@media only screen and (min-width: 0em) {
  :root {
    --primary: #3683b9;
    --primaryLight: #ffba43;
    --secondary: #f77f00;
    --secondaryLight: #ffba43;
    --headerColor: #1a1a1a;
    --bodyTextColor: #4e4b66;
    --bodyTextColorWhite: #fafbfc;
    /* 13px - 16px */
    --topperFontSize: clamp(0.8125rem, 1.6vw, 1rem);
    /* 31px - 49px */
    --headerFontSize: clamp(1.9375rem, 3.9vw, 3.0625rem);
    --bodyFontSize: 1rem;
    /* 60px - 100px top and bottom */
    --sectionPadding: clamp(3.75rem, 7.82vw, 6.25rem) 1rem;
  }
  body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #222;
  }
  *,
  *:before,
  *:after {
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
  }
  section {
  scroll-margin-top: 130px;
  }
  .container {
    width: 92%;
    margin: auto;
    position: relative;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin: 0;
    color: var(--headerColor);
  }
  p,
  li,
  a {
    font-size: 1rem;
    line-height: 1.5em;
    margin: 0;
  }
  p,
  li {
    color: #353535;
  }
  .topper {
    font-size: var(--topperFontSize);
    line-height: 1.2em;
    text-transform: uppercase;
    white-space: nowrap;
    text-align: inherit;
    letter-spacing: .1em;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
    display: block;
  }
  .title {
    font-size: var(--headerFontSize);
    text-transform: capitalize;
    font-weight: 900;
    line-height: 1.2em;
    text-align: inherit;
    max-width: 43.75rem;
    margin: 0 0 1rem 0;
    color: var(--headerColor);
    position: relative;
  }
  .text {
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    text-align: inherit;
    width: 100%;
    max-width: 40.625rem;
    margin: 0;
    color: var(--bodyTextColor);
  }
  .btn {
    text-decoration: none;
    background: var(--secondary);
    color: white;
    margin-top: 1rem;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;   /* Rounded = more premium */
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    line-height: clamp(2.875rem, 8vw, 3.5rem);
  }
  .btn:hover {
    background: #111;
  }
}
/*-- --------------------- -->
<---      Navigation       -->
<--- --------------------- -*/
@media only screen and (min-width: 0em) {
  
  #navigation {
    position: sticky;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    z-index: 1000;
  }

    #navigation .top-bar {
      background: #111;
      padding: 0.4rem;
    }

    #navigation .top-bar .text {
      color: var(--bodyTextColorWhite);
      text-align: center;
      font-size: 0.8rem;
      max-width: unset;
    }
    
    #navigation .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.5rem 1rem;   /* Large initially */
      transition: all 0.3s ease;
      position: relative;
    }
    
    #navigation .logo {
      width: 80px;
      height: auto;
    
      position: relative;
      left: 0;
      top: 0;
      transform: none;
    
      display: flex;
      align-items: center;
      flex-shrink: 0;
    }

    #navigation .logo img {
      width: 100%;
      height: auto;
      object-fit: contain;
    }
    
    .nav {
      position: absolute;
      margin-right: auto;
      z-index: 2;
      top: 100%;
      left: 0;
      width: 100%;
      background: white;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
      padding: 0;

      display: flex;

      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease;
    }
    
    .nav.open {
      max-height: 300px;
      padding: 1.5rem 0;
    }

    .nav a {
      text-decoration: none;
      color: #333;
      font-weight: 500;
      font-size: 0.95rem;
      transition: color 0.2s ease;
    }
    
    .nav a:hover {
      color: var(--primary);
    }
    
    .nav-btn {
      text-decoration: none;
      background: var(--secondary);
      color: white;
      padding: 0.6rem 1.2rem;
      margin-left: auto;
      margin-right: 1.2rem;
      flex-shrink: 0;
      border-radius: 50px;
      font-weight: 600;
      font-size: 0.95rem;
      transition: all 0.3s ease;
    }

    .nav-btn:hover {
      background: var(--primary);
    }

    .hamburger {
      display: block;
      width: 28px;
      height: 22px;
      position: relative;
      background: none;
      border: none;
      cursor: pointer;

      margin-left: auto;
      z-index: 2;
    }

    .hamburger span {
      position: absolute;
      width: 100%;
      height: 3px;
      background: #333;
      left: 0;
      transition: all 0.3s ease;
    }

    .hamburger span:nth-child(1) {
      top: 0;
    }
    
    .hamburger span:nth-child(2) {
      top: 9px;
    }
    
    .hamburger span:nth-child(3) {
      bottom: 0;
    }

    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg);
      top: 9px;
    }
    
    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg);
      bottom: 10px;
    }
/* Shrink on Scroll */
  #navigation.shrink .container {
      padding: 0.75rem 1rem;
  }
    
    #navigation.shrink {
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
}
@media only screen and (min-width: 48rem) {
  .hamburger {
    display: none;
    font-size: 1.8rem;
    background: none;
    border: none;
    cursor: pointer;
  }
  .nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    
    width: auto;
    margin-left: 1.5rem;
    margin-right: 1rem;

    max-height: none;
    overflow: visible;
  }
  .nav-btn {
    padding: 0.7rem 1.4rem;
    font-size: 1rem;
  }
}
/*-- --------------------- -->
<---         Hero          -->
<--- --------------------- -*/
@media only screen and (min-width: 0rem) {
  #hero {
    padding: 7rem 1.5rem 5rem 1.5rem;
    background: #f5f5f5;
  }

    #hero .container {
      display: flex;
      justify-content: center;
    }

    #hero .content {
      max-width: 650px;
      text-align: center;
    }
}

@media only screen and (min-width: 48rem) {

  #hero .container {
    justify-content: flex-start;
  }

  #hero .content {
    text-align: left;
  }

}
/*-- --------------------- -->
<---         Trust         -->
<--- --------------------- -*/
#trust {
  padding: 2rem;
  background: var(--primary);
}
  #trust .text {
    color: var(--bodyTextColorWhite);
    font-weight: 600;
  }

  #trust .container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
  }

  .feature {
    padding: 1.25rem;
    transition: transform 0.25s ease;
  }
  
  .feature:hover {
    transform: translateY(-5px);
  }

  .icon {
    width: 60px;
    height: 60px;
    background: var(--secondary); /* light version of your primary */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
  }
  
  .icon img {
    width: 32px;
    height: 32px;
  }
  @media only screen and (min-width: 48rem) {

    #trust .container {
      grid-template-columns: repeat(4, 1fr);
    }
  
  }
/*-- --------------------- -->
<---       Services        -->
<--- --------------------- -*/

#services {
  padding: 3rem 1rem;
}

#services .container {
  display: flex;
  flex-direction: column;  /* Mobile: stacked */
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

#services .image img {
  width: 100%;
  border-radius: 12px;
  display: block;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

#services .image img:hover {
  transform: scale(1.02);
}

#services .content h2 {
  margin-bottom: 1rem;
  font-size: 1.6rem;
}

#services .content p {
  color: #444;
  line-height: 1.6;
}
.reverse {
  background: #f7f7f7
}

@media (min-width: 768px) {

  .reverse .container {
    flex-direction: row-reverse;
  }

  #services .container {
    flex-direction: row;
    align-items: center;
  }

  .image,
  .content {
    flex: 1;
  }
}
/*-- --------------------- -->
<---     WHY CHOOSE US     -->
<--- --------------------- -*/
@media only screen and (min-width: 0em) {
  #about {
    padding: var(--sectionPadding);
    background: var(--primary);
  }

  #about .container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  #about .content {
    text-align: left;
  }

  #about .topper, #about .title, #about .text {
    color: var(--bodyTextColorWhite);
  }

  #about .text {
    margin-bottom: 1rem;
  }

  #about .image {
    width: 100%;
  }

  #about .image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0.75rem;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }

  .about-list {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
    display: grid;
    gap: 0.75rem;
  }

  .about-list li {
    color: var(--bodyTextColorWhite);
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    position: relative;
    padding-left: 1.5rem;
    text-align: left;
  }

  .about-list li::before {
    content: "✓";
    color: var(--bodyTextColorWhite);
    font-weight: 700;
    position: absolute;
    left: 0;
    top: 0;
  }
}

@media only screen and (min-width: 48rem) {
  #about .container {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
  }

  #about .content,
  #about .image {
    width: 50%;
  }

  #about .content {
    text-align: left;
  }
}
/*-- --------------------- -->
<---    Before & After     -->
<--- --------------------- -*/
@media only screen and (min-width: 0rem) {
  #before-after {
    padding: var(--sectionPadding);
    text-align: center;
  }

  .ba-grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
  }

  .ba-card {
    background: #fff;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  }

  .ba-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .ba-image {
    position: relative;
  }

  .ba-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
  }

  .label {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #333;
    color: white;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
  }

  .label.after {
    background: var(--primary);
  }

  .ba-caption {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #555;
  }

  .ba-cta {
    margin-top: 2.5rem;
  }
}

@media (min-width: 48rem) {
  #before-after {
    text-align: left;
  }
  
  .ba-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ba-image img {
    height: 220px;
  }
}
/*-- --------------------- -->
<---     Service Areas     -->
<--- --------------------- -*/
@media only screen and (min-width: 0rem) {
  #service-areas {
    padding: var(--sectionPadding);
    background: #f7f7f7;
  }

  #service-areas .text {
    margin-bottom: 1rem;
  }

  .areas-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
    text-align: center;
  }

  .area-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  }

  .area-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
  }

  .area-card p {
    font-size: 0.95rem;
    color: #555;
  }

  .areas-cta {
    margin-top: 2.5rem;
  }

  .areas-cta p {
    margin-bottom: 1rem;
  }
}

@media (min-width: 48rem) {
  
  .areas-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
/*-- --------------------- -->
<---        Reviews        -->
<--- --------------------- -*/
@media only screen and (min-width: 0rem) {
  #reviews {
    padding: var(--sectionPadding);
    background: var(--primary);
  }
  #reviews .topper, #reviews .title {
    color: var(--bodyTextColorWhite);
  }
  .reviews-grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .review-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
  }
  
  #reviews .text {
    font-style: italic;
    margin-bottom: 1rem;
  }
  
  .author {
    font-weight: 600;
    color: var(--secondary);
  }
  
  .reviews-link {
    margin-top: 2rem;
  }
  
  .reviews-link a {
    font-weight: 600;
    text-decoration: none;
    color: var(--bodyTextColorWhite);
    font-size: 1rem;
  }
  
  .reviews-link a:hover {
    text-decoration: underline;
  }
  
  .review-card .stars {
    color: var(--secondary);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
  .rating-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: left;
    gap: 0.25rem;
    margin-top: 1rem;
    text-decoration: none;
    transition: transform 0.2s ease;
  }
  .rating-badge:hover {
    transform: translateY(-2px);
  }

  .rating-badge .stars {
    color: var(--secondary);
    font-size: 1.4rem;
    letter-spacing: 2px;
  }

  .rating-text {
    font-weight: 600;
    color: var(--bodyTextColorWhite);
    font-size: 0.95rem;
  }

  .review-count {
    color: var(--bodyTextColorWhite);
    font-weight: 400;
  }
}

@media only screen and (min-width: 48rem) {

  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }

}
/*-- --------------------- -->
<---          FAQ          -->
<--- --------------------- -*/
@media only screen and (min-width: 0rem) {
  #faq {
    padding: var(--sectionPadding);
    padding-bottom: 4rem;
  }

    .faq-list {
      margin-top: 2rem;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .faq-item {
      border-bottom: 1px solid var(--secondary);
    }

    .faq-question {
      width: 100%;
      text-align: left;
      background: none;
      border: none;
      padding: 1.25rem 0;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }

    .faq-answer p {
      padding-bottom: 1rem;
      color: #555;
    }
    
    .faq-cta {
      padding-top: 4rem;
    }

    .faq-cta a {
      font-weight: 600;
      text-decoration: none;
      color: var(--primary);
      font-size: 1rem;
    }
    
    .faq-cta a:hover {
      text-decoration: underline;
    }

}
/*-- --------------------- -->
<---          CTA          -->
<--- --------------------- -*/
@media only screen and (min-width: 0em) {
  #contact-cta {
    padding: var(--sectionPadding);
    background: #f7f7f7;
  }

  #contact-cta .container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  #contact-cta .content {
    text-align: center;
  }

  #contact-cta .text {
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
  }

  .contact-options {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
  }

  .contact-option {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--primary);
  }

  .contact-option:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .contact-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 25%;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
    transition: transform 0.25s ease;
  }

  .contact-icon:hover {
    transform: scale(1.2);
  }

  .contact-icon img {
    width: 1.1rem;
    height: 1.1rem;
  }

  .contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
  }

  .contact-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
  }

  .contact-details a {
    color: var(--bodyTextColor);
    text-decoration: none;
    word-break: break-word;
  }

  .contact-details a:hover {
    text-decoration: underline;
  }

  .contact-form {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    display: grid;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  }

  .contact-form label {
    display: grid;
    gap: 0.4rem;
    text-align: left;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--headerColor);
  }

  .contact-form input,
  .contact-form textarea {
    width: 100%;
    font: inherit;
    padding: 0.85rem 1rem;
    border: 1px solid #d8d8d8;
    border-radius: 0.5rem;
    background: #fff;
    color: var(--headerColor);
  }

  .contact-form input:focus,
  .contact-form textarea:focus {
    outline: 2px solid var(--primary);
    outline-offset: 1px;
    border-color: var(--primary);
  }

  .contact-form textarea {
    resize: vertical;
    min-height: 8rem;
  }

  .contact-form .btn {
    border: none;
    cursor: pointer;
    justify-self: start;
    line-height: normal;
    padding: 0.7rem 1.2rem;
    border-radius: 10px;
  }
  .form-success {
    margin-top: 1rem;
    color: green;
    font-weight: 600;
    text-align: left;
  }
}

@media only screen and (min-width: 48rem) {
  #contact-cta .container {
    flex-direction: row;
    align-items: flex-start;
    gap: 3rem;
  }

  #contact-cta .content,
  .contact-form {
    width: 50%;
  }

  #contact-cta .content {
    text-align: left;
  }

  #contact-cta .text {
    margin-left: 0;
    margin-right: 0;
  }
}


/* Footer */
@media only screen and (min-width: 0em) {
  #footer {
    background: var(--primary);
    color: var(--bodyTextColorWhite);
    padding-top: 3rem;
  }

  #footer .container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 0 1rem;
  }

  #footer img {
    width: 140px;
    height: auto;
  }

  .footer-text {
    margin-top: 1rem;
    color: var(--bodyTextColorWhite);
    font-size: 0.9rem;
  }

  .footer-links,
  .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .footer-links h3,
  .footer-contact h3 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: var(--bodyTextColorWhite);
    text-decoration: underline;
  }

  .footer-links a,
  .footer-contact a {
    color: var(--bodyTextColorWhite);
    text-decoration: none;
    font-size: 0.9rem;
  }

  .footer-links a:hover,
  .footer-contact a:hover {
    text-decoration: underline;
  }

  .footer-contact p {
    font-size: 0.9rem;
    color: var(--bodyTextColorWhite);
  }

  /* Bottom bar */

  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 2rem;
    padding: 1rem;
    text-align: center;
    font-size: 0.85rem;
  }

  .footer-bottom .text {
    color: var(--bodyTextColorWhite);
    text-align: center;
  }

  .footer-bottom a {
    color: var(--bodyTextColorWhite);
    margin-left: 1rem;
    text-decoration: none;
  }

  .footer-bottom a:hover {
    text-decoration: underline;
  }
}

@media only screen and (min-width: 48rem) {
  #footer .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .footer-brand {
    max-width: 300px;
  }
}
