/* ==========================================
   THE CAT CHALET - PREMIUM CSS DESIGN SYSTEM
   ========================================== */

/* --- Design Tokens & CSS Variables --- */
:root {
  /* Font Families */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-title: 'Playfair Display', Georgia, serif;

  /* Transitions */
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Border Radii */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;

  /* Box Shadows */
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 0 20px rgba(223, 177, 91, 0.3);

  /* Light Theme Variables */
  --bg-primary: #fdfbf7;
  --bg-secondary: #f5f1e8;
  --bg-card: rgba(255, 255, 255, 0.85);
  --bg-card-hover: rgba(255, 255, 255, 0.98);
  --bg-glass: rgba(255, 255, 255, 0.65);
  --bg-nav: rgba(253, 251, 247, 0.8);
  --border-color: rgba(44, 44, 48, 0.08);
  --border-hover: rgba(213, 159, 55, 0.3);

  --text-main: #333338;
  --text-muted: #666670;
  --text-light: #8e8e9c;

  --color-royal: #1b263b;
  --color-gold: #c9933b;
  --color-gold-hover: #b07e2c;
  --color-gold-light: rgba(201, 147, 59, 0.1);
  --color-sage: #60725a;
  
  --gradient-gold: linear-gradient(135deg, #dfb15b 0%, #b88628 100%);
  --gradient-royal: linear-gradient(135deg, #1b263b 0%, #0d1b2a 100%);
  --gradient-card: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(245, 241, 232, 0.6) 100%);
}

/* --- Dark Theme Variables --- */
body.theme-dark {
  --bg-primary: #121214;
  --bg-secondary: #1a1a1e;
  --bg-card: rgba(30, 30, 36, 0.8);
  --bg-card-hover: rgba(40, 40, 48, 0.95);
  --bg-glass: rgba(26, 26, 30, 0.7);
  --bg-nav: rgba(18, 18, 20, 0.8);
  --border-color: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(223, 177, 91, 0.4);

  --text-main: #eaeaea;
  --text-muted: #b0b0b8;
  --text-light: #7c7c85;

  --color-royal: #0d1b2a;
  --color-gold: #dfb15b;
  --color-gold-hover: #f1c97a;
  --color-gold-light: rgba(223, 177, 91, 0.15);
  --color-sage: #8da387;

  --gradient-gold: linear-gradient(135deg, #f1c97a 0%, #d4af37 100%);
  --gradient-royal: linear-gradient(135deg, #0d1b2a 0%, #020813 100%);
  --gradient-card: linear-gradient(135deg, rgba(30, 30, 36, 0.8) 0%, rgba(20, 20, 24, 0.6) 100%);
}

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

html {
  scroll-padding-top: 120px;
  font-size: 16px;
}

html, body {
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  background-color: var(--bg-primary);
  color: var(--text-main);
  transition: background-color 0.4s ease, color 0.4s ease;
}

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

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

/* --- Layout Utility Classes --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 30px 0;
}

#about {
  padding-top: 0;
}

.text-center {
  text-align: center;
}

.section-header {
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  margin-bottom: 12px;
  display: inline-block;
}

.section-title {
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-main);
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.subsection-title {
  font-family: var(--font-title);
  font-size: 1.75rem;
  margin-bottom: 24px;
}

.accent-text {
  color: var(--color-gold);
}

.gradient-text {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-normal);
  text-align: center;
}

.btn-primary {
  background: var(--gradient-gold);
  color: #121214 !important;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
  opacity: 0.95;
}

.btn-secondary {
  border: 2px solid var(--color-gold);
  color: var(--text-main);
}

.btn-secondary:hover {
  background-color: var(--color-gold-light);
  transform: translateY(-2px);
}

.btn-block {
  display: flex;
  width: 100%;
}

/* --- Glassmorphic Card Styling --- */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-md);
  padding: 40px;
  transition: var(--transition-normal);
}

.glass-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-lg);
}

/* ==========================================
   Header & Navigation
   ========================================== */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
  border-bottom: 1px solid transparent;
  transition: var(--transition-normal);
}

.main-header.scrolled {
  background-color: var(--bg-nav);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  transition: var(--transition-normal);
}

.main-header.scrolled .header-container {
  padding: 10px 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-main);
}

.logo-icon {
  background: var(--gradient-gold);
  color: #121214;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.1rem;
}

