*::before,
*::after {
  box-sizing: border-box;
}

/* ============================================ */
/* HAMBURGER MENU - Hidden on desktop           */
/* ============================================ */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1001;
  padding: 5px;
}
.hamburger .bar {
  width: 28px;
  height: 3px;
  background-color: #FFF;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}
.hamburger.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================ */
/* TABLET & SMALL SCREENS - 960px              */
/* ============================================ */
@media only screen and (max-width: 960px) {
  header {
    flex-direction: column;
    height: auto;
    padding: 20px;
  }
  nav {
    width: 100%;
    padding: 10px 20px;
    position: relative;
    flex-direction: column;
  }
  #logo {
    margin-left: 0;
    margin-bottom: 10px;
  }
  #logo img {
    height: 40px;
  }
  nav ul {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  /* HOMEPAGE */
  .main-content h1 {
    font-size: 55px;
  }
  #about-intro {
    padding: 60px 80px;
    height: auto;
  }
  .about-intro-text blockquote {
    font-size: 24px;
    max-width: 100%;
  }
  .hook {
    margin-top: 100px;
  }
  .hook h1 {
    font-size: 55px;
  }
  .sustainability {
    font-size: 24px;
    padding: 40px 60px;
    max-width: 80%;
  }

  /* ABOUT */
  .who-we-are, .steps-taken {
    flex-direction: column;
    gap: 40px;
    padding: 30px;
  }
  .text h2 {
    padding: 20px 40px 15px;
    font-size: 25px;
  }
  .text h3 {
    padding: 2px 40px 15px;
    font-size: 40px;
  }
  .text p {
    padding: 2px 40px 15px;
    font-size: 18px;
  }
  .image img, .steps-taken img {
    width: 100%;
    height: auto;
  }
  .vision-mission-values {
    padding: 40px;
  }
  .our-process h2 {
    padding: 30px 40px 10px;
  }
  .our-process p {
    padding: 2px 40px 25px;
  }
  .our-process ul {
    padding-left: 70px;
  }
  .clients {
    padding: 60px 40px;
  }
  .clients h1 {
    font-size: 50px;
  }

  /* SERVICES */
  #services {
    height: auto;
    padding: 40px 20px;
  }
  #services h1 {
    font-size: 50px;
  }
  .services-list {
    padding: 40px 20px;
  }

  /* GALLERY */
  .gallery-header h1 {
    font-size: 55px;
  }
  .image-gallery {
    padding: 0 40px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  /* TESTIMONIALS */
  .testimonials h2 {
    font-size: 60px;
    margin: 40px;
  }
  .testimonials-grid {
    max-width: 90%;
  }
  .testimonial-card p {
    font-size: 20px;
  }

  /* CONTACT */
  .contact-section {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 60px 40px;
  }
  .contact-info, .contact-form {
    max-width: 600px;
    width: 100%;
  }
  .contact-info h2 {
    font-size: 55px;
  }

  /* FOOTER */
  .footer-container {
    max-width: 90%;
    padding: 60px 30px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-links {
    margin-bottom: 30px;
  }
  .footer-loc br {
    display: none;
  }
  .social-icons {
    justify-content: center;
  }
  #subfooter {
    height: auto;
    padding: 20px;
    text-align: center;
    font-size: 14px;
  }
}

