body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fffdf9;
  color: #333;
}

/* Container for max-width on large screens */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 30px;
  background-color: #fdfdfd;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 32px; /* adjust text size here */
  font-weight: bold;
  color: #045d56;
  gap: 12px;
}

.logo img {
  height: 50px; /* Reduced height to save more space */
  width: auto;
}

.nav-links ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2vw 8vw;
  gap: clamp(16px, 4vw, 48px);
  flex-wrap: wrap;
}

.hero-section .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 4vw, 48px);
  flex-wrap: wrap;
  width: 100%;
}

.text {
  flex: 1;
  min-width: 300px;
  text-align: center;
  margin: 0 auto; 
}

.text h1 {
  font-size: clamp(28px, 6vw, 48px);
  color: #045d56;
  text-align: center;
}

.desktop-title {
  display: block;
}

.mobile-title {
  display: none;
}

.text p {
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 400;
  line-height: 1.6;
  margin-top: clamp(8px, 2vw, 16px);
  max-width: clamp(500px, 60vw, 900px);
  color: #444;
  text-align: center;
}

.buttons {
  margin-top: 30px;
}

.btn {
  padding: 0 clamp(16px, 4vw, 32px);
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 700;
  text-decoration: none;
  margin-right: clamp(8px, 2vw, 20px);
  border-radius: clamp(4px, 1vw, 10px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  height: 60px;
  box-sizing: border-box;
  letter-spacing: 0.5px;
}

.btn.green {
  background-color: #045d56;
  color: #fff;
}

.btn.outline {
  border: 2px solid #045d56;
  color: #045d56;
}

.puppy-container {
  position: relative; /* anchor for the coin */
  display: inline-block;
  width: clamp(135px, 27vw, 280px); /* reduced width to make image smaller */
}

.puppy-container img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.coin-animation {
  position: absolute;
  top: clamp(54%, 5vw, 74%); /* 🧪 tweak as needed */
  left: clamp(32%, 5vw, 53%); /* 🧪 tweak as needed */
  width: clamp(120px, 4vw, 320px); /* responsive coin size */
  height: auto;
  z-index: 10;
  pointer-events: none;
}


.features {
  display: flex;
  gap: clamp(20px, 5vw, 60px);
  padding: clamp(30px, 6vw, 80px) clamp(20px, 5vw, 60px);
  background-color: #f3fefb;
  flex-wrap: wrap;
}

.features .container {
  display: flex;
  gap: clamp(20px, 5vw, 60px);
  flex-wrap: wrap;
  width: 100%;
}

.feature {
  flex: 1 1 clamp(250px, 45%, 400px); /* adaptive width */;
  min-width: 250px;
}

.feature h3 {
  font-size: clamp(18px, 3vw, 24px);
  color: #045d56;
}
.feature p {
  font-size: clamp(14px, 2vw, 18px);
  line-height: 1.6;
}
.product-features {
  padding: 6vw 8vw;
  background-color: #fefdf7;
  overflow: hidden;
}

.product-features .container {
  width: 100%;
}

.features-scroll-container {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 0;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  scroll-snap-type: x mandatory;
}

.features-scroll-container::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.feature-card {
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 64px);
  flex: 0 0 100%;
  width: 100%;
  padding: 20px;
  scroll-snap-align: start;
  box-sizing: border-box;
  position: relative;
}

.feature-image {
  flex: 0 0 auto;
  width: clamp(135px, 27vw, 280px);
}

.feature-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.feature-content {
  flex: 1;
  min-width: 280px;
}

.feature-content h2 {
  font-size: clamp(28px, 6vw, 48px);
  color: #045d56;
  margin-bottom: 16px;
}

.feature-content h3 {
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 400;
  line-height: 1.6;
  color: #444;
  max-width: clamp(300px, 60vw, 700px);
}

.scroll-indicator {
  margin-top: 20px;
  text-align: center;
  opacity: 0.7;
}

