:root {
  --primary-color: #08705e;
  --secondary-color: #1fc8db;
  --accent-color: #2ed8a7;
  --light-color: #f8f9fa;
  --dark-color: #222;
  --font-main: 'Poppins', Arial, sans-serif;
}

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

body {
  font-family: var(--font-main);
  color: var(--dark-color);
  line-height: 1.6;
  background: var(--light-color);
  cursor: url('assets/images/dog.png'), auto;
}

/* Header & Navigation */
header {
  background-color: var(--light-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  width: 50px;
  height: 50px;
}

.logo-text {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-left: 10px;
}

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

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark-color);
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--primary-color);
}

.hamburger {
  display: none;
  cursor: pointer;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 10rem 5% 8rem;
  display: flex;
  align-items: center;
  min-height: 100vh;
}

.hero-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-text {
  flex: 1;
  padding-right: 2rem;
}

.hero-image {
  flex: 1;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.btn {
  background: var(--primary-color);
  color: white;
  padding: 0.9rem 2.2rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  text-decoration: none;
  margin-right: 1rem;
}

.btn:hover {
  background: var(--secondary-color);
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  margin-left: 1rem;
}

.btn-outline:hover {
  background: var(--primary-color);
  color: white;
}

/* Features Section */
.features {
  padding: 6rem 5%;
  background: var(--light-color);
  padding-top: 100px;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.section-title p {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.feature-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.07);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 10px 30px rgba(0,0,0,0.13);
}

.feature-card h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin: 1rem 0;
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--accent-color);
}

/* App Preview & Investor Section */
.app-preview, .investor {
  padding: 6rem 5%;
  background-color: white;
}

.app-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.investor-cta {
  text-align: center;
  margin-top: 2rem;
}

.app-text {
  flex: 1;
  padding-right: 2rem;
}

.app-image {
  flex: 1;
  text-align: center;
}

.app-image img {
  max-width: 80%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.app-text h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.app-text p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.8;
}

.badge-container {
  display: flex;
  gap: 1rem;
}

.store-badge {
  height: 50px;
  opacity: 0.5;
  transition: opacity 0.3s;
}

.store-badge:hover {
  opacity: 1;
}

