/* ============================================================
   1. VARIABLES & RESET
   ============================================================ */
:root {
  --primary-yellow: #f1c40f;
  --primary-red: #940012;
  --hover-red: #b50016;
  --dark-text: #1a1a1a;
  --grey-text: #555555;
  --bg-light: #fdfcfb;
  --boutique-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Roboto", sans-serif;
  background-color: var(--bg-light);
  color: var(--dark-text);
  line-height: 1.6;
}

/* ============================================================
   🐾 HEADER & BOUTIQUE NAVIGATION (CLEAN FOUNDATION)
   ============================================================ */
header {
  background-color: #f1c40f !important; /* Branded Yellow */
  padding: 0 !important;
  border-bottom: 3px solid #940012 !important; /* Branded Red */
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 9999;
}

header nav.container {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  height: 80px !important; /* Fixed height for big monitors */
}

/* Keeps logo small on big screens */
header nav.container img.logo {
  height: 55px !important;
  width: auto !important;
}

.main-nav {
  display: flex !important;
  list-style: none !important;
  gap: 20px !important;
  align-items: center !important;
  margin: 0 !important;
  padding: 0 !important;
}

.main-nav a {
  color: #1a1a1a !important;
  font-weight: 900 !important;
  font-size: 0.85rem !important; /* Your boutique text size */
  text-transform: uppercase;
  text-decoration: none !important;
}
/* ============================================================
   4. BOUTIQUE AUTH MODAL (Login/Signup)
   ============================================================ */
/* Final Compact Modal Fixes */
/* Final Compact Boutique Modal */
.auth-modal-content {
  max-width: 360px !important; /* Forces it to stay narrow */
  padding: 20px 25px !important; /* Shaves off vertical height */
  border-left: 10px solid #f1c40f !important;
}

/* Shrinks the inputs so they don't take up the whole screen */
.auth-modal-content input {
  height: 35px !important;
  margin-bottom: 8px !important;
  font-size: 0.9rem !important;
}

/* Styles the Action Required box from the Template */
.action-notice-box {
  background: #fff9e6;
  border-left: 4px solid #f1c40f;
  padding: 10px;
  margin-bottom: 15px;
  font-size: 0.75rem;
  line-height: 1.3;
}
/* Ensures it stays on top of everything */

.auth-modal-overlay {
  position: fixed; /* Fixed to the screen, not the page */
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.75); /* The "Ghost" becomes a solid overlay */
  display: none; /* Controlled by JS */
  justify-content: center;
  align-items: center;
  z-index: 9999; /* Stays on top of sitter cards */
}

/* Ensure the content box inside has a solid background */
.auth-modal-content {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  max-width: 400px;
  width: 90%;
}
/* ============================================================
   5. BOUTIQUE BUTTONS (Unified)
   ============================================================ */
.btn-book,
.auth-submit-btn,
#modal-login-btn,
.form-button {
  background-color: var(--primary-red) !important;
  color: white !important;
  border: none !important;
  padding: 14px 25px !important;
  border-radius: 50px !important; /* High-end pill shape */
  font-weight: 700 !important;
  cursor: pointer !important;
  width: 100%;
  margin-top: 10px;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 10px rgba(148, 0, 18, 0.2) !important;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

/* THE PREMIUM HOVER LIFT */
.btn-book:hover,
.auth-submit-btn:hover,
#modal-login-btn:hover,
.form-button:hover {
  background-color: var(--hover-red) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 20px rgba(148, 0, 18, 0.4) !important;
}

#generate-password-button {
  background-color: var(--primary-yellow) !important;
  color: var(--dark-text) !important;
  font-size: 0.75rem !important;
  padding: 8px 15px !important;
  border-radius: 50px !important;
  border: none !important;
  width: auto !important;
  margin: 0 auto 15px auto;
  display: block;
}

/* ============================================================
   6. FAQ, REVIEWS & FOOTER
   ============================================================ */
