/* ============================================
   ADVANCED HOMEPAGE CUSTOMIZATION
   Modern Dog-Focused Design
   ============================================ */

/* Hero Banner - Premium Modern Feel */
.hero-banner {
  background: linear-gradient(135deg, #004E89 0%, #1B7695 50%, #004E89 100%);
  background-size: 200% 200%;
  animation: gradientShift 15s ease infinite;
  color: white;
  padding: 8rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0;
  box-sizing: border-box;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-banner::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.25), transparent 70%);
  border-radius: 50%;
  animation: float 20s infinite ease-in-out;
}

.hero-banner::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.2), transparent 70%);
  border-radius: 50%;
  animation: float 25s infinite ease-in-out reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(30px); }
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  animation: fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 107, 53, 0.95);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  background: linear-gradient(120deg, white, #FFB37A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 300;
  line-height: 1.6;
}

.hero-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.4s forwards;
  opacity: 0;
}

.hero-cta-buttons .button {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
  border-radius: 50px;
}

.hero-cta-buttons .button.primary {
  background: linear-gradient(135deg, #FF6B35, #E55A24);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.hero-cta-buttons .button.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5);
}

.hero-cta-buttons .button.secondary {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid white;
  color: white;
  backdrop-filter: blur(10px);
}

.hero-cta-buttons .button.secondary:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Trust Badges */
.trust-section {
  background: white;
  padding: 2rem;
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  border-top: 1px solid #f0f0f0;
  width: 100%;
  margin: 0;
  box-sizing: border-box;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #6C757D;
}

.trust-badge-icon {
  font-size: 1.5rem;
}

/* Features Showcase */
.features-showcase {
  background: linear-gradient(180deg, #f8f9fa 0%, white 100%);
  padding: 6rem 2rem;
  width: 100%;
  margin: 0;
  box-sizing: border-box;
}

.features-header {
  text-align: center;
  margin-bottom: 4rem;
  animation: fadeInUp 0.8s ease;
}

.features-header h2 {
  font-size: 2.8rem;
  color: #1A1A1A;
  margin-bottom: 1rem;
}

.features-header p {
  font-size: 1.15rem;
  color: #6C757D;
  max-width: 600px;
  margin: 0 auto;
}

.features-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

@media (max-width: 1000px) {
  .features-container {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
  }
}

@media (max-width: 600px) {
  .features-container {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
}

.feature-item {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  animation: slideUp 0.6s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-item:hover {
  transform: translateY(-15px);
  border-color: #FF6B35;
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
}

.feature-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
  transform: scale(1.15) rotate(10deg);
}

.feature-item h3 {
  color: #004E89;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.feature-item p {
  color: #6C757D;
  line-height: 1.7;
}

/* Product Showcase */
.product-showcase {
  background: white;
  padding: 6rem 2rem;
  width: 100%;
  margin: 0;
  box-sizing: border-box;
}

.product-showcase .section-title {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.product-showcase .section-subtitle {
  font-size: 1.1rem;
  color: #6C757D;
  margin-bottom: 4rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
}

@media (max-width: 1200px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1000px;
  }
}

@media (max-width: 900px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
  }
}

@media (max-width: 600px) {
  .product-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
}

.product-item {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}

.product-item:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.product-image-wrapper {
  position: relative;
  width: 100%;
  height: 280px;
  background: linear-gradient(135deg, #FFB37A, #52B788);
  overflow: hidden;
}

.product-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-item:hover .product-image-wrapper img {
  transform: scale(1.1);
}

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #FF6B35;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
}

.product-details {
  padding: 2rem;
}

.product-category {
  color: #FF6B35;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.product-title {
  color: #004E89;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.product-rating {
  color: #FFB703;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.product-description {
  color: #6C757D;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  min-height: 60px;
}

.product-price-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid #f0f0f0;
}

.product-price {
  font-size: 1.8rem;
  color: #FF6B35;
  font-weight: 800;
}

.product-btn {
  background: linear-gradient(135deg, #FF6B35, #E55A24);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.product-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Testimonials Carousel */
.testimonials-section {
  background: linear-gradient(135deg, #004E89, #1B7695);
  color: white;
  padding: 6rem 2rem;
  width: 100%;
  margin: 0;
  box-sizing: border-box;
}

.testimonials-section .section-title {
  color: white;
  font-size: 2.8rem;
  margin-bottom: 4rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

@media (max-width: 1000px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
  }
}

@media (max-width: 600px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
}

.testimonial {
  background: rgba(255, 255, 255, 0.12);
  padding: 2.5rem;
  border-radius: 15px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
}

.testimonial:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: #D4A574;
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.testimonial-stars {
  color: #FFB703;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-style: italic;
  color: rgba(255, 255, 255, 0.95);
}

.testimonial-author {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}

.testimonial-role {
  font-size: 0.9rem;
  color: #D4A574;
}

/* CTA Section */
.cta-final {
  background: linear-gradient(135deg, #FF6B35, #E55A24);
  color: white;
  padding: 5rem 2rem;
  text-align: center;
  margin: 5rem auto;
  border-radius: 25px;
  max-width: 1200px;
  box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
  display: block;
}

.cta-final h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-final p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
}

.cta-final .button {
  background: white;
  color: #FF6B35;
  font-weight: 700;
  padding: 1rem 3rem;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-final .button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
  background: #f5f5f5;
}

/* Mobile Optimization */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .features-header h2,
  .product-showcase .section-title,
  .cta-final h2 {
    font-size: 2rem;
  }

  .hero-cta-buttons {
    flex-direction: column;
  }

  .hero-cta-buttons .button {
    width: 100%;
  }

  .trust-section {
    gap: 1.5rem;
    flex-direction: column;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .cta-final {
    margin: 3rem 1rem;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  .features-showcase {
    background: linear-gradient(180deg, #1a1a1a 0%, #222 100%);
  }

  .feature-item {
    background: #2a2a2a;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  }

  .product-showcase {
    background: #1a1a1a;
  }

  .product-item {
    background: #2a2a2a;
  }

  .product-details {
    background: #2a2a2a;
  }

  .product-description {
    color: #b0b0b0;
  }
}