/* Team Section */
.team {
  padding: 6rem 5%;
  background-color: var(--light-color);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.team-member {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.team-member:hover {
  transform: translateY(-10px);
}

.member-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.member-info {
  padding: 1.5rem;
  text-align: center;
}

.member-info h3 {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.member-info h4 {
  font-size: 1rem;
  color: #555;
  margin-bottom: 0.5rem;
}

.social-links {
  margin-top: 1rem;
}

.social-links a {
  color: var(--primary-color);
  margin: 0 0.5rem;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.social-links a:hover {
  color: var(--secondary-color);
}

/* Contact Section */
.contact {
  padding: 6rem 5%;
  background: white;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info {
  flex: 1 1 300px;
}

.contact-info h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

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

.contact-details p {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.contact-details i {
  color: var(--primary-color);
  margin-right: 0.5rem;
}

.contact-form {
  flex: 1 1 350px;
  background: var(--light-color);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.07);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: var(--font-main);
  font-size: 1rem;
}

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

footer {
  background: var(--primary-color);
  color: white;
  padding: 3rem 5% 1.5rem;
  margin-top: 4rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
  align-items: flex-start;
}

.footer-logo img {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
}

.footer-section h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #fff;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.7rem;
}

.footer-links a {
  color: #e0f7fa;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #fff;
}

.copyright {
  text-align: center;
  margin-top: 2rem;
  font-size: 1rem;
  color: #e0f7fa;
}

/* Coming Soon Styles */
.coming-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  text-align: center;
  padding: 2rem;
  padding-top: 100px;
}

.coming-soon h2 {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.coming-soon p {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.notify-form {
  display: flex;
  max-width: 500px;
  width: 100%;
}

.notify-form input {
  flex: 1;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 50px 0 0 50px;
  font-family: var(--font-main);
  font-size: 1rem;
}

.notify-form button {
  background-color: var(--primary-color);
  color: white;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 0 50px 50px 0;
  font-family: var(--font-main);
  font-weight: 600;
  cursor: pointer;
}

/* FAQ Styles */
.faq {
  padding: 6rem 5%;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

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

.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--dark-color);
}

.faq-question i {
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.faq-answer {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background-color: #f9f9f9;
}

.faq-answer p {
  margin: 0;
  padding: 1.5rem;
}

.faq-item.active .faq-question {
  background-color: var(--primary-color);
  color: white;
}

.faq-item.active .faq-question i {
  transform: rotate(90deg);
  color: white;
}

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

/* Policy Pages */
.policy {
  padding: 6rem 5%;
  background: white;
}

.policy .section-title h1 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.policy .section-title p {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

.policy-container {
  max-width: 900px;
  margin: 0 auto;
}

.policy-section {
  margin-bottom: 2.5rem;
}

.policy-section h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.policy-section h3 {
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.policy-section p {
  margin-bottom: 1rem;
}

.policy-section ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.policy-section ul li {
  margin-bottom: 0.5rem;
}

/* Survey Section Styles */
.survey-section {
  background: #f6fafd;
  padding: 5rem 1rem 3rem;
  margin-top: 0;
  text-align: center;
  border-radius: 1.5rem 1.5rem 0 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  position: relative;
  z-index: 1;
  padding-top: 120px;
}
.survey-section .container {
  max-width: 700px;
  margin: 0 auto;
}
.survey-section h2 {
  color: var(--primary-color);
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
}
.survey-section p {
  color: #333;
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
}
.survey-sample-questions {
  text-align: left;
  display: inline-block;
  margin: 1.5rem auto 2rem;
  color: #333;
  font-size: 1.05rem;
  padding-left: 1.2rem;
}
.survey-sample-questions li {
  margin-bottom: 0.7rem;
  list-style: disc inside;
}
.btn-primary {
  background: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.9rem 2.2rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  margin: 1.2rem 0 0.5rem 0;
  display: inline-block;
  transition: background 0.3s;
}
.btn-primary:hover {
  background: var(--secondary-color);
  color: #fff;
}
.survey-note {
  color: #666;
  font-size: 0.98rem;
  margin-top: 1.2rem;
}
@media (max-width: 600px) {
  .survey-section {
    padding: 2.5rem 0.5rem 1.5rem;
    border-radius: 1rem 1rem 0 0;
    padding-top: 110px;
  }
  .survey-section h2 {
    font-size: 1.3rem;
  }
}

/* Enhanced MVP Countdown Timer Styles */
#mvp-countdown {
  background: linear-gradient(135deg, 
    rgba(255,255,255,0.15) 0%, 
    rgba(255,255,255,0.05) 50%, 
    rgba(255,255,255,0.1) 100%);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 20px;
  padding: 2rem 3rem;
  margin: 2.5rem 0;
  text-align: center;
  box-shadow: 
    0 15px 35px rgba(0,0,0,0.1),
    0 5px 15px rgba(0,0,0,0.05),
    inset 0 1px 0 rgba(255,255,255,0.2);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  letter-spacing: 2px;
  position: relative;
  overflow: hidden;
  animation: timerGlow 3s ease-in-out infinite alternate;
}

#mvp-countdown::before {
  content: '🚀';
  display: block;
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: rocketBounce 2s ease-in-out infinite;
}

#mvp-countdown::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255,255,255,0.2), 
    transparent);
  animation: shimmer 3s infinite;
}

/* Timer text styling */
#mvp-countdown {
  font-size: 1.8rem;
  color: white;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* Timer animations */
@keyframes timerGlow {
  0% {
    box-shadow: 
      0 15px 35px rgba(0,0,0,0.1),
      0 5px 15px rgba(0,0,0,0.05),
      inset 0 1px 0 rgba(255,255,255,0.2),
      0 0 20px rgba(255, 255, 255, 0.3);
  }
  100% {
    box-shadow: 
      0 15px 35px rgba(0,0,0,0.1),
      0 5px 15px rgba(0,0,0,0.05),
      inset 0 1px 0 rgba(255,255,255,0.2),
      0 0 30px rgba(255, 255, 255, 0.6);
  }
}

@keyframes rocketBounce {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(5deg);
  }
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* Hover effects */
#mvp-countdown:hover {
  transform: translateY(-5px) scale(1.02);
  transition: all 0.3s ease;
}

#mvp-countdown:hover::before {
  animation: rocketBounce 0.5s ease-in-out infinite;
}

/* Responsive timer */
@media screen and (max-width: 768px) {
  #mvp-countdown {
    font-size: 1.3rem !important;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    letter-spacing: 1px;
  }
  
  #mvp-countdown::before {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 480px) {
  #mvp-countdown {
    font-size: 1.1rem !important;
    padding: 1.2rem 1.5rem;
    margin: 1.5rem 0;
    letter-spacing: 0.5px;
  }
  
  #mvp-countdown::before {
    font-size: 2rem;
  }
}

/* White Neon Effects for Countdown Numbers */
#mvp-countdown .countdown-number {
  display: inline-block;
  color: white !important;
  font-weight: 900;
  text-shadow: 
    0 0 5px rgba(255, 255, 255, 0.8),
    0 0 10px rgba(255, 255, 255, 0.6),
    0 0 15px rgba(255, 255, 255, 0.4),
    0 0 20px rgba(255, 255, 255, 0.2);
  animation: neonPulse 1.5s ease-in-out infinite;
}

@keyframes neonPulse {
  0%, 100% {
    text-shadow: 
      0 0 5px rgba(255, 255, 255, 0.8),
      0 0 10px rgba(255, 255, 255, 0.6),
      0 0 15px rgba(255, 255, 255, 0.4),
      0 0 20px rgba(255, 255, 255, 0.2);
  }
  50% {
    text-shadow: 
      0 0 10px rgba(255, 255, 255, 1),
      0 0 20px rgba(255, 255, 255, 0.8),
      0 0 30px rgba(255, 255, 255, 0.6),
      0 0 40px rgba(255, 255, 255, 0.4);
  }
}

