/* Fancy Pet Salon V2 Styles */
/* Colors & Variables */
:root {
  --cream: #FFF8F0;
  --warm-white: #FFFDFB;
  --blush: #F2D7C4;
  --peach: #F5E1D0;
  --rose: #D4917E;
  --terracotta: #C47B5E;
  --deep-brown: #3D2B1F;
  --rich-brown: #5C3D2E;
  --soft-gold: #C9A96E;
  --gold: #B8942E;
  --sage: #8B9E82;
  --charcoal: #2C2421;
  --warm-gray: #7A6E68;
  --light-warm: #EDE4DB;
  --lavender-mist: #E8E4EC;
  --accent-blue: #5B8FA8;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Lora', Georgia, serif;
  background: var(--cream);
  color: var(--deep-brown);
  line-height: 1.7;
  font-size: 1.05rem;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--deep-brown);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); margin-bottom: 20px; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 16px; }
h3 { font-size: 1.3rem; margin-bottom: 12px; }

p { margin-bottom: 1rem; color: var(--rich-brown); }

a { color: var(--terracotta); text-decoration: none; transition: color 0.25s; }
a:hover { color: var(--rose); }

em { font-style: italic; color: var(--terracotta); }

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

/* Navigation - matches homepage exactly */
.v2-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,248,240,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(196,123,94,0.12);
  transition: box-shadow 0.3s;
}
.v2-nav.scrolled { box-shadow: 0 2px 24px rgba(61,43,31,0.08); }
.nav-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.v2-nav .container {
  max-width: 1140px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700;
  color: var(--deep-brown);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-logo span { color: var(--terracotta); }
.nav-links { display: flex; gap: 28px; align-items: center; list-style: none; }
.nav-links > li { position: relative; }
.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem; font-weight: 500;
  color: var(--rich-brown);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--terracotta); }
.has-dropdown > a::after { content: '▾'; margin-left: 4px; font-size: 0.7em; }
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 200px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(61,43,31,0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s;
  list-style: none;
  padding: 12px 0;
  z-index: 1000;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 10px 20px;
  color: var(--deep-brown);
  font-size: 0.9rem;
}
.dropdown li a:hover {
  background: var(--cream);
  color: var(--terracotta);
}
.dropdown-wide {
  columns: 2;
  min-width: 400px;
}
.dropdown-wide li {
  break-inside: avoid;
}
.nav-cta {
  background: var(--terracotta) !important;
  color: #fff !important;
  padding: 10px 24px !important;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: var(--rose) !important; transform: translateY(-1px); }
.lang-switch {
  background: var(--blush) !important;
  color: var(--deep-brown) !important;
  padding: 8px 14px !important;
  border-radius: 20px;
  font-size: 0.85rem !important;
}



/* Page Header */
.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--peach) 50%, var(--blush) 100%);
  text-align: center;
}

.page-hero .section-label {
  display: inline-block;
  background: rgba(255,255,255,0.7);
  padding: 8px 20px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 20px;
}

.page-hero h1 {
  max-width: 800px;
  margin: 0 auto 16px;
}

.page-hero p {
  font-size: 1.15rem;
  color: var(--warm-gray);
  max-width: 600px;
  margin: 0 auto;
}

/* Content Sections */
.content-section {
  padding: 80px 0;
}

.content-section.alt-bg {
  background: var(--warm-white);
}

.content-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.content-wrap h2 {
  margin-top: 48px;
  margin-bottom: 20px;
}

.content-wrap h2:first-child {
  margin-top: 0;
}

.content-wrap p {
  font-size: 1.05rem;
  line-height: 1.8;
}

.content-wrap ul, .content-wrap ol {
  margin: 20px 0 20px 24px;
}

.content-wrap li {
  margin-bottom: 12px;
  color: var(--rich-brown);
}

/* Info Box */
.info-box {
  background: linear-gradient(135deg, var(--blush) 0%, var(--light-warm) 100%);
  border-radius: 16px;
  padding: 28px 32px;
  margin: 32px 0;
}

.info-box h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--deep-brown);
}

.info-box p {
  margin-bottom: 0;
}

/* Feature Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 40px 0;
}

.feature-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid rgba(196,123,94,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(61,43,31,0.08);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--warm-gray);
  margin-bottom: 0;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background: var(--terracotta);
  color: #fff;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--rose);
  color: #fff;
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--deep-brown);
  padding: 16px 36px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--blush);
  transition: all 0.3s;
}

.btn-secondary:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--blush) 0%, var(--peach) 50%, var(--lavender-mist) 100%);
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 1.1rem;
  color: var(--warm-gray);
  margin-bottom: 28px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
.v2-footer {
  background: var(--charcoal);
  color: #fff;
  padding: 60px 0 30px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  margin-top: 12px;
}

.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  color: #fff;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  margin-bottom: 10px;
  transition: color 0.25s;
}

.footer-col a:hover { color: var(--soft-gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

/* FAQ Accordion */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 12px;
  border: 1px solid rgba(196,123,94,0.1);
  overflow: hidden;
}

.faq-question {
  padding: 20px 24px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--terracotta);
  transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item.active .faq-answer {
  padding: 0 24px 20px;
  max-height: 500px;
}

/* Tables */
.v2-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(61,43,31,0.06);
  margin: 32px 0;
}

.v2-table thead {
  background: var(--accent-blue);
  color: #fff;
}

.v2-table th {
  padding: 16px 20px;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
}

.v2-table td {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(196,123,94,0.08);
  font-size: 0.95rem;
}

