/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  padding-top: 85px;
}

/* Variables */
:root {
  --primary-color: #7fd2dd;
  --primary-hover: #5bc4d1;
  --secondary-color: #333333;
  --accent-color: #7fd2dd;
  --text-color: #333;
  --text-light: #666;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 5px 20px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section */
.section {
  padding: 60px 0;
}

.section__header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
}

.section__text {
  text-align: center;
}

.section__title {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.section__title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--primary-color);
}

.section__swoosh {
  width: 35px;
  height: 35px;
  flex-shrink: 0;
}

.section__subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  z-index: 1000;
  transition: var(--transition);
  box-shadow: none;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: auto;
}

.nav__logo .logo-img {
  height: 85px;
  width: auto;
}

.nav__list {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav__link {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav__link:hover {
  color: var(--primary-color);
}

.nav__link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
}

.nav__link:hover::after {
  width: 100%;
}

.contact-btn {
  background: var(--primary-color);
  color: var(--white) !important;
  padding: 10px 20px;
  transition: var(--transition);
}

.contact-btn:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
}

.contact-btn::after {
  display: none;
}

.nav__toggle,
.nav__close {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-color);
}

/* Hero Section */
.hero {
  padding: 80px 0 40px;
  background: radial-gradient(circle, var(--primary-color) 1px, transparent 1px);
  background-size: 20px 20px;
  background-position: 0 0;
  min-height: auto;
  display: flex;
  align-items: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  backdrop-filter: blur(2px);
  pointer-events: none;
}

.hero__container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.highlight {
  color: var(--primary-color);
}

.hero__description {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero__buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.btn {
  display: inline-block;
  padding: 15px 30px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--primary-color);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-secondary {
  background: var(--white);
  color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.btn-secondary:hover {
  background: var(--secondary-color);
  color: var(--white);
}

.hero__contact {
  display: flex;
  gap: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-color);
}

.contact-item i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

.hero__image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__img {
  width: 100%;
  max-width: 500px;
  height: auto;
  box-shadow: none;
}

/* About Section */
.about__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about__content h3 {
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.about__content p {
  color: var(--text-light);
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

.about__image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about__img {
  width: 100%;
  height: auto;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.about__img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-hover);
}

/* Personal Commitment Section */
.commitment {
  background: var(--white);
}

.commitment__container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.commitment__content h2 {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 30px;
  position: relative;
}

.commitment__content h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--primary-color);
}

.commitment__content p {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 25px;
  text-align: left;
}

.commitment__cta {
  margin-top: 40px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.commitment__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 0;
  flex-wrap: wrap;
}

.commitment__logo {
  max-width: 200px;
  height: auto;
  transition: var(--transition);
}

.commitment__logo:hover {
  transform: translateY(-5px);
}

.commitment__logo.surrey-logo {
  max-width: 120px;
}

.commitment__tagline {
  font-style: italic;
  color: var(--primary-color);
  font-weight: 600;
  margin-top: 15px;
  font-size: 1.1rem;
  text-align: center !important;
  width: 100%;
}

/* Services Section */
.services {
  background: var(--bg-light);
}

.services__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.service__card {
  background: var(--white);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.service__card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.service__icon {
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--white);
  font-size: 2rem;
}

.service__card h3 {
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.service__card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Gallery Section */
.gallery__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.gallery__item {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
}

.gallery__item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery__item:hover .gallery__overlay {
  opacity: 1;
}

.gallery__text {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  animation: fadeIn 0.3s ease;
}

.lightbox.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  margin: auto;
  animation: zoomIn 0.3s ease;
}

.lightbox__image {
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
}

.lightbox__title {
  color: var(--white);
  text-align: center;
  padding: 15px;
  font-size: 1.2rem;
  font-weight: 600;
}

.lightbox__close {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--white);
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox__close:hover {
  color: var(--primary-hover);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
  }
  to {
    transform: scale(1);
  }
}

/* Testimonials Section - Masonry Layout */
.testimonials {
  background: var(--bg-light);
}

.testimonials__masonry {
  column-count: 3;
  column-gap: 30px;
  column-fill: balance;
}

.testimonial__card {
  background: var(--white);
  padding: 25px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  margin-bottom: 30px;
  break-inside: avoid;
  page-break-inside: avoid;
  display: inline-block;
  width: 100%;
  position: relative;
}

.testimonial__card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

/* Varying card sizes for dynamic look */
.testimonial__card:nth-child(3n + 1) {
  padding: 30px;
}

.testimonial__card:nth-child(4n + 1) {
  padding: 20px;
}

