/* ============================================
   SuarezArroyo Landscaping LLC
   Color Palette: Fresh landscape, green, earth
   ============================================ */

:root {
  /* Greens — fresh grass & trees */
  --green-900: #1a3a1a;
  --green-800: #1B5E20;
  --green-700: #2E7D32;
  --green-600: #388E3C;
  --green-500: #43A047;
  --green-400: #66BB6A;
  --green-300: #81C784;
  --green-200: #A5D6A7;
  --green-100: #C8E6C9;
  --green-50:  #E8F5E9;

  /* Earth tones */
  --earth-700: #3E2723;
  --earth-600: #4E342E;
  --earth-500: #5D4037;
  --earth-400: #795548;
  --earth-300: #A1887F;

  /* Gold accent — CTA buttons */
  --gold-600: #D4960A;
  --gold-500: #E6A817;
  --gold-400: #F5BF2F;
  --gold-300: #FFD54F;

  /* Neutrals */
  --white: #FFFFFF;
  --off-white: #F9FBF7;
  --gray-50: #F5F7F3;
  --gray-100: #E8EBE4;
  --gray-200: #D0D5CB;
  --gray-400: #8A9182;
  --gray-600: #5A6153;
  --gray-800: #2D3228;
  --gray-900: #1A1F16;

  /* Functional */
  --primary: var(--green-700);
  --primary-dark: var(--green-800);
  --primary-light: var(--green-50);
  --accent: var(--gold-500);
  --accent-hover: var(--gold-600);
  --text: var(--gray-900);
  --text-light: var(--gray-600);
  --bg: var(--white);
  --bg-alt: var(--gray-50);

  /* Spacing */
  --section-py: 80px;
  --container-max: 1200px;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;

  /* Transitions */
  --transition: 0.3s ease;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn--sm {
  padding: 8px 20px;
  font-size: 14px;
}

.btn--lg {
  padding: 14px 32px;
  font-size: 16px;
}

.btn--full {
  width: 100%;
}

.btn--primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn--primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-1px);
}

.btn--accent {
  background: var(--accent);
  color: var(--gray-900);
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(230, 168, 23, 0.3);
}
.btn--accent:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(230, 168, 23, 0.4);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--outline:hover {
  background: var(--white);
  color: var(--primary-dark);
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-title {
  font-size: 36px;
  color: var(--green-800);
  margin-bottom: 12px;
}

.section-title--left { text-align: left; }

.section-title--light { color: var(--white); }

.section-subtitle {
  font-size: 18px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
  transition: box-shadow var(--transition);
}

.header--scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 24px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  width: 48px;
  height: 52px;
  flex-shrink: 0;
}

.logo-shield {
  width: 100%;
  height: 100%;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--green-800);
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.logo-tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--green-600);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 2px;
}

.header__nav {
  display: flex;
  gap: 28px;
}

.nav-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--gray-600);
  transition: color var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition);
}

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

.nav-link:hover::after {
  width: 100%;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header__phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--primary);
  white-space: nowrap;
}

.header__phone svg {
  color: var(--primary);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-800);
  transition: all var(--transition);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(135deg,
      rgba(26, 58, 26, 0.82) 0%,
      rgba(27, 94, 32, 0.72) 30%,
      rgba(46, 125, 50, 0.65) 60%,
      rgba(56, 142, 60, 0.6) 100%
    ),
    url('../images/hero-work.jpg') center/cover no-repeat;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(102, 187, 106, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(129, 199, 132, 0.1) 0%, transparent 50%);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 120px 24px 80px;
}

.hero__title {
  font-size: 52px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -1px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.text-accent {
  color: var(--gold-300);
}

.hero__subtitle {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #fff;
  margin-bottom: 36px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.9;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.3px;
}

.hero__subtitle .hero__services {
  display: inline-block;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 8px;
  background: rgba(255, 255, 255, 0.12);
  padding: 10px 28px;
  border-radius: 40px;
  backdrop-filter: blur(4px);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero__subtitle .hero__tagline {
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: var(--gold-300);
  margin-top: 8px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--green-800);
  padding: 20px 0;
}

.trust-bar__inner {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--green-100);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
}

.trust-item svg {
  color: var(--gold-400);
  flex-shrink: 0;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: var(--section-py) 0;
  background: var(--off-white);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
  border: 1px solid var(--gray-100);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-400), var(--green-600));
  transform: scaleX(0);
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(46, 125, 50, 0.1);
  border-color: var(--green-200);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  color: var(--green-600);
}

.service-card__icon svg {
  width: 100%;
  height: 100%;
}

.service-card__title {
  font-size: 18px;
  color: var(--green-800);
  margin-bottom: 8px;
}

.service-card__desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

.services__cta {
  text-align: center;
}

/* ============================================
   ABOUT / WHY CHOOSE US
   ============================================ */
