* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', sans-serif; color: #333; }
a { text-decoration: none; color: inherit; }
nav { background: #fff; padding: 15px 40px; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 2px 10px rgba(0,0,0,0.08); position: sticky; top: 0; z-index: 100; }
nav .logo { font-size: 24px; font-weight: 700; color: #2ecc71; }
nav ul { list-style: none; display: flex; gap: 30px; }
nav ul a { font-weight: 500; transition: color 0.3s; }
nav ul a:hover { color: #2ecc71; }
nav .nav-cta { background: #2ecc71; color: #fff; padding: 10px 25px; border-radius: 25px; font-weight: 600; transition: background 0.3s; }
nav .nav-cta:hover { background: #27ae60; }
.hero { background: linear-gradient(135deg, #f0fff4 0%, #e8f8f0 100%); padding: 80px 40px; display: flex; align-items: center; justify-content: space-between; max-width: 1200px; margin: 0 auto; gap: 60px; }
.hero-text h1 { font-size: 48px; line-height: 1.2; color: #1a1a1a; margin-bottom: 20px; }
.hero-text h1 span { color: #2ecc71; }
.hero-text p { font-size: 18px; color: #555; margin-bottom: 30px; max-width: 500px; line-height: 1.7; }
.hero-btns { display: flex; gap: 15px; }
.btn-primary { background: #2ecc71; color: #fff; padding: 14px 35px; border-radius: 30px; font-weight: 600; font-size: 16px; transition: all 0.3s; display: inline-block; }
.btn-primary:hover { background: #27ae60; transform: translateY(-2px); }
.btn-secondary { border: 2px solid #2ecc71; color: #2ecc71; padding: 14px 35px; border-radius: 30px; font-weight: 600; font-size: 16px; transition: all 0.3s; display: inline-block; }
.btn-secondary:hover { background: #2ecc71; color: #fff; }
section { padding: 80px 40px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-size: 38px; color: #1a1a1a; margin-bottom: 10px; }
.section-title p { color: #777; font-size: 17px; }
.bio { background: #fff; }
.bio-inner { display: flex; align-items: center; gap: 60px; max-width: 1200px; margin: 0 auto; }
.bio-text h2 { font-size: 36px; margin-bottom: 20px; color: #1a1a1a; }
.bio-text h2 span { color: #2ecc71; }
.bio-text p { font-size: 17px; line-height: 1.8; color: #555; margin-bottom: 20px; }
.bio-badges { display: flex; gap: 15px; flex-wrap: wrap; }
.badge { background: #f0fff4; border: 1px solid #2ecc71; color: #27ae60; padding: 8px 18px; border-radius: 20px; font-size: 14px; font-weight: 600; }
.services { background: #f9f9f9; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.service-card { background: #fff; border-radius: 15px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.08); transition: all 0.3s ease; padding: 0; text-align: left; }
.service-card:hover { transform: translateY(-12px); box-shadow: 0 25px 60px rgba(0,0,0,0.2); }
.service-img { width: 100%; height: 200px; background-size: cover; background-position: center; }
.service-body { display: flex; flex-direction: column; padding: 25px; }
.service-body h3 { font-size: 20px; margin-bottom: 10px; color: #1a1a1a; }
.service-body p { color: #777; font-size: 15px; line-height: 1.6; flex-grow: 1; }
.service-body .btn-primary { margin-top: 15px; align-self: flex-start; }
.service-price { display: inline-block; background: #2ecc71; color: #fff; padding: 5px 15px; border-radius: 20px; font-size: 14px; font-weight: 700; margin: 8px 0 10px; }
.pricing { background: #fff; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 1000px; margin: 0 auto; }
.pricing-grid-full { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 1200px; margin: 0 auto; }
.pricing-card { border: 2px solid #e8e8e8; border-radius: 20px; padding: 40px 30px; text-align: center; transition: all 0.3s ease; }
.pricing-card:hover { transform: translateY(-12px); box-shadow: 0 25px 60px rgba(46,204,113,0.25); border-color: #2ecc71; }
.pricing-card.popular { border-color: #2ecc71; transform: scale(1.05); box-shadow: 0 15px 50px rgba(46,204,113,0.2); }
.pricing-card.popular:hover { transform: scale(1.08) translateY(-5px); }
.pricing-card .badge-popular { background: #2ecc71; color: #fff; padding: 5px 15px; border-radius: 20px; font-size: 13px; font-weight: 600; margin-bottom: 15px; display: inline-block; }
.pricing-card h3 { font-size: 22px; margin-bottom: 10px; }
.pricing-card .price { font-size: 48px; font-weight: 700; color: #2ecc71; margin: 15px 0; }
.pricing-card .price span { font-size: 18px; color: #777; }
.pricing-card ul { list-style: none; margin: 20px 0 30px; text-align: left; }
.pricing-card ul li { padding: 8px 0; color: #555; font-size: 15px; border-bottom: 1px solid #f0f0f0; }
.pricing-card ul li:before { content: "ok "; color: #2ecc71; font-weight: 700; }
.gallery { background: #f9f9f9; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.gallery-item img { width: 100%; height: 220px; object-fit: cover; border-radius: 12px; transition: transform 0.3s; cursor: pointer; }
.gallery-item img:hover { transform: scale(1.05); }
.testimonials { background: #fff; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; }
.testimonial-card { background: #f9f9f9; padding: 30px; border-radius: 15px; border-left: 4px solid #2ecc71; transition: all 0.3s ease; }
.testimonial-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.12); }
.testimonial-card p { font-size: 16px; line-height: 1.7; color: #555; margin-bottom: 15px; font-style: italic; }
.testimonial-card .author { font-weight: 700; color: #1a1a1a; }
.stars { color: #f1c40f; font-size: 18px; margin-bottom: 10px; }
.feedback-section { background: #f9f9f9; }
.feedback-form { max-width: 600px; margin: 0 auto; background: #fff; padding: 40px; border-radius: 20px; box-shadow: 0 10px 40px rgba(0,0,0,0.08); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; color: #333; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 12px 15px; border: 2px solid #e8e8e8; border-radius: 10px; font-size: 15px; transition: border-color 0.3s; font-family: inherit; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: #2ecc71; }
.form-group textarea { height: 120px; resize: vertical; }
.btn-submit { background: #2ecc71; color: #fff; padding: 14px 40px; border: none; border-radius: 30px; font-size: 16px; font-weight: 600; cursor: pointer; width: 100%; transition: background 0.3s; }
.btn-submit:hover { background: #27ae60; }
.booking { background: #fff; }
.booking-form { max-width: 700px; margin: 0 auto; background: #f9f9f9; padding: 40px; border-radius: 20px; }
.contact { background: #1a1a1a; color: #fff; padding: 80px 40px; }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; max-width: 1200px; margin: 0 auto; }
.contact h2 { font-size: 32px; margin-bottom: 20px; }
.contact p { color: #aaa; line-height: 1.8; margin-bottom: 15px; }
.info-item { display: flex; align-items: center; gap: 12px; margin-bottom: 15px; color: #ddd; }
footer { background: #111; color: #777; text-align: center; padding: 25px; font-size: 14px; }
footer span { color: #2ecc71; }
.alert { padding: 15px 20px; border-radius: 10px; margin-bottom: 20px; font-weight: 500; }
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.pet-pricing { list-style: none; margin: 10px 0; padding: 0; }
.pet-pricing li { display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 1px solid #f0f0f0; font-size: 14px; color: #555; }
.pet-pricing li strong { color: #2ecc71; font-weight: 700; }
@media (max-width: 900px) { .pricing-grid-full { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
  .hero { flex-direction: column; padding: 40px 20px; }
  .hero-text h1 { font-size: 32px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-grid-full { grid-template-columns: 1fr; }
  .pricing-card.popular { transform: scale(1); }
  .contact-inner { grid-template-columns: 1fr; }
  nav ul { display: none; }
}
.gallery-slider-wrapper { position: relative; width: 100%; }
.gallery-slider { width: 100%; overflow: hidden; }
.gallery-slide { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-item { position: relative; border-radius: 12px; overflow: hidden; cursor: pointer; }
.gallery-item img { width: 100%; height: 280px; object-fit: cover; display: block; transition: transform 0.3s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(46,204,113,0.7); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px; opacity: 0; transition: opacity 0.3s; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: #2ecc71; color: #fff; border: none; border-radius: 50%; width: 50px; height: 50px; font-size: 22px; cursor: pointer; z-index: 10; transition: background 0.3s; box-shadow: 0 5px 20px rgba(0,0,0,0.2); }
.gallery-arrow:hover { background: #27ae60; }
.gallery-prev { left: -25px; }
.gallery-next { right: -25px; }
@media (max-width: 768px) { .gallery-slide { grid-template-columns: 1fr; } .gallery-prev { left: 5px; } .gallery-next { right: 5px; } }

.gallery-slider-wrapper { position: relative; width: 100%; padding: 0 60px; }
.gallery-slider { width: 100%; }
.gallery-slide { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(2, 280px); gap: 20px; }
.gallery-item { border-radius: 12px; overflow: hidden; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: #2ecc71; color: #fff; border: none; border-radius: 50%; width: 60px; height: 60px; font-size: 28px; cursor: pointer; z-index: 10; transition: background 0.3s; box-shadow: 0 5px 20px rgba(0,0,0,0.2); display: flex; align-items: center; justify-content: center; }
.gallery-arrow:hover { background: #27ae60; transform: translateY(-50%) scale(1.1); }
.gallery-prev { left: 0; }
.gallery-next { right: 0; }
@media (max-width: 768px) { .gallery-slide { grid-template-columns: 1fr; grid-template-rows: auto; } .gallery-slider-wrapper { padding: 0 50px; } }

#galleryGrid::-webkit-scrollbar { display: none; }
#reviewsGrid::-webkit-scrollbar { display: none; }
#reviewsGrid .testimonial-card { min-width: 300px; flex: 0 0 300px; }

#reviewsGrid .testimonial-card { min-width: 300px; flex: 0 0 300px; }
#galleryGrid::-webkit-scrollbar { display: none; }
#reviewsGrid::-webkit-scrollbar { display: none; }

#galleryGrid { display: grid !important; grid-template-columns: repeat(4, 1fr) !important; grid-template-rows: repeat(2, 220px) !important; gap: 15px !important; overflow: visible !important; }
#galleryGrid .gallery-item img { height: 220px !important; }
@media (max-width: 768px) { #galleryGrid { grid-template-columns: repeat(2, 1fr) !important; } }

#galleryGrid { display: grid !important; grid-template-columns: repeat(4, 1fr) !important; overflow: visible !important; scrollbar-width: auto !important; }
#galleryGrid .gallery-item img { height: 220px !important; }
@media (max-width: 900px) { #galleryGrid { grid-template-columns: repeat(2, 1fr) !important; } }
