/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy: #1a2744;
  --navy-light: #253559;
  --cream: #f5f0e8;
  --cream-dark: #ede6d4;
  --orange: #d48a32;
  --gold: #d4a84b;
  --gold-light: rgba(212, 168, 75, 0.15);
  --text-dark: #1c2a3f;
  --text-muted: #5a6577;
  --border: #ddd5c8;
  --card-bg: #f0eae0;
  --white: #fff;
  --radius: 16px;
  --radius-sm: 12px;
  --radius-xs: 8px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

ul { list-style: none; }

/* ===== UTILITY ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  text-wrap: balance;
}

.section-desc {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-xs);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}
.btn-primary:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
}

.btn-secondary {
  background: var(--orange);
  color: var(--navy);
  border-color: var(--orange);
}
.btn-secondary:hover {
  filter: brightness(1.1);
}

.btn-outline-light {
  background: transparent;
  color: var(--cream-dark);
  border-color: rgba(237, 230, 212, 0.35);
}
.btn-outline-light:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: rgba(26, 39, 68, 0.3);
}
.btn-outline-dark:hover {
  border-color: var(--navy);
  background: rgba(26, 39, 68, 0.06);
}

.btn-full { width: 100%; justify-content: center; }

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--navy);
  color: var(--cream-dark);
  font-size: 0.8rem;
  padding: 8px 0;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar-instagram {
  color: var(--cream-dark);
  transition: color 0.3s;
}
.top-bar-instagram:hover { color: var(--gold); }

@media (max-width: 768px) {
  .top-bar { display: none; }
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  transition: box-shadow 0.3s ease;
}
.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cream-dark);
  letter-spacing: 0.05em;
  line-height: 1.1;
}

.logo-subtitle {
  font-size: 0.6rem;
  color: var(--gold);
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: rgba(237, 230, 212, 0.75);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: color 0.3s;
}
.nav-link:hover { color: var(--gold); }

.nav-cta { margin-left: 8px; padding: 10px 24px; }

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream-dark);
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 0;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
  }
  .nav-links.open {
    max-height: 400px;
    padding: 24px 0 32px;
    gap: 20px;
  }
  .nav-cta { margin-left: 0; margin-top: 8px; }
  .mobile-toggle { display: flex; }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 39, 68, 0.62);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  padding: 80px 20px;
}

.hero-tag {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  margin-bottom: 16px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800;
  color: var(--cream-dark);
  line-height: 1.1;
  margin-bottom: 24px;
  text-wrap: balance;
}

.hero-desc {
  color: rgba(237, 230, 212, 0.8);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto 40px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(237, 230, 212, 0.5);
  animation: bounceDown 2s infinite;
  z-index: 2;
  transition: color 0.3s;
}
.hero-scroll:hover { color: var(--gold); }

@keyframes bounceDown {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-8px); }
  60% { transform: translateX(-50%) translateY(-4px); }
}

/* ===== MARQUEE ===== */
.marquee {
  background: var(--orange);
  padding: 12px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 32px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--navy);
}

.marquee-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(26, 39, 68, 0.4);
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}

/* ===== SERVICES ===== */
.services {
  padding: 100px 0;
  background: var(--cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow 0.4s, transform 0.4s;
}
.service-card:hover {
  box-shadow: 0 16px 48px rgba(26, 39, 68, 0.12);
  transform: translateY(-4px);
}

.service-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.service-card:hover .service-img img { transform: scale(1.05); }

.service-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 39, 68, 0.15);
  transition: background 0.4s;
}
.service-card:hover .service-img-overlay {
  background: rgba(26, 39, 68, 0.08);
}

.service-icon {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-xs);
  background: rgba(212, 168, 75, 0.92);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}

.service-body {
  padding: 28px 32px 32px;
}

.service-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.service-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  background: rgba(26, 39, 68, 0.06);
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
}

@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
  .services { padding: 64px 0; }
}