.nav-menu ul {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 8px 0;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-gold);
  transition: var(--transition-normal);
}

.nav-link:hover {
  color: var(--text-main);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-btn {
  background: var(--color-gold-light);
  border: 1px solid var(--color-gold);
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  color: var(--color-gold);
  white-space: nowrap;
}

.nav-btn:hover {
  background: var(--gradient-gold);
  color: #121214 !important;
}

.nav-btn::after {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.theme-toggle-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-normal);
}

.theme-toggle-btn:hover {
  color: var(--text-main);
  background-color: var(--border-color);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 30px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-main);
  transition: var(--transition-normal);
}

/* ==========================================
   Hero Section
   ========================================== */
.hero-section {
  position: relative;
  padding: 140px 0 20px 0;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-content {
  z-index: 10;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--color-gold-light);
  color: var(--color-gold);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.hero-content h1 {
  font-family: var(--font-title);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-main);
  margin-bottom: 24px;
}

.hero-tagline {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-highlights {
  display: flex;
  gap: 32px;
  border-top: 1px solid var(--border-color);
  padding-top: 32px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.highlight-icon {
  color: var(--color-gold);
  font-size: 1.25rem;
}

.highlight-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.image-card img {
  display: block;
  width: 100%;
  height: 520px;
  object-fit: cover;
  filter: saturate(1.05);
}

.image-card-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.85) 100%);
  padding: 30px;
  color: #fff;
}

.caption-title {
  display: block;
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.caption-sub {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* ==========================================
   Info Strip
   ========================================== */
.info-strip {
  background: var(--gradient-royal);
  color: #fff;
  padding: 30px 0;
  position: relative;
  z-index: 20;
}

body.theme-dark .info-strip {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

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

.info-box {
  display: flex;
  align-items: center;
  gap: 20px;
}

.info-box i {
  font-size: 2rem;
  color: var(--color-gold);
}

.info-box h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.info-box p {
  font-size: 0.9rem;
  opacity: 0.8;
}

.info-box .phone-link a:hover {
  color: var(--color-gold);
}

/* ==========================================
   About Us Section
   ========================================== */
.section-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image-wrapper img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  height: 500px;
  width: 100%;
  object-fit: cover;
}

.experience-badge {
  position: absolute;
  top: -24px;
  left: -24px;
  background: var(--gradient-gold);
  color: #121214;
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  text-align: center;
  z-index: 5;
  min-width: 130px;
}

.badge-num {
  display: block;
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}

.badge-text {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.about-lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-main);
  margin-bottom: 24px;
}

.about-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.about-content p:last-child {
  margin-bottom: 0;
}

.owner-quote {
  margin-top: 32px;
  padding-left: 24px;
  border-left: 3px solid var(--color-gold);
}

.owner-quote p {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--text-main);
  margin-bottom: 8px;
}

.owner-quote cite {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold);
}

/* ==========================================
   News & Stories Section
   ========================================== */
.news-section {
  background-color: var(--bg-primary);
  padding-bottom: 80px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.news-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.news-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.news-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-gold);
}

.news-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--color-gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.news-card h3 {
  font-family: var(--font-title);
  font-size: 1.3rem;
  margin-bottom: 16px;
  line-height: 1.3;
  color: var(--text-main);
}

.news-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.news-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  align-self: flex-start;
  margin-top: auto;
  border: none;
  background: none;
}

.news-link:hover {
  color: var(--color-gold-hover);
}

.news-link i {
  transition: var(--transition-fast);
}

.news-link:hover i {
  transform: translateX(4px);
}
/* --- Hours & Holiday Schedule Section (Unified Card UI) --- */
.hours-unified-card {
  max-width: 1000px;
  margin: 0 auto;
  padding: 44px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.unified-card-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(0,0,0,0) 0%, var(--border-color) 20%, var(--border-color) 80%, rgba(0,0,0,0) 100%);
}

.hours-section-block {
  display: flex;
  flex-direction: column;
}

.hours-card-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-color);
}

.header-badge-circle {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--gradient-gold);
  color: #1b263b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 12px rgba(223, 177, 91, 0.3);
  flex-shrink: 0;
}

.header-badge-circle.alert-circle {
  background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(229, 62, 62, 0.3);
}

