/* Reset and base styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Nunito', 'Segoe UI', Arial, sans-serif;
  background: #FAFAFA;
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  background: #fff;
  border-bottom: 1px solid #eee;
  height: 80px;
  display: flex;
  align-items: center;
  z-index: 10;
  position: relative;
}

.main-nav {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5vw;
  height: 80px;
}

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

nav ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

nav ul li a {
  text-decoration: none;
  color: var(--text);
  font-weight: 900;
  font-size: 1.15rem;
  font-family: 'Nunito', sans-serif;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

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

.hero-content {
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  min-height: 600px;
  background: #FAFAFA;
  border-bottom: 2px solid #FF764C;
}

.hero-main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-bottom {
  flex: 1;
  max-width: 60%;
  display: flex;
  align-items: center;
  z-index: 2;
}

.hero-top {
  position: relative;
}

.group-mobile {
  position: relative;
  z-index: 1;
  margin-top: -100px;
}

.mockups {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 2.5vw;
  margin-bottom: 0.5rem;
  position: relative;
  min-height: 370px;
}

.mockup {
  width: 180px;
  height: 370px;
  object-fit: contain;
  border-radius: 36px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
  background: #fff;
  border: 2px solid #f3f3f3;
  z-index: 2;
}

.dotted-circle {
  position: absolute;
  width: 110px;
  height: 110px;
  z-index: 1;
  opacity: 0.7;
}

.dotted-circle.left {
  left: -60px;
  top: 40px;
}

.dotted-circle.right {
  right: -60px;
  top: 30px;
}

.dog-cat-hero {
  position: absolute;
  bottom: 25%;
  right: 25px;
}

.coming-soon-title {
  position: absolute;
  bottom: 70px;
  left: 32%;
}

.download-section {
  width: 100%;
}

.download-text {
  font-size: 18px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  margin-bottom: 1.1rem;
  text-align: left;
}

.petc-bold {
  font-weight: 900;
  font-size: 1.2em;
}

.store-badges {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

.store-badge {
  display: flex;
  align-items: center;
  background-color: #000000;
  border-radius: 12px;
  padding: 10px 20px;
  color: #fff;
  text-decoration: none;
  font-size: 12px;

}

.store-txt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 5px;

  font-family: 'Nunito', sans-serif;
}

span:nth-child(2) {
  font-size: 16px;
}

.store-badge img:hover {
  transform: translateY(-2px);
}

.why-us {
  max-width: 1200px;
  margin: 0 auto 2.5rem auto;
  padding: 0 2vw;
}

.why-title {
  text-align: center;
  font-size: 2rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  margin: 2.5rem 0 2.2rem 0;
  color: var(--text);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 2.5rem;
}

.card {
  position: relative;
  border-radius: 32px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  padding: 55px;
  min-height: 220px;
  display: flex;
  align-items: center;
  font-family: 'Nunito', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  overflow: hidden;
}

.card-blue {
  background: var(--card-blue);
  box-shadow: 0px 0px 7px 1px var(--card-orange);
}

.card-orange {
  background: var(--card-orange);
  color: #fff;
  box-shadow: 0px 0px 7px 1px var(--card-orange);
}

.card-white {
  background: var(--card-white);
  box-shadow: 0px 0px 7px 1px var(--card-blue);
}

.card-animal {
  width: 140px;
  height: 140px;
  object-fit: contain;
  z-index: 2;
}

.ellipse-bottom {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 0;
}

.ellipse-top {
  position: absolute;
  top: 0;
  right: 20%;
  z-index: 0;
}

.card h3 {
  font-size: 1.2rem;
  font-weight: 900;
  margin: 0 0 0.7rem 0;
  line-height: 1.2;
}

.card p {
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
  color: inherit;
}

.card-corner {
  position: absolute;
  width: 54px;
  height: 54px;
  border-radius: 0 0 54px 0;
  z-index: 1;
}

.card-corner-orange {
  background: #FF7A3D22;
  top: 0;
  right: 0;
}

.card-corner-blue {
  background: #B6E6EF22;
  bottom: 0;
  left: 0;
}

.footer-divider {
  border: none;
  border-top: 2px solid var(--divider);
  margin: 2.5rem 0 0 0;
  width: 100vw;
}

footer {
  background: var(--footer-bg);
  padding: 0 0 0 0;
  margin-top: 0;
  width: 100vw;
  flex-shrink: 0;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 2vw 1.2rem 2vw;
  border-top: none;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo img {
  height: 36px;
}

.footer-links {
  display: flex;
  font-size: 1rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  justify-content: space-between;
  align-items: center;
  flex: 1;
  border-top: 1px solid;
  padding-top: 20px;
}

.footer-links a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-social {
  display: flex;
  gap: 1.1rem;
  align-items: center;
}

.footer-social a img {
  width: 24px;
  height: 24px;
  filter: grayscale(1) brightness(0.7);
  transition: filter 0.2s;
}

.footer-social a img:hover {
  filter: none;
}

/* Contact Page Styles */
.contact-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  max-width: 1200px;
  margin: 3rem auto 2rem auto;
  padding: 0 2vw;
  min-height: 520px;
  position: relative;
}

