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

:root {
  --accent-pink: #2563eb;
  --accent-pink-hover: #1d4ed8;
}

html {
  scroll-behavior: smooth;
}

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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  padding-top: 80px;
}

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

/* Header Styles */
header {
  background-color: #fff;
  color: #333;
  padding: 1rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid #f0f0f0;
  transition: transform 0.3s ease;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
}

.main-logo {
  height: 60px;
  width: auto;
  max-width: 250px;
  object-fit: contain;
}

.cta-button {
  background-color: #333;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid #333;
}

.cta-button:hover {
  background-color: #000;
  border-color: #000;
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
  display: none;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

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

.nav-link {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #666;
}

/* Mobile menu animations */
.mobile-menu-toggle:checked + .mobile-menu-btn span:nth-child(1) {
  transform: rotate(-45deg) translate(-6px, 6px);
}

.mobile-menu-toggle:checked + .mobile-menu-btn span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle:checked + .mobile-menu-btn span:nth-child(3) {
  transform: rotate(45deg) translate(-6px, -6px);
}

.mobile-menu-toggle:checked ~ .nav-menu {
  transform: translateX(0);
}

/* Hero Section */
.hero {
  background-color: #fff;
  background-image: url("/public/paw-pattern.png");
  background-repeat: repeat;
  background-size: 400px;
  background-position: center;
  padding: 1.5rem 0;
  height: 640px;
  position: relative;
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.8);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.hero-text {
  text-align: left;
}

.hero-text h1 {
  font-size: 3.2rem;
  margin-bottom: 0.8rem;
  color: #333;
  font-weight: 700;
  line-height: 1.1;
}

.hero-text p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #666;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.hero-cta {
  background-color: var(--accent-pink);
  color: #fff;
  border-color: var(--accent-pink);
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 8px;
}

.hero-cta:hover {
  background-color: var(--accent-pink-hover);
  border-color: var(--accent-pink-hover);
}

.hero-cta-secondary {
  background-color: transparent;
  color: var(--accent-pink);
  border-color: var(--accent-pink);
}

.hero-cta-secondary:hover {
  background-color: var(--accent-pink);
  color: #fff;
}

.hero-image {
  justify-self: center;
}

.hero-image img {
  width: 100%;
  max-width: 350px;
  height: auto;
  max-height: 500px;
  object-fit: contain;
}

/* About Section */
.about {
  padding: 5rem 0;
  background-color: var(--accent-pink);
  position: relative;
}

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

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #fff;
  line-height: 1.3;
  font-weight: 700;
}

.section-underline {
  display: block;
  width: 60px;
  height: 4px;
  background-color: var(--accent-pink);
  margin: 1rem auto 0;
  border-radius: 2px;
}

.about-text .section-underline {
  background-color: #fff;
  margin: 1rem auto 0 0;
}

.about-text p {
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.7;
}

.about-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Grooming Benefits Section */
.grooming-benefits {
  padding: 5rem 0;
  background-color: #fff;
  position: relative;
}

.grooming-benefits h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #333;
  font-weight: 700;
}

.benefits-content {
  max-width: 1000px;
  margin: 0 auto;
}

.benefits-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.benefits-intro p {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.benefit-item:nth-child(4) {
  grid-column: 2 / 1;
  grid-row: 2;
}

.benefit-item:nth-child(5) {
  grid-column: 2 / 4;
  grid-row: 2;
}

/* Create a centered layout for the bottom two cards */
.benefits-grid::after {
  content: "";
  grid-column: 1 / 2;
  grid-row: 2;
}

/* For mobile, reset the grid positioning */
@media (max-width: 768px) {
  .benefit-item:nth-child(4),
  .benefit-item:nth-child(5) {
    grid-column: auto;
    grid-row: auto;
  }

  .benefits-grid::after {
    display: none;
  }
}

.benefit-item {
  background-color: #fff;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-color: #333;
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.benefit-item h3 {
  font-size: 1.3rem;
  color: #333;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.benefits-conclusion {
  text-align: center;
  background-color: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid #e9ecef;
}

.benefits-conclusion p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.7;
  margin: 0;
  font-weight: 500;
}

/* Gallery Section */
.gallery {
  padding: 5rem 0;
  background-color: var(--accent-pink);
  position: relative;
}

.gallery h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #fff;
  font-weight: 700;
}