.about {
  padding: var(--section-py) 0;
  background: var(--white);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about__photo {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.about__text {
  font-size: 17px;
  color: var(--text-light);
  margin-bottom: 28px;
  line-height: 1.7;
}

.about__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.about__list li svg {
  flex-shrink: 0;
  color: var(--green-500);
  margin-top: 2px;
}

.about__list li strong {
  color: var(--green-800);
  display: block;
  font-size: 15px;
}

.about__list li div {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
  padding: var(--section-py) 0;
  background: var(--off-white);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery__item {
  border-radius: var(--radius);
  overflow: hidden;
}

.gallery__item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform var(--transition);
  display: block;
}

.gallery__item:hover img {
  transform: scale(1.05);
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews {
  padding: var(--section-py) 0;
  background: var(--white);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
}

.review-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.review-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}

.review-card__text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.review-card__author strong {
  display: block;
  font-size: 15px;
  color: var(--green-800);
}

.review-card__author span {
  font-size: 13px;
  color: var(--text-light);
}

/* ============================================
   SERVICE AREAS
   ============================================ */
.areas {
  padding: var(--section-py) 0;
  background: var(--green-50);
}

.areas__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 24px;
}

.area-tag {
  background: var(--white);
  border: 2px solid var(--green-200);
  border-radius: 40px;
  padding: 10px 24px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--green-800);
  transition: all var(--transition);
}

.area-tag:hover {
  background: var(--green-700);
  color: var(--white);
  border-color: var(--green-700);
}

.area-tag--more {
  background: var(--green-700);
  color: var(--white);
  border-color: var(--green-700);
}

.areas__note {
  text-align: center;
  font-size: 15px;
  color: var(--text-light);
}

.areas__note a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: var(--section-py) 0;
  background: linear-gradient(135deg, var(--green-900), var(--green-800), var(--green-700));
  position: relative;
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact__text {
  color: var(--green-200);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 32px;
}

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

.contact__detail {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--white);
}

.contact__detail svg {
  flex-shrink: 0;
  color: var(--gold-400);
}

.contact__detail strong {
  display: block;
  font-size: 13px;
  color: var(--green-300);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.contact__detail a,
.contact__detail span {
  font-size: 16px;
  color: var(--white);
}

.contact__detail a:hover {
  color: var(--gold-300);
}

/* Form */
.contact__form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--gray-600);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-100);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text);
  transition: border-color var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-400);
  box-shadow: 0 0 0 3px rgba(102, 187, 106, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* CTA Box (replaces form) */
.contact__cta-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.contact__cta-title {
  font-size: 26px;
  color: var(--green-800);
  margin-bottom: 12px;
}

.contact__cta-desc {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 28px;
}

.contact__text-btn {
  font-size: 18px;
  padding: 16px 32px;
}

.contact__divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 20px 0;
  color: var(--gray-400);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact__divider::before,
.contact__divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gray-200);
}

.form-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-light);
  margin-top: 16px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: 60px 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.footer__logo .logo-mark {
  width: 44px;
  height: 48px;
}

.footer__desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-400);
}

.footer__links h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer__links a,
.footer__links span {
  display: block;
  font-size: 14px;
  color: var(--gray-400);
  margin-bottom: 10px;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--green-400);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
}

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

.footer__bottom p {
  font-size: 13px;
  color: var(--gray-400);
}

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

.footer__social a {
  color: var(--gray-400);
  transition: color var(--transition);
}

.footer__social a:hover {
  color: var(--green-400);
}

/* ============================================
   MOBILE FLOATING CTA
   ============================================ */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  padding: 8px 12px;
  gap: 8px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.mobile-cta__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
}

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

.mobile-cta__quote {
  background: var(--accent);
  color: var(--gray-900);
}

/* ============================================
   LOGO RESPONSIVE
   ============================================ */

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
  :root {
    --section-py: 64px;
  }

  .hero__title {
    font-size: 40px;
  }

  .about__inner {
    gap: 40px;
  }

  .contact__inner {
    gap: 40px;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --section-py: 48px;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 0;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    transition: right var(--transition);
    z-index: 999;
  }

  .header__nav.active {
    right: 0;
  }

  .header__nav .nav-link {
    padding: 14px 0;
    font-size: 16px;
    border-bottom: 1px solid var(--gray-100);
  }

  .hamburger {
    display: flex;
  }

  .header__actions .btn {
    display: none;
  }

  .hero {
    min-height: 85vh;
  }

  .hero__title {
    font-size: 32px;
  }

  .hero__subtitle {
    font-size: 16px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .services__grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .service-card {
    padding: 24px 16px;
  }

  .about__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about__image {
    order: -1;
  }

  .section-title--left {
    text-align: center;
  }

  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .reviews__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .review-card {
    padding: 24px;
  }

  .contact__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section-title--light {
    text-align: center;
  }

  .contact__text {
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .mobile-cta {
    display: flex;
  }

  body {
    padding-bottom: 68px;
  }

  .trust-bar__inner {
    gap: 20px;
  }

  .trust-item {
    font-size: 12px;
  }

  .trust-item svg {
    width: 18px;
    height: 18px;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .services__grid {
    grid-template-columns: 1fr;
  }

  .gallery__grid {
    grid-template-columns: 1fr;
  }

  .hero__title {
    font-size: 28px;
  }

  .header__phone {
    font-size: 13px;
  }

  .header__phone span {
    display: none;
  }

  .trust-bar__inner {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .area-tag {
    padding: 8px 16px;
    font-size: 13px;
  }
}