.header-title-wrap {
  flex-grow: 1;
}

.hours-card-header h3 {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 0 4px 0;
  color: var(--text-main);
}

.header-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Dynamic Open / Closed Badge */
.open-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
  margin-left: auto;
}

/* Green OPEN state */
.open-status-badge.is-open {
  background-color: rgba(46, 204, 113, 0.12);
  border: 1px solid rgba(46, 204, 113, 0.4);
  color: #27ae60;
}

.open-status-badge.is-open .status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #27ae60;
  box-shadow: 0 0 8px #27ae60;
  animation: pulseGreen 2s infinite;
}

.open-status-badge.is-open .status-icon i {
  color: #27ae60;
}

/* Red CLOSED state */
.open-status-badge.is-closed {
  background-color: rgba(231, 76, 60, 0.12);
  border: 1px solid rgba(231, 76, 60, 0.4);
  color: #e74c3c;
}

.open-status-badge.is-closed .status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #e74c3c;
}

.open-status-badge.is-closed .status-icon i {
  color: #e74c3c;
}

@keyframes pulseGreen {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(39, 174, 96, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(39, 174, 96, 0);
  }
}

/* Timeline Layout */
.hours-timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  align-items: center;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--border-color);
}

.timeline-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.day-badge {
  display: inline-block;
  padding: 8px 14px;
  background-color: var(--color-royal);
  color: #ffffff;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.day-badge.weekend {
  background: var(--gradient-gold);
  color: #1b263b;
}

.day-badge.sunday {
  background-color: var(--color-sage);
  color: #ffffff;
}

.time-slots-col {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.time-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-pill);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-main);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
  transition: var(--transition-fast);
}

.time-chip:hover {
  border-color: var(--color-gold);
  transform: translateX(4px);
}

.time-chip i {
  color: var(--color-gold);
  font-size: 0.95rem;
}

.time-chip.morning-short {
  border-color: rgba(223, 177, 91, 0.4);
  background-color: var(--color-gold-light);
}

/* Holiday Status Banner Strip */
.holiday-status-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  background-color: rgba(229, 62, 62, 0.08);
  border: 1px solid rgba(229, 62, 62, 0.25);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  margin-bottom: 24px;
}

.status-indicator.closed {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: #e53e3e;
  color: #ffffff;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.status-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

/* Holidays Grid */
.holidays-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.holiday-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.holiday-pill:hover {
  border-color: rgba(229, 62, 62, 0.4);
  background-color: rgba(229, 62, 62, 0.03);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(229, 62, 62, 0.1);
}

.holiday-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background-color: rgba(229, 62, 62, 0.1);
  color: #e53e3e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.holiday-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.holiday-name {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text-main);
}

.holiday-status {
  font-size: 0.78rem;
  font-weight: 700;
  color: #e53e3e;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Early Closing Banner */
.early-closing-banner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: linear-gradient(135deg, rgba(223, 177, 91, 0.15) 0%, rgba(201, 147, 59, 0.08) 100%);
  border: 1px solid rgba(223, 177, 91, 0.4);
  border-radius: var(--radius-md);
  padding: 20px 24px;
}

.banner-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background-color: var(--color-gold);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(223, 177, 91, 0.4);
  margin-top: 2px;
}

.banner-text h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
}

.banner-text p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.4;
}

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

@media (max-width: 576px) {
  .hours-unified-card {
    padding: 24px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    align-items: flex-start;
    gap: 10px;
  }

  .day-badge {
    align-self: flex-start;
  }

  .holidays-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   Accommodations Section
   ========================================== */
.accommodations-section {
  background-color: var(--bg-secondary);
}

.accommodations-section .section-grid {
  align-items: stretch;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin-top: 30px;
}

.feature-list li {
  display: flex;
  gap: 20px;
}

.feature-icon {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  color: var(--color-gold);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 1.25rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.feature-text h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.feature-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.large-image-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 100%;
  width: 85%;
  margin: 0 auto;
}

.large-image-card img {
  width: 100%;
  height: 100%;
  min-height: 637px;
  object-fit: cover;
  object-position: center;
}

.badge-over {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background-color: var(--bg-glass);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
}

/* ==========================================
   Rates & Services
   ========================================== */
.rates-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 80px;
}

.rate-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 40px 30px;
  transition: var(--transition-normal);
  position: relative;
  display: flex;
  flex-direction: column;
}

