:root {
     --purple: #68438a;
     --orange: #fa974b;
     --green: #23a73d;
     --blue: #48b3f7;
     --white: #ffffff;
     --dark: #111111;
}

/* Box Model Hack */
* {
     -moz-box-sizing: border-box;
}

/* Clear fix hack */
.clearfix:after {
     content: ".";
     display: block;
     clear: both;
     visibility: hidden;
     line-height: 0;
     height: 0;
}

.clear {
     clear: both;
}

/******************************************
/* BASE STYLES
/*******************************************/
video {
     width: 100%;
     height: auto;
     max-width: 100%;
}

body {
     margin: 0;
     font-family: 'Poppins', 'DM Sans', sans-serif;
     color: var(--dark);
     background: var(--white);
}

h2 {
     font-size: 2.4rem;
     text-align: center;
     margin: 80px 0 40px;
     color: var(--purple);
     position: relative;
}

h2::after {
     content: "";
     display: block;
     width: 80px;
     height: 4px;
     background: var(--orange);
     margin: 12px auto 0;
     border-radius: 4px;
}


/******************************************
/* LAYOUT
/*******************************************/
/* Lock background scroll */
body.menu-open {
     overflow: hidden;
}

/* Navbar */
.navbar {
     position: sticky;
     top: 0;
     z-index: 1000;
     background: var(--white);
}

.navContainer {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 15px 30px;
}

/* Logo */
.logoImg {
     height: 75px;
}

/* Desktop menu */
.navMenu {
     display: flex;
     align-items: center;
     gap: 30px;
     list-style: none;
}

/* Desktop links visible by default */
.navMenu li {
     opacity: 1;
     transform: none;
}

.navMenu a {
     text-decoration: none;
     color: var(--purple);
     font-weight: 600;
}

.navMenu a:hover,
.navMenu a.active {
     color: var(--orange);
}

/* CTA */
.ctaBtn {
     background: var(--green);
     color: var(--white);
     padding: 10px 22px;
     border-radius: 30px;
     font-weight: 700;
}

/* Social icons */
.navSocials {
     display: flex;
     gap: 15px;
}

.navSocials i {
     font-size: 1.2rem;
     color: var(--purple);
}

/* Hamburger hidden on desktop */
.hamburger {
     display: none;
     background: none;
     border: none;
     flex-direction: column;
     gap: 6px;
     cursor: pointer;
}