.contact-visuals {
  flex: 1.1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.contact-img-wrap {
  position: relative;
  width: 100%;
  min-width: 320px;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ellipse-bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 420px;
  max-width: 90vw;
  z-index: 0;
  opacity: 0.18;
  pointer-events: none;
}

.contact-dog-img {
  width: 100%;
  border-radius: 32px;
  object-fit: cover;
  z-index: 2;
  position: relative;
}

.dotted-circle.contact-dot1 {
  position: absolute;
  top: -25px;
  left: -25px;
  z-index: 3;
  opacity: 0.7;
}

.dotted-circle.contact-dot2 {
  position: absolute;
  bottom: 10px;
  right: -30px;
  z-index: 3;
  opacity: 0.7;
}

.paw-print.contact-paw1 {
  position: absolute;
  top: 50px;
  right: 30px;
  opacity: 0.7;
  z-index: 4;
}

.paw-print.contact-paw2 {
  position: absolute;
  bottom: 30px;
  left: 30px;
  width: 44px;
  opacity: 0.7;
  z-index: 4;
}

.contact-form-wrap {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  min-width: 320px;
}

.contact-cat-illustration {
  width: 150px;
  z-index: 5;
}

.contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  font-family: 'Nunito', sans-serif;
}

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

.contact-form h2 {
  font-size: 2rem;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 0.2rem;
  font-family: 'Nunito', sans-serif;
}

.contact-desc {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 1.2rem;
}

.contact-form label {
  font-weight: 700;
  margin-top: 0.5rem;
  font-size: 1rem;
  color: var(--text);
}

.contact-form input,
.contact-form textarea {
  padding: 1rem;
  border-radius: 16px;
  border: 1.5px solid #e0e0e0;
  font-size: 1rem;
  margin-bottom: 0.2rem;
  font-family: 'Nunito', sans-serif;
  background: #FAFAFA;
  transition: border 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border: 1.5px solid var(--primary);
  outline: none;
}

.contact-submit {
  background: var(--accent);
  color: var(--text);
  border: none;
  border-radius: 16px;
  padding: 1rem 0;
  font-size: 1.1rem;
  font-weight: 900;
  margin-top: 1.2rem;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}

.contact-submit:hover {
  background: var(--primary);
  color: #fff;
}

/* Decorative paw prints */
.paw-prints {
  position: absolute;
  bottom: 16px;
  right: 24px;
  width: 60px;
  opacity: 0.18;
}

.orange-paw {
  margin-top: 10px;
}