/* MVP Launching Title */
#mvp-countdown .mvp-title {
  font-size: 1.2rem;
  color: white;
  text-shadow: 
    0 0 10px rgba(255, 255, 255, 0.8),
    0 0 20px rgba(255, 255, 255, 0.4);
  margin-bottom: 1rem;
  font-weight: 600;
  letter-spacing: 3px;
}

/* Green Timer for Product and App Pages (White Background) */
body.product-page #mvp-countdown,
body.app-page #mvp-countdown {
  background: linear-gradient(135deg, 
    rgba(8, 112, 94, 0.1) 0%, 
    rgba(8, 112, 94, 0.05) 50%, 
    rgba(8, 112, 94, 0.1) 100%);
  border: 2px solid rgba(8, 112, 94, 0.3);
  box-shadow: 
    0 15px 35px rgba(8, 112, 94, 0.1),
    0 5px 15px rgba(8, 112, 94, 0.05),
    inset 0 1px 0 rgba(8, 112, 94, 0.2);
}

body.product-page #mvp-countdown,
body.app-page #mvp-countdown {
  color: var(--primary-color);
}

body.product-page #mvp-countdown .countdown-number,
body.app-page #mvp-countdown .countdown-number {
  color: var(--primary-color) !important;
  text-shadow: 
    0 0 5px rgba(8, 112, 94, 0.8),
    0 0 10px rgba(8, 112, 94, 0.6),
    0 0 15px rgba(8, 112, 94, 0.4),
    0 0 20px rgba(8, 112, 94, 0.2);
}

body.product-page #mvp-countdown .countdown-number,
body.app-page #mvp-countdown .countdown-number {
  animation: greenNeonPulse 1.5s ease-in-out infinite;
}

@keyframes greenNeonPulse {
  0%, 100% {
    text-shadow: 
      0 0 5px rgba(8, 112, 94, 0.8),
      0 0 10px rgba(8, 112, 94, 0.6),
      0 0 15px rgba(8, 112, 94, 0.4),
      0 0 20px rgba(8, 112, 94, 0.2);
  }
  50% {
    text-shadow: 
      0 0 10px rgba(8, 112, 94, 1),
      0 0 20px rgba(8, 112, 94, 0.8),
      0 0 30px rgba(8, 112, 94, 0.6),
      0 0 40px rgba(8, 112, 94, 0.4);
  }
}

body.product-page #mvp-countdown .mvp-title,
body.app-page #mvp-countdown .mvp-title {
  color: var(--primary-color);
  text-shadow: 
    0 0 10px rgba(8, 112, 94, 0.8),
    0 0 20px rgba(8, 112, 94, 0.4);
}

body.product-page #mvp-countdown,
body.app-page #mvp-countdown {
  animation: greenTimerGlow 3s ease-in-out infinite alternate;
}

@keyframes greenTimerGlow {
  0% {
    box-shadow: 
      0 15px 35px rgba(8, 112, 94, 0.1),
      0 5px 15px rgba(8, 112, 94, 0.05),
      inset 0 1px 0 rgba(8, 112, 94, 0.2),
      0 0 20px rgba(8, 112, 94, 0.3);
  }
  100% {
    box-shadow: 
      0 15px 35px rgba(8, 112, 94, 0.1),
      0 5px 15px rgba(8, 112, 94, 0.05),
      inset 0 1px 0 rgba(8, 112, 94, 0.2),
      0 0 30px rgba(8, 112, 94, 0.6);
  }
}

/* Mobile cursor fallback */
@media (max-width: 768px) {
  body {
    cursor: auto;
  }
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero-content, .app-content {
    flex-direction: column;
    text-align: center;
  }
  .hero-text, .app-text {
    padding-right: 0;
    margin-bottom: 2rem;
  }
  .badge-container {
    flex-direction: column;
    align-items: center;
  }
}

@media screen and (max-width: 768px) {
  .hamburger {
    display: block;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--light-color);
    flex-direction: column;
    width: 220px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border-radius: 0 0 10px 10px;
    z-index: 1001;
  }
  .nav-links.active {
    display: flex;
  }
  .nav-links li {
    margin: 1.2rem 0;
    text-align: right;
    margin-left: 0;
    padding-right: 2rem;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .btn {
    font-size: 1rem;
    padding: 0.7rem 1.5rem;
  }
  .btn-outline {
    font-size: 1rem;
    padding: 0.7rem 1.5rem;
  }
}

@media screen and (max-width: 480px) {
  .hero h1 {
    font-size: 1.3rem;
  }
  .section-title h2 {
    font-size: 1.3rem;
  }
  .app-text h2 {
    font-size: 1.3rem;
  }
} 