@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --forest: #1a3c34;
  --forest-light: #2a5c4a;
  --sage: #a8c5b8;
  --sage-light: #d4e8dc;
  --gold: #d4a853;
  --gold-light: #f0d48a;
  --cream: #faf5eb;
  --cream-dark: #f0e8d8;
  --white: #ffffff;
  --charcoal: #2d2d2d;
  --text: #3a3a3a;
  --text-light: #6b6b6b;
  --coral: #e87461;
  --shadow: 0 4px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; color: var(--forest); line-height: 1.3; }

a { text-decoration: none; color: inherit; }

img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* === NAVBAR === */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0;
  background: rgba(250, 245, 235, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(168, 197, 184, 0.3);
  transition: var(--transition);
}
.navbar.scrolled { padding: 10px 0; box-shadow: var(--shadow); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo svg { width: 40px; height: 40px; }
.nav-logo span { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--forest); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--text); transition: var(--transition); position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--gold); transition: var(--transition); }
.nav-links a:hover { color: var(--forest); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  padding: 10px 24px; background: var(--forest); color: var(--white);
  border-radius: 50px; font-size: 0.9rem; font-weight: 500;
  transition: var(--transition); border: none; cursor: pointer;
}
.nav-cta:hover { background: var(--forest-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(26,60,52,0.3); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--forest); transition: var(--transition); }

/* === HERO === */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--sage-light) 50%, var(--cream-dark) 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,168,83,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-content h1 { font-size: 3.5rem; margin-bottom: 20px; }
.hero-content h1 .highlight { color: var(--gold); position: relative; }
.hero-content p { font-size: 1.15rem; color: var(--text-light); margin-bottom: 32px; max-width: 500px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  padding: 14px 32px; background: var(--forest); color: var(--white);
  border-radius: 50px; font-size: 1rem; font-weight: 500;
  transition: var(--transition); border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: var(--forest-light); transform: translateY(-3px); box-shadow: 0 8px 25px rgba(26,60,52,0.3); }
.btn-secondary {
  padding: 14px 32px; background: transparent; color: var(--forest);
  border-radius: 50px; font-size: 1rem; font-weight: 500;
  border: 2px solid var(--forest); transition: var(--transition); cursor: pointer;
}
.btn-secondary:hover { background: var(--forest); color: var(--white); transform: translateY(-3px); }
.hero-image { position: relative; }
.hero-image img {
  border-radius: 24px; box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3; object-fit: cover; width: 100%;
}
.hero-badge {
  position: absolute; background: var(--white); padding: 14px 20px;
  border-radius: var(--radius-sm); box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 10px;
  animation: float 3s ease-in-out infinite;
}
.hero-badge.badge-1 { bottom: 30px; left: -30px; }
.hero-badge.badge-2 { top: 30px; right: -20px; }
.hero-badge .badge-icon { width: 40px; height: 40px; background: var(--sage-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.hero-badge .badge-text span { display: block; font-size: 0.75rem; color: var(--text-light); }
.hero-badge .badge-text strong { font-size: 0.95rem; color: var(--forest); }

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

/* === SECTIONS === */
.section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .label {
  display: inline-block; padding: 6px 16px;
  background: var(--sage-light); color: var(--forest-light);
  border-radius: 50px; font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px;
}
.section-header h2 { font-size: 2.5rem; margin-bottom: 16px; }
.section-header p { color: var(--text-light); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

/* === SERVICES === */
.services { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  padding: 36px 28px; border-radius: var(--radius);
  background: var(--cream); border: 1px solid rgba(168,197,184,0.2);
  transition: var(--transition); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: linear-gradient(90deg, var(--forest), var(--sage));
  transform: scaleX(0); transition: var(--transition); transform-origin: left;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, var(--forest), var(--forest-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 20px; color: var(--white);
}
.service-card h3 { font-size: 1.25rem; margin-bottom: 12px; }
.service-card p { color: var(--text-light); font-size: 0.95rem; }

/* === ABOUT === */
.about .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image { position: relative; }
.about-image img { border-radius: var(--radius); object-fit: cover; aspect-ratio: 4/5; width: 100%; }
.about-image .exp-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--gold); color: var(--white); padding: 24px;
  border-radius: var(--radius-sm); text-align: center;
  box-shadow: var(--shadow-lg);
}
.exp-badge .number { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; display: block; }
.exp-badge .text { font-size: 0.85rem; font-weight: 500; }
.about-content h2 { font-size: 2.5rem; margin-bottom: 20px; }
.about-content p { color: var(--text-light); margin-bottom: 16px; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.stat { text-align: center; padding: 20px; background: var(--sage-light); border-radius: var(--radius-sm); }
.stat .num { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--forest); font-weight: 700; display: block; }
.stat .lbl { font-size: 0.8rem; color: var(--text-light); margin-top: 4px; }

/* === TEAM === */
.team { background: var(--white); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.team-card { text-align: center; padding: 32px 24px; border-radius: var(--radius); background: var(--cream); transition: var(--transition); }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-card img {
  width: 160px; height: 160px; border-radius: 50%;
  object-fit: cover; margin: 0 auto 20px;
  border: 4px solid var(--sage-light);
  transition: var(--transition);
}
.team-card:hover img { border-color: var(--gold); }
.team-card h3 { font-size: 1.2rem; margin-bottom: 4px; }
.team-card .role { color: var(--gold); font-size: 0.85rem; font-weight: 600; margin-bottom: 12px; }
.team-card p { color: var(--text-light); font-size: 0.9rem; }

/* === TESTIMONIALS === */
.testimonials { background: linear-gradient(135deg, var(--forest) 0%, var(--forest-light) 100%); color: var(--white); }
.testimonials .section-header .label { background: rgba(255,255,255,0.15); color: var(--sage-light); }
.testimonials .section-header h2 { color: var(--white); }
.testimonials .section-header p { color: var(--sage); }
.testimonial-slider { position: relative; max-width: 800px; margin: 0 auto; overflow: hidden; }
.testimonial-track { display: flex; transition: transform 0.5s ease; }
.testimonial-card {
  min-width: 100%; padding: 40px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.testimonial-card .stars { color: var(--gold); font-size: 1.2rem; margin-bottom: 20px; }
.testimonial-card blockquote { font-size: 1.1rem; line-height: 1.8; color: rgba(255,255,255,0.9); margin-bottom: 24px; font-style: italic; }
.testimonial-card .author { font-weight: 600; }
.testimonial-card .pet { color: var(--sage); font-size: 0.9rem; }
.slider-dots { display: flex; gap: 8px; justify-content: center; margin-top: 28px; }
.slider-dots button {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.3); border: none;
  cursor: pointer; transition: var(--transition);
}
.slider-dots button.active { background: var(--gold); width: 28px; border-radius: 5px; }

/* === GALLERY === */
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-sm); overflow: hidden;
  position: relative; cursor: pointer;
  aspect-ratio: 1;
}
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,60,52,0.6), transparent);
  opacity: 0; transition: var(--transition);
}
.gallery-item:hover::after { opacity: 1; }

