:root {
  --bg: #f6fbff;
  --surface: #ffffff;
  --surface-soft: #ecf8f5;
  --text: #163042;
  --muted: #4f6675;
  --primary: #0ea5a5;
  --secondary: #2dbf73;
  --accent: #ff9f45;
  --accent-2: #ff6f47;
  --shadow: 0 14px 30px rgba(22, 48, 66, 0.14);
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Nunito", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f8fdff 0%, #f5fff9 100%);
  line-height: 1.65;
}

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

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 84px 0;
}

.section-soft {
  background: linear-gradient(135deg, #edf9ff, #eefff1);
}

.section-tag {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(14, 165, 165, 0.12);
  color: #0f766e;
  font-weight: 700;
  font-size: 0.82rem;
  margin-bottom: 12px;
}

.section-title,
h2 {
  font-family: "Baloo 2", cursive;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.15;
  margin-bottom: 14px;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(22, 48, 66, 0.08);
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  font-family: "Baloo 2", cursive;
  font-size: 1.38rem;
  font-weight: 700;
  color: #114b5f;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo small {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
}

.paw {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

nav {
  display: flex;
  gap: 16px;
  align-items: center;
}

nav a {
  font-weight: 700;
  color: #1e3b4a;
  transition: color 0.25s ease;
}

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

.nav-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  padding: 9px 14px;
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1.3rem;
  color: var(--text);
}

.hero {
  position: relative;
  min-height: 90vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  object-fit: cover;
}

.hero-overlay {
  background: radial-gradient(circle at 12% 20%, rgba(255, 180, 90, 0.42), transparent 44%),
    linear-gradient(130deg, rgba(2, 24, 38, 0.62), rgba(5, 35, 58, 0.4));
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 720px;
  text-align: left;
}

.badge {
  display: inline-block;
  margin-bottom: 14px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(5px);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
}

.hero h1 {
  font-family: "Baloo 2", cursive;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.04;
  margin-bottom: 14px;
}

.hero p {
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  max-width: 640px;
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
}

.btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow);
  filter: saturate(1.1);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.btn-secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.18);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.feature-list {
  list-style: none;
  margin-top: 12px;
}

.feature-list li {
  margin: 9px 0;
  font-weight: 700;
  color: #1f4d5f;
}

.feature-list i {
  color: var(--secondary);
  margin-right: 8px;
}

.about-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  min-height: 360px;
  object-fit: cover;
}

.grid {
  display: grid;
  gap: 18px;
}

.cards-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.tip-card,
.review-card,
.product-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 24px rgba(17, 75, 95, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.card,
.tip-card,
.review-card {
  padding: 20px;
}

.card:hover,
.tip-card:hover,
.review-card:hover,
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 34px rgba(17, 75, 95, 0.16);
}

.card i,
.tip-card i {
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.card h3,
.product-card h3,
.tip-card h3,
.review-card h3 {
  font-family: "Baloo 2", cursive;
  font-size: 1.25rem;
}

.card p,
.tip-card p,
.review-card p {
  color: var(--muted);
}

.product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card {
  overflow: hidden;
}

.product-card img {
  height: 220px;
  object-fit: cover;
}

.product-card div {
  padding: 16px;
}

.product-card p {
  font-weight: 800;
  color: #0f766e;
}

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

.gallery-grid img {
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
  box-shadow: 0 10px 18px rgba(18, 50, 64, 0.12);
}

.gallery-grid img:hover {
  transform: scale(1.05);
  filter: saturate(1.08);
}

.cta-block {
  background: linear-gradient(135deg, #fef2db, #dff7ff);
}

.cta-block .container {
  text-align: center;
  display: grid;
  gap: 16px;
  justify-items: center;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
}

.contact-form {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 10px 25px rgba(25, 74, 93, 0.12);
  display: grid;
  gap: 8px;
}

.contact-form label {
  font-weight: 700;
  color: #295063;
  margin-top: 5px;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid #c5dce6;
  border-radius: var(--radius-sm);
  padding: 11px 12px;
  font: inherit;
  background: #fcfeff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(14, 165, 165, 0.24);
  border-color: var(--primary);
}

#formStatus {
  font-weight: 700;
  color: #0f766e;
  min-height: 20px;
}

.contact-info {
  background: linear-gradient(160deg, #0ea5a5, #20b486);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 24px;
}

.contact-info h3 {
  font-family: "Baloo 2", cursive;
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.contact-info p {
  margin: 8px 0;
  display: flex;
  gap: 10px;
  align-items: center;
}

.map-placeholder {
  margin-top: 14px;
  min-height: 150px;
  border-radius: 14px;
  border: 1px dashed rgba(255, 255, 255, 0.7);
  display: grid;
  place-items: center;
  text-align: center;
  gap: 8px;
  padding: 12px;
}

.map-placeholder i {
  font-size: 1.5rem;
}

.footer {
  background: #123448;
  color: #d5e7ef;
  padding-top: 54px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 20px;
}

.footer h3,
.footer h4 {
  font-family: "Baloo 2", cursive;
  color: #fff;
}

.footer a {
  display: block;
  margin: 6px 0;
  color: #d5e7ef;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
  transition: transform 0.25s ease, background 0.25s ease;
}

.socials a:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.24);
}

.copyright {
  text-align: center;
  font-size: 0.92rem;
  padding: 20px 12px;
  margin-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .two-col,
  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .cards-4,
  .cards-3,
  .product-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  nav {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid rgba(22, 48, 66, 0.1);
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 4%;
    gap: 12px;
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.26s ease, opacity 0.26s ease;
  }

  nav.open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 70px 0;
  }

  .hero {
    min-height: 84vh;
  }

  .cards-4,
  .cards-3,
  .product-grid,
  .gallery-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .logo {
    font-size: 1.1rem;
  }
}