.rate-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-hover);
}

.rate-card-header {
  margin-bottom: 24px;
}

.rate-card-header h3 {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.rate-card-header p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.rate-price {
  margin-bottom: 30px;
  display: flex;
  align-items: baseline;
}

.rate-price .currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-gold);
}

.rate-price .price-val {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--text-main);
}

.rate-price .period {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-left: 4px;
}

.rate-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
  margin-bottom: auto;
}

.rate-features li {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.rate-features li i {
  color: var(--color-sage);
  margin-top: 3px;
  font-size: 0.85rem;
}

.rate-card.premium {
  border: 2px solid var(--color-gold);
  background: var(--gradient-royal);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.rate-card.premium:hover {
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.rate-card.premium .rate-card-header h3,
.rate-card.premium .rate-price .price-val,
.rate-card.premium .rate-features li {
  color: #fff;
}

.rate-card.premium .rate-card-header p,
.rate-card.premium .rate-price .period {
  color: rgba(255, 255, 255, 0.7);
}

.rate-card.premium .rate-features {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.rate-card.premium .rate-features li i {
  color: var(--color-gold);
}

.rate-badge {
  position: absolute;
  top: -14px;
  right: 30px;
  background: var(--gradient-gold);
  color: #121214;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-sm);
}

.rate-card.premium .rate-badge {
  background: #fff;
  color: var(--color-royal);
}

/* Add-ons Styling */
.addons-container {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 50px 40px;
  margin-top: 40px;
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.addon-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  position: relative;
  transition: var(--transition-normal);
}

.addon-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.addon-icon {
  font-size: 1.5rem;
  color: var(--color-gold);
}

.addon-info h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.addon-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.addon-cost {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-main);
  white-space: nowrap;
  margin-top: auto;
  align-self: flex-end;
}

.addon-cost .small-text {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-light);
}

.longterm-note {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.longterm-note i {
  color: var(--color-gold);
  margin-right: 6px;
}

/* ==========================================
   Interactive Cost Estimator
   ========================================== */
.estimator-section {
  background-color: var(--bg-primary);
}

.estimator-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: flex-start;
  margin-top: 40px;
}

.estimator-form-card {
  border-radius: var(--radius-md);
}

.form-group {
  margin-bottom: 32px;
}

.form-group:last-child {
  margin-bottom: 0;
}

.form-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-main);
}

.form-label i {
  color: var(--color-gold);
  margin-right: 8px;
}

/* Radio Tiles for boarding selection */
.radio-tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.radio-tile-label {
  cursor: pointer;
}

.radio-tile-label input {
  display: none;
}

.tile-content {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition-fast);
  background-color: rgba(255, 255, 255, 0.02);
}

body.theme-light .tile-content {
  background-color: #fff;
}

.tile-icon {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 8px;
}

.tile-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 2px;
}

.tile-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.radio-tile-label input:checked + .tile-content {
  border-color: var(--color-gold);
  background-color: var(--color-gold-light);
}

.radio-tile-label input:checked + .tile-content .tile-icon {
  color: var(--color-gold);
}

/* Slider Controls */
.label-with-val {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
}

.label-with-val span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.range-val {
  font-weight: 700;
  color: var(--color-gold) !important;
  font-size: 1.1rem !important;
}

.slider-input {
  width: 100%;
  height: 8px;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-pill);
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

.slider-input::-moz-range-track {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  height: 8px;
  border-radius: var(--radius-pill);
}

.slider-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gradient-gold);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.slider-input::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.slider-ticks {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 0.75rem;
  color: var(--text-light);
}

/* Checkbox Addon Group */
.checkbox-addon-group {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-bottom: 16px;
  transition: var(--transition-normal);
}

.checkbox-addon-group:hover {
  border-color: var(--border-hover);
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
}

.checkbox-label input {
  display: none;
}

.custom-checkbox {
  width: 20px;
  height: 20px;
  border: 1px solid var(--text-light);
  border-radius: 4px;
  display: inline-block;
  flex-shrink: 0;
  position: relative;
  transition: var(--transition-fast);
}

.checkbox-label input:checked + .custom-checkbox {
  background: var(--gradient-gold);
  border-color: var(--color-gold);
}