.scroll-text {
  font-size: 14px;
  color: #666;
  font-style: italic;
}

.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  color: #045d56;
  border: none;
  border-radius: 0;
  width: 64px;
  height: 64px;
  font-size: 32px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.nav-arrow:hover {
  background: none;
  transform: translateY(-50%) scale(1.1);
  color: #033c3a;
}

.next-arrow {
  top: 20px;
  right: 20px;
}

.prev-arrow {
  top: 20px;
  right: 20px;
}


.reminder-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6vw 8vw;
  gap: clamp(16px, 4vw, 48px);
  flex-wrap: wrap;
  background-color: #fefdf7;
}

.reminder-section .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 4vw, 48px);
  flex-wrap: wrap;
  width: 100%;
}

.reminder-section .text {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.reminder-section .text h2 {
  font-size: clamp(28px, 6vw, 48px);
  color: #045d56;
  text-align: center;
}

.reminder-section .text h3 {
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 400;
  line-height: 1.6;
  margin-top: clamp(8px, 2vw, 16px);
  max-width: clamp(300px, 60vw, 700px);
  color: #444;
  text-align: center;
}


.phone-visual {
  flex: 1;
  min-width: 280px;
  display: flex;
  justify-content: center;
}

.phone-visual img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: cover;
}

.testimonials {
  background-color: #fefdf7;
  padding: 60px 40px;
  text-align: center;
}

.testimonials .container {
  width: 100%;
}

.testimonials h2 {
  font-size: 3rem;
  color: #257e6a;
  margin-bottom: 40px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background-color: #257e6a;
  color: white;
  padding: 20px;
  border-radius: 25px;
  position: relative;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 1.1rem;
}

.testimonial-card .icon {
  width: 24px;
  height: 24px;
  align-self: flex-end;
  margin-top: 10px;
}

.contact-section {
  padding: 60px 20px;
  background-color: #fdfaf5;
}

.contact-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.contact-text {
  flex: 1;
  text-align: center;
  font-size: 1.2rem;
}

.contact-text h2 {
  font-size: 2.5rem;
  color: #045d56;
  margin-bottom: 20px;
}

.contact-text a {
  color: #045d56;
  text-decoration: none;
  font-weight: bold;
}

.contact-image img {
  max-width: 280px;
  height: auto;
  object-fit: cover;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.modal-content {
  background-color: #ffffff;
  padding: 30px;
  width: 90%;
  max-width: 400px;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  position: relative;
  font-family: 'Segoe UI', sans-serif;
  margin: auto;
  box-sizing: border-box;
}

.modal-content h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #045d56;
  text-align: center;
}

.modal-content label {
  display: block;
  margin-bottom: 6px;
  margin-top: 16px;
  font-weight: 500;
  color: #333;
}

.modal-content input {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 8px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  box-sizing: border-box;
}

.modal-content button {
  background-color: #045d56;
  color: white;
  padding: 12px;
  margin-top: 16px;
  width: 100%;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.modal-content button:hover {
  background-color: #033c3a;
}

.close-button {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 26px;
  font-weight: bold;
  color: #666;
  cursor: pointer;
}

.success-message {
  text-align: center;
  padding: 40px 20px;
  color: #045d56;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  background-color: #f0f9f8;
  border-radius: 12px;
  margin-top: 20px;
  border: 2px solid #045d56;
}

.success-message.hidden {
  display: none;
}

/* Hamburger button styles */
.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
}

.site-footer {
  text-align: center;
  padding: 20px;
  background-color: #f3f3f3;
  font-size: 14px;
  color: #555;
}

.site-footer .footer-links a {
  color: #555;
  text-decoration: none;
  margin: 0 10px;
}

.site-footer .footer-links a:hover {
  text-decoration: underline;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 2rem;
}

.blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-thumbnail {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.blog-content {
  padding: 1rem;
}

.blog-content h2 {
  font-size: 1.2rem;
  color: #2c3e50;
  margin: 0.5rem 0;
}

.blog-content p {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 1rem;
}

.read-more {
  display: inline-block;
  color: #27ae60;
  font-weight: bold;
  text-decoration: none;
}


/* Mobile styles */
@media (max-width: 768px) {
  .coin-animation {
    top: 55%;
    left: 33%;
    width: 60px;
  }

  .navbar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 6px 20px;
  }

  .navbar .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .menu-toggle {
    display: block;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    color: #045d56;
    order: 2; /* Push hamburger to the right */
  }

  .logo {
    order: 1; /* Keep logo on the left */
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%; /* Below navbar */
    right: 0;  /* Align to the right */
    width: 80%; /* Not full screen */
    left: auto;
    background-color: #fdfdfd;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    z-index: 999;
    border-radius: 0 0 0 12px;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links ul {
    flex-direction: column;
    gap: 15px;
    padding: 20px 0;
  }

  .nav-links a {
    padding: 10px 20px;
  }

  /* Adjust arrow sizes for mobile */
  .nav-arrow {
    width: 48px;
    height: 48px;
    font-size: 24px;
    background: none;
    color: #045d56;
    border: none;
    border-radius: 0;
    font-weight: bold;
  }

  /* Mobile button height */
  .btn {
    height: 52px;
    font-size: clamp(32px, 4.4vw, 40px); /* 30% larger than original clamp(16px, 2.2vw, 20px) */
  }

  /* Mobile modal adjustments */
  .modal-content {
    width: 90%;
    max-width: 320px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    margin: 0 auto !important;
    box-shadow: 0 12px 24px rgba(0,0,0,0.2);
  }

  /* Ensure modal stays within viewport */
  .modal {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    padding: 0;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.6); /* backdrop */
  }

  .modal-content input,
  .modal-content button {
    width: 100%;
    box-sizing: border-box;
  }



  .nav-arrow:hover {
    background: none;
    transform: translateY(-50%) scale(1.05);
    color: #033c3a;
  }
}

.nav-links li {
    padding: 12px 20px;
    border-top: 1px solid #eee;
    width: 100%;
}

.nav-links a {
    display: block;
    width: 100%;
    text-align: left;
    font-weight: 500;
    color: #333;
    white-space: nowrap; /* 👈 prevents "Contact Us" from breaking into 2 lines */
}

@media (max-width: 768px) {
  .hero-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  .desktop-title {
    display: none;
  }

  .mobile-title {
    display: block;
    font-size: clamp(56px, 12vw, 96px); /* 50% larger than original clamp(28px, 6vw, 48px) */
  }

  .text p {
    display: none;
  }

  .puppy-and-coin {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
  }

  .puppy-image {
    max-width: 180px;
    height: auto;
  }

  .text {
    width: 90%;
  }

  .buttons {
    display: flex;
    justify-content: center;
  }
}

/* Extra mobile breakpoint for very small screens */
@media (max-width: 480px) {
  .logo {
    font-size: 24px;
  }

  .logo img {
    height: 40px;
  }

  .text h1 {
    font-size: 22px;
  }

  .text p {
    font-size: 16px;
  }

  .btn {
    font-size: 14px;
    padding: 10px 16px;
    margin-right: 8px;
  }

  .testimonial-card {
    font-size: 1rem;
    padding: 16px;
  }

  .blog-thumbnail {
    height: 150px;
  }

  .feature-card {
    flex-direction: column;
    text-align: center;
  }

  .feature-image {
    margin-bottom: 16px;
  }

  .nav-links {
    width: 90%;
  }

  .hero-section {
    padding: 16px;
  }

  .features {
    padding: 40px 20px;
  }

  .product-features {
    padding: 40px 20px;
  }

  .reminder-section {
    padding: 40px 20px;
  }

  .contact-section {
    padding: 40px 16px;
  }

  /* Even smaller arrows for very small screens */
  .nav-arrow {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}