.faq-item {
  border-left: 6px solid var(--primary-yellow) !important;
  background: white;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

[class*="ReviewContainer"] {
  border-left: 6px solid var(--primary-yellow) !important;
  border-radius: 12px !important;
}

.branded-footer {
  border-top: 8px solid var(--primary-yellow) !important;
  background-color: #ffffff !important;
}

/* ============================================================
    🐾 PHILOSOPHY WATERMARK FIX (CLOSES THE WHITE GAP)
   ============================================================ */
#philosophy::before {
  content: "";
  position: absolute !important;
  top: 60px !important; /* Nudged up slightly */
  left: 0 !important;
  width: 100vw !important;
  
  /* 🐾 THE FIX: Forces the image to touch the bottom yellow line */
  height: calc(100% - 60px) !important; 
  background: url("../img/HP_Primary.png") no-repeat center bottom / cover !important; 
  
  opacity: 0.22 !important;
  z-index: 0;

  /* Keeps the top fade but ensures the bottom is 100% solid */
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 15%,
    black 100%
  );
  mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 100%);
}

/* Ensures the yellow floor is touching the watermark box */
#philosophy {
    border-bottom: 12px solid #f1c40f !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* This ensures your text stays sharp on top */
.section-philosophy .container {
  max-width: 900px; /* Keeps text lines readable */
  margin: 0 auto;
  position: relative;
  z-index: 2; /* Keeps text above the watermark */
  text-align: center;
}
/* Removes any hidden lines under the heading or above philosophy */
.hero-title,
.section-philosophy h2,
.trigger-box {
  border: none !important;
}
.trigger-box {
  margin-top: 30px !important;
  margin-bottom: 10px !important;
  text-align: center;
}
/* Styling for the main message */
/* Pushes the entire heading down from the top */
.main-heading.hero-title {
  margin-top: 80px !important; /* Increased from 40px for a better gap */
  margin-bottom: 0 !important;
  line-height: 1.1 !important;
  text-align: center;
  border-bottom: none !important;
}
/* Keeps the first line Red */
.main-heading.hero-title span.line-one {
  font-size: 4.2rem;
  font-weight: 900;
  color: #940012 !important; /* Brand Red */
  display: block;
}

/* Changes the second line to Black */
.main-heading.hero-title span.line-two {
  font-size: 3.2rem;
  font-weight: 700;
  color: #1a1a1a !important; /* Elegant Black */
  display: block;
  margin-top: 5px;
}

/* ============================================================
    1. PHILOSOPHY SECTION (CLEAN TAGLINE & BEATING HEART)
   ============================================================ */
#philosophy {
  position: relative !important;
  background-color: #fff;
  overflow: hidden;
  min-height: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 !important; /* Zero padding to keep tagline at top */
}

/* THE TAGLINE: Clean White Background (Protects the Dogs) */
.tagline-wrapper {
  width: 100%;
  background-color: #ffffff; /* Solid white background */
  padding: 20px 0;
  text-align: center;
  position: relative;
  z-index: 10;
  border-bottom: 2px solid rgba(148, 0, 18, 0.1);
}

.tagline-wrapper h1 {
  font-size: 2.2rem !important;
  color: #1a1a1a;
  margin: 0;
}

/* ============================================================
    1. PHILOSOPHY SECTION (ELIMINATE WHITE LINE)
   ============================================================ */
#philosophy {
  position: relative !important;
  background-color: #ffffff;
  min-height: 700px !important; /* Tightened to pull next section up */
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 !important;
  margin-bottom: 0 !important; /* Forces next section to touch */
  overflow: hidden;
}

/* THE WATERMARK: Sharp bottom anchor */
#philosophy::before {
  content: "";
  position: absolute !important;
  top: 80px !important;
  left: 0 !important;
  width: 100vw !important;
  height: 620px !important;
  background: url("../img/HP_Primary.png") no-repeat center top / contain !important;
  opacity: 0.22 !important;
  z-index: 0;

  /* THE MASK: Fades top, but keeps bottom 100% solid for the yellow line */
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 15%,
    black 100%
  ); /* Sharp cut at the very bottom */
  mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 100%);
}

/* THE TAGLINE: Sitting high in the white */
#philosophy h1 {
  position: relative;
  z-index: 10;
  font-size: 2.2rem !important;
  color: #1a1a1a;
  margin-top: 35px !important;
}