/* Figma color palette */
:root {
  --primary: #FF7A3D;
  --accent: #B6E6EF;
  --card-blue: #E6F7FA;
  --card-orange: #FF7A3D;
  --card-white: #fff;
  --text: #222;
  --footer-bg: #B6E6EF;
  --divider: #E0E0E0;
}

/* Responsive Styles */
@media (max-width: 1100px) {
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-main {
    flex-direction: column;
    text-align: center;
  }

  .hero-left {
    align-items: center;
    max-width: 100%;
  }

  .hero-bottom {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

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

  .group-mobile {
    max-width: 100%;
    margin-top: -70px;
  }

  .cards-grid {
    gap: 1.2rem;
  }

  .footer-content {
    max-width: 98vw;
    padding: 1.2rem 1vw 1rem 1vw;
  }

  .contact-section {
    gap: 1.2rem;
  }

  .contact-img-wrap {
    min-width: 200px;
    min-height: 200px;
  }

  .dog-cat-hero {
    width: 150px;
  }

  .coming-soon-title {
    bottom: 30px;
    left: 24%;
  }
}

@media (max-width: 900px) {
  .mockup {
    width: 120px;
    height: 240px;
  }

  .dog-cat-hero {
    width: 120px;
  }

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

  .card {
    min-height: 180px;
    padding: 1.5rem 1.2rem 1.5rem 1.2rem;
  }

  .contact-section {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    min-height: 0;
  }

  .contact-img-wrap {
    min-width: 120px;
    min-height: 120px;
  }

  .ellipse-bg {
    width: 220px;
    top: 0;
  }

  .contact-dog-img {
    max-width: 300px;
  }

  .dotted-circle {

    width: 60px;
    height: 60px;
  }

  .paw-print {
    width: 60px;
    height: 60px;
  }

  .contact-form-wrap {
    align-items: center;
    min-width: 0;
    width: 100%;
  }

  .contact-form {
    max-width: 98vw;
    padding: 1.2rem 0.7rem 1.2rem 0.7rem;
  }

  .group-mobile {
    max-width: 100%;
    margin-top: -50px;
  }

  .coming-soon-title {
    bottom: 30px;
    left: 24%;
    width: 400px;
  }
}

@media (max-width: 700px) {
  .main-nav {
    gap: 0.7rem;
    padding: 0 0.5rem;
    height: auto;
  }

  .hero-content {
    min-height: 500px;
  }

  .mockups {
    gap: 1rem;
    min-height: 180px;
  }

  .mockup {
    width: 80px;
    height: 160px;
  }

  .dog-cat-hero {
    width: 100px;
  }

  .coming-soon-title {
    bottom: 10px;
    left: 20%;
    width: 250px;
  }

  .group-mobile {
    max-width: 100%;
    margin-top: -50px;
  }

  .store-badges {
    flex-direction: column;
    align-items: center;
  }

  .why-title {
    font-size: 1.2rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 0.7rem;
    padding: 0 0.5rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.7rem;
    align-items: center;
  }

  .contact-section {
    padding: 0 0.5rem;
    gap: 1rem;
  }

  .contact-img-wrap {
    min-width: 80px;
    min-height: 80px;
  }

  .contact-dog-img {
    max-width: 300px;
  }

  .dotted-circle {

    width: 60px;
    height: 60px;
  }

  .paw-print {
    width: 60px;
    height: 60px;
  }

  .contact-form {
    padding: 0.7rem 0.2rem 0.7rem 0.2rem;
  }
}

@media (max-width: 500px) {

  .logo {
    margin-top: 15px;
  }

  .mockups {
    flex-direction: column;
    gap: 0.5rem;
    min-height: 100px;
  }

  .mockup {
    width: 54px;
    height: 100px;
  }

  .dog-cat-hero {
    width: 60px;
    right: 20px;
  }

  .coming-soon-title {
    font-size: 1.1rem;
  }

  .why-title {
    font-size: 1rem;
  }

  .card {
    padding: 0.7rem 0.5rem 0.7rem 0.5rem;
    min-height: 120px;
  }

  .card-animal {
    width: 70px;
    height: 70px;
    top: 8px;
    right: 8px;
  }

  .footer-logo img {
    height: 50px;
    padding: 5px;
  }

  .contact-section {
    padding: 0 0.2rem;
    gap: 0.5rem;
  }

  .ellipse-bg {
    width: 120px;
    top: 0;
  }

  .contact-dog-img {
    max-width: 250px;
  }

  .dotted-circle {

    width: 40px;
    height: 40px;
  }

  .paw-print {
    width: 40px;
    height: 40px;
  }

  .paw-print.contact-paw1 {
    top: 20px;
    right: 15px
  }

  .contact-form {
    padding: 0.3rem 0.1rem 0.3rem 0.1rem;
    border-radius: 18px;
  }

  .group-mobile {
    max-width: 100%;
    margin-top: -20px;
  }

  .download-text {
    font-size: 15px;
  }
}

@media (max-width: 400px) {


  .dog-cat-hero {
    width: 50px;
    right: 10px;
  }

  .coming-soon-title {
    bottom: 5px;
    left: 20%;
    width: 210px;
  }
}

.privacy {
  font-family: 'Nunito', 'Segoe UI', Arial, sans-serif;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 2vw;
  color: var(--text);
}

.privacy h1 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.privacy h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 2rem 0 1rem 0;
  color: var(--text);
}