.v2-table tbody tr:nth-child(odd) {
  background: rgba(245,243,240,0.5);
}

.v2-table tbody tr:hover {
  background: rgba(196,123,94,0.05);
}

/* Scroll Reveal Animation */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-init {
  opacity: 0;
  transform: translateY(30px);
}

.reveal-init.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Utility */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }

/* Language Switcher */
.lang-switch {
  background: var(--cream) !important;
  padding: 6px 12px !important;
  border-radius: 20px;
  font-size: 0.85rem !important;
}
.lang-switch:hover {
  background: var(--blush) !important;
}

/* Language Switcher */
.lang-switch {
  background: var(--blush) !important;
  padding: 8px 14px !important;
  border-radius: 20px;
  font-size: 0.85rem !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.lang-switch:hover {
  background: var(--peach) !important;
}

@media (max-width: 900px) {
  .dropdown {
    position: static;
    opacity: 1;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transform: none;
    box-shadow: none;
    background: rgba(255,248,240,0.5);
    border-radius: 8px;
    margin-top: 8px;
    transition: max-height 0.3s, visibility 0.3s;
  }
  .has-dropdown.dropdown-open .dropdown {
    visibility: visible;
    max-height: 800px;
  }
  .dropdown-wide {
    columns: 1;
    min-width: 0;
  }
  .has-dropdown > a {
    padding: 14px 0;
    display: block;
  }
  .has-dropdown > a::after {
    float: right;
  }
  .dropdown li a {
    padding: 14px 20px;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(0,0,0,0.04);
  }
  .dropdown li:last-child a {
    border-bottom: none;
  }
}

/* Gallery Styles */
.gallery-section {
  padding: 3rem 0;
}
.gallery-section:nth-child(even) {
  background: var(--cream);
}
.gallery-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--deep-brown);
  text-align: center;
  margin-bottom: 0.5rem;
}
.gallery-section .section-desc {
  text-align: center;
  color: var(--warm-gray);
  margin-bottom: 2rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.gallery-grid.single {
  max-width: 600px;
}
.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(61,43,31,0.1);
  background: #fff;
}
.gallery-item img {
  width: 100%;
  height: auto;
  max-height: 500px;
  display: block;
}
.gallery-item .caption {
  padding: 1rem;
  text-align: center;
  font-weight: 500;
  color: var(--deep-brown);
}
.gallery-cta {
  text-align: center;
  margin-top: 2rem;
}
.gallery-cta a {
  color: var(--terracotta);
  font-weight: 600;
  text-decoration: underline;
}
.gallery-cta a:hover {
  color: var(--rose);
}

/* Reviews Page */
.reviews-header {
  text-align: center;
  margin-bottom: 32px;
}

.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 8px;
}

.rating-stars {
  font-size: 1.8rem;
  color: var(--soft-gold);
  letter-spacing: 2px;
}

.rating-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  color: var(--deep-brown);
}

.rating-text strong {
  font-size: 1.4rem;
}

.reviews-header > p {
  color: var(--warm-gray);
  font-size: 0.95rem;
}

.review-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.review-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.review-links a.google {
  background: #fff;
  color: var(--deep-brown);
  border-color: rgba(196,123,94,0.15);
}

.review-links a.google:hover {
  border-color: var(--soft-gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(201,169,110,0.2);
}

.review-links a.facebook {
  background: #fff;
  color: var(--deep-brown);
  border-color: rgba(196,123,94,0.15);
}

.review-links a.facebook:hover {
  border-color: var(--accent-blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(91,143,168,0.2);
}

.review-links a.leave {
  background: var(--terracotta);
  color: #fff;
  border-color: var(--terracotta);
}

.review-links a.leave:hover {
  background: var(--rose);
  border-color: var(--rose);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(196,123,94,0.3);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.review-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid rgba(196,123,94,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(61,43,31,0.08);
}

.review-card .stars {
  color: var(--soft-gold);
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.review-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--rich-brown);
  flex: 1;
  margin-bottom: 16px;
  font-style: italic;
}

.review-card .author {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--deep-brown);
  margin-bottom: 4px;
}

.review-card .source {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  color: var(--warm-gray);
}

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

@media (max-width: 600px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .review-links {
    flex-direction: column;
    align-items: center;
  }
  .review-links a {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

/* HAMBURGER FIX - at end to override everything */
.mobile-toggle {
  display: none !important;
  background: none !important;
  border: none !important;
  cursor: pointer;
  padding: 10px !important;
  flex-shrink: 0 !important;
  width: 45px !important;
  min-width: 45px !important;
}
.mobile-toggle div {
  width: 25px !important;
  height: 3px !important;
  background-color: #3D2B1F !important;
  margin: 5px 0 !important;
  display: block !important;
}
@media (max-width: 900px) {
  .nav-links { display: none !important; }
  .mobile-toggle { 
    display: block !important; 
    flex-shrink: 0 !important;
    z-index: 1000 !important;
  }
  .nav-links.open {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #FFF8F0;
    padding: 24px;
    gap: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    z-index: 999;
    list-style: none;
  }
  .nav-links.open > li {
    position: relative;
  }
  .nav-links.open .dropdown {
    display: none;
    position: static;
    background: rgba(255,248,240,0.5);
    box-shadow: none;
    padding: 8px 0 8px 16px;
    margin-top: 8px;
  }
  .nav-links.open .has-dropdown.dropdown-open .dropdown {
    display: block;
  }
  .has-dropdown > a::after {
    content: ' ▾';
  }
}