.checkbox-label input:checked + .custom-checkbox::after {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.75rem;
  color: #121214;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.checkbox-text {
  font-size: 0.9rem;
  color: var(--text-main);
  line-height: 1.3;
}

.checkbox-text small {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.addon-sub-settings {
  margin-top: 16px;
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
  display: none;
}

.addon-sub-settings.active {
  display: block;
}

.sub-slider {
  margin-top: 8px;
}

/* Invoice Receipt styling */
.estimator-receipt-card {
  background-color: var(--color-royal);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 100px;
}

body.theme-dark .estimator-receipt-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
}

.receipt-header {
  text-align: center;
  margin-bottom: 30px;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.2);
  padding-bottom: 20px;
}

.receipt-header h3 {
  font-family: var(--font-title);
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.receipt-header p {
  font-size: 0.8rem;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.receipt-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  font-size: 0.9rem;
  opacity: 0.9;
}

.receipt-label {
  padding-right: 15px;
}

.receipt-amount {
  font-weight: 600;
}

.receipt-divider {
  border-top: 1px dotted rgba(255, 255, 255, 0.2);
  margin: 20px 0;
}

.receipt-row.subtotal {
  opacity: 1;
}

.receipt-row.tax {
  font-size: 0.85rem;
  opacity: 0.8;
}

.receipt-row.total {
  font-size: 1.35rem;
  font-weight: 700;
  opacity: 1;
}

.receipt-row.total .receipt-amount {
  color: var(--color-gold);
  font-size: 1.5rem;
}

.receipt-footer {
  margin-top: 30px;
}

.payment-disclaimer {
  font-size: 0.8rem;
  opacity: 0.75;
  line-height: 1.4;
  margin-bottom: 24px;
  text-align: center;
}

.payment-disclaimer i {
  color: var(--color-gold);
  margin-right: 4px;
}

/* ==========================================
   Policies Section
   ========================================== */
.policies-section {
  background-color: var(--bg-secondary);
  padding-bottom: 80px;
}

.policies-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.policy-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 40px 30px;
  transition: var(--transition-normal);
}

.policy-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
}

.policy-icon {
  font-size: 2rem;
  color: var(--color-gold);
  margin-bottom: 24px;
}

.policy-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.policy-card p {
  font-size: 1rem;
  color: var(--text-color);
  line-height: 1.5;
  margin-bottom: 16px;
}

.policy-list {
  padding-left: 18px;
  list-style-type: disc;
  font-size: 1rem;
  color: var(--text-color);
}

.policy-list li {
  margin-bottom: 6px;
}

.policy-subtext {
  font-size: 0.85rem !important;
  color: var(--text-muted);
  opacity: 0.9;
  border-top: 1px dashed var(--border-color);
  padding-top: 12px;
  margin-top: 12px;
  margin-bottom: 0 !important;
}

/* ==========================================
   Testimonials Section
   ========================================== */
.testimonials-section {
  background-color: var(--bg-primary);
  position: relative;
}

.testimonial-carousel {
  position: relative;
  max-width: 1100px;
  margin: 0 auto 40px;
}

.testimonial-track-wrapper {
  overflow: hidden;
  padding: 20px 0;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 15px;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .testimonial-slide {
    min-width: 50%;
  }
}

@media (min-width: 1024px) {
  .testimonial-slide {
    min-width: 33.3333%;
  }
}

.testimonial-card {
  background: var(--color-white);
  padding: 30px 35px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 2px solid var(--color-primary);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-normal);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.stars {
  font-size: 1rem;
  color: var(--color-gold);
  margin-bottom: 20px;
}

.testimonial-text {
  font-family: var(--font-title);
  font-size: 1.35rem;
  line-height: 1.6;
  color: var(--text-main);
  font-style: italic;
  margin-bottom: 24px;
}

.client-info {
  display: flex;
  flex-direction: column;
}

.client-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-main);
}

.client-location {
  font-size: 0.8rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

.carousel-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background-color: var(--color-white);
  color: var(--color-primary);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.prev-btn {
  left: -10px;
  right: auto;
}

.next-btn {
  right: -10px;
  left: auto;
}

@media (min-width: 1200px) {
  .prev-btn { left: -60px; right: auto; }
  .next-btn { right: -60px; left: auto; }
}

.carousel-btn:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.carousel-dots {
  display: none;
}

/* --- Survey Section --- */
.survey-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.survey-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 30px;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
}