/* THE KAHU HEART: Animation Restored */
#kahu-logo-trigger {
  width: 125px !important;
  height: auto !important;
  z-index: 20;
  margin-top: 8px !important;
  display: block !important;
  animation: heartBeat 1.2s infinite ease-in-out !important; /* FIXED: Now beating again */
  cursor:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32'%3E%3Ctext y='25' font-size='24'%3E❤️%3C/text%3E%3C/svg%3E")
      16 16,
    pointer !important;
}

/* THE CINEMATIC RIBBON */
.philosophy-text-base {
  visibility: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);

  position: absolute !important;
  left: 4% !important;
  top: 380px !important;

  width: 900px !important;
  max-width: 95vw !important;
  z-index: 30;

  background: rgba(255, 255, 255, 0.04) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px);

  padding: 25px 55px !important;
  border-radius: 25px !important;
  border-left: 12px solid #940012 !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.philosophy-text-base.revealed {
  visibility: visible !important;
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* THE FONT STYLES (Small Boutique Scale) */
.philosophy-text-base h3 {
  color: #940012 !important;
  font-size: 1.3rem !important;
  font-weight: 900 !important;
  text-transform: uppercase;
  margin-bottom: 5px !important;
}

.philosophy-text-base h4 {
  font-size: 0.95rem !important;
  color: #333 !important;
  margin-bottom: 12px !important;
}

.philosophy-text-base p {
  font-size: 0.85rem !important;
  line-height: 1.5 !important;
  color: #1a1a1a !important;
}

/* THE HEARTBEAT ANIMATION: The missing piece */
@keyframes heartBeat {
  0% {
    transform: scale(1);
  }
  15% {
    transform: scale(1.1);
  }
  30% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}

/* ============================================================
    2. ABOUT SECTION LAYOUT
   ============================================================ */
.about-section {
  padding: 80px 10%;
  background: #ffffff;
  border-bottom: 8px solid var(--primary-yellow);
}

.section-heading-center {
  text-align: center;
  font-family: "Merriweather", serif;
  color: var(--primary-red);
  font-size: 3rem;
  margin-bottom: 50px;
  border-bottom: 5px solid var(--primary-yellow);
  display: table;
  margin-left: auto;
  margin-right: auto;
}

.about-container {
  display: flex;
  justify-content: space-between; /* This forces text left and image right */
  align-items: flex-start;
  gap: 60px;
}

/* --- TEXT GRID ON THE LEFT --- */
.about-text-content {
  flex: 2; /* Gives text more room to prevent squashing */
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.about-pillar {
  margin-bottom: 25px;
}

.gold-pill {
  background-color: var(--primary-yellow);
  color: #1a1a1a;
  display: inline-block;
  padding: 4px 12px;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 8px;
  border-radius: 4px;
}

.about-pillar p {
  font-size: 1rem;
  color: #555555;
  line-height: 1.6;
}

/* --- THE "HOLE-PROOF" IMAGE CONTAINER --- */
.boutique-image-container {
  width: 240px; /* Reduced from 345px */
  height: 350px; /* Reduced from 506px */
  border-radius: 120px; /* Adjusted to keep the oval shape balanced */
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); /* Makes the zoom look 'high-end' */
  cursor: pointer; /* Shows the user they can interact with it */

  /* Keep the rest of your "Hole-Proof" settings below */
  background-color: #ffffff;
  border: 3px solid #eeeeee;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transform: translate(-2px, -5px);
}
/* 2. Add this new block right BELOW it */
.boutique-image-container:hover {
  transform: scale(1.03); /* Zooms in just a tiny bit (3%) */
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15); /* Makes the shadow deeper when hovered */
  border-color: var(
    --primary-yellow
  ); /* Changes the frame to your brand yellow */
}

.profile-photo-fixed {
  width: 105%; /* Slightly oversized to overlap any edge gaps */
  height: 105%;
  object-fit: cover;
  border: none !important;
}