/* ===== GALLERY ===== */
.gallery {
  padding: 100px 0;
  background: var(--card-bg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 280px;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.7s;
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 39, 68, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  color: var(--cream-dark);
}
.gallery-overlay svg {
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay {
  background: rgba(26, 39, 68, 0.45);
}
.gallery-item:hover .gallery-overlay svg { opacity: 1; }

.gallery-item-large {
  grid-column: span 2;
  grid-row: span 2;
  height: auto;
}

.gallery-item-wide {
  grid-column: span 2;
}

.gallery-cta {
  text-align: center;
  margin-top: 40px;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: color 0.3s;
}
.instagram-link:hover { color: var(--text-dark); }

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item-large,
  .gallery-item-wide { grid-column: span 1; grid-row: span 1; }
  .gallery-item { height: 260px; }
  .gallery { padding: 64px 0; }
}

/* ===== ABOUT ===== */
.about {
  padding: 100px 0;
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-para {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.about-para:last-of-type { margin-bottom: 32px; }

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--orange);
}

.stat-label {
  display: block;
  color: var(--text-muted);
  font-size: 0.82rem;
  margin-top: 4px;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.value-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: box-shadow 0.3s;
}
.value-card:hover {
  box-shadow: 0 8px 32px rgba(26, 39, 68, 0.1);
}

.value-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-xs);
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--orange);
}

.value-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.value-desc {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about { padding: 64px 0; }
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 100px 0;
  background: var(--navy);
  text-align: center;
}

.testimonial-carousel {
  position: relative;
  min-height: 250px;
  max-width: 700px;
  margin: 64px auto 0;
}

.testimonial-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.5s ease;
  pointer-events: none;
}
.testimonial-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 24px;
}

.testimonial-slide blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-style: italic;
  line-height: 1.7;
  color: rgba(237, 230, 212, 0.88);
  margin-bottom: 28px;
}

.testimonial-name {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.95rem;
}

.testimonial-pet {
  color: rgba(237, 230, 212, 0.5);
  font-size: 0.82rem;
  margin-top: 4px;
}

.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
}

.testimonial-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(237, 230, 212, 0.2);
  background: transparent;
  color: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}
.testimonial-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.testimonial-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 100px;
  border: none;
  background: rgba(237, 230, 212, 0.25);
  cursor: pointer;
  transition: all 0.3s;
}
.dot.active {
  background: var(--gold);
  width: 32px;
}

@media (max-width: 768px) {
  .testimonials { padding: 64px 0; }
  .testimonial-carousel { min-height: 300px; }
}

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 100px 0;
  background: var(--orange);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(212, 168, 75, 0.25);
}
.cta-circle-top {
  width: 256px;
  height: 256px;
  top: -128px;
  right: -64px;
}
.cta-circle-bottom {
  width: 192px;
  height: 192px;
  bottom: -96px;
  left: -48px;
}

.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  text-wrap: balance;
}

.cta-desc {
  color: rgba(26, 39, 68, 0.75);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .cta-banner { padding: 64px 0; }
}

/* ===== CONTACT ===== */
.contact {
  padding: 100px 0;
  background: var(--card-bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 32px;
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-card {
  background: var(--navy);
  color: var(--cream-dark);
  border-radius: var(--radius);
  padding: 32px;
}

.contact-info-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--cream-dark);
  font-size: 0.88rem;
  line-height: 1.6;
  transition: color 0.3s;
}
a.contact-info-item:hover { color: var(--gold); }
.contact-info-item svg { flex-shrink: 0; margin-top: 2px; }

.contact-info-social {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(237, 230, 212, 0.1);
}

.contact-instagram {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 600;
  transition: color 0.3s;
}
.contact-instagram:hover { color: var(--cream-dark); }

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  height: 180px;
  border: 1px solid var(--border);
}

.contact-form {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group { display: flex; flex-direction: column; }

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  color: var(--text-dark);
  font-size: 0.88rem;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(212, 138, 50, 0.15);
}

.form-group textarea { resize: none; }

.form-group + .form-group:not(.form-row .form-group) {
  margin-bottom: 24px;
}

.contact-form > .form-group {
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact { padding: 64px 0; }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  color: var(--cream-dark);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand .logo { pointer-events: none; }

.footer-desc {
  color: rgba(237, 230, 212, 0.55);
  font-size: 0.88rem;
  line-height: 1.6;
}

.footer-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.footer-links li { margin-bottom: 8px; }
.footer-links a {
  color: rgba(237, 230, 212, 0.55);
  font-size: 0.85rem;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }

.footer-instagram {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(237, 230, 212, 0.55);
  font-size: 0.85rem;
  transition: color 0.3s;
}
.footer-instagram:hover { color: var(--gold); }

.footer-address {
  color: rgba(237, 230, 212, 0.55);
  font-size: 0.85rem;
  margin-top: 12px;
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(237, 230, 212, 0.1);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  color: rgba(237, 230, 212, 0.35);
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 4px;
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.logo-icon img{
    width: auto;

}