.survey-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-5px);
}

.survey-check {
  color: var(--color-gold);
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.survey-card h4 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-main);
}

.survey-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* --- Survey Quotes Carousel --- */
.survey-quotes-container {
  margin-top: 60px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.survey-quotes-list {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 10px 0 20px 0;
  scrollbar-width: thin;
  scrollbar-color: var(--color-gold) transparent;
}

.survey-quotes-list::-webkit-scrollbar {
  height: 6px;
}

.survey-quotes-list::-webkit-scrollbar-thumb {
  background-color: var(--color-gold);
  border-radius: var(--radius-pill);
}

.quote-item {
  flex: 0 0 320px;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 24px;
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-muted);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
}

.quote-item p {
  margin: 0;
}

/* --- Gallery Section --- */
.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.gallery-tab {
  padding: 12px 24px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-fast);
}

.gallery-tab.active,
.gallery-tab:hover {
  background-color: var(--color-gold);
  color: #fff;
  border-color: var(--color-gold);
  box-shadow: var(--shadow-sm);
}

.gallery-grid {
  display: none;
}

.gallery-grid.active {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
  background-color: var(--bg-secondary);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: var(--bg-secondary);
  transition: var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
  color: #fff;
  opacity: 0;
  transition: var(--transition-normal);
}

.gallery-item:hover .gallery-item-info {
  opacity: 1;
}

.gallery-item-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.gallery-item-info p {
  font-size: 0.85rem;
  opacity: 0.9;
}

.gallery-empty-state {
  padding: 80px 40px;
  background-color: var(--bg-card);
  border: 2px dashed var(--border-color);
  border-radius: var(--radius-md);
  max-width: 600px;
  margin: 0 auto;
}

.empty-icon {
  font-size: 3rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

.gallery-empty-state h3 {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.gallery-empty-state p {
  color: var(--text-muted);
}

.rate-notices-wrapper {
  margin: 30px 0 50px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.payment-policy-note {
  background-color: rgba(27, 38, 59, 0.04);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 16px 24px;
  max-width: 850px;
  margin: 0 auto;
}

.payment-policy-note i {
  color: var(--color-gold);
  margin-right: 8px;
}

.longterm-note {
  max-width: 750px;
  margin: 0 auto;
}

.grooming-note {
  background-color: rgba(223, 177, 91, 0.05);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-sm);
  padding: 16px;
  max-width: 700px;
  margin: 16px auto 0 auto;
}

.grooming-note i {
  color: var(--color-gold);
  margin-right: 8px;
}

/* ==========================================
   Contact & Booking Form Section
   ========================================== */
.contact-section {
  background-color: var(--bg-secondary);
}

.contact-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--color-gold);
  box-shadow: var(--shadow-sm);
}

.contact-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.contact-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-item p a:hover {
  color: var(--color-gold);
}

/* Centered Contact Card */
.contact-card-centered {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 40px;
}

.contact-methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 40px 0;
}

.contact-method-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 30px 20px;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-method-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-5px);
}

.contact-method-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 12px 0 4px 0;
  color: var(--text-main);
}

.contact-method-card p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 0;
}

.phone-highlight {
  font-family: var(--font-title);
  font-size: 1.4rem !important;
  font-weight: 700;
  color: var(--color-gold) !important;
}

.phone-highlight a:hover {
  text-decoration: underline;
}

.method-sub {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 4px;
}

.call-action-box {
  margin-top: 40px;
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1.1rem;
  border-radius: var(--radius-sm);
}

/* ==========================================
   Footer
   ========================================== */
.main-footer {
  background-color: #0d1b2a;
  color: #fff;
  padding: 80px 0 30px 0;
}