/* --- LOGO ALIGNMENT UNDER EXTENDED FAMILY --- */
.passion-signature-inline {
  margin-top: 20px;
  /* Keeps logo perfectly aligned with the text column above */
  display: block;
  text-align: left;
}

.passion-logo-right {
  max-width: 350px; /* Sized to fit comfortably under the pillar */
  height: auto;
}

/* ============================================================
3. We don't just occupy space — we occupy their hearts.
   ============================================================ */

#passion-hero {
  background: url("../img/Banner_Passion2.png") no-repeat center center / cover !important;
  min-height: 550px !important;
  display: flex !important;
  justify-content: flex-end; /* Pushes the mission text to the right side */
  align-items: center;
  border-bottom: 8px solid var(--primary-yellow);
}

.passion-overlay {
  background: transparent !important; /* No need for a dark overlay since text is on grey */
  width: 50% !important; /* Limits text to the right half of the banner */
  padding: 0 80px !important;
  text-align: left; /* High-end look is often left-aligned within its block */
}

/* Wide Yellow Mission Statement */
.mission-highlight {
  font-family: "Merriweather", serif;
  font-size: 2.8rem !important;
  color: var(--primary-yellow) !important; /* Branded Yellow stays bold */
  margin-bottom: 15px;
  text-shadow: none; /* Removing shadow for a cleaner high-end look */
}

/* Large White Subtext at the bottom */
.mission-subtext {
  font-size: 1.4rem !important;
  color: #555555 !important; /* The professional Slate Gray */
  line-height: 1.6;
  font-weight: 500;
  max-width: 500px; /* Keeps the text from spreading too wide across the grey zone */
  margin: 0 !important; /* Aligns with the heading on the right side */
}

/* ============================================================
    4. OUR SERVICES & HEADERS
   ============================================================ */

/* Restores the high-end header look */
.section-title {
  text-align: center;
  font-family: "Merriweather", serif;
  color: #940012; /* Happy Puppy Red */
  font-size: 2.8rem !important;
  margin: 40px auto !important;
  border-bottom: 5px solid #f1c40f; /* Brand Yellow underline */
  width: fit-content;
  padding-bottom: 10px;
}

.card {
  background: #ffffff !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  border-left: 6px solid #f1c40f !important;
  border-bottom: 8px solid #f1c40f !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
  display: flex;
  flex-direction: column;
}

/* ============================================================
    5. MEET OUR SITTERS (THE FINAL BOUTIQUE LOCK)
   ============================================================ */

#sitter-card-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
  gap: 30px !important;
  list-style: none !important;
  padding: 0 !important;
}

#sitter-card-grid li {
  background: #ffffff !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important;
  border-bottom: 8px solid #f1c40f !important;
  position: relative;
  min-height: 520px !important;
}

/* THE PHOTO AREA (Stays exactly 250px) */
#sitter-card-grid .sitter-photo {
  width: 100% !important;
  height: 250px !important;
  overflow: hidden !important;
}

#sitter-card-grid .sitter-photo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

/* THE INFO AREA (Hugs the text) */
.sitter-info {
  padding: 0 22px 45px 22px !important; /* Left/Right cushion + Bottom gap fix */
  display: flex !important;
  flex-direction: column !important;
  flex-grow: 1 !important;
}

#sitter-card-grid .sitter-info h3 {
  color: #940012 !important; /* Happy Puppy Red */
  font-family: "Merriweather", serif;
  font-size: 1.5rem !important;
  margin-top: 15px !important;
  margin-bottom: 8px !important;
}

/* THE ICON SHRINK - Targeted strictly to utility icons */
.sitter-info img {
  width: 20px !important; /* Forces them small */
  height: 20px !important;
  object-fit: contain !important;
  margin-left: 5px !important;
  display: inline-block !important;
  vertical-align: middle !important;
}

/* ============================================================
    5. THE PRECISION ICON FIX (NO MORE MISSING ICONS)
   ============================================================ */

.pet-accepts-icons,
.service-icon-row {
  display: inline-flex !important;
  align-items: center !important;
  /* Reduced gap from 8px/5px down to 3px for a boutique look */
  gap: 3px !important;
  vertical-align: middle;
}