.testimonial__card:nth-child(5n + 1) {
  padding: 35px;
}

.testimonial__content {
  margin-bottom: 20px;
}

.testimonial__content p {
  font-style: italic;
  color: var(--text-light);
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Varying text sizes for dynamic look */
.testimonial__card:nth-child(2n + 1) .testimonial__content p {
  font-size: 1rem;
}

.testimonial__card:nth-child(3n + 1) .testimonial__content p {
  font-size: 0.9rem;
}

.testimonial__card:nth-child(7n + 1) .testimonial__content p {
  font-size: 1.05rem;
  font-weight: 500;
}

.testimonial__author {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 20px;
  border-top: 1px solid #f0f0f0;
  padding-top: 15px;
}

.author__info h4 {
  color: var(--secondary-color);
  margin-bottom: 5px;
  font-size: 1rem;
  font-weight: 600;
}

.author__info span {
  color: var(--text-light);
  font-size: 0.85rem;
  line-height: 1.3;
  display: block;
}

.testimonial__rating {
  color: #ffc107;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* Accent colors for variety */
.testimonial__card:nth-child(6n + 1) {
  border-left: 4px solid var(--primary-color);
}

.testimonial__card:nth-child(6n + 3) {
  border-left: 4px solid var(--accent-color);
}

.testimonial__card:nth-child(6n + 5) {
  border-left: 4px solid #45b7b8;
}

/* Google Review Button within Testimonials */
.testimonials .google-review__container {
  text-align: center;
  margin-top: 40px;
}

.testimonials .google-review__link {
  display: inline-block;
  transition: var(--transition);
}

.testimonials .google-review__link:hover {
  transform: translateY(-3px);
}

.testimonials .google-review__image {
  max-width: 200px;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.testimonials .google-review__link:hover .google-review__image {
  box-shadow: var(--shadow-hover);
}

/* FAQ Section */
.faq__container {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  background: var(--white);
  margin-bottom: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq__question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
  background: var(--accent-color);
}

.faq__question:hover {
  background: var(--primary-hover);
}

.faq__question h3 {
  color: var(--white);
  font-size: 1.2rem;
}

.faq__question i {
  color: var(--white);
  transition: var(--transition);
}

.faq__item.active .faq__question i {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq__item.active .faq__answer {
  max-height: 200px;
}

.faq__answer p {
  padding: 25px 20px 18px;
  color: var(--text-light);
  line-height: 1.6;
}

/* Footer */
.footer {
  background: var(--secondary-color);
  color: var(--white);
  padding: 50px 0 30px;
}

.footer__container {
  display: grid;
}

.footer__content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10%;
  justify-items: center;
  margin-bottom: 30px;
}

.footer__info h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer__info p {
  color: #ccc;
  margin-bottom: 25px;
  line-height: 1.6;
  max-width: 300px;
}

.footer__social {
  display: flex;
  gap: 15px;
}

.social__link {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}

.social__link:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
}

.footer__contact h3,
.footer__services h3 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1.3rem;
  font-weight: 600;
}

.footer__contact .contact__item {
  margin-bottom: 5px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer__contact .contact__item i {
  color: var(--primary-color);
  font-size: 1.1rem;
  margin-top: 2px;
  min-width: 16px;
}

.footer__contact .contact__item span,
.footer__contact .contact__item a {
  color: #ccc;
  text-decoration: none;
  transition: var(--transition);
}

.footer__contact .contact__item a:hover {
  color: var(--primary-hover);
}

.footer__services ul {
  list-style: none;
}

.footer__services li {
  color: #ccc;
  margin-bottom: 5px;
  padding-left: 0;
  transition: var(--transition);
}

.footer__services li::before {
  display: none;
}

.footer__areas {
  margin-bottom: 20px;
}

.footer__areas h3 {
  color: var(--white);
  margin-bottom: 15px;
  font-size: 1.3rem;
  font-weight: 600;
  text-align: center;
}

.areas__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.areas__list li {
  color: #ccc;
  padding: 5px 0;
  position: relative;
  padding-left: 15px;
  transition: var(--transition);
}

.areas__list li::before {
  content: "•";
  color: var(--primary-color);
  position: absolute;
  left: 0;
}

.areas__list li:hover {
  color: var(--primary-hover);
  cursor: pointer;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid #444;
  color: #ccc;
  font-size: 0.9rem;
}

.footer__bottom-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__checkatrade {
  display: block;
  max-width: 120px;
  margin: 0 auto;
}

.footer__checkatrade img {
  width: 100%;
  height: auto;
}

.footer__bottom-right {
  color: #888;
}

/* Scroll to Top Button */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  z-index: 999;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--primary-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

/* Vertibase Credit */
.vertibase-credit {
  bottom: 15px;
  right: 20px;
  font-size: 0.75rem;
  color: #fff;
}

.vertibase-credit a {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
}

.vertibase-credit .verti {
  color: #fff;
}

.vertibase-credit .base {
  color: #00b0f0;
}

/* MEDIA QUERIES */

/* Tablet Layout */
@media screen and (max-width: 968px) {
  body {
    padding-top: 80px;
  }

  .testimonials__masonry {
    column-count: 2;
    column-gap: 25px;
  }

  .testimonial__card {
    margin-bottom: 25px;
    padding: 25px;
  }

  .testimonial__card:nth-child(3n + 1),
  .testimonial__card:nth-child(4n + 1),
  .testimonial__card:nth-child(5n + 1) {
    padding: 25px;
  }

  .testimonial__content p {
    font-size: 0.9rem;
  }

  .testimonial__card:nth-child(2n + 1) .testimonial__content p,
  .testimonial__card:nth-child(3n + 1) .testimonial__content p,
  .testimonial__card:nth-child(7n + 1) .testimonial__content p {
    font-size: 0.9rem;
    font-weight: normal;
  }

  .author__info span {
    font-size: 0.8rem;
  }

  /* Mobile Navigation Styles */
  .nav {
    height: 80px;
    justify-content: center;
    position: relative;
  }

  .nav__logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .nav__logo .logo-img {
    height: 80px;
  }

  .nav__toggle {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }

  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
    z-index: 1000;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  }

  .nav__menu.show-menu {
    right: 0;
  }

  .nav__list {
    flex-direction: column;
    gap: 40px;
    align-items: center;
    width: 50%;
  }

  .nav__item {
    width: 100%;
    text-align: center;
  }

  .nav__link {
    font-size: 1.2rem;
    padding: 15px 20px;
    display: block;
    width: 100%;
    transition: var(--transition);
  }

  .nav__link:hover {
    background: var(--bg-light);
  }

  .contact-btn {
    background: var(--primary-color);
    color: var(--white) !important;
    margin-top: 20px;
  }

  .nav__close {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 1.8rem;
    color: var(--text-color);
  }

  .nav__toggle,
  .nav__close {
    display: block;
  }

  /* Hero Section Mobile */
  .hero {
    padding: 30px 0;
    min-height: auto;
  }

  .hero__container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero__content {
    order: 1;
  }

  .hero__image {
    order: 2;
  }

  .hero__title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .hero__description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 100%;
  }

  .hero__buttons {
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
  }

  .hero__contact {
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
  }

  .hero__img {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin: 0 auto;
  }

  /* About Section Mobile */
  .about__container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .about__content {
    order: 1;
  }

  .about__image {
    order: 2;
  }

  .about__content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .about__content p {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .about__features {
    grid-template-columns: 1fr;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
  }

  .feature {
    justify-content: center;
    text-align: center;
  }

  /* Commitment section mobile */
  .commitment__content h2 {
    font-size: 2rem;
    margin-bottom: 25px;
  }

  .commitment__content p {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .commitment__cta {
    margin-top: 30px;
    flex-direction: column;
    gap: 20px;
  }

  .commitment__tagline {
    font-size: 1rem;
  }

  .commitment__logos {
    gap: 20px;
    margin-bottom: 0;
    margin-left: 0;
  }

  .commitment__logo {
    max-width: 150px;
  }

  .commitment__logo.surrey-logo {
    max-width: 100px;
  }

  /* Other sections */
  .services__container {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .gallery__container {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }

  .footer__content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer__bottom-center {
    margin: 15px 0;
  }

  /* Google review mobile */
  .testimonials .google-review__container {
    margin-top: 30px;
  }

  .testimonials .google-review__image {
    max-width: 180px;
  }

  .vertibase-credit {
    position: static;
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.75rem;
    color: #fff;
  }

  .section__header {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .section__swoosh {
    width: 40px;
    height: 40px;
  }
}

/* Mobile Layout */
@media screen and (max-width: 576px) {
  body {
    padding-top: 70px;
  }

  .testimonials__masonry {
    column-count: 1;
    column-gap: 0;
  }

  .testimonial__card {
    margin-bottom: 20px;
    padding: 20px;
  }

  .testimonial__card:nth-child(3n + 1),
  .testimonial__card:nth-child(4n + 1),
  .testimonial__card:nth-child(5n + 1) {
    padding: 20px;
  }

  .testimonial__content p {
    font-size: 0.85rem;
  }

  .testimonial__card:nth-child(2n + 1) .testimonial__content p,
  .testimonial__card:nth-child(3n + 1) .testimonial__content p,
  .testimonial__card:nth-child(7n + 1) .testimonial__content p {
    font-size: 0.85rem;
    font-weight: normal;
  }

  .author__info h4 {
    font-size: 0.9rem;
  }

  .author__info span {
    font-size: 0.75rem;
  }

  .testimonial__rating {
    font-size: 0.8rem;
  }

  .nav {
    height: 70px;
    padding: 0 15px;
    justify-content: center;
    position: relative;
  }

  .nav__logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .nav__logo .logo-img {
    height: 80px;
  }

  .nav__toggle {
    font-size: 1.3rem;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
  }

  .nav__close {
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
  }

  .nav__link {
    font-size: 1.1rem;
    padding: 12px 15px;
  }

  .container {
    padding: 0 15px;
  }

  .section {
    padding: 40px 0;
  }

  .section__title {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .section__subtitle {
    font-size: 1rem;
  }

  .section__header {
    margin-bottom: 40px;
  }

  /* Header Mobile Small */
  .nav {
    height: 60px;
    padding: 0 15px;
  }

  .nav__logo .logo-img {
    height: 50px;
  }

  .nav__toggle {
    font-size: 1.3rem;
  }

  .nav__close {
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
  }

  .nav__link {
    font-size: 1.1rem;
    padding: 12px 15px;
  }

  /* Hero Mobile Small */
  .hero {
    padding: 25px 0;
  }

  .hero__container {
    gap: 30px;
  }

  .hero__title {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 15px;
  }

  .hero__description {
    font-size: 1rem;
    margin-bottom: 25px;
    line-height: 1.5;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .hero__buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
  }

  .hero__contact {
    flex-direction: column;
    gap: 15px;
  }

  .contact-item {
    font-size: 0.9rem;
  }

  .contact-item i {
    font-size: 1rem;
  }

  .hero__img {
    max-width: 350px;
  }

  /* About Mobile Small */
  .about__container {
    gap: 30px;
  }

  .about__content h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }

  .about__content p {
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
  }

  .about__features {
    gap: 12px;
  }

  .feature {
    font-size: 0.9rem;
  }

  /* Commitment mobile small */
  .commitment__content h2 {
    font-size: 1.8rem;
  }

  .commitment__content p {
    font-size: 0.95rem;
  }

  .commitment__logos {
    flex-direction: column;
    gap: 15px;
  }

  .commitment__logo {
    max-width: 180px;
  }

  .commitment__logo.surrey-logo {
    max-width: 100px;
  }

  /* Services Mobile Small */
  .service__card {
    padding: 30px 20px;
  }

  .service__icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .service__card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }

  .service__card p {
    font-size: 0.9rem;
  }

  /* FAQ Mobile Small */
  .faq__question {
    padding: 18px 20px;
  }

  .faq__question h3 {
    font-size: 1rem;
    line-height: 1.4;
  }

  .faq__answer p {
    padding: 25px 20px 18px;
    font-size: 0.9rem;
  }

  /* Footer Mobile Small */
  .footer__content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: left;
    justify-items: start;
  }

  .footer__info {
    text-align: left;
  }

  .footer__info p {
    max-width: none;
    font-size: 0.9rem;
  }

  .footer__social {
    justify-content: flex-start;
  }

  .footer__areas h3 {
    text-align: left;
  }

  .areas__list {
    justify-content: flex-start;
    gap: 8px;
    font-size: 0.9rem;
  }

  .footer__contact .contact__item,
  .footer__services li {
    font-size: 0.9rem;
  }

  /* Google review mobile small */
  .testimonials .google-review__container {
    margin-top: 25px;
  }

  .testimonials .google-review__image {
    max-width: 160px;
  }
}

/* Extra small screens */
@media screen and (max-width: 375px) {
  .container {
    padding: 0 12px;
  }

  .hero__title {
    font-size: 2rem;
  }

  .hero__description {
    font-size: 0.95rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.85rem;
  }

  .contact-item {
    font-size: 0.85rem;
  }

  .contact-item i {
    font-size: 0.9rem;
  }

  .hero__img {
    max-width: 250px;
  }

  .about__content h3 {
    font-size: 1.5rem;
  }

  .about__content p {
    font-size: 0.9rem;
  }

  .vertibase-credit {
    margin-top: 1rem;
  }
}