.hamburger span {
     width: 26px;
     height: 3px;
     background: var(--purple);
     border-radius: 3px;
     transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active span:nth-child(1) {
     transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
     opacity: 0;
}

.hamburger.active span:nth-child(3) {
     transform: rotate(-45deg) translate(6px, -6px);
}

/* Media query for nav-bar */
@media (max-width: 768px) {

     .navContainer {
          display: flex;
          justify-content: center;
          align-items: center;
          position: relative;
     }

     .hamburger {
          display: flex;
          /* ← THIS was missing */
          position: absolute;
          right: 20px;
          top: 50%;
          transform: translateY(-50%);
          z-index: 1100;
     }

     .hamburger.active span:nth-child(1) {
          transform: rotate(45deg) translate(6px, 6px);
     }

     .hamburger.active span:nth-child(2) {
          opacity: 0;
     }

     .hamburger.active span:nth-child(3) {
          transform: rotate(-45deg) translate(6px, -6px);
     }

     .logoImg {
          height: 60px;
     }

     .navMenu {
          position: fixed;
          inset: 0;
          background: rgba(255, 255, 255, 0.97);

          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center;
          gap: 36px;

          transform: translateY(-100%);
          transition: transform 0.45s ease;


          margin: 0;
          padding: 0;
     }

     .navMenu.active {
          transform: translateY(0);
     }

     /* Animate ONLY on mobile */
     .navMenu li {
          opacity: 0;
          transform: translateY(20px);
          transition: 0.4s ease;
     }

     .navMenu.active li {
          opacity: 1;
          transform: translateY(0);
     }

     /* Stagger */
     .navMenu.active li:nth-child(1) {
          transition-delay: 0.1s;
     }

     .navMenu.active li:nth-child(2) {
          transition-delay: 0.2s;
     }

     .navMenu.active li:nth-child(3) {
          transition-delay: 0.3s;
     }

     .navMenu.active li:nth-child(4) {
          transition-delay: 0.4s;
     }

     .navMenu.active li:nth-child(5) {
          transition-delay: 0.5s;
     }

     .navMenu a {
          font-size: 2rem;
          font-weight: 700;
          text-align: center;
     }

     .navCTA {
          margin-top: 40px;
     }

     .navSocials {
          margin-top: 30px;
     }

}

/******************************* About Us **************************/
.aboutUs {
     position: relative;
     height: 70vh;
     overflow: hidden;
     display: flex;
     align-items: center;
     justify-content: center;
     text-align: center;
     color: var(--white);
}

.aboutVideo {
     position: absolute;
     inset: 0;
     width: 100%;
     height: 100%;
     object-fit: cover;
     z-index: -2;
}

.aboutUs::before {
     content: "";
     position: absolute;
     inset: 0;
     background: rgba(0, 0, 0, 0.45);
     z-index: -1;
}

.aboutText {
     position: relative;
     z-index: 2;
     height: 100%;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     text-align: center;
     color: var(--white);
     padding: 20px;
}

.aboutText h3 {
     font-size: 2.5rem;
     color: var(--white);
     margin-bottom: 10px;
}

.aboutText h4 {
     margin-bottom: 25px;
     font-size: 1.4rem;
     color: var(--white);
     opacity: 0.9;
     font-weight: 400;

}

/* call button */
.ctaBtn {
     background: var(--green);
     color: var(--white);
     padding: 16px 36px;
     border-radius: 40px;
     font-weight: 700;
     text-decoration: none;
     display: inline-block;
     transition: 0.3s ease;
}

.ctaBtn:hover {
     transform: translateY(-2px);
     opacity: 0.9;
}

@media (max-width: 768px) {
     .aboutUs {
          height: 60vh;
          padding: 0 20px;
     }

     .aboutText h3 {
          font-size: 1.8rem;
     }

     .aboutText h4 {
          font-size: 1rem;
     }
}

/* ***************************** midpage ******** */
.midPageNumber {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 80px 8%;
     background: #f5f5f5;
     /* soft light background */
}

.midLeft h2 {
     font-size: 3.5rem;
     font-weight: 800;
     color: var(--green);
     line-height: 1.1;
}

.midImage img {
     width: 350px;
     height: auto;
}

.midRight {
     display: flex;
     flex-direction: column;
     align-items: flex-start;
     gap: 15px;
}

.midRight i {
     font-size: 2rem;
     color: #555;

}

.midNumber {
     font-size: 2.8rem;
     font-weight: 700;
     color: var(--green);
     text-decoration: none;
}



.midNumber:hover {
     transform: scale(1.08);
     letter-spacing: 1px;
}

.callNow {
     font-size: 1.1rem;
     color: #666;
}


@media (max-width: 900px) {

     .midPageNumber {
          flex-direction: column;
          text-align: center;
          gap: 40px;
     }

     .midRight {
          align-items: center;
     }

     .midLeft h2 {
          font-size: 2.2rem;
     }

     .midNumber {
          font-size: 2rem;
     }

     .midImage img {
          width: 250px;
     }
}

/* ***************************** why us ******** */
.whyUsHeading {
     color: var(--purple);
}

.whyUsImgs {
     display: flex;
     justify-content: space-between;
     align-items: center;
     gap: 30px;
     padding: 60px 40px;
     text-align: center;
}

.whyUsImgs img {
     background: var(--white);
     padding: 20px;
     border-radius: 16px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
     width: 400px;
     height: 300px;
}

/* Media query for why us */
@media (max-width: 768px) {
     h2 {
          font-size: 2rem;
     }

     .aboutText h3 {
          font-size: 2.2rem;
     }

     .whyUsImgs {
          display: flex;
          flex-wrap: wrap;
          justify-content: center;
     }
}

/****************************** Our Services **************************/
.ourServices {
     background: linear-gradient(135deg, var(--blue), var(--purple));
     padding: 80px 40px;
     color: var(--white);
}

.ourServices ul {
     list-style: none;
     padding: 0;
     max-width: 800px;
     margin: auto;
}

.ourServices li {
     font-size: 1.3rem;
     padding: 12px 0;
     position: relative;
     padding-left: 30px;
}

.ourServices li::before {
     content: "✔";
     position: absolute;
     left: 0;
     color: var(--green);
     font-weight: bold;
}




.ourServices li:hover {
     background: rgba(0, 0, 0, 0.1);
}


/* Media query for our services */
@media (max-width: 768px) {
     .ourServices {
          justify-content: center;
          padding: 60px 20px;
     }
}

@media (max-width: 600px) {
     .gallery {
          gap: 15px;
          padding: 20px;
     }

     .galleryBefore,
     .galleryAfter {
          gap: 12px;
     }
}



/******************************* Gallery **************************/
.gallery {
     background: var(--white);
     padding: 60px 40px;
     display: grid;
     grid-template-columns: 1fr 1fr;
     /* before | after */
     gap: 30px;

}

.galleryBefore,
.galleryAfter {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 20px;
}

.gallery img,
.gallery video {
     width: 100%;
     aspect-ratio: 4 / 3;
     /* SAME height everywhere */
     object-fit: cover;
     border-radius: 12px;
}

.galleryBefore h3,
.galleryAfter h3 {
     grid-column: 1 / -1;
     text-align: center;
     font-size: 1.6rem;
}

/******************************* Reviews **************************/
.reviews {
     background: #f0f6ff;
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 30px;
     padding: 80px 40px;

}

.reviews img {
     width: 100%;
     height: auto;
     object-fit: contain;
     border-radius: 12px;
}

.reviews img:hover {
     transform: translateY(-5px);
     transition: transform 0.3s ease;
}


/* Media Query for reviews */
@media (max-width: 768px) {
     .reviews {
          grid-template-columns: 1fr;
          gap: 20px;
     }
}



/******************************* Contact/Footer US**************************/
.contactUs {
     position: relative;
     color: var(--white);
     background-color: var(--blue);
     padding: 100px 10% 60px;
     font-family: 'Poppins', sans-serif;
}

.contactUs::before {
     content: "";
     position: absolute;
     top: 0;
     left: 10%;
     width: 80%;
     height: 1px;
     background: rgba(255, 255, 255, 0.2);
}

.footerTop {
     display: flex;
     justify-content: center;
     align-items: flex-start;
     gap: 200px;
     margin-bottom: 110px;
}

.footerLogo {
     /* font-size: 1.6rem;
          font-weight: 600;
          letter-spacing: 3px;
          margin-bottom: 80px;
          text-align: center; */

     font-size: 1.6rem;
     font-weight: 600;
     letter-spacing: 4px;
}

.footerLogo span {
     display: inline-block;
     animation: wave 2.5s ease-in-out infinite;
}

/* Fore hovering alone */
/* .footerLogo span {
     display: inline-block;
     transition: transform 0.3s ease;
}

.footerLogo:hover span {
     animation: wave 1.2s ease-in-out;
} */

/* Stagger delay */
.footerLogo span:nth-child(1) {
     animation-delay: 0s;
}

.footerLogo span:nth-child(2) {
     animation-delay: 0.1s;
}

.footerLogo span:nth-child(3) {
     animation-delay: 0.2s;
}

.footerLogo span:nth-child(4) {
     animation-delay: 0.3s;
}

.footerLogo span:nth-child(5) {
     animation-delay: 0.4s;
}

.footerLogo span:nth-child(7) {
     animation-delay: 0.5s;
}

.footerLogo span:nth-child(8) {
     animation-delay: 0.6s;
}

.footerLogo span:nth-child(9) {
     animation-delay: 0.7s;
}

.footerLogo span:nth-child(10) {
     animation-delay: 0.8s;
}

.footerLogo span:nth-child(11) {
     animation-delay: 0.9s;
}

.footerLogo span:nth-child(12) {
     animation-delay: 1s;
}

.footerLogo span:nth-child(13) {
     animation-delay: 1.1s;
}

.footerLogo span:nth-child(14) {
     animation-delay: 1.2s;
}

@keyframes wave {

     0%,
     100% {
          transform: translateY(0);
     }

     50% {
          transform: translateY(-6px);
     }
}

.footerCol {
     width: 300px;
}

.footerCol h3 {
     font-size: 2rem;
     margin-bottom: 30px;
}

.footerCol h4 {
     font-size: 0.95rem;
     letter-spacing: 3px;
     margin-bottom: 30px;
}

.footerCol p {
     margin-bottom: 10px;
     font-weight: 300;
}

.footerCol ul {
     list-style: none;
     padding: 0;
}

.footerCol ul li {
     margin-bottom: 18px;
}

.footerCol a {
     color: var(--white);
     text-decoration: underline;
     text-underline-offset: 4px;
     transition: opacity 0.3s ease;
}

.footerCol a:hover {
     opacity: 0.7;
}

.footerSocials {
     text-align: center;
     margin-bottom: 60px;
}

.footerSocials a {
     /* font-size: 1.8rem;
     color: var(--white);
     margin: 0 20px;
     transition: transform 0.3s ease, opacity 0.3s ease;
      */

     font-size: 1.6rem;
     color: rgba(255, 255, 255, 0.7);
     margin: 0 25px;
     transition: all 0.3s ease;
}

.footerSocials a:hover {
     /* transform: scale(1.2);
     opacity: 0.8; */

     color: var(--white);
     transform: translateY(-4px) scale(1.15);
}

.footerBottom {
     text-align: center;
     margin-top: 60px;
}

.footerBottom h2 {
     font-size: clamp(1.5rem, 5vw, 4rem);
     font-weight: 800;
     letter-spacing: 4px;
     opacity: 0.85;
     transition: letter-spacing 0.4s ease;
}

.footerBottom h2:hover {
     letter-spacing: 8px;
}

.hoursRow {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 12px;
     font-weight: 300;
     position: relative;
}

.hoursRow::after {
     content: "";
     position: absolute;
     left: 0;
     right: 0;
     bottom: 6px;
     border-bottom: 1px dotted rgba(255, 255, 255, 0.5);
     z-index: 0;
}

.hoursRow span {
     background: var(--blue);
     position: relative;
     z-index: 1;
     padding: 0 8px;
}

.footerWave {
     line-height: 0;
}

.footerWave svg {
     display: block;
     width: 100%;
     height: 90px;
}

.footerWave path {
     fill: var(--blue);
     /* matches footer background */
}

.footerMicro {
     text-align: center;
     margin-top: 20px;
}

.footerMicro p {
     font-size: 0.8rem;
     opacity: 0.6;
     letter-spacing: 1px;
}

/* Media Query for Footer */
@media (max-width: 768px) {

     .footerTop {
          flex-direction: column;
          align-items: center;
          gap: 50px;
          text-align: center;
     }

     .footerCol {
          text-align: center;
     }

     .footerBottom h2 {
          font-size: 1.8rem;

     }

     .footerLogo {

          text-align: center;

     }
}






/******************************************
/* ADDITIONAL STYLES
/*******************************************/