.pet-accepts-icons img,
.service-icon-row img {
  margin: 0 !important; /* Removes any old manual margins */
}

.pet-accepts-icons .material-icons {
  font-size: 18px !important;
  line-height: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
  margin: 0 !important;
  /* Ensures the plus icon is perfectly level with the animals */
  transform: translateY(1px);
}
/* 3. The Info Area Cushion (Fixed Gap) */
.sitter-info {
  padding: 0 22px 50px 22px !important;
  display: flex !important;
  flex-direction: column !important;
}

/* ============================================================
    5. THE PAW MOVEMENT LOCK (PATH FIXED)
   ============================================================ */

#sitter-card-grid li {
  position: relative !important; /* REQUIRED: Anchor for the paw */
}

.sitter-paw-trigger {
  position: absolute !important;
  bottom: 12px !important;
  right: 12px !important;
  width: 65px !important;
  height: 65px !important;

  /* FIXED PATH: Goes up one level out of CSS folder, then into img */
  background: url("../img/Happy Puppy Paw  angle.png") no-repeat center !important;
  background-size: contain !important;

  cursor: pointer !important;
  z-index: 10 !important;
  opacity: 0.8;

  /* This creates the smooth motion */
  transition:
    transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    opacity 0.3s ease !important;
}

/* THE MOVEMENT: Triggered when the mouse touches the card */
#sitter-card-grid li:hover .sitter-paw-trigger {
  opacity: 1 !important;
  /* Rotates and pops out slightly */
  transform: scale(1.15) rotate(10deg) !important;
}
/* ============================================================
    5c. THE EMOJI PAW CURSOR
   ============================================================ */

#sitter-card-grid li,
.sitter-paw-trigger {
  /* This turns the 🐾 emoji into a high-quality cursor */
  cursor:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='32' style='font-size: 24px;'><text y='24'>🐾</text></svg>")
      16 16,
    pointer !important;
}

/* 🐾 THE BOUTIQUE TABLET FIX  S9 Tablet*/
@media screen and (min-width: 993px) {
    header, nav {
        display: flex !important; /* Keep this so the bar stays yellow */
        visibility: visible !important;
    }

    .nav-links {
        display: flex; /* REMOVED !important so JS can hide/show items */
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        right: auto !important;
        flex-direction: row !important;
        gap: 20px !important;
    }

    /* This ensures PHILOSOPHY, ABOUT, etc. are always visible */
    .nav-links li:not(.nav-auth-item) {
        display: flex !important;
    }
}
/*===========================================================
    5aSITTER MODAL (THE MASTER LAYER) - CLEANED & FIXED
   ============================================================ */

/* 1. The Background Overlay (The "Shell") */
#sitter-detail-modal {
  display: none; /* Controlled by JavaScript */
  position: fixed !important;
  z-index: 99999 !important; /* Forces it above everything else */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75) !important;
  backdrop-filter: blur(10px); /* Creates the boutique glass effect */
  -webkit-backdrop-filter: blur(10px);
  overflow-y: auto; /* Allows scrolling for detailed profiles */
}

/* 2. The White Card inside the Modal */
#sitter-detail-modal .sitter-modal-content {
  background-color: #ffffff !important;
  margin: 5% auto !important;
  padding: 40px !important;
  width: 90% !important;
  max-width: 850px !important;
  border-radius: 25px !important;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4) !important;
  border-top: 12px solid #940012 !important; /* Happy Puppy Brand Red */
  animation: modalFadeIn 0.4s ease-out;
}

/* 3. The Modal Body (Layout for Expertise & Bio) */
#sitter-modal-body {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding-top: 10px;
  color: #333;
  font-family: "Merriweather", serif;
}

/* 4. Column Controls */
.modal-left-col {
  flex: 2; /* Main Bio space */
  min-width: 300px;
}

.modal-right-col {
  flex: 1.2; /* Sidebar for Certs & Trophy */
  min-width: 250px;
  background: #f9f9f9;
  padding: 20px;
  border-radius: 15px;
  border-left: 4px solid #f1c40f; /* Brand Gold */
}

