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

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  overflow-x: hidden;
}

/* Navigation */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 5% 0 15%; /* Shifted content right */
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.2); */
  transition: all 0.3s ease;
}

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

.nav-logo-item {
  margin-right: 3rem; /* More space after logo before links start */
  list-style: none;
}

.nav-right {
  position: absolute;
  right: 5%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.logo {
  width: 45px;
  height: 45px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #2dd4bf;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.logo-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.nav-links {
  flex: 1;
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links li:last-child {
  margin-left: auto;
}

.nav-links a {
  color: #1e293b;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a:hover {
  color: #0f172a;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #14b8a6;
  transition: width 0.3s ease;
}

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

.download-btn {
  background: linear-gradient(135deg, #fb923c 0%, #f97316 100%);
  color: white;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(251, 146, 60, 0.4);
  transition: all 0.3s ease;
}

.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(251, 146, 60, 0.5);
}

/* Mobile Menu Toggle */
.menu-toggle-checkbox {
  display: none;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1002; /* Above the menu overlay */
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background:
    url("../../images/img_hero_background_artwork.png") center center/cover
      no-repeat,
    linear-gradient(
      117deg,
      rgba(46, 168, 152, 1) 0%,
      rgba(253, 240, 237, 1) 100%
    );
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 5rem 5% 4rem;
}

/* Content Container */
.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 35% 65%;
  gap: 0;
  align-items: center;
}

/* Left Content */
.hero-content {
  z-index: 10;
}

.hero-logo-img {
  width: 50%;
  max-width: 50%;
  height: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 0;
}

.hero-logo {
  width: 120px;
  height: 120px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border: 5px solid rgba(255, 255, 255, 0.3);
}

.hero-logo-text {
  font-size: 2rem;
  font-weight: 700;
  color: #14b8a6;
  text-align: center;
  line-height: 1.2;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-description {
  margin-top: 10px;
  font-size: 1.1rem;
  color: #1e293b;
  line-height: 1.6;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.hero-subtext {
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.5;
  margin-bottom: 2.5rem;
}

.app-badges {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.badge-label {
  font-size: 0.85rem;
  color: #1e293b;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}

.store-badge {
  height: 50px;
  background: #0f172a;
  border-radius: 8px;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.store-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.store-icon {
  font-size: 1.5rem;
}

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

.store-text-small {
  font-size: 0.7rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.store-text-large {
  font-size: 1.1rem;
  color: white;
  font-weight: 600;
}

/* Right Content - Pet Images */
.hero-image {
  position: relative;
  z-index: 10;
}

.pets-container {
  position: relative;
  width: 130%;
  height: auto;
  margin-left: -15%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pets-container img {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 700px;
}

.pet-mockup {
  width: 140px;
  height: 140px;
  background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border: 4px solid white;
  position: absolute;
  transition: all 0.3s ease;
}

.pet-mockup:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.pet-dog-1 {
  bottom: 0;
  left: 15%;
}

.pet-rabbit {
  bottom: 80px;
  left: 0;
  width: 120px;
  height: 120px;
  font-size: 3.5rem;
}

.pet-cat {
  bottom: 60px;
  left: 35%;
  width: 130px;
  height: 130px;
}

.pet-dog-2 {
  bottom: 20px;
  right: 10%;
  width: 150px;
  height: 150px;
  font-size: 4.5rem;
}

/* Responsive Design (Tablet) */
@media (max-width: 1024px) {
  .hero-container {
    gap: 2rem;
  }

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

  .pets-container {
    height: auto;
    margin-left: 0;
    width: 90%; /* Reduced from 100% */
    margin: 0 auto; /* Center it */
  }

  .hero-logo-img {
    width: 50%;
    max-width: 200px; /* Reduced from 400px */
    margin-bottom: 2rem;
  }

  .pet-mockup {
    width: 120px;
    height: 120px;
    font-size: 3.5rem;
  }

  .pet-dog-2 {
    width: 130px;
    height: 130px;
    font-size: 4rem;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 1.5rem 4% 1rem; /* Reset the 15% left shift on mobile */
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 80%;
    max-width: 300px;
    background: rgba(46, 168, 152, 1);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    visibility: hidden;
  }

  .nav-links li:last-child {
    margin-left: 0; /* Reset desktop pull on mobile */
  }

  .nav-logo-item {
    display: none;
  }

  .nav-right {
    position: absolute;
    right: 4%;
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 1002;
  }

  .nav-links .download-btn {
    display: inline-flex;
    width: auto;
    justify-content: center;
    margin-top: 1rem;
    background: linear-gradient(135deg, #fb923c 0%, #f97316 100%);
    color: white;
    padding: 0.75rem 2rem;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .menu-toggle-checkbox:checked ~ .nav-links {
    right: 0;
    visibility: visible;
  }

  /* Hamburger Animation on Checked */
  .menu-toggle-checkbox:checked ~ .mobile-menu-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

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

  .menu-toggle-checkbox:checked ~ .mobile-menu-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  .hero-section {
    padding: 4rem 4% 3rem;
  }

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

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

  .hero-logo {
    margin: 0 auto 2rem;
  }

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

  .hero-description {
    font-size: 1rem;
  }

  .app-badges {
    justify-content: center;
  }

  .pets-container {
    height: auto;
    width: 100%;
    margin-left: 0;
  }

  .pet-mockup {
    width: 100px;
    height: 100px;
    font-size: 3rem;
  }

  .pet-rabbit {
    width: 90px;
    height: 90px;
    font-size: 2.5rem;
  }

  .pet-cat {
    width: 95px;
    height: 95px;
  }

  .pet-dog-2 {
    width: 110px;
    height: 110px;
    font-size: 3.5rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 3rem 4% 2rem;
  }

  .hero-logo {
    width: 90px;
    height: 90px;
  }

  .hero-logo-text {
    font-size: 0.85rem;
    line-height: 1.1;
  }

  .hero-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .hero-description {
    font-size: 0.9rem;
  }

  .hero-subtext {
    font-size: 0.85rem;
    margin-bottom: 2rem;
  }

  .badge-label {
    width: 100%;
    text-align: center;
    margin-bottom: 0.75rem;
  }

  .app-badges {
    flex-direction: column;
    width: 100%;
  }

  .store-badge {
    height: 45px;
    padding: 0 1rem;
    width: 100%;
    max-width: 280px;
  }

  .store-icon {
    font-size: 1.25rem;
  }

  .store-text-large {
    font-size: 0.95rem;
  }

  .pets-container {
    height: 250px;
  }

  .pet-mockup {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }

  .pet-rabbit {
    width: 60px;
    height: 60px;
    font-size: 1.75rem;
    bottom: 60px;
    left: 5%;
  }

  .pet-cat {
    width: 65px;
    height: 65px;
    font-size: 2rem;
    bottom: 50px;
    left: 30%;
  }

  .pet-dog-1 {
    width: 70px;
    height: 70px;
    font-size: 2.25rem;
    bottom: 0;
    left: 10%;
  }

  .pet-dog-2 {
    width: 75px;
    height: 75px;
    font-size: 2.5rem;
    bottom: 10px;
    right: 5%;
  }
}

/* About Us Section */
.about-section {
  padding: 10rem 5%;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.about-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-images {
  position: relative;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mockup-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 100%;
}

.mockup-phone {
  position: absolute;
  width: 280px;
  height: 580px;
  background: #fff;
  border-radius: 40px;
  border: 12px solid #0f172a;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  transition: all 0.5s ease;
}

.mockup-inner {
  width: 100%;
  height: 100%;
  background: #fdf0ed;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.mockup-1 {
  z-index: 2;
  top: 0;
  left: 20%;
}

.mockup-2 {
  z-index: 1;
  top: 50px;
  left: 0;
  opacity: 0.7;
  transform: scale(0.9);
}

.mockup-placeholder {
  font-size: 1.2rem;
  font-weight: 600;
  color: #14b8a6;
  text-align: center;
}

.about-content {
  max-width: 600px;
}

.section-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2.5rem;
  position: relative;
}

.about-text p {
  text-align: justify;
  font-size: 1.15rem;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.char-count {
  font-size: 0.9rem;
  color: #94a3b8;
  font-style: italic;
}

/* Responsive About Section */
@media (max-width: 1024px) {
  .pets-container {
    width: 140%;
    height: 400px;
    margin-left: -43px;
  }
  .about-container {
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: center;
  }

  .about-content {
    margin: 0 auto;
  }

  .about-images {
    height: 500px;
    order: 2;
  }

  .mockup-phone {
    width: 240px;
    height: 500px;
  }

  .mockup-1 {
    left: 25%;
  }
}
@media (max-width: 768px) {
  .about-container {
    flex-direction: column; /* stack vertically */
    text-align: center; /* center text */
    gap: 20px;
    height: 1520px;
  }

  .about-content {
    text-align: center;
  }

  .about-section {
    padding: 40px 15px;
    height: auto; /* remove fixed height */
  }
}
@media (max-width: 480px) {
  .about-text p {
    text-align: justify;
    font-size: 1.15rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1.5rem;
  }

  .about-section {
    padding: 5rem 5%;
  }

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

  .about-images {
    height: 400px;
  }

  .mockup-phone {
    width: 180px;
    height: 380px;
  }

  .mockup-1 {
    left: 30%;
  }

  .mockup-2 {
    top: 30px;
  }
}

/* Features Section */
.features-section {
  padding: 10rem 5%;
  background-image: url("/images/img_features_background_artwork.png");
  position: relative;
  overflow: hidden;
}

.text-center {
  text-align: center;
  width: 100%;
  margin-bottom: 4rem;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.timeline {
  position: relative;
  padding: 2rem 0;
}

/* Vertical line - hidden on mobile */
.timeline::before {
  content: "";
  position: absolute;
  top: 40px; /* Aligns with the first dot */
  bottom: 40px; /* Aligns with the last dot */
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: #0f2a11;
}

.feature-item {
  position: relative;
  width: 100%;
  margin-bottom: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-item:last-child {
  margin-bottom: 0;
}

.feature-dot-outer {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: white;
  border: 3px solid #14b8a6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.feature-dot-inner {
  width: 20px;
  height: 20px;
  background: #14b8a6;
  border-radius: 50%;
}

.feature-content {
  width: 45%;
  padding: 0 2rem;
}

.item-right .feature-content {
  margin-left: 55%;
  text-align: left;
}

.item-left .feature-content {
  margin-right: 55%;
  text-align: right;
}

.feature-content h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.feature-content p {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.6;
}

/* Decorative Paws for Features */
.paw-bg {
  position: absolute;
  opacity: 0.05;
  font-size: 8rem;
  pointer-events: none;
}

.p-1 {
  top: 5%;
  left: 2%;
  transform: rotate(-15deg);
}
.p-2 {
  top: 30%;
  right: 5%;
  font-size: 6rem;
  transform: rotate(20deg);
}
.p-3 {
  bottom: 10%;
  left: 10%;
  font-size: 7rem;
  transform: rotate(10deg);
}
.p-4 {
  top: 60%;
  left: 35%;
  font-size: 5rem;
  transform: rotate(-25deg);
  opacity: 0.03;
}

/* Responsive Features */
@media (max-width: 991px) {
  .pets-container {
    width: 100%;
    height: 200px;
    margin-left: -43px;
  }
  .timeline::before {
    left: 40px;
  }

  .feature-dot-outer {
    left: 40px;
  }

  .feature-content {
    width: 80%;
    margin-left: 80px !important;
    margin-right: 0 !important;
    text-align: left !important;
  }
}

@media (max-width: 600px) {
  .features-section {
    padding: 5rem 5%;
  }

  /* Hide the line on mobile as requested */
  .timeline::before {
    display: none;
  }

  .feature-dot-outer {
    position: relative;
    left: auto;
    transform: none;
    margin-bottom: 1.5rem;
  }

  .feature-item {
    flex-direction: column;
    text-align: center;
    margin-bottom: 4rem;
  }

  .feature-content {
    width: 100%;
    margin-left: 0 !important;
    padding: 0;
    text-align: center !important;
  }
}

/* Screens Section */
.screens-section {
  padding: 8rem 0;
  background-size: cover;
  background-image: url("/images/img_screens_background_artwork.png");
  position: relative;
  overflow: hidden;
}

.screens-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 2rem 0;
}

.screens-slider {
  padding: 3rem 0 5rem;
}

.screens-slider .swiper-slide {
  width: auto;
  opacity: 0.15;
  transition: all 0.5s ease;
  display: flex;
  justify-content: center;
  transform: scale(0.85);
}

.screens-slider .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
  z-index: 10;
}

@media (max-width: 640px) {
  .pets-container {
    width: 100%;
    height: 200px;
    margin-left: -43px;
  }
  .screens-slider .swiper-slide {
    width: 100%;
  }

  .screens-slider .phone-mockup {
    width: 250px;
    height: 520px;
  }
}

.screens-slider .phone-mockup {
  width: 280px;
  height: 580px;
  background: #fff;
  border-radius: 40px;
  border: 10px solid #0f172a;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin: 0 auto;
}

.screens-slider .phone-inner {
  width: 100%;
  height: 100%;
  background: #fdf0ed;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.mockup-label {
  font-size: 1.2rem;
  font-weight: 600;
  color: #14b8a6;
  text-align: center;
}

/* Custom Swiper Controls */
.screens-slider .swiper-button-next,
.screens-slider .swiper-button-prev {
  color: #0f172a;
  background: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  top: 50%;
}

.screens-slider .swiper-button-next::after,
.screens-slider .swiper-button-prev::after {
  font-size: 1.2rem;
  font-weight: bold;
}

.screens-slider .swiper-pagination {
  bottom: 1rem !important;
}

.screens-slider .swiper-pagination-bullet-active {
  background: #14b8a6;
  width: 20px;
  border-radius: 5px;
}

/* Decorative Paws for Screens */
.s-1 {
  top: 10%;
  left: 5%;
  transform: rotate(-10deg);
  opacity: 0.05;
  font-size: 10rem;
}
.s-2 {
  bottom: 15%;
  right: 7%;
  transform: rotate(15deg);
  opacity: 0.05;
  font-size: 8rem;
}

/* Contact Us Section */
.contact-section {
  padding: 10rem 5%;
  padding-bottom: 12rem;
  height: 100%;
  background: url("../../images/img_contact_background_artwork.png")
    no-repeat center bottom;
  background-size: 100% auto;
  background-color: #f0fdfa;
  overflow: hidden;
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
}

.contact-section .section-title {
  font-size: 3rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 3rem;
}

.contact-form-wrapper {
  background: #ffffff;
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(31, 180, 163, 0.1);
  border: 2px solid rgba(31, 180, 163, 0.1);
}

.contact-form {
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  width: 100%;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  color: #0f172a;
  background: #f8fafc;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #14b8a6;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #94a3b8;
}

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

.submit-btn {
  margin-top: 15px;
  position: center;
  width: 30%;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3);
  text-transform: capitalize;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(20, 184, 166, 0.4);
  background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
}

.submit-btn:active {
  transform: translateY(0);
}

.contact-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid #e2e8f0;
}

.contact-email {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-email svg {
  flex-shrink: 0;
}

.contact-email span {
  font-size: 1rem;
  color: #475569;
  font-weight: 500;
}

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

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f0fdfa;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: #14b8a6;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
}

.social-icon:hover svg path,
.social-icon:hover svg circle {
  fill: white;
}

.social-icon svg {
  width: 20px;
  height: 20px;
}

/* Responsive Contact Section */
@media (max-width: 768px) {
  .contact-section {
    padding: 6rem 5%;
  }

  .contact-section .section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }

  .contact-form-wrapper {
    padding: 2rem 1.5rem;
  }

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

  .contact-info {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 5rem 4%;
  }

  .contact-section .section-title {
    font-size: 2rem;
  }

  .contact-form-wrapper {
    padding: 1.5rem 1rem;
    border-radius: 16px;
  }

  .form-group input,
  .form-group textarea {
    padding: 0.875rem 1rem;
    font-size: 0.95rem;
  }

  .submit-btn {
    margin-top: 15px;
    position: center;
    width: 50%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3);
    text-transform: capitalize;
  }

  .contact-email span {
    font-size: 0.9rem;
  }

  .social-icon {
    width: 36px;
    height: 36px;
  }

  .social-icon svg {
    width: 18px;
    height: 18px;
  }
  .pets-container {
    width: 100%;
    height: auto;
    margin-left: 0;
  }

  .hero-logo-img {
    width: 50%;
    margin-bottom: 2rem;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
  }
}