/* === CONTACT === */
.contact { background: var(--white); }
.contact .container { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info h2 { font-size: 2.2rem; margin-bottom: 16px; }
.contact-info > p { color: var(--text-light); margin-bottom: 32px; }
.info-items { display: flex; flex-direction: column; gap: 20px; }
.info-item { display: flex; gap: 16px; align-items: flex-start; }
.info-item .icon {
  width: 48px; height: 48px; min-width: 48px;
  background: var(--sage-light); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.info-item h4 { font-size: 0.95rem; margin-bottom: 2px; }
.info-item p { color: var(--text-light); font-size: 0.9rem; }
.contact-form {
  background: var(--cream); padding: 40px;
  border-radius: var(--radius); border: 1px solid rgba(168,197,184,0.2);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 500; margin-bottom: 6px; color: var(--forest); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1px solid var(--sage-light);
  border-radius: var(--radius-sm);
  background: var(--white); font-family: 'Inter', sans-serif;
  font-size: 0.95rem; transition: var(--transition);
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--forest); box-shadow: 0 0 0 3px rgba(26,60,52,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.contact-form .btn-primary { width: 100%; justify-content: center; }

/* === FOOTER === */
.footer {
  background: var(--forest); color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { margin-top: 16px; font-size: 0.9rem; line-height: 1.7; }
.footer h4 { color: var(--white); font-size: 1rem; margin-bottom: 16px; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { font-size: 0.9rem; transition: var(--transition); }
.footer ul a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0; text-align: center; font-size: 0.85rem;
}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 4px; }
.footer-logo svg { width: 32px; height: 32px; }
.footer-logo span { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--white); }

/* === ANIMATIONS === */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* === RESPONSIVE === */
@media (max-width: 968px) {
  .hero .container, .about .container, .contact .container { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 2.5rem; }
  .services-grid, .team-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-image { order: -1; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream); padding: 24px;
    box-shadow: var(--shadow); gap: 16px;
  }
  .hero-badge { display: none; }
}
@media (max-width: 600px) {
  .services-grid, .team-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:nth-child(1) { grid-column: span 2; }
  .form-row { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .section-header h2 { font-size: 2rem; }
}