/* 5. Close Button & Animation */
.sitter-modal-close {
  color: #940012 !important;
  font-size: 35px !important;
  font-weight: bold;
  position: absolute;
  top: 20px;
  right: 25px;
  cursor: pointer;
  line-height: 1;
  z-index: 100;
  transition: transform 0.2s ease;
}

.sitter-modal-close:hover {
  color: #f1c40f !important;
  transform: scale(1.1);
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body.modal-open {
  overflow: hidden !important;
  height: 100vh !important;
}
/* ============================================================
    6.  REVIEW CARD BRANDING
   ============================================================ */

/* Targets the individual review containers within the widget */
.elfsight-app-71e15395-429e-4aa9-86fd-c4b27b7cacce [class*="ReviewContainer"] {
  background: #ffffff !important;
  border-radius: 15px !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important; /* Professional depth */
  border-bottom: 6px solid #f1c40f !important; /* Signature Yellow line */
  transition: transform 0.3s ease !important;
  padding: 20px !important;
  margin-bottom: 20px !important;
}

/* Adds a hover lift to the reviews */
.elfsight-app-71e15395-429e-4aa9-86fd-c4b27b7cacce
  [class*="ReviewContainer"]:hover {
  transform: translateY(-8px) !important;
}
/* --- REVIEW HEADER BRANDING --- */

/* Targets the top header card of the review widget */
.elfsight-app-71e15395-429e-4aa9-86fd-c4b27b7cacce [class*="HeaderContainer"] {
  background: #ffffff !important;
  border-radius: 15px !important;
  padding: 30px !important;
  margin-bottom: 40px !important;
  /* 3D Depth Shadow */
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12) !important;
  /* Brand Red Header Line */
  border-bottom: 8px solid #940012 !important;
}

/* Ensure the 'Write a review' button stays professional */
.elfsight-app-71e15395-429e-4aa9-86fd-c4b27b7cacce [class*="ButtonBase"] {
  border-radius: 50px !important; /* Unified rounded shape */
  background-color: #940012 !important;
}
/* --- BUTTON TEXT BRANDING: Switching to White --- */

/* Targets the Load More and Review action buttons */
.elfsight-app-71e15395-429e-4aa9-86fd-c4b27b7cacce [class*="ButtonBase"],
#load-more-btn,
.auth-submit-btn,
.form-button {
  color: #ffffff !important; /* Forces font to white */
  font-weight: 600 !important;
  text-transform: none !important; /* Keeps it natural, not all caps */
  letter-spacing: 0.5px;
}

/* Ensures the red background is deep enough for white text visibility */
.elfsight-app-71e15395-429e-4aa9-86fd-c4b27b7cacce [class*="ButtonBase"] {
  background-color: #940012 !important; /* Brand Red */
  border: none !important;
  border-radius: 50px !important; /* Consistent rounded shape */
}
/* 🍞 Boutique Toast Notifications */
.boutique-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    background: #28a745; /* Success Green */
    color: white;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    z-index: 9999;
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-family: 'Playfair Display', serif;
}

.boutique-toast.show {
    transform: translateX(0);
}

.boutique-toast.error {
    background: #800000; /* Brand Maroon */
}
/* --- HIGH-END TWO-ZONE FOOTER --- */
.branded-footer {
  position: relative !important;
  background: #ffffff url("../img/Banner_Footer2.png") no-repeat center bottom !important;
  background-size: cover !important;
  border-top: 8px solid var(--primary-yellow) !important;
  height: 520px !important;
  overflow: hidden;
}

.footer-overlay {
  padding: 70px 80px !important;
  display: flex !important;
  justify-content: space-between !important;
  height: 100%;
}

.footer-nav-left {
  display: flex !important;
  flex-direction: column !important;
  gap: 35px;
  max-width: 500px;
  z-index: 10;
}

.footer-nav-left h3 {
  color: var(--primary-red) !important;
  font-size: 1.1rem;
  letter-spacing: 1.2px;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-family: "Merriweather", serif; /* Higher-end font feel */
}

