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

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  background: #1a56db;
  color: #ffffff;
  scroll-behavior: smooth;
  line-height: 1.5;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========== NAVBAR ========== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #1e3a8a;
  padding: 12px 24px;
  border-radius: 60px;
  margin: 16px 0;
  flex-wrap: wrap;
  gap: 12px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 50%;
}

.logo h1 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.3px;
}

@media (min-width: 768px) {
  .logo h1 {
    font-size: 1.3rem;
  }
  .logo-img {
    width: 48px;
    height: 48px;
  }
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.85rem;
  transition: opacity 0.2s;
}

.nav-links a:hover {
  opacity: 0.8;
}

.btn-cta {
  background: #f59e0b;
  color: white;
  border: none;
  padding: 8px 18px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-cta:hover {
  background: #d97706;
}

/* ========== HERO SECTION ========== */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  background: #2563eb;
  border-radius: 32px;
  padding: 40px 24px;
  margin: 20px 0 40px;
  text-align: center;
}

@media (min-width: 992px) {
  .hero {
    flex-direction: row;
    text-align: left;
    padding: 50px;
  }
}

.hero-text {
  flex: 1;
}

.badge {
  background: #fbbf24;
  color: #1e3a8a;
  display: inline-block;
  padding: 4px 12px;
  border-radius: 30px;
  font-size: 0.7rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.hero-text h1 {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .hero-text h1 {
    font-size: 2.5rem;
  }
}

.hero-text h1 span {
  color: #fbbf24;
}

.hero-text p {
  font-size: 0.9rem;
  margin-bottom: 24px;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

@media (min-width: 992px) {
  .hero-buttons {
    justify-content: flex-start;
  }
}

.btn-primary {
  background: #f59e0b;
  color: white;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
}

.btn-primary:hover {
  background: #d97706;
}

.btn-outline {
  border: 2px solid white;
  background: transparent;
  padding: 10px 24px;
  border-radius: 50px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  transition: background 0.2s;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
}

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

.hero-image img {
  width: 90%;
  max-width: 320px;
  border-radius: 28px;
  box-shadow: 0 20px 35px rgba(0,0,0,0.2);
}

/* ========== SECTION STYLES ========== */
.section {
  margin: 50px 0;
}

.section-title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.2rem;
  }
}

/* ========== ABOUT SECTION ========== */
.about-content {
  background: #2563eb;
  border-radius: 32px;
  padding: 32px 24px;
  text-align: center;
}

.about-content p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .about-content p {
    font-size: 1rem;
  }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-box {
  background: #1e3a8a;
  border-radius: 20px;
  padding: 20px;
  text-align: center;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fbbf24;
}

@media (min-width: 768px) {
  .stat-number {
    font-size: 2rem;
  }
}

.stat-label {
  font-size: 0.75rem;
  margin-top: 6px;
  opacity: 0.9;
}

/* ========== SERVICES CARDS ========== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
}

.service-card {
  background: #2563eb;
  border-radius: 24px;
  padding: 24px 16px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}

.service-card:hover {
  transform: translateY(-4px);
  background: #3b82f6;
}

.service-card i {
  font-size: 2rem;
  margin-bottom: 12px;
  color: #fbbf24;
}

.service-card h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.service-card p {
  font-size: 0.7rem;
  opacity: 0.8;
}

/* ========== TESTIMONIALS ========== */
.testimonials-section {
  background: #2563eb;
  border-radius: 32px;
  padding: 40px 24px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 32px;
}

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

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: #1e3a8a;
  border-radius: 24px;
  padding: 20px;
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-name {
  font-weight: 700;
  color: #fbbf24;
}

.testimonial-location {
  font-size: 0.7rem;
  opacity: 0.7;
  margin-top: 4px;
}

/* ========== FAQ SECTION ========== */
.faq-section {
  background: #2563eb;
  border-radius: 32px;
  padding: 40px 24px;
}

.faq-grid {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.faq-item {
  background: #1e3a8a;
  border-radius: 20px;
  padding: 16px;
  cursor: pointer;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 0.9rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  font-size: 0.8rem;
  opacity: 0.8;
  line-height: 1.5;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  margin-top: 12px;
}

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

/* ========== GALLERY ========== */
.pet-showcase {
  background: #2563eb;
  border-radius: 32px;
  padding: 32px 20px;
}

.pet-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}

@media (min-width: 550px) {
  .pet-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 992px) {
  .pet-gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.pet-card {
  background: #1e3a8a;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s;
}

.pet-card:hover {
  transform: translateY(-4px);
}

.pet-card img {
  width: 100%;
  height: 130px;
  object-fit: cover;
}

@media (min-width: 768px) {
  .pet-card img {
    height: 160px;
  }
}

.pet-card h4 {
  font-size: 0.85rem;
  margin: 10px 0 4px;
  text-align: center;
}

.pet-card p {
  font-size: 0.65rem;
  text-align: center;
  padding-bottom: 12px;
  opacity: 0.8;
}

/* ========== VIDEO SECTION ========== */
.video-showcase {
  background: #2563eb;
  border-radius: 32px;
  padding: 32px 20px;
}

.video-container {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.video-container video {
  width: 100%;
  height: auto;
  display: block;
}

.video-caption {
  text-align: center;
  margin-top: 12px;
  font-size: 0.8rem;
  opacity: 0.8;
}

/* ========== INFO GRID ========== */
.info-grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 768px) {
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.info-box {
  background: #2563eb;
  border-radius: 28px;
  padding: 24px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.service-area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.area-tag {
  background: #1e3a8a;
  padding: 5px 12px;
  border-radius: 30px;
  font-size: 0.7rem;
}

iframe {
  border-radius: 20px;
  width: 100%;
  height: 180px;
  margin-top: 16px;
  border: none;
}

/* ========== CONTACT ========== */
.contact-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
}

.contact-chip {
  background: #2563eb;
  border-radius: 60px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-chip a {
  color: white;
  text-decoration: none;
}

.highlight-box {
  background: #1e3a8a;
  border-radius: 28px;
  padding: 20px;
  text-align: center;
  margin-top: 30px;
}

.highlight-box p {
  margin-bottom: 8px;
  font-size: 0.8rem;
}

/* ========== FOOTER ========== */
footer {
  background: #0f2b5e;
  padding: 32px 20px;
  text-align: center;
  border-radius: 28px 28px 0 0;
  margin-top: 50px;
}

footer p {
  margin-bottom: 8px;
  font-size: 0.8rem;
}

/* ========== WHATSAPP BUTTON ========== */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.2s;
  border: none;
  color: white;
}

.whatsapp-float:hover {
  transform: scale(1.02);
}

@media (min-width: 768px) {
  .whatsapp-float {
    bottom: 30px;
    right: 30px;
    padding: 14px 24px;
  }
}

/* ========== MODAL ========== */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  z-index: 2000;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #1e3a8a;
  border-radius: 28px;
  padding: 28px;
  max-width: 450px;
  width: 90%;
  text-align: center;
}

.modal-content h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: #fbbf24;
}

.modal-phone {
  font-size: 1.2rem;
  font-weight: bold;
  background: #f59e0b;
  display: inline-block;
  padding: 10px 24px;
  border-radius: 50px;
  margin: 15px 0;
  text-decoration: none;
  color: white;
}

.close-modal {
  background: rgba(255,255,255,0.2);
  padding: 6px 16px;
  border-radius: 30px;
  border: none;
  color: white;
  cursor: pointer;
}