body.theme-dark .main-footer {
  background-color: #0c0c0e;
  border-top: 1px solid var(--border-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand p {
  font-size: 0.9rem;
  opacity: 0.7;
  line-height: 1.5;
  margin: 20px 0 24px 0;
}

.footer-brand .logo {
  color: #fff;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  opacity: 0.7;
}

.footer-socials a:hover {
  opacity: 1;
  border-color: var(--color-gold);
  background-color: var(--color-gold);
  color: #121214;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--color-gold);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links ul a {
  font-size: 0.9rem;
  opacity: 0.7;
}

.footer-links ul a:hover {
  opacity: 1;
  color: var(--color-gold);
  padding-left: 4px;
}

.footer-contact p {
  font-size: 0.9rem;
  opacity: 0.75;
  line-height: 1.5;
  margin-bottom: 16px;
}

.footer-contact p strong {
  color: #fff;
  opacity: 1;
}

.footer-contact p a:hover {
  color: var(--color-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  font-size: 0.8rem;
  opacity: 0.5;
}

/* --- Mohr Associates Credit Tag --- */
.mohr-associates-tag {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.9rem;
  width: 100%;
}

.mohr-associates-tag span {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.mohr-associates-tag a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  padding: 8px 20px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mohr-associates-tag a:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 18px rgba(0, 168, 255, 0.45);
}

.mohr-associates-tag img {
  height: 40px;
  width: auto;
  display: block;
}


/* ==========================================
   ALL RESPONSIVE MEDIA QUERIES (GROUPED)
   ========================================== */
/* ==========================================
   Responsive Design Media Queries
   ========================================== */

/* --- Tablet / Small Desktop (1024px) --- */
@media (max-width: 1024px) {
  html {
    font-size: 15px;
  }

  .hero-section {
    padding-top: 120px;
    padding-bottom: 40px;
    min-height: auto;
  }

  .hero-container {
    gap: 40px;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .image-card img {
    height: 440px;
  }

  .section-grid {
    gap: 40px;
  }

  .about-image-wrapper img {
    height: 420px;
  }

  .large-image-card img {
    height: 550px;
  }

  .estimator-grid {
    grid-template-columns: 1fr;
  }

  .estimator-receipt-card {
    position: static;
  }
}

/* --- Mobile / Tablet Portrait (768px) --- */
@media (max-width: 768px) {
  .section-padding {
    padding: 35px 0 50px 0;
  }

  /* Navigation Mobile */
  .mobile-menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--bg-primary);
    box-shadow: -10px 0 20px rgba(0,0,0,0.05);
    z-index: 999;
    padding: 100px 40px 40px 40px;
    transition: var(--transition-slow);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  /* Hamburger transform animation */
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* Hero Mobile */
  .hero-section {
    padding: 100px 0 60px 0;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
    padding-top: 0;
  }

  .hero-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-highlights {
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }

  .image-card {
    max-width: 480px;
    margin: 0 auto;
  }

  /* Info Strip Mobile */
  .info-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Content Grids Mobile */
  .section-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-image-wrapper {
    max-width: 500px;
    margin: 30px auto 40px auto;
  }

  .accommodation-gallery {
    max-width: 500px;
    margin: 0 auto;
  }

  .contact-methods-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Hours Mobile Responsive Styles */
  .hours-unified-card {
    padding: 24px 16px;
    gap: 30px;
  }

  .hours-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .open-status-badge {
    margin-left: 0;
    margin-top: 4px;
    align-self: flex-start;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-bottom: 20px;
  }

  .day-badge-col {
    width: 100%;
  }

  .day-badge {
    display: block;
    width: 100%;
    text-align: center;
  }

  .time-slots-col {
    width: 100%;
  }

  .time-chip {
    width: 100%;
    justify-content: center;
  }

  .time-chip.morning-short {
    width: 100%;
    justify-content: center;
  }

  .holiday-status-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
  }

  .status-indicator.closed {
    align-self: flex-start;
  }

  .early-closing-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
  }

  .banner-icon {
    align-self: flex-start;
    margin-top: 0;
  }
}

/* --- Small Mobile (480px) --- */
@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .hero-content h1 {
    font-size: 2.4rem;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  .radio-tiles {
    grid-template-columns: 1fr;
  }

  .addons-container {
    padding: 30px 20px;
  }

  .addons-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .addon-card {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 12px 16px;
    padding: 20px 16px;
  }

  .addon-icon {
    grid-column: 1;
    grid-row: 1;
  }

  .addon-info {
    grid-column: 2;
    grid-row: 1;
  }

  .addon-cost {
    grid-column: 2;
    grid-row: 2;
    margin-top: 4px;
    align-self: start;
  }

  .estimator-form-card,
  .estimator-receipt-card {
    padding: 24px 16px;
  }

  .contact-card-centered {
    padding: 30px 16px;
  }

  .about-image-wrapper img,
  .large-image-card img {
    height: 450px;
  }

  .survey-quotes-container {
    padding: 24px 16px;
    margin-top: 30px;
  }

  .survey-quotes-list {
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }

  .quote-item {
    flex: 0 0 270px;
    padding: 16px;
    font-size: 0.9rem;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .prev-btn { left: -10px; }
  .next-btn { right: -10px; }
  .testimonial-card { padding: 30px 35px; }
}

/* --- Media Queries updates --- */
@media (max-width: 1024px) {
  .survey-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid.active,
  .rates-grid,
  .policies-grid,
  .addons-grid,
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .section-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .image-card {
    order: -1;
    margin-bottom: 30px;
    min-height: 440px;
  }
  .about-image-wrapper {
    order: -1;
    max-width: 500px;
    margin: 30px auto 40px auto;
  }
  .about-content {
    order: 1;
  }
}

@media (max-width: 600px) {
  .survey-grid,
  .gallery-grid.active,
  .rates-grid,
  .policies-grid,
  .addons-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   Header Mid-width Media Query
   ========================================== */
@media (max-width: 1100px) and (min-width: 769px) {
  .nav-menu ul {
    gap: 16px;
  }
  .nav-link {
    font-size: 0.9rem;
  }
}

/* ==========================================
   Multi-Page Inner Padding
    width: 100%;
    text-align: center;
  }

  .time-slots-col {
    width: 100%;
  }

  .time-chip {
    width: 100%;
    justify-content: center;
  }

  .time-chip.morning-short {
    width: 100%;
    justify-content: center;
  }

  .holiday-status-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
  }

  .status-indicator.closed {
    align-self: flex-start;
  }

  .early-closing-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
  }

  .banner-icon {
    align-self: flex-start;
    margin-top: 0;
  }
}

/* --- Small Mobile (480px) --- */
@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .hero-content h1 {
    font-size: 2.4rem;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  .radio-tiles {
    grid-template-columns: 1fr;
  }

  .addons-container {
    padding: 30px 20px;
  }

  .addons-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .addon-card {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 12px 16px;
    padding: 20px 16px;
  }

  .addon-icon {
    grid-column: 1;
    grid-row: 1;
  }

  .addon-info {
    grid-column: 2;
    grid-row: 1;
  }

  .addon-cost {
    grid-column: 2;
    grid-row: 2;
    margin-top: 4px;
    align-self: start;
  }

  .estimator-form-card,
  .estimator-receipt-card {
    padding: 24px 16px;
  }

  .contact-card-centered {
    padding: 30px 16px;
  }

  .about-image-wrapper img,
  .large-image-card img {
    height: 450px;
  }

  .survey-quotes-container {
    padding: 24px 16px;
    margin-top: 30px;
  }

  .survey-quotes-list {
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }

  .quote-item {
    flex: 0 0 270px;
    padding: 16px;
    font-size: 0.9rem;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .prev-btn { left: -10px; }
  .next-btn { right: -10px; }
  .testimonial-card { padding: 30px 35px; }
}

/* --- Media Queries updates --- */
@media (max-width: 1024px) {
  .survey-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid.active,
  .rates-grid,
  .policies-grid,
  .addons-grid,
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .section-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .image-card {
    order: -1;
    margin-bottom: 30px;
    min-height: 440px;
  }
  .about-image-wrapper {
    order: -1;
    max-width: 500px;
    margin: 30px auto 40px auto;
  }
  .about-content {
    order: 1;
  }
}

@media (max-width: 600px) {
  .survey-grid,
  .gallery-grid.active,
  .rates-grid,
  .policies-grid,
  .addons-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   Header Mid-width Media Query
   ========================================== */
@media (max-width: 1100px) and (min-width: 769px) {
  .nav-menu ul {
    gap: 16px;
  }
  .nav-link {
    font-size: 0.9rem;
  }
}

/* ==========================================
   Multi-Page Inner Padding
   ========================================== */
.page-inner main {
  padding-top: 100px;
}

.page-inner .main-header {
  background-color: var(--bg-nav);
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.bg-secondary-page {
  background-color: var(--bg-secondary) !important;
}
.bg-secondary-page main {
  background-color: var(--bg-secondary) !important;
}

.survey-section {
  background-color: var(--bg-secondary);
}