.footer-nav-left ul {
  list-style: none;
  display: flex;
  gap: 30px;
  padding: 0;
}

.footer-nav-left ul li a {
  text-decoration: none;
  color: #000;
  font-weight: 700;
  transition: color 0.3s ease;
}

.footer-nav-left ul li a:hover {
  color: var(--primary-red);
}

.areas-list {
  color: #000;
  font-weight: 700;
  line-height: 1.6;
  max-width: 400px;
}

/* --- VERTICAL DESIGNER STACK --- */
.footer-credits-left {
  display: flex;
  flex-direction: column;
  /* This closes the gap between the WhatsApp link and the Copyright */
  margin-top: 15px !important;
  padding-bottom: 20px;
}

.designer-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Keeps everything left-aligned */
  gap: 8px; /* Small gap between the text and the Eden logo */
}

.eden-logo-footer {
  max-width: 100px;
  height: auto;
  display: block;
}

.designer-text {
  color: #000;
  font-size: 0.7rem !important;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.copyright-text {
  color: #000;
  font-size: 0.85rem;
  font-weight: 700;
  /* Reduced margin to bring the "Designed by" text closer */
  margin-bottom: 18px !important;
  line-height: 1.4;
}
/* --- CHECKBOX STYLES --- */
.global-checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.global-checkbox-item label {
  font-weight: 400;
  color: #444;
  font-size: 15px;
  cursor: pointer;
  margin: 0;
  line-height: 1.2;
}
.global-checkbox-item input[type="checkbox"] {
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  cursor: pointer;
  margin: 0;
}
.global-checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px 20px;
}
#mapSuccessBadge {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffd700; /* Happy Puppy Yellow */
  color: #940012; /* Happy Puppy Red */
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none; /* User can still click the map through the badge */
}
/* Happy Puppy Gold Standard Buttons */
.form-button-small {
  background-color: #f0c605; /* Happy Puppy Gold */
  color: #333;
  border: none;
  padding: 8px 15px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Poppins", sans-serif;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-button-small:hover {
  background-color: #d4ae04;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.form-button-small:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

/* Specific Red for GPS and Important Actions */
.btn-gps {
  background-color: #940012 !important; /* Happy Puppy Red */
  color: white !important;
}

.btn-gps:hover {
  background-color: #7a000f !important;
}
/* This targets the button ID in the modal */
#modal-login-btn:hover {
  background-color: #b50016 !important;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(148, 0, 18, 0.4) !important;
}

/* If you give your sitter card buttons a class like .btn-book */
.btn-book:hover {
  background-color: #b50016 !important;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(148, 0, 18, 0.4) !important;
}
/* --- 2. MAIN PAGE STRUCTURE RECOVERY --- */
/* Centers your content so it doesn't hit the edges of the screen */
section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px !important;
}

/* Philosophy Section Restoration */
#philosophy h2 {
  font-size: clamp(3rem, 10vw, 8rem) !important;
  color: #940012;
  font-family: "Merriweather", serif;
  font-style: italic;
  margin-bottom: 20px;
}

/* About Us Grid restoration */
.about-container {
  display: flex; /* Forces image and text to sit side-by-side */
  gap: 50px;
  align-items: center;
}

.about-content {
  flex: 2;
  display: grid;
  grid-template-columns: 1fr 1fr; /* Restores the two-column text layout */
  gap: 30px;
}

/* Restores the Boutique Oval Image Frame */
.boutique-image-oval {
  flex: 1;
  width: 300px;
  height: 450px;
  border-radius: 150px;
  overflow: hidden;
  border: 5px solid #f1c40f;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
/* 1. THE GLOBAL SMART NAV */
#nav-login-item, 
#nav-signup-item, 
#nav-dashboard-item, 
#nav-logout-item {
    display: none; /* JS Brain handles these */
}

