@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --brand-red: #E41B23;
  --brand-blue: #303C87;
  --white: #FFFFFF;
  --light-grey: #F8F8F8;
  --dark-grey: #333333;
  --text-color: #333333;
  --text-muted: #666666;
  
  --font-primary: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.16);
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  --container-max: 1200px;
  --header-height: 80px;
  --header-height-scrolled: 60px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
}

a {
  color: var(--brand-blue);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--brand-red);
}

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 1.5rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: var(--white);
  z-index: 1000;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.header.scrolled {
  height: var(--header-height-scrolled);
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  height: 40px;
  width: auto;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-blue);
}

.nav-desktop {
  display: none;
}

.nav-desktop ul {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-desktop a {
  color: var(--text-color);
  font-weight: 500;
  padding: 0.5rem;
  position: relative;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-red);
  transition: width var(--transition-normal);
}

.nav-desktop a:hover {
  color: var(--brand-blue);
}

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

.header-cta {
  display: none;
}

.phone-link {
  display: none;
  color: var(--brand-blue);
  font-weight: 600;
  font-size: 1rem;
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
  padding: 4px 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--brand-blue);
  transition: all var(--transition-normal);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Navigation Drawer */
.nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  z-index: 1001;
  transition: right var(--transition-normal);
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.nav-drawer.active {
  right: 0;
}

.nav-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.nav-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.nav-drawer ul {
  margin-bottom: 2rem;
}

.nav-drawer li {
  margin-bottom: 1rem;
}

.nav-drawer a {
  font-size: 1.25rem;
  color: var(--text-color);
  font-weight: 500;
}

.nav-drawer .phone-cta {
  display: block;
  text-align: center;
  padding: 1rem;
  background: var(--brand-blue);
  color: var(--white);
  border-radius: 8px;
  font-weight: 600;
  margin-bottom: 1rem;
}

.nav-drawer .schedule-cta {
  display: block;
  text-align: center;
  padding: 1rem;
  background: var(--brand-red);
  color: var(--white);
  border-radius: 8px;
  font-weight: 600;
}

.nav-drawer-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--text-color);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(48, 60, 135, 0.85), rgba(48, 60, 135, 0.6));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  color: var(--white);
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s ease forwards;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s ease 0.2s forwards;
}

.hero-phone {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  display: block;
}

.hero-phone a {
  color: var(--white);
}

.hero-phone a:hover {
  color: var(--brand-red);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s ease 0.4s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
}

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

.btn-primary:hover {
  background: #252d6e;
  border-color: #252d6e;
  color: var(--white);
  transform: translateY(-2px);
}

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

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

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

.btn-outline:hover {
  background: var(--white);
  color: var(--brand-blue);
}

.btn-full {
  width: 100%;
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-dark {
  background: var(--brand-blue);
  color: var(--white);
}

.section-grey {
  background: var(--light-grey);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.25rem;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.section-title p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-muted);
}

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

.section-dark .section-title p {
  color: rgba(255, 255, 255, 0.8);
}

/* Services Overview (How We Help) */
.services-process {
  background: var(--light-grey);
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.process-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all var(--transition-normal);
}

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

.process-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--brand-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-icon svg {
  width: 40px;
  height: 40px;
  fill: var(--white);
}

.process-card h3 {
  color: var(--brand-blue);
  margin-bottom: 1rem;
}

.process-card p {
  color: var(--text-muted);
  margin-bottom: 0;
}

/* About Teaser */
.about-teaser {
  overflow: hidden;
}

.about-teaser .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.about-teaser-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-teaser-image img {
  width: 100%;
  height: auto;
}

.about-teaser-content h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--text-color);
}

.about-teaser-content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* Service Area */
.service-area {
  background: var(--light-grey);
}

.service-area-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.service-area-info h3 {
  margin-bottom: 1rem;
  color: var(--brand-blue);
}

.service-area-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.service-area-list li {
  padding: 0.5rem 0;
  color: var(--text-muted);
  position: relative;
  padding-left: 1.5rem;
}

.service-area-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--brand-red);
  font-weight: bold;
}

.service-area-map {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 300px;
  background: #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-area-map iframe {
  width: 100%;
  height: 350px;
  border: 0;
}

/* What We Treat */
.pest-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.pest-list li {
  padding: 0.75rem 1rem;
  background: var(--light-grey);
  border-radius: 8px;
  color: var(--text-color);
  font-weight: 500;
  transition: all var(--transition-fast);
}

.pest-list li:hover {
  background: var(--brand-blue);
  color: var(--white);
}

/* CTA Section */
.cta-section {
  background: var(--brand-blue);
  text-align: center;
  padding: 4rem 0;
}

.cta-section h2 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* Services Page Hero */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(48, 60, 135, 0.85), rgba(48, 60, 135, 0.6));
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  color: var(--white);
}

.page-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeInUp 0.5s ease forwards;
}

.page-hero p {
  font-size: 1.25rem;
  opacity: 0;
  animation: fadeInUp 0.5s ease 0.2s forwards;
}

/* Service Cards */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.service-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  border: 1px solid #eee;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--brand-red);
}