.gallery .section-underline {
  background-color: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.gallery-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: translateY(-4px);
}

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

.lightbox-content {
  position: relative;
  max-width: 40%;
  max-height: 70%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  transition: background-color 0.3s ease;
}

.lightbox-close:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

#lightbox-image {
  max-width: 70%;
  max-height: 70%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

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

/* Services Section */
.services {
  padding: 5rem 0;
  background-color: #fff;
  position: relative;
}

.services h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #333;
  font-weight: 700;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.service-card {
  background-color: #fff;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  border-color: #333;
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 60px;
  height: 60px;
  background-color: #333;
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #333;
  font-weight: 600;
}

.service-card p {
  color: #666;
  line-height: 1.6;
}

.service-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
  padding: 0.5rem 1rem;
  background-color: #f8f9fa;
  border-radius: 8px;
  display: inline-block;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.service-list li {
  color: #666;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  padding-left: 1.2rem;
  position: relative;
}

.service-list li:before {
  content: "•";
  color: #333;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* FAQ Section */
.faq {
  padding: 5rem 0;
  background-color: var(--accent-pink);
  position: relative;
}

.faq h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #fff;
  font-weight: 700;
}

.faq .section-underline {
  background-color: #fff;
}

.faq-content {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 2rem;
  align-items: start;
}

.faq-container {
  max-width: 750px;
}

.faq-image {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.faq-image img {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: 12px;
}

.faq-item {
  background-color: #fff;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
  padding: 1.5rem 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #f8f9fa;
}

.faq-question h3 {
  font-size: 1.2rem;
  color: #333;
  font-weight: 600;
  margin: 0;
  flex: 1;
}

.faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8f9fa;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
  background-color: #333;
  color: #fff;
  transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 1rem 2rem 1.5rem;
}

.faq-answer p {
  color: #666;
  line-height: 1.6;
  margin: 0;
  font-size: 1rem;
}

/* Contact Section */
.contact {
  padding: 5rem 0;
  background-color: #fff;
}

.contact h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #333;
  font-weight: 700;
}

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

.contact-info {
  background-color: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0f0f0;
}

.contact-info h3 {
  font-size: 1.6rem;
  margin-bottom: 2rem;
  color: #333;
  font-weight: 600;
}

.contact-item {
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
}

.contact-item strong {
  color: #333;
}

.contact-item a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #666;
}

.contact-item small {
  display: block;
  opacity: 0.8;
  margin-top: 0.5rem;
}

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