.privacy p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #444;
}

.privacy ul {
  list-style: none;
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.privacy ul li {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  color: #444;
  position: relative;
}

.privacy ul li::before {
  content: "•";
  color: var(--primary);
  font-weight: bold;
  position: absolute;
  left: -1.5rem;
}

@media (max-width: 700px) {
  .privacy {
    padding: 1.5rem 1vw;
  }

  .privacy h1 {
    font-size: 1.5rem;
  }

  .privacy h2 {
    font-size: 1.2rem;
  }

  .privacy p,
  .privacy ul li {
    font-size: 1rem;
  }
}

@media (max-width: 500px) {
  .privacy {
    padding: 1rem 0.5rem;
  }

  .privacy h1 {
    font-size: 1.2rem;
  }

  .privacy h2 {
    font-size: 1.1rem;
  }
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 1rem;
}

.language-btn {
  background: none;
  border: none;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.2s;
  position: relative;
}

.language-btn.active {
  color: var(--primary);
}

.language-btn:hover {
  color: var(--primary);
}

.language-divider {
  color: var(--text);
  opacity: 0.5;
  font-weight: 400;
}

@media (max-width: 700px) {
  .language-switch {
    margin-left: 0.5rem;
  }

  .language-btn {
    font-size: 0.9rem;
    padding: 0.3rem;
  }
}

@media (max-width: 500px) {
  .language-switch {
    margin-left: 0.3rem;
  }

  .language-btn {
    font-size: 0.8rem;
    padding: 0.2rem;
  }
}

.terms {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem;
  font-family: 'Nunito', sans-serif;
}

.terms h1 {
  font-weight: 900;
  color: var(--primary) !important;
  margin-bottom: 2rem;
  text-align: center;
}

.terms h1,
.terms h2,
.terms h3,
.terms p,
.terms li {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.terms h1 {
  font-weight: 700;
  color: var(--primary-color);
}

.terms ul {
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}

.terms li {
  margin-bottom: 0.25rem;
}

.thank-you-container {
    max-width: 600px;
    margin: 100px auto;
    text-align: center;
    padding: 40px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.thank-you-container h1 {
    color: #333;
    margin-bottom: 20px;
    font-size: 2.5em;
}

.thank-you-container p {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.2em;
    line-height: 1.6;
}

.back-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.back-button:hover {
    background-color: #f97c5d;
}

html, body {
    height: 100%;
    margin: 0;
}

main {
    flex: 1 0 auto;
}