/* Bolt Locksmith Everett — style.css */

:root {
  --primary: #263238;
  --accent: #00c853;
  --text: #333333;
  --light-bg: #f8f9fa;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
  --radius: 8px;
  --radius-lg: 12px;
  --transition: 0.3s ease;
  --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  color: var(--text);
  background-color: var(--light-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  color: var(--primary);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* ===================== HEADER ===================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 0 12px;
}

.site-logo img {
  height: 44px;
  width: auto;
  background-color: var(--white);
  border-radius: 6px;
  padding: 2px;
}

.site-logo-text {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--primary);
  white-space: nowrap;
}

.site-nav {
  width: 100%;
  border-top: 1px solid #e0e0e0;
  padding: 10px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  padding: 4px 0;
  position: relative;
  transition: color var(--transition);
}

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

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

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

.nav-cta {
  margin-left: auto;
  background: var(--accent);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background var(--transition), transform var(--transition);
}

.nav-cta:hover {
  background: #00b848;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===================== HERO (Split 50/50) ===================== */

.hero {
  margin-top: 110px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  position: relative;
}

.hero-overlay {
  display: none;
}

.hero-content {
  background: var(--primary);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 50px;
}

.hero-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.15;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
  line-height: 1.6;
}

.hero-cta {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  align-self: flex-start;
}

.hero-cta:hover {
  background: #00b848;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 200, 83, 0.35);
}

.hero .hero-image {
  background-size: cover;
  background-position: center;
  min-height: 100%;
}

/* ===================== TRUST BADGES ===================== */

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 40px 0;
}

.badge {
  background: var(--white);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
  border: 1px solid #e8e8e8;
}

/* ===================== SECTIONS (General) ===================== */

.section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
  color: var(--primary);
}

.section-desc {
  text-align: center;
  color: #666;
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* ===================== SERVICES ===================== */

.services {
  padding: 80px 0;
  background: var(--light-bg);
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid #f0f0f0;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 200, 83, 0.08);
  border-radius: 50%;
  color: var(--accent);
}

.service-icon svg {
  width: 40px;
  height: 40px;
  fill: currentColor;
}

.service-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary);
}

.service-text {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

/* ===================== ABOUT ===================== */

.about {
  padding: 80px 0;
  background: var(--white);
}

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

.about-img img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
}

.about-text h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.about-text p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 14px;
}

/* ===================== TESTIMONIALS ===================== */

.testimonials {
  padding: 80px 0;
  background: var(--light-bg);
}

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid #f0f0f0;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.3;
  position: absolute;
  top: 12px;
  left: 20px;
  line-height: 1;
  font-family: Georgia, serif;
}

.testimonial-stars {
  margin-bottom: 12px;
  color: #ffc107;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-author {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary);
}

/* ===================== SERVICE AREAS ===================== */

.service-areas {
  padding: 80px 0;
  background: var(--white);
}

.areas-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.area-item {
  background: var(--light-bg);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary);
  border: 1px solid #e4e4e4;
  transition: background var(--transition), border-color var(--transition);
}

.area-item:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

/* ===================== CTA BANNER ===================== */

.cta-banner {
  padding: 60px 0;
  background: var(--primary);
  text-align: center;
}

.cta-title {
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 700;
}

.cta-btn {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.cta-btn:hover {
  background: #00b848;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 200, 83, 0.4);
}

/* ===================== FOOTER (2-column) ===================== */

.site-footer {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.85);
  padding: 50px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-col .site-logo {
  padding: 0;
  margin-bottom: 14px;
}

.footer-col .site-logo-text {
  color: var(--white);
}

.footer-col p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--accent);
}

.footer-col:last-child {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  margin-top: 40px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ===================== PAGE HERO (Sub-pages) ===================== */

.page-hero {
  margin-top: 110px;
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(38, 50, 56, 0.7);
}

.page-hero .hero-content {
  position: relative;
  z-index: 1;
  background: transparent;
  padding: 40px 20px;
  align-items: center;
  text-align: center;
}

.page-hero .hero-title {
  font-size: 2.4rem;
  color: var(--white);
}

.page-hero .hero-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

/* ===================== SERVICE DETAIL ===================== */

.service-detail {
  padding: 60px 0;
}

.service-detail:nth-child(even) {
  background: var(--light-bg);
}

.service-detail .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.service-detail:nth-child(even) .container {
  direction: rtl;
}

.service-detail:nth-child(even) .container > * {
  direction: ltr;
}

.service-detail-img img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.service-detail-text .section-title {
  text-align: left;
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.service-detail-text .section-desc {
  text-align: left;
  margin: 0 0 16px;
  max-width: none;
}

.service-detail-text p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 12px;
}

.service-detail-text ul {
  padding-left: 20px;
  list-style: disc;
  margin-bottom: 16px;
}

.service-detail-text ul li {
  color: #555;
  margin-bottom: 6px;
  line-height: 1.6;
}

/* ===================== CONTACT PAGE ===================== */

.contact-section {
  padding: 80px 0;
  background: var(--light-bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

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

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: var(--font);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--white);
}

.form-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 200, 83, 0.12);
}