.social-link {
  width: 50px;
  height: 50px;
  background-color: #333;
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link svg {
  width: 24px;
  height: 24px;
}

.social-link:hover {
  background-color: #000;
  transform: translateY(-2px);
}

/* Map Container */
.map-container {
  background-color: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0f0f0;
}

.map-container h3 {
  font-size: 1.6rem;
  margin-bottom: 2rem;
  color: #333;
  font-weight: 600;
}

.map-wrapper {
  margin-bottom: 1rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.map-note {
  color: #666;
  font-size: 0.9rem;
  text-align: center;
  margin-top: 1rem;
}

/* Footer */
footer {
  background-color: #333;
  color: #fff;
  padding: 2.5rem 0 3rem 0;
  position: relative;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

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

.footer-section h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #fff;
  font-weight: 600;
  border-bottom: 2px solid #555;
  padding-bottom: 0.5rem;
}

/* Contact Section */
.footer-contact .contact-item {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #ccc;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.footer-contact .contact-item strong {
  color: #fff;
  font-weight: 600;
}

.footer-contact .contact-item span {
  color: #ccc;
  line-height: 1.4;
}

.footer-contact .contact-item a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-contact .contact-item a:hover {
  color: #00b0f0;
}

.footer-contact .contact-item small {
  opacity: 0.8;
  font-size: 0.8rem;
}

/* Hours Section */
.footer-hours .hours-item {
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
  line-height: 1.4;
  color: #ccc;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.footer-hours .hours-item strong {
  color: #fff;
  font-weight: 600;
}

.footer-hours .hours-item span {
  color: #ccc;
}

.footer-hours .hours-note {
  margin-top: 1rem;
  padding-top: 0.8rem;
  border-top: 1px solid #555;
}

.footer-hours .hours-note small {
  color: #aaa;
  font-size: 0.8rem;
  line-height: 1.3;
}

/* Social Section */
.footer-social .social-links {
  display: flex;
  gap: 1rem;
}

.footer-social .social-link {
  width: 45px;
  height: 45px;
  background-color: #444;
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social .social-link:hover {
  background-color: #555;
  transform: translateY(-2px);
}

.footer-social .social-link svg {
  width: 24px;
  height: 24px;
}

.footer-bottom {
  border-top: 1px solid #555;
  padding-top: 1.5rem;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: #ccc;
  font-size: 0.85rem;
  line-height: 1.4;
}

/* Vertibase Credit */
.vertibase-credit {
  position: absolute;
  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;
}

/* Mobile Responsiveness - Footer Updates */
@media (max-width: 768px) {
  footer {
    padding: 2rem 0 2.5rem 0;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }

  .footer-section {
    text-align: center;
  }

  .footer-social .social-links {
    flex-direction: row;
    justify-content: center;
    gap: 0.8rem;
  }

  .footer-social .social-link {
    flex-direction: row;
    padding: 0.5rem 0.8rem;
    min-width: auto;
    text-align: center;
  }

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

@media (max-width: 480px) {
  footer {
    padding: 1.5rem 0 2rem 0;
  }

  .footer-content {
    gap: 1.2rem;
  }

  .footer-section h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }

  .footer-social .social-links {
    gap: 0.6rem;
  }

  .footer-social .social-link {
    padding: 0.4rem 0.6rem;
    font-size: 0.8rem;
  }

  .footer-bottom {
    padding-top: 1.2rem;
  }

  .footer-bottom p {
    font-size: 0.8rem;
  }

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

@media (max-width: 320px) {
  .nav-menu {
    width: 100vw;
    right: 0;
  }
}

/* Mobile Responsiveness - Footer Updates */
@media (max-width: 768px) {
  footer {
    padding: 2rem 0 2.5rem 0;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }

  .footer-section {
    text-align: center;
  }

  .footer-social .social-links {
    flex-direction: row;
    justify-content: center;
    gap: 0.8rem;
  }

  .footer-social .social-link {
    flex-direction: row;
    padding: 0.5rem 0.8rem;
    min-width: auto;
    text-align: center;
  }
}

@media (max-width: 480px) {
  footer {
    padding: 1.5rem 0 2rem 0;
  }

  .footer-content {
    gap: 1.2rem;
  }

  .footer-section h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }

  .footer-social .social-links {
    gap: 0.6rem;
  }

  .footer-social .social-link {
    padding: 0.4rem 0.6rem;
    font-size: 0.8rem;
  }

  .footer-bottom {
    padding-top: 1.2rem;
  }

  .footer-bottom p {
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  .about-text .section-underline,
  .gallery .section-underline,
  .faq .section-underline {
    background-color: #fff;
    margin: 1rem auto 0;
  }
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 999;
  padding: 0;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.scroll-to-top:hover img {
  transform: scale(1.1);
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
}

.scroll-to-top:active {
  transform: scale(0.95);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  body {
    padding-top: 70px;
  }

  .header-content {
    position: relative;
  }

  .mobile-menu-btn {
    display: flex;
    z-index: 1001;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px;
    background-color: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  }

  .nav-link {
    font-size: 1.2rem;
    color: #333;
  }

  .hero {
    background-size: 300px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }

  .hero-text {
    text-align: center;
  }

  .hero-text h1 {
    font-size: 3.2rem;
  }

  .hero-text p {
    font-size: 1.1rem;
  }

  .hero-image {
    display: none;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .hero-buttons {
    justify-content: center;
    gap: 0.8rem;
  }

  .hero-cta,
  .hero-cta-secondary {
    padding: 14px 24px;
    font-size: 1rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .about-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
    display: block;
  }

  /* Fix benefits grid for mobile */
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 100%;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

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

  /* FAQ mobile layout */
  .faq-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .faq-container {
    max-width: 100%;
  }

  .faq-image {
    display: none;
  }

  .main-logo {
    height: 50px;
    max-width: 200px;
  }

  .map-wrapper iframe {
    height: 300px;
  }

  .lightbox-close {
    top: -50px;
    right: 10px;
    font-size: 1.5rem;
    width: 35px;
    height: 35px;
  }

  .lightbox-content {
    max-width: 95%;
    max-height: 85%;
  }

  .faq-question {
    padding: 1.2rem 1.5rem;
  }

  .faq-question h3 {
    font-size: 1.1rem;
  }

  .faq-item.active .faq-answer {
    padding: 1rem 1.5rem 1.2rem;
  }

  .scroll-to-top {
    bottom: 25px;
    right: 25px;
    width: 55px;
    height: 55px;
  }

  .paw-pad {
    width: 32px;
    height: 36px;
  }

  .toe {
    width: 11px;
    height: 14px;
  }

  .arrow-up {
    font-size: 18px;
  }

  .about-text h2,
  .grooming-benefits h2,
  .gallery h2,
  .services h2,
  .contact h2,
  .faq h2 {
    font-size: 2.2rem; /* Reduce from 2.5rem */
  }

  .footer-contact .social-links {
    gap: 0.8rem;
  }

  .footer-contact .social-link {
    width: 45px;
    height: 45px;
  }

  .map-container-full {
    padding: 1.5rem;
  }

  .map-container-full .map-wrapper iframe {
    height: 350px;
  }
}

@media (max-width: 480px) {
  body {
    padding-top: 65px;
  }

  .container {
    padding: 0 15px;
  }

  .hero {
    background-size: 250px;
    padding: 1.5rem 0;
    max-height: 400px;
  }

  .hero-text h1 {
    font-size: 2.8rem;
  }

  .hero {
    padding: 2.5rem 0;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .hero-cta,
  .hero-cta-secondary {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .about,
  .grooming-benefits,
  .gallery,
  .services,
  .contact {
    padding: 4rem 0;
  }

  .about-image img {
    max-width: 90%;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
    display: block;
  }

  .gallery-grid img {
    height: 250px;
  }

  .main-logo {
    height: 45px;
    max-width: 180px;
  }

  .map-wrapper iframe {
    height: 250px;
  }

  .lightbox-close {
    top: -45px;
    right: 5px;
    font-size: 1.2rem;
    width: 30px;
    height: 30px;
  }

  .lightbox-content {
    max-width: 80%;
    max-height: 80%;
  }

  .faq-question {
    padding: 1rem 1.2rem;
  }

  .faq-question h3 {
    font-size: 1rem;
  }

  .faq-toggle {
    width: 25px;
    height: 25px;
    font-size: 1.2rem;
  }

  .faq-item.active .faq-answer {
    padding: 1rem 1.2rem 1rem;
  }

  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }

  .paw-pad {
    width: 30px;
    height: 34px;
  }

  .toe {
    width: 10px;
    height: 13px;
  }

  .arrow-up {
    font-size: 16px;
  }

  .about-text h2,
  .grooming-benefits h2,
  .gallery h2,
  .services h2,
  .contact h2,
  .faq h2 {
    font-size: 2rem; /* Reduce section headers */
  }

  .footer-contact h3 {
    font-size: 1.5rem;
  }

  .footer-contact .contact-item {
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
  }

  .map-container-full {
    padding: 1rem;
  }

  .map-container-full .map-wrapper iframe {
    height: 300px;
  }
}

@media (max-width: 320px) {
  .nav-menu {
    width: 100vw;
    right: 0;
  }
}

/* Mobile Responsiveness - Footer Updates */
@media (max-width: 768px) {
  footer {
    padding: 2rem 0 2.5rem 0;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }

  .footer-section {
    text-align: center;
  }

  .footer-social .social-links {
    flex-direction: row;
    justify-content: center;
    gap: 0.8rem;
  }

  .footer-social .social-link {
    flex-direction: row;
    padding: 0.5rem 0.8rem;
    min-width: auto;
    text-align: center;
  }

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

@media (max-width: 480px) {
  footer {
    padding: 1.5rem 0 2rem 0;
  }

  .footer-content {
    gap: 1.2rem;
  }

  .footer-section h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }

  .footer-social .social-links {
    gap: 0.6rem;
  }

  .footer-social .social-link {
    padding: 0.4rem 0.6rem;
    font-size: 0.8rem;
  }

  .footer-bottom {
    padding-top: 1.2rem;
  }

  .footer-bottom p {
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  .about-text .section-underline,
  .gallery .section-underline,
  .faq .section-underline {
    background-color: #fff;
    margin: 1rem auto 0;
  }
}