.service-card-image {
  height: 200px;
  background: var(--light-grey);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card-image img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.service-card-content {
  padding: 1.5rem;
}

.service-card h3 {
  color: var(--brand-blue);
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.service-card .learn-more {
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.service-card .learn-more::after {
  content: '→';
  transition: transform var(--transition-fast);
}

.service-card:hover .learn-more::after {
  transform: translateX(4px);
}

/* Why Choose Us */
.why-choose {
  background: var(--light-grey);
}

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

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.benefit-item:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-md);
}

.benefit-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: var(--brand-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--white);
}

.benefit-content h3 {
  color: var(--text-color);
  margin-bottom: 0.5rem;
}

.benefit-content p {
  color: var(--text-muted);
  margin-bottom: 0;
}

/* FAQ Accordion */
.faq-section {
  background: var(--light-grey);
}

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

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-primary);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-color);
  transition: all var(--transition-fast);
}

.faq-question:hover {
  color: var(--brand-blue);
}

.faq-question span {
  font-size: 1.5rem;
  color: var(--brand-blue);
  transition: transform var(--transition-normal);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
}

.faq-answer-content {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-muted);
}

/* About Page */
.about-mission {
  background: var(--light-grey);
}

.about-mission .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.about-mission-content h2 {
  color: var(--brand-blue);
  margin-bottom: 1.5rem;
}

.about-mission-content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

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

.value-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--white);
  border-radius: 8px;
}

.value-item::before {
  content: '✓';
  color: var(--brand-red);
  font-weight: bold;
  font-size: 1.25rem;
}

/* Meet the Team */
.meet-team {
  text-align: center;
}

.team-photo {
  max-width: 800px;
  margin: 0 auto 2rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.team-info {
  max-width: 700px;
  margin: 0 auto;
}

.team-info h3 {
  color: var(--brand-blue);
  margin-bottom: 0.5rem;
}

.team-info p {
  color: var(--text-muted);
}

/* Certifications */
.certifications {
  background: var(--light-grey);
  text-align: center;
}

.certifications-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.certification-badge {
  width: 120px;
  height: 80px;
  background: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.certification-badge img {
  max-width: 100px;
  max-height: 60px;
  object-fit: contain;
}

.certifications p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-muted);
}

/* Contact Page */
.contact-section {
  padding-top: calc(var(--header-height) + 3rem);
  padding-bottom: 3rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact-form-wrapper {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

.contact-form-wrapper h2 {
  color: var(--brand-blue);
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: all var(--transition-fast);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(48, 60, 135, 0.1);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-info {
  padding: 2rem;
  background: var(--light-grey);
  border-radius: 12px;
}

.contact-info h2 {
  color: var(--brand-blue);
  margin-bottom: 1.5rem;
}

.contact-info-list {
  margin-bottom: 2rem;
}

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info-list .icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--brand-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-list .icon svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
}

.contact-info-list .text {
  color: var(--text-color);
}

.contact-info-list a {
  color: var(--brand-blue);
  font-weight: 500;
}

.contact-info-map {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.contact-info-map iframe {
  width: 100%;
  height: 250px;
  border: 0;
}

/* Footer */
.footer {
  background: var(--dark-grey);
  color: var(--white);
  padding-top: 4rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 3rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 1rem;
  max-width: 300px;
}

.footer h3 {
  color: var(--white);
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
  position: relative;
}

.footer h3::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--brand-red);
}

.footer-links ul li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
}

.footer-middle {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.badge-item {
  width: 80px;
  height: 50px;
  background: var(--white);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-item img {
  max-width: 70px;
  max-height: 40px;
  object-fit: contain;
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.payment-item {
  width: 50px;
  height: 32px;
  background: var(--white);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-item img {
  max-width: 40px;
  max-height: 24px;
  object-fit: contain;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin: 0;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}

.social-links a:hover {
  background: var(--brand-red);
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
}

/* Scroll Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .hero h1,
  .hero p,
  .hero-buttons,
  .page-hero h1,
  .page-hero p {
    animation: none;
    opacity: 1;
    transform: none;
  }
  
  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Responsive Styles */
@media (min-width: 640px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.5rem; }
  
  .hero h1 {
    font-size: 3rem;
  }
  
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pest-list {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .hero {
    min-height: 80vh;
  }
  
  .page-hero {
    min-height: 40vh;
  }
  
  .about-teaser .container {
    grid-template-columns: 1fr 1fr;
  }
  
  .service-area-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .values-list {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .contact-grid {
    grid-template-columns: 1.5fr 1fr;
  }
  
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .hamburger {
    display: none;
  }
  
  .nav-desktop {
    display: flex;
    align-items: center;
  }
  
  .phone-link {
    display: block;
  }
  
  .header-cta {
    display: inline-block;
  }
  
  h1 { font-size: 3.5rem; }
  h2 { font-size: 2.5rem; }
  
  .hero h1 {
    font-size: 3.5rem;
  }
  
  .hero p {
    font-size: 1.5rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .about-mission .container {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-top {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
  
  .service-area-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1023px) {
  .nav-desktop {
    display: none;
  }
}

/* Mobile specific */
@media (max-width: 639px) {
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .service-area-list {
    grid-template-columns: 1fr;
  }
  
  .values-list {
    grid-template-columns: 1fr;
  }
  
  .pest-list {
    grid-template-columns: 1fr;
  }
  
  .certifications-grid {
    gap: 1rem;
  }
  
  .certification-badge {
    width: 100px;
    height: 70px;
  }
  
  .trust-badges {
    gap: 1rem;
  }
  
  .badge-item {
    width: 70px;
    height: 45px;
  }
}