/* ============================================ */
/* MOBILE - 768px                              */
/* ============================================ */
@media only screen and (max-width: 768px) {
  /* Show hamburger, hide nav links */
  .hamburger {
    display: flex;
  }
  header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    height: auto;
    position: sticky;
    top: 0;
  }
  #logo {
    margin-left: 0;
    margin-bottom: 0;
  }
  #logo img {
    height: 25px;
  }
  nav {
    padding: 0;
    width: auto;
    position: static;
  }
  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #000;
    padding: 20px 0;
    gap: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  }
  nav ul.active {
    display: flex;
  }
  nav ul li {
    text-align: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  nav ul li:last-child {
    border-bottom: none;
  }
  nav ul li a {
    font-size: 16px;
    display: block;
  }

  /* HOMEPAGE */
  #main {
    height: 70vh;
  }
  .main-content h1 {
    font-size: 40px;
    line-height: 1.2;
  }
  .main-content p {
    font-size: 15px;
    margin: 0 20px 25px;
  }
  .cta-btn, .btn, .inquire-btn {
    padding: 10px 25px;
    font-size: 14px;
  }
  #about-intro {
    padding: 40px 30px;
    height: auto;
  }
  .about-intro-text blockquote {
    font-size: 20px;
    line-height: 1.4;
    margin: 20px 0 0 0;
    padding-bottom: 20px;
    max-width: 100%;
  }
  .about-intro-text blockquote br {
    display: none;
  }
  .btn {
    margin: 0 0 20px;
  }
  .image-gallery-featured {
    flex-direction: column;
    gap: 0;
  }
  .image-gallery-featured img {
    width: 100%;
    height: auto;
  }
  .hook {
    margin: 60px 20px 20px;
  }
  .hook h1 {
    font-size: 38px;
  }
  .subtitle {
    font-size: 15px;
    max-width: 90%;
    margin-bottom: 20px;
  }
  .inquire-btn {
    margin-bottom: 40px;
  }
  .sustainability {
    font-size: 18px;
    padding: 30px 25px;
    max-width: 90%;
    border-radius: 20px;
    margin-bottom: 30px;
    line-height: 1.5;
  }
  .sustainability br {
    display: none;
  }

  /* ABOUT */
  #about-us {
    height: 20vh;
  }
  #about-us h1 {
    font-size: 40px;
  }
  .who-we-are, .steps-taken {
    flex-direction: column;
    gap: 20px;
    padding: 30px 20px;
  }
  .text h2 {
    padding: 15px 20px 10px;
    font-size: 22px;
  }
  .text h3 {
    padding: 2px 20px 10px;
    font-size: 32px;
  }
  .text p {
    padding: 2px 20px 10px;
    font-size: 16px;
  }
  .image img, .steps-taken img {
    width: 100%;
    height: auto;
  }
  .vision-mission-values {
    padding: 30px 20px;
    grid-template-columns: 1fr;
  }
  .vision-mission {
    max-width: 100%;
  }
  .vision-mission-values h2 {
    padding: 15px 20px;
    font-size: 24px;
  }
  .vision-mission p {
    padding-left: 20px;
    font-size: 15px;
  }
  .vertical-line {
    display: none;
  }
  .values {
    max-width: 100%;
  }
  .values h2 {
    padding: 15px 20px;
  }
  .values li {
    padding-left: 20px;
    font-size: 15px;
  }
  .our-process h2 {
    padding: 20px 20px 10px;
    font-size: 24px;
  }
  .our-process p {
    padding: 2px 20px 15px;
    font-size: 16px;
  }
  .our-process ul {
    padding-left: 50px;
    max-width: 95%;
  }
  .our-process li {
    font-size: 15px;
  }
  .clients {
    padding: 40px 20px;
  }
  .clients h1 {
    font-size: 36px;
    margin-bottom: 25px;
  }
  .client-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-items: center;
    align-items: center;
  }
  .client-logos img {
    max-width: 80px;
    height: auto;
  }

  /* SERVICES */
  #services {
    height: auto;
    padding: 30px 20px;
  }
  #services h1 {
    font-size: 36px;
    margin-bottom: 10px;
  }
  #services p {
    font-size: 16px;
    margin: 0 10px;
  }
  .services-list {
    padding: 30px 15px;
    gap: 10px;
  }
  .services-card {
    flex-direction: column;
    margin: 15px 0;
    max-width: 100%;
  }
  .services-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
  }
  .services-text {
    padding: 25px 20px;
  }
  .services-text h3 {
    font-size: 20px;
  }
  .services-text p {
    font-size: 15px;
    margin: 8px 0 15px 0;
  }
  .services-inquire-btn {
    padding: 10px 30px;
    font-size: 14px;
  }
  .disclaimer {
    font-size: 14px;
  }

  /* GALLERY */
  .gallery-header {
    padding: 40px 15px;
  }
  .gallery-header h1 {
    font-size: 40px;
  }
  .gallery-header p {
    font-size: 15px;
    padding: 0 10px;
  }
  .image-gallery {
    padding: 0 15px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding-bottom: 40px;
  }

  /* TESTIMONIALS */
  .testimonials {
    padding: 40px 15px 80px;
  }
  .testimonials h2 {
    font-size: 45px;
    margin: 30px 10px;
    margin-bottom: 40px;
  }
  .testimonials-grid {
    max-width: 95%;
    gap: 30px;
    grid-template-columns: 1fr;
  }
  .testimonial-card {
    padding: 30px 25px;
  }
  .testimonial-card p {
    font-size: 18px;
    padding-bottom: 20px;
  }
  .testimonial-footer {
    font-size: 14px;
  }
  .testimonial-footer img {
    width: 55px;
    height: 55px;
    margin-left: 10px;
  }
  .stars {
    font-size: 18px;
  }

  /* CONTACT */
  .contact-section {
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    gap: 30px;
  }
  .contact-info, .contact-form {
    width: 100%;
    max-width: 100%;
  }
  .contact-info h2 {
    font-size: 40px;
  }
  .contact-details {
    font-size: 14px;
  }
  .contact-details ul {
    padding-left: 0;
  }
  .contact-form h3 {
    font-size: 20px;
  }
  .contact-form input, .contact-form textarea {
    width: 100%;
    font-size: 14px;
    padding: 10px;
  }
  .contact-form textarea {
    max-width: 100%;
  }
  .submit-btn {
    width: 100%;
    text-align: center;
  }

  /* FOOTER */
  footer {
    justify-content: center;
    align-items: center;
  }
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 100%;
    padding: 40px 20px;
  }
  .footer-logo img {
    margin: 0 auto 20px;
  }
  .footer-links {
    margin-bottom: 25px;
  }
  .footer-links ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 18px;
  }
  .footer-links ul li {
    margin-bottom: 0;
  }
  .footer-links ul li a {
    font-size: 14px;
  }
  .footer-loc h4, .footer-glam h4, .footer-contact h4, .footer-follow h4 {
    font-size: 16px;
  }
  .footer-loc p, .footer-glam p, .footer-contact a {
    font-size: 14px;
  }
  .footer-loc br {
    display: none;
  }
  .footer-loc p, .footer-glam p {
    padding: 0 10px;
  }
  .info-left, .info-right {
    text-align: center;
  }
  .social-icons {
    justify-content: center;
  }
  .social-icons img {
    width: 30px;
  }
  #subfooter {
    height: auto;
    padding: 15px;
    text-align: center;
    font-size: 12px;
  }
}

/* ============================================ */
/* SMALL MOBILE - 480px                        */
/* ============================================ */
@media only screen and (max-width: 480px) {
  /* HOMEPAGE */
  #main {
    height: 60vh;
  }
  .main-content h1 {
    font-size: 30px;
  }
  .main-content p {
    font-size: 14px;
  }
  .about-intro-text blockquote {
    font-size: 17px;
  }
  .hook h1 {
    font-size: 28px;
  }
  .sustainability {
    font-size: 16px;
    padding: 20px;
    border-radius: 15px;
  }

  /* ABOUT */
  #about-us h1 {
    font-size: 32px;
  }
  .text h3 {
    font-size: 26px;
  }
  .client-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .clients h1 {
    font-size: 28px;
  }

  /* SERVICES */
  #services h1 {
    font-size: 28px;
  }
  .services-card img {
    height: 200px;
  }

  /* GALLERY */
  .gallery-header h1 {
    font-size: 30px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  /* TESTIMONIALS */
  .testimonials h2 {
    font-size: 35px;
    margin: 20px 5px 30px;
  }
  .testimonial-card p {
    font-size: 16px;
  }

  /* CONTACT */
  .contact-info h2 {
    font-size: 32px;
  }
}