/* 2. THE S9 ULTRA & LAPTOP FORCE-ROW */
/* We lowered the threshold to 768px so your Tablet gets the row */
@media screen and (min-width: 768px) {
    .main-nav.nav-links {
        display: flex !important; /* Forces the row back */
        flex-direction: row !important;
        position: static !important; /* Stops the vertical drawer */
        visibility: visible !important;
        opacity: 1 !important;
        background: transparent !important; /* Removes the white drawer background */
        width: auto !important;
        height: auto !important;
        gap: 15px !important;
    }

    /* THE BODYGUARD: Forces Philosophy, About, etc. to stay visible */
    .main-nav li:not(.nav-auth-item) {
        display: flex !important;
    }

    /* Hides the mobile icons when the row is active */
    #hamburger-icon, #close-menu {
        display: none !important;
    }

/* Make the filling visible */
#progressBar {
  height: 100%;
  background-color: #f1c40f !important; /* Branded Yellow */
  border-radius: 10px;
  transition: width 0.8s ease-in-out;
  width: 0%; /* JS will change this from 0 to 100 */
}

/* Ensure the container has a border */
.profile-completion-container {
  border: 1px solid #ccc;
  background: #eee;
  border-radius: 10px;
  height: 12px;
  overflow: hidden;
}
}
/* ============================================================
   🐾 HAPPY PUPPY BIG MONITOR LOGO FIX
   ============================================================ */

@media screen and (min-width: 1101px) {
  /* 1. This cages the header so it doesn't stretch vertically */
  header {
    height: 85px !important;
    display: flex !important;
    align-items: center !important;
    overflow: hidden !important;
  }

  /* 2. This is the "Magic Cage" for the giant paw */
  .nav-logo-bubble img {
    height: 55px !important; /* Forces the logo to be professional size */
    width: auto !important;
    max-width: 200px !important;
    display: block !important;
    margin: 0 !important;
  }

  /* 3. This pulls your logo and links apart so they don't overlap */
  header nav.container {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
  }
}
/* ============================================================
   🐾 HAPPY PUPPY NAVIGATION: ICONS TO THE RIGHT
   ============================================================ */

@media screen and (min-width: 1101px) {
  /* 1. THE CAGE: Pushes logo left and links right */
  header nav.container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    height: 85px !important;
    padding: 0 30px !important;
  }

  /* 2. THE LOGO: Stays clean on the left */
  .nav-logo-bubble img {
    height: 60px !important;
    width: auto !important;
  }

  /* 3. THE LINKS: Moved to the right with labels */
  .nav-links {
    display: flex !important;
    flex-direction: row !important;
    gap: 25px !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .nav-links li a {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important; /* Space between icon and text */
    text-decoration: none !important;
    color: #1a1a1a !important;
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    transition: color 0.3s ease !important;
  }

  /* 4. THE BOUTIQUE LABELS: Adds the names you requested */
  .nav-links a::after {
    content: attr(data-label) !important;
    display: inline-block !important;
    text-transform: lowercase !important; /* Your boutique style */
    font-family: 'Roboto', sans-serif !important;
    letter-spacing: 0.5px !important;
  }

  /* Changes icon color to Brand Red */
  .nav-links .material-icons {
    color: #940012 !important;
    font-size: 20px !important;
  }

  .nav-links li a:hover {
    color: #940012 !important;
  }
}
/* ============================================================
   🐾 TEMPORARY AFRIHOST MASK 
   (Paste this, upload to Afrihost, then delete from local CSS)
   ============================================================ */

#nav-login-item, 
#nav-signup-item, 
#nav-dashboard-item, 
#nav-logout-item,
#loginLink,
#signupLink,
#dashboardBtn,
.btn-book[onclick*="showAuthModal"] {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
}
#philosophy::before {
  content: "";
  position: absolute !important;
  top: 80px !important; /* Your intentional white space */
  left: 0 !important;
  
  /* THE FINISH LINE FIX: Force width to ignore everything else */
  width: 100vw !important; 
  height: 620px !important; 
  
  /* 'cover' stretches the image to fill the width, even if it has to crop the top/bottom */
  background: url("../img/HP_Primary.png") no-repeat center top / cover !important;
  
  opacity: 0.22 !important;
  z-index: 0;
  
  /* Ensuring the stretch doesn't create a horizontal scrollbar */
  margin-left: 0 !important;
}