textarea.form-input {
  min-height: 140px;
  resize: vertical;
}

.form-btn {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 14px 36px;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.form-btn:hover {
  background: #00b848;
  transform: translateY(-2px);
}

.form-success {
  display: none;
  background: rgba(0, 200, 83, 0.1);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: 16px 20px;
  color: #1b5e20;
  font-weight: 500;
  margin-top: 16px;
}

.contact-info {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.contact-info h3 {
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.contact-info p {
  color: #555;
  margin-bottom: 12px;
  line-height: 1.7;
}

/* ===================== TEAM SECTION ===================== */

.team-section {
  padding: 80px 0;
  background: var(--white);
}

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

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid #f0f0f0;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.team-card-img {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.team-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card-name {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--primary);
  padding: 20px 16px 4px;
}

.team-card-role {
  font-size: 0.88rem;
  color: #888;
  padding: 0 16px 20px;
}

/* ===================== VALUES SECTION ===================== */

.values-section {
  padding: 80px 0;
  background: var(--light-bg);
}

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

.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid #f0f0f0;
  transition: transform var(--transition), box-shadow var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.value-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 200, 83, 0.08);
  border-radius: 50%;
  color: var(--accent);
}

.value-icon svg {
  width: 48px;
  height: 48px;
  fill: currentColor;
}

.value-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.value-text {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.6;
}

/* ===================== TIMELINE SECTION ===================== */

.timeline-section {
  padding: 80px 0;
  background: var(--white);
}

.timeline-item {
  position: relative;
  padding-left: 40px;
  padding-bottom: 36px;
  border-left: 2px solid #e0e0e0;
  margin-left: 20px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -7px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 3px rgba(0, 200, 83, 0.2);
}

.timeline-item:last-child {
  border-left-color: transparent;
  padding-bottom: 0;
}

.timeline-item h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: var(--primary);
}

.timeline-item p {
  font-size: 0.92rem;
  color: #666;
  line-height: 1.6;
}

.timeline-item .year {
  font-weight: 700;
  color: var(--accent);
  font-size: 0.85rem;
  margin-bottom: 4px;
}

/* ===================== FAQ PAGE ===================== */

.faq-section {
  padding: 80px 0;
  background: var(--light-bg);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid #f0f0f0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary);
  transition: background var(--transition);
}

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

.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--accent);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
}

/* ===================== GALLERY PAGE ===================== */

.gallery-section {
  padding: 80px 0;
  background: var(--light-bg);
}

.gallery-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.gallery-filter-btn {
  padding: 8px 20px;
  border: 1px solid #ddd;
  border-radius: 50px;
  background: var(--white);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

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

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: linear-gradient(transparent, rgba(38, 50, 56, 0.85));
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  transform: translateY(100%);
  transition: transform var(--transition);
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

/* ===================== AREAS DETAIL PAGE ===================== */

.areas-detail-section {
  padding: 80px 0;
  background: var(--light-bg);
}

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

.area-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid #f0f0f0;
  transition: transform var(--transition), box-shadow var(--transition);
}

.area-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.area-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.area-card-text {
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 14px;
}

.area-card-link {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color var(--transition);
}

.area-card-link:hover {
  color: #009e40;
}

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

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header-inner {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
  }

  .site-logo {
    padding: 0;
  }

  .site-nav {
    border-top: none;
    width: 100%;
    order: 3;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow-md);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .site-nav.active {
    max-height: 400px;
    border-top: 1px solid #e0e0e0;
  }

  .nav-list {
    flex-direction: column;
    padding: 16px 20px;
    gap: 0;
  }

  .nav-link {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    width: 100%;
    display: block;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 12px;
    text-align: center;
    display: block;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
    margin-top: 60px;
    min-height: auto;
  }

  .hero-content {
    padding: 48px 24px;
    order: 1;
  }

  .hero .hero-image {
    min-height: 240px;
    order: 2;
  }

  .hero-title {
    font-size: 2rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

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

  .service-detail .container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-detail:nth-child(even) .container {
    direction: ltr;
  }

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

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

  .footer-col:last-child {
    grid-template-columns: 1fr 1fr;
  }

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

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

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

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

  .gallery-item img {
    height: 200px;
  }

  .page-hero {
    min-height: 35vh;
    margin-top: 60px;
  }

  .page-hero .hero-title {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .cta-title {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-content {
    padding: 36px 20px;
  }

  .hero-title {
    font-size: 1.7rem;
  }

  .trust-badges {
    gap: 8px;
  }

  .badge {
    padding: 8px 14px;
    font-size: 0.78rem;
  }

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

  .contact-form {
    padding: 24px;
  }

  .contact-info {
    padding: 24px;
  }

  .faq-question {
    padding: 16px 18px;
    font-size: 0.92rem;
  }

  .footer-col:last-child {
    grid-template-columns: 1fr;
  }
}