:root {
  --font-size: 16px;
  
  /* Earthy, natural color palette for dog walking business */
  --sage-green: #8FA883;
  --warm-beige: #E8DCC4;
  --muted-clay: #C9A88A;
  --charcoal-grey: #4A4A4A;
  --off-white: #FAF8F5;
  --dark-border: #ededed;
  --active-green: #b3d2a5;
  --box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  
  --background: #FAF8F5;
  --foreground: #4A4A4A;
  --card: --off-white;
  --card-foreground: #4A4A4A;
  --popover: --off-white;
  --popover-foreground: #4A4A4A;
  --primary: #8FA883;
  --primary-foreground: --off-white;
  --secondary: #E8DCC4;
  --secondary-foreground: #4A4A4A;
  --muted: #E8DCC4;
  --muted-foreground: #6B6B6B;
  --accent: #C9A88A;
  --accent-foreground: #4A4A4A;
  --destructive: #d4183d;
  --destructive-foreground: --off-white;
  --border: rgba(143, 168, 131, 0.2);
  --input: transparent;
  --input-background: #f3f3f5;
  --switch-background: #cbced4;
  --font-weight-medium: 500;
  --font-weight-normal: 400;
  --ring: #8FA883;
  --chart-1: oklch(0.646 0.222 41.116);
  --chart-2: oklch(0.6 0.118 184.704);
  --chart-3: oklch(0.398 0.07 227.392);
  --chart-4: oklch(0.828 0.189 84.429);
  --chart-5: oklch(0.769 0.188 70.08);
  --radius: 0.75rem;
  --sidebar: oklch(0.985 0 0);
  --sidebar-foreground: oklch(0.145 0 0);
  --sidebar-primary: #030213;
  --sidebar-primary-foreground: oklch(0.985 0 0);
  --sidebar-accent: oklch(0.97 0 0);
  --sidebar-accent-foreground: oklch(0.205 0 0);
  --sidebar-border: oklch(0.922 0 0);
  --sidebar-ring: oklch(0.708 0 0);
}

.unmuted{
  color: var(--foreground);
}
.muted{
  color: var(--muted-foreground);
}


  
/* --------------------
   GLOBAL STYLES
--------------------- */

section {
  background: var(--background);
}

.divider{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5%;
  margin: 0 auto;
  opacity: 0;
  transition: 
    opacity 0.8s ease,
    transform 0.8s ease;
}

.divider.is-visible {
  opacity: 1;
}



header {
  z-index: 1110;
}


#menu-backdrop {
  position: fixed;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  z-index: 998;
  backdrop-filter: blur(4px);
  background: rgba(0, 0, 0, 0.25);
  transition: opacity 0.35s ease;
}

/* When menu is open */
#menu-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

* {
  box-sizing: border-box;
}

body{
  margin: 0;
  font-family: "Segoe UI", Tahoma, sans-serif;
  color: var(--charcoal-grey);
  min-height: 100vh;
}
main{
  position: relative;
    z-index: 10;
}

h1, h2, h3 {
  font-weight: 700;
}
h4{
  font-weight: 400;
}
p {
  line-height: 1.6;
}

/* --------------------
   FLASH MESSAGES
--------------------- */
.flash-messages {
  position: fixed;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
}

.flash-message {
  background: #e6f4ea;
  color: #0f5132;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-weight: 500;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  animation: fadeIn 0.3s ease;
}

.flash-message.error {
  background: #fdecea;
  color: #842029;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* --------------------
   HEADER / NAV
--------------------- */
header{
  display: flex;
  justify-content: center;
}
.desktop-nav-text {
  margin-left: 20px;
  text-decoration: none;
  color: var(--charcoal-grey);
  font-weight: 600;
}
.desktop-nav-text:hover {
  color: var(--muted-clay);
}
/*
#jigglingMobileNav{
  animation: shake 2s infinite;
}
*/
@keyframes shake {
  0% { transform: translate(1px, 1px) rotate(0deg); }
  10% { transform: translate(-1px, -2px) rotate(-1deg); }
  20% { transform: translate(-3px, 0px) rotate(1deg); }
  30% { transform: translate(3px, 2px) rotate(0deg); }
  40% { transform: translate(1px, -1px) rotate(1deg); }
  50% { transform: translate(-1px, 2px) rotate(-1deg); }
  60% { transform: translate(-3px, 1px) rotate(0deg); }
  70% { transform: translate(3px, 1px) rotate(-1deg); }
  80% { transform: translate(-1px, -1px) rotate(1deg); }
  90% { transform: translate(1px, 2px) rotate(0deg); }
  100% { transform: translate(1px, -2px) rotate(-1deg); }
}

.mobile-nav-text {
  margin-left: 20px;
  text-decoration: none;
  color: var(--charcoal-grey);
  font-weight: 600;
}



.menu-icon {
  display: none; /* only show on mobile */
  font-size: 30px;
  cursor: pointer;
  padding: 10px;
  color: var(--charcoal-grey); /* match your site theme */
  user-select: none;
}


.showNav {
    display: flex; /* hidden by default */
    flex-direction: column;
    background-color: var(--off-white);
    position: absolute;
    top: 60px; /* adjust to your header height */
    right: 0;
    width: 200px;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

#toggle{
  display: none;
}


/* Hide checkbox 
.nav-toggle {
  display: none;
}
  */

/* Burger */
#burger {
  z-index: 1100;
  width: 30px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
}


#burger span {
  width: 100%;
  height: 3px;
  background: var(--charcoal-grey);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
}

/* Burger -> X */
#burger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

#burger.active span:nth-child(2) {
  opacity: 0;
}

#burger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Mobile menu */
.company-logo{
  height: 50px;
}
#mobile-nav {
  position: fixed;
  top: 30%;
  right: 15%;
  width: 70%;
  display: none;
  padding: 10px;
  background-color: #f0f4f8;
  border: 1px solid #ddd;
  color: var(--charcoal-grey);
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  border-bottom-left-radius: 15px;

  z-index: 1100;
  background: white;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 0.2s ease-out, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);;
  display: flex;
  align-items: flex-start;
}

#mobile-nav.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
#desktop-nav{
  display: none;
  align-items: center;
  justify-content: space-around;
}
#desktopBookIcon{
  max-width: 234px;
  display: none;
  margin: 0;
}
#header_logo{
  min-width: 234px;
}

/* Responsive */
@media (min-width: 900px) {
  #burger {
    display: none;
  }
  #desktop-nav {
    display: flex;
  }
  #desktopBookIcon{
    display: flex;
  }
}

#close-nav-toggle{
  display: none;
}

@media (max-width: 900px) {
  .menu-icon {
      display: block;
  }
  
  #desktopBookIcon{
    display: none;
  }
  #desktop-nav {
    display: none; /* hidden by default */
    flex-direction: column;
    background-color: var(--off-white);
    position: absolute;
    top: 60px; /* adjust to your header height */
    right: 0;
    width: 200px;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
  /* Toggle mobile menu
  .nav-toggle:checked + .menu-icon + .desktop-nav + .mobile-nav {
    display: flex;
    opacity: 1;
    transform: translateY(0);
  }
     */
}


/* Show menu when checkbox is checked
.toggle-checkbox:checked + .menu-icon + #mobile-nav {
    display: flex;
}
     */


/* REVIEW STRIP */
.reviewStrip {
  background: var(--warm-beige);
  display: flex;
  flex-direction: column; /* stack on mobile */
  align-items: center;
  justify-content: center;
  padding: 1.5rem 0;
  gap: 1rem;

}
.smallFaces {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;

}

.smallReviewImage {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid white;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  /*margin-left: -15px; <-- negative margin for overlap */
  position: relative;
  transition: transform 0.3s ease;

}

#firstSmallHeadOnReviewbar{
  left: 16%;
}
/* Remove negative margin on first image */
.smallReviewImage:nth-child(1) {
  left: 16%; 
}
.smallReviewImage:nth-child(2) {
  left: 8%;
}
.smallReviewImage:nth-child(3) {
  left: 0;
}
.smallReviewImage:nth-child(4) {
  left: -8%; 
}
.smallReviewImage:nth-child(5) {
  left: -16%; 
}


.smallReviewImage:hover {
  transform: scale(1.1);
  z-index: 10;

}


/* Stars and text */
.reviewStripInner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;

}


#reviewStarTextField {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
  cursor: pointer;

}

#reviewStarTextField:hover {
  font-weight: bold;
}

/* Responsive for mobile */
@media (max-width: 600px) {
  .reviewStrip {
    gap: 0.75rem;
  }

  .smallReviewImage {
    width: 40px;
    height: 40px;
  }

  .stars {
    font-size: 1.25rem;
  }
}












/* --------------------
   VIDEO
--------------------- */
#image-at-the-top {
  margin-top: 90px;
}

#writing-over-top-banner {
  background: rgba(0,0,0,0.4);
  padding: 20px;
  border-radius: 8px;
}


@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#videoReplacmentImage{
  display: flex;
}

.heroVideo{
  display: none;
}


@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none;
  }
  .hero-video-wrapper {
    background-image: url("/static/images/Video-Replacement-Image.webp");
    background-size: cover;
    background-position: center;
    min-height: 60vh;
  }
}
.video-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 50px;
}

.heroList {
  min-height: 202px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.heroBullet {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  font-weight: 600;
}

.heroBullet::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--sage-green);
}

.hero-text {
  max-width: 360px;
  font-size: 1rem;
  line-height: 1.6;
}

.hero-text h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1.1rem;
  opacity: 0.9;
}

#hero-text-left {
  text-align: right;
}

#hero-text-right {
  text-align: left;
}

.hero-image,
.hero-video{
  width: 100%;
  height: auto;
  display: block;
}

.hero-video {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.hero-video.is-visible {
  opacity: 1;
}

.hero-video-wrapper {
  position: relative;
  width: 320px;
  aspect-ratio: 9 / 16;
  border-radius: 22px;
  overflow: hidden;
  box-shadow:
    0 20px 40px rgba(0,0,0,0.25),
    0 0 0 8px rgba(186,37,82,0.05);
}

.hero-video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .video-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text {
    max-width: none;
  }

  .hero-text-left,
  .hero-text-right {
    text-align: center;
  }

  .hero-video-wrapper {
    width: 100%;
    max-width: 360px;
    margin: 30px auto;
  }
}



/* --------------------
   SECTIONS
--------------------- */
.home-page-section-header {
  text-align: center;
  font-size: 2.2rem;
  margin: 20px 0;
  color: var(--charcoal-grey);
}


#hrHiglight {
  width: 80px;
  border: 2px solid white;
}

.home-page-secion-header-section{
  text-align: center; 
  padding: 5%;
  padding-top: 0%;
}


/***************************
WHAT SETS US APART SECTION
***************************/

.appRow{
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 5%;
  margin-bottom: 5%;
  margin-left: 10%;
  margin-right: 10%;
  border-radius: 50px;
  width: 60%;
}

.appRowRight{
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 5%;
  margin-bottom: 5%;
  margin-left: 10%;
  margin-right: 10%;
  border-radius: 50px;
  width: 60%;
}

.appRowText{
  width: 75%;
  margin-left: 5%;
  margin-right: 5%;
}
.appRowTextRight{
  width: 75%;
  margin-left: 5%;
  margin-right: 5%;
}
/*
.smallDogImageRow{
  width: 20%;
}
*/

.smallDogImage{
  width: 100%;
  height: auto;
  border-radius: 50px;
  aspect-ratio: 247/247;
  object-fit: cover;
}


.appRowText h3{
  color: var(--charcoal-grey);
  font-weight: bold;
}



@media (max-width: 900px) {
  .appRow{
    flex-direction: column;
    width: 80%;
    background-color: transparent;
    margin-left: 5%;
    margin-right: 5%;
  }
  .appRowText{
    width: 100%;
    margin: 0%;
  }
  .appRow p{
    font-size: 16px;
    margin: 0%;
  }
  .appRow h3{
    font-size: medium;
    margin-bottom: 2%;
  }

  #what-we-offer-header{
    display: none;
  }

  .smallDogImageRow{
    width: 100%;
  }
  .appRowRight{
    -webkit-transform: scaleY(-1);
    flex-direction: column;
    width: 80%;
    background-color: transparent;
    margin-left: 5%;
    margin-right: 5%;
  }
  .appRowTextRight{
    -webkit-transform: scaleY(-1);
    width: 100%;
    margin: 0%;
  }
  .appRowRight p{
    font-size: 16px;
    margin: 0%;
  }
  .appRowRight h3{
    font-size: medium;
    margin-bottom: 2%;
  }
  .smallDogImageRowRight{
    -webkit-transform: scaleY(-1);
    width: 100%;
  }
}



/*******************************************
ANIMATIONS
*******************************************/
@media (min-width: 900px) {
  @keyframes slideInLeft {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
  }

  @keyframes slideInRight {
    from { transform: translateX(+100%); }
    to { transform: translateX(0); }
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }


  .leftFadeAnimation {
    animation: fadeIn 4s, slideInLeft 2s ease-out;
  }

  .rightFadeAnimation {
    animation: fadeIn 4s, slideInRight 2s ease-out;
  }

  .completeFadeInAnimation{
    animation: fadeIn 4s forwards;
  }
}

@media (max-width: 900px) {
  .leftFadeIcon,
  .rightFadeIcon {
    min-height: 547.97;
  }
}


/*

.leftFadeIcon,
.rightFadeIcon {
  opacity: 0;
  will-change: transform, opacity;
}



.leftFadeIcon {
  transform: translateX(-50px);
}

.rightFadeIcon {
  transform: translateX(50px);
}

.leftFadeAnimation {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.rightFadeAnimation {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 1.2s ease, transform 1.2s ease;
}
*/


/* --------------------
   BUTTONS
--------------------- */

.contactBtn{
  display: flex;
  justify-content: center;
}

.myBtn{
  text-decoration: none;
  background-color: var(--sage-green);
  cursor: pointer;
  color: var(--off-white);
  border-radius: 50px;
  transition: background-color 0.3s, box-shadow 0.2s;
  width: auto;
  padding: 10px 24px; /* Adjust as needed */
  font-size: 18px;
  letter-spacing: 1px; /* Increase readability */
  text-align: center;
  margin: 5%;
}
.myBtn:focus {
  outline: none; /* Remove the default focus outline */
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--active-green); /* Custom focus style */
}
.myBtn:hover{
  background-color: var(--active-green);
  transform: scale(1.05);
  transition: transform 0.3s, background-color 0.3s, box-shadow 0.2s;
}
.myBtn:active {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); /* Optional: inner shadow to simulate a pressed effect */
}

.myBtnAlt{
  text-decoration: none;
  background-color: var(--dark-border);
  cursor: pointer;
  color: var(--charcoal-grey);
  border-radius: 50px;
  transition: background-color 0.3s, box-shadow 0.2s;
  width: auto;
  padding: 10px 24px; /* Adjust as needed */
  font-size: 18px;
  letter-spacing: 1px; /* Increase readability */
  text-align: center;
  margin: 5%;
}
.myBtnAlt:focus {
  outline: none; /* Remove the default focus outline */
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--active-green); /* Custom focus style */
}
.myBtnAlt:hover{
  background-color: var(--muted-clay);
  transform: scale(1.05);
  transition: transform 0.3s, background-color 0.3s, box-shadow 0.2s;
}
.myBtnAlt:active {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); /* Optional: inner shadow to simulate a pressed effect */
}











.myBtnBlue{
  background-color: #dbe8f8;
  width: 20%;
  cursor: pointer;
  color: black;
  border-radius: 50px;
  transition: background-color 0.3s, box-shadow 0.2s;
  width: auto;
  padding: 10px 30px; /* Adjust as needed */
  font-size: 18px; /* Adjust size as needed */
  font-weight: bold; /* Make the text stand out */
  letter-spacing: 1px; /* Increase readability */
  padding: 12px 24px; /* Adjust padding to ensure ample space around the text */
  text-align: center;
}

.myBtnBlue:focus {
  outline: none; /* Remove the default focus outline */
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px #b0c9dc; /* Custom focus style */
}

.myBtnBlue:hover{
  background-color: #c5d8ea;
  transform: scale(1.05);
  transition: transform 0.3s, background-color 0.3s, box-shadow 0.2s;
}

.myBtnBlue:active {
  background-color: #9db1cc; /* Even darker for active/click */
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); /* Optional: inner shadow to simulate a pressed effect */
}

/* --------------------
   PRICING – IMPROVED
--------------------- */

.pad {
    width: 25px;
    height: 27px;
    background-color: var(--charcoal-grey);
    -webkit-border-radius: 63px 63px 63px 63px / 108px     108px 72px 72px;
    border-radius: 50%  50%  50%  50%  / 60%   60%         40%  40%;
    display: block;
    position: absolute;
}       

.pricingCol{
  text-decoration: none;
  color: var(--charcoal-grey);
  box-shadow: 0 2px 4px rgba(0,0,0,0.5);
  padding: 3%;
  border-radius: 15px;
  display: flex;
  background-color: var(--off-white);
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.pricingSectionIcon{
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  /*border: 0.5px solid var(--color-dark-box-border);*/
  background: var(--warm-beige);
  border-radius: 10px;
  margin-bottom: 5%;
}


.pricingTextOuterDiv{
  display: flex;
  flex-direction: column;

}

#pricingSectionOuter {
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#pricingSectionOuter::before {
  content: "\f1b0";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 28px;
  color: rgba(186, 37, 82, 0.06);
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, 80px);
  grid-auto-rows: 80px;
  pointer-events: none;
}


#pricingUpperSection {
  max-width: 1000px;
  width: 100%;
}

#pricingUpperSectionInner {
  text-align: center;
}

#pricingUpperSectionInner ul {
  padding-left: 20px;
  display: inline-block;
  text-align: left;
}

/* Pricing cards container */
#pricingBodySection {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  padding-left: 5%;
  padding-right: 5%;
}

.pricingCol:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* Featured (Full Day) */
.pricingCol.featured {
  background-color: var(--muted-clay);
  color: rgba(255,255,255,0.9);
  transform: scale(1.05);
}

.pricingCol.featured:hover {
  transform: scale(1.08);
}

/* Featured badge */
.pricingCol.featured::before {
  content: "MOST POPULAR";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--off-white);
  color: #ba2552;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 6px 12px;
  border-radius: 20px;
}

/* Headers */

.pricingHeader{
  display: flex;
  flex-direction: column;
}
.pricingHeader h3 {
  font-size: 1.4rem;
}

.pricingHeader p {
  font-size: 0.95rem;
  opacity: 0.85;
}

.priceSection{
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

#noObligationNote{
  font-size: larger;
}

/* Price */
/* Replace bullets with check icons */
.pricingList,
.pricingBody ul {
  list-style: none;
  padding-left: 0;
}

.pricingList,
.pricingBodyHighlight ul {
  list-style: none;
  padding-left: 0;
}

.packageBullet{
  position: relative;
  padding-left: 26px;
}

.packageBullet::before {
  position: relative;
  padding-left: 26px;
  position: absolute;
  left: 0;
  top: 0;
  color: #dbe8f8;
  font-weight: bold;
}

#packagaeBulletWater{
  list-style: "💧";
}
#packagaeBulletUpdates{
  list-style: "📸";
}
#packagaeBulletSupervision{
  list-style: "👀";
}
#packagaeBulletWalk{
  list-style: "🐕";
}
#packagaeBulletFood{
  list-style: "🦴";
}
#packagaeBulletCover{
  list-style: "🚑";
}
#packagaeBulletDbs{
  list-style: "👮";
}
#packagaeBulletHome{
  list-style: "🏡";
}
#packagaeBulletLove{
  list-style: "❤️";
}

.pricingBullet {
  position: relative;
  padding-left: 26px;
}

.pricingBullet::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--charcoal-grey);
  font-weight: bold;
}

.pricingBulletHighlight{
  position: relative;
  padding-left: 26px;
}

.pricingBulletHighlight::before{
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #dbe8f8;
  font-weight: bold;
}

.pricingNote {
  margin-top: 25px;
  font-size: 0.95rem;
  color: var(--charcoal-grey);
  text-align: center;
  font-style: italic;
}



/* Button spacing */
.pricingCol button {
  margin-top: 20px;
}

/* Responsive */
@media (max-width: 900px) {
  #pricingBodySection {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .pricingCol,
  .pricingCol.featured {
    transform: none;
    max-width: 350px;
    transform: translate(0px);
  }
}



/*---------------------
WHY US 
-----------------------*/
#pricingSectionHeader{
  padding-top: 0%;
}
.newSectionAlt{
  background-color: var(--warm-beige);
  padding: 5%;
}
.fourWaySection{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.singleCard{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.singleCard img{
  border-radius: 15px;
  max-width: 100px;
}
.singleCardText{
  display: flex;
  flex-direction: column;
  text-align: center;
  color: var(--muted-foreground);
}


/* --------------------
   WHAT CLIENTS SAY
--------------------- */

.threeCards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  padding-left: 5%;
  padding-right: 5%;
}
.card{
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    padding: 3%;
    border-radius: 15px;
    display: flex;
    background-color: var(--off-white);
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.starOuter{
  color: var(--sage-green);
}
hr{
  border: 1px solid var(--active-green);
}
.cardBold{
  margin-bottom: 0%;
  font-weight: 500;
}
.cardAddress{
  margin-top: 0%;
}

/*--------------------
BOOKING SECTION HOME
--------------------*/
.ctaSection, .intial-cta{
  background-color: var(--warm-beige);
  padding: 5%;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.ctaOuter{
  max-width: 800px;
  background-color: var(--off-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 25px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5)
}
.ctaCards{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    flex-direction: row;
    justify-content: space-around;
    gap: 2rem;
    width: 100%;
}
.ctaCard{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
}
.ctaCard:hover{
  transform: scale(1.05);
  transition: transform 0.3s, background-color 0.3s, box-shadow 0.2s;
}
.ctaCardImg{
  background-color: var(--warm-beige);
  border-radius: 50px;
  width: 50px;
  height: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.ctaCard svg{
  width: 30px;
  height: 30px;
}
.ctaSubHeader{
  margin-bottom: 0%;
  font-weight: 500;
}
.ctaCardLink{
  margin-top: 0%;
}

/* --------------------
   faq
--------------------- */

#faqOuterSection{
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.faqTab {
  cursor: pointer;
  padding: 10px;
  background-color: var(--warm-beige);
  border: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #000;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  border-bottom-left-radius: 15px;
}
.faqTab h3{
  font-weight: 500;
}

.faqSection{
  margin-bottom: 5%;
}

.faqBody {
  display: none;
  padding: 10px;
  border: 1px solid #ddd;
  border-top: none;
  border-bottom-right-radius: 15px;
  border-bottom-left-radius: 15px;
}


.faqTab.active {
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}

.plus-minus {
  font-size: 24px;
}


/* --------------------
   FOOTER
--------------------- */

.change-month-button{
  font-size: small;
  width: 30%;
}




/* --------------------
   FOOTER
--------------------- */
#footer-section-homepage {
  padding: 40px;
  color: #fff;
}

.footer-column {
  margin: 0 40px;
}

.footer-menu-item {
  display: block;
  color: #ddd;
  text-decoration: none;
  margin-top: 8px;
}

.footer-menu-item:hover {
  color: #fff;
}


/*********************
Calendar section
*********************/



table {
  width: 100%;
  border-collapse: collapse;
}
th, td {
  width: 100px;
  padding: 10px;
  text-align: center;
  border: 1px solid var(--charcoal-grey);
}
th {
  background-color: var(--muted-clay);
}
tbody{
  background-color: var(--off-white);
}
tbody tr td:hover{
  cursor: pointer;
  background-color: var(--active-green);
}
td.today {
  background-color: var(--sage-green);
  color: var(--off-white);
}
.clicked {
  background-color: var(--active-green); /* Change this to your desired color */
  color: #000; /* Change this to your desired text color */
}
.month-header{
  border: 0;
  font-size: 20px;
  color: var(--charcoal-grey);
  /* color: blue; */
  font-weight: bold;
  padding: 0;
}
.calendarBtns{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
#nextMonthButton{
  padding: 10px;
  font-size: 13px;
}
#prevMonthButton{
  padding: 10px;
  font-size: 13px;
}
#calendar-section{
  max-width: 540px;
}
#calendar-section p, #calendar-section h3{
  color: var(--charcoal-grey);
}
#contact-form-header{
  color: var(--charcoal-grey);
}
#calendar-form-header{
  color: var(--charcoal-grey);
}

.userInputFields{
  padding: 1% 0%; 
  margin-bottom: 4%;
}

#form-section{
  width: 50%;
  padding: 10px 50px;
  padding-top: 4%;
}

@media (max-width: 900px) {
  #ContactUs{
    display: flex;
    flex-direction: column;
  }
  #form-section{
    width: 100%;
  }
  #calendar-section{
    width: 100%;
  }
  th, td{
    padding: 5px;
  }


}




/*********************
Modal
*********************/

/* Base input styles */
input,
textarea,
select {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  font-family: inherit;
  color: #1a1a1a;
  background-color: #f0f4f8;
  border: 1.5px solid #d6dce3;
  border-radius: 10px;
  outline: none;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

/* Placeholder styling */
input::placeholder,
textarea::placeholder {
  color: #7a8694;
}

/* Focus state */
input:focus,
textarea:focus,
select:focus {
  background-color: var(--off-white);
  border-color: var(--sage-green);
  box-shadow: 0 0 0 3px rgba(186, 37, 82, 0.12);
}

/* Textarea tweaks */
textarea {
  resize: vertical;
  min-height: 120px;
}

/* Modal inputs spacing */
.modal-content input,
.modal-content select {
  margin-bottom: 16px;
}

@media (max-width: 700px) {
  .modal-content {
    width: 80%;
  }
}

/* Optional: subtle hover */
input:hover,
textarea:hover,
select:hover {
  border-color: #b3bcc7;
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;

  width: 36px;
  height: 36px;

  border-radius: 50%;
  border: none;

  background-color: white;
  color: black;

  font-size: 22px;
  font-weight: 500;
  line-height: 1;

  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: all 0.2s ease;
}

/* Hover state */
.modal-close-btn:hover {
  background-color: var(--warm-beige);
  color: var(--charcoal-grey);
}

/* Focus (keyboard accessibility) */
.modal-close-btn:focus {
  outline: none;
  box-shadow: var(--box-shadow);
}

/* Active click feedback */
.modal-close-btn:active {
  transform: scale(0.95);
}


/*******
* FOOTER
*********/

.site-footer {
  padding: 60px 20px 30px;
  font-family: inherit;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.footer-link {
  color: #04062f;
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.5;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #9aa0b5;
}

.footer-bottom {
  max-width: 1100px;
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid #d0d4e0;
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(-charcoal-grey)555;
}

.footer-bottom a {
  color: #aab0ff;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--off-white);
}

/* Mobile */
@media (max-width: 700px) {
  .footer-inner {
    flex-direction: column;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }


}


/***********
ABOUT PAGE
*************/


/* ABOUT HERO */
#aboutHeroSection {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  justify-content: center;
  justify-items: center;
  overflow: hidden;
}
.aboutHero{
  max-width: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#aboutHeroLeft h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

#aboutHeroLeft p {
  font-size: 1.1rem;
  color: var(-charcoal-grey);
}
#aboutHeroRight img {
  border-radius: 16px;
  display: block;
}
.heroButtons{
  display: flex;
  flex-direction: row;
}
.heroButtons a{
  display: flex;
  align-items: center;
}
/* ABOUT MAIN TEXT */
#aboutMainTextOuter {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.7;
}
#aboutHeader, #aboutExperience{
  background: var(--warm-beige);
  padding: 4rem 8%;
}
/* FEATURES */
#aboutFeatures {
  background: var(--off-white);
  padding: 4rem 8%;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.feature-card {
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-card-icon{
  background-color: var(--sage-green);
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
}
.feature-card-icon svg{
  color: var(--off-white)
}
.feature-card h3{
  margin-bottom: 2%;
}
.feature-card p{
  margin-top: 0%;
}

/* EXPERIENCE */
#aboutExperience {
  padding: 4rem 8%;
  background: var(--warm-beige);
}

.experience-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.experience-text h3{
  font-weight: 400;
}
.experience-text h4{
  margin-bottom: 2%;
  font-weight: 650;
}
.experience-text{
  margin-top: 0%;
}
.experience-text ul {
  list-style: none;
  padding: 0;
}

.experience-text li {
  margin-bottom: 0.5rem;
}

.experience-image img {
  width: 100%;
  border-radius: 16px;
}

/* TRUST */
#aboutTrust {
  padding: 4rem 8%;
  text-align: center;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.trust-strip{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}

.trust-item {
  padding: 1rem;
  margin: 2%;
  justify-content: center;
  text-decoration: none;
  color: var(--charcoal-grey);
  box-shadow: var(--box-shadow);
  padding: 3%;
  border-radius: 15px;
  display: flex;
  background-color: var(--off-white);
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* CTA */
.about-cta {
  display: inline-block;
  margin-top: 2rem;
  padding: 1rem 2.5rem;
  background: #222;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 500px) {
  #aboutHeroSection,
  .experience-inner {
    grid-template-columns: 1fr;
  }
}

.ready-to-meet{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ready-to-meet h3{
  font-weight: 400;
}



/* =========================
   REVIEWS PAGE STYLES
   ========================= */

/* Shared */
.stars {
  color: #f5c518; /* Gold color for stars */
  font-size: x-large;
  letter-spacing: 2px;
}

.reviewText{
  font-size: 1rem;
  line-height: 1.6;
  color: var(--charcoal-grey);
}

.reviewText strong{
  color: #000000;
  font-size: medium;
  font-weight: bold;

}



/* =========================
   Trust Strip
========================= */

.trustStrip {
  background-color: #f0f4f8;
  border-top: 1px solid #e3e7ec;
  border-bottom: 1px solid #e3e7ec;
  padding: 1.25rem 1rem;
}

.trustStripInner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.trustItem {
  background-color: var(--warm-beige);
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
}


.trustIcon {
  font-size: 1.1rem;
  line-height: 1;
}

/* =========================
   Responsive
========================= */

@media (max-width: 768px) {
  .trustStripInner {
    justify-content: center;
  }

  .trustItem {
    font-size: 0.9rem;
  }
}


/* -------------------------
   HERO
-------------------------- */

.reviews-hero {
  padding: 4rem 1.5rem;
  text-align: center;
  padding: 120px 30px 80px
}

.reviews-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}

.reviews-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin: 1rem 0 0.5rem;
  color: #04062f;
}

.reviews-hero p {
  font-size: 1.05rem;
  color: #444;
  max-width: 600px;
  margin: 0 auto;
}



/* -------------------------
   REVIEW GRID
-------------------------- */

.reviews-grid-section {
  padding: 4rem 1.5rem;
}

.reviews-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.review-card {
  background: var(--accent);
  border-radius: 14px;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.review-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--charcoal-grey);
}

.review-author {
  font-size: 0.9rem;
  color: var(-charcoal-grey);
}
.reviewRoverSection{
  margin: 5%;
}
.reviews-more-reviews {
  margin: 3rem auto 4rem;
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 16px;
  background-color: var(--active-green);
  max-width: 700px;
}

.reviews-more-text {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--charcoal-grey);
}

.reviews-more-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.8rem;
  background: var(--off-white);
  color: var(--charcoal-grey);
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.reviews-more-button:hover {
  background: var(--warm-beige);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.reviews-more-note {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--charcoal-grey);
}







/* -------------------------
   CTA SECTION
-------------------------- */

.reviews-cta {
  background: var(--warm-beige);
  color: var(--charcoal-grey);
  padding: 4rem 1.5rem;
  text-align: center;
}

.reviews-cta h2 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  margin-bottom: 0.75rem;
}

.reviews-cta p {
  font-size: 1.05rem;
  margin-bottom: 2rem;
  color: var(--charcoal-grey);
}

.cta-button {
  display: inline-block;
  padding: 0.9rem 1.8rem;
  background: var(--off-white);
  color: #04062f;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.cta-button:hover {
  background: var(--muted-clay);
  transform: translateY(-2px);
}

/* -------------------------
   RESPONSIVE TWEAKS
-------------------------- */

@media (max-width: 600px) {
  .review-card {
    padding: 1.6rem;
  }

  .reviews-cta {
    padding: 3rem 1.25rem;
  }
}

/* --------------------
   CONTACT FORM
--------------------- */


.contactHeroHeader{
  max-width: 1280px;
}
#contactHeroSection{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-form{
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}
.contact-form-inputs{
  min-width: 500px;
}
.contact-form label{
  margin-bottom: 5px;
  color: var(--charcoal-grey);
  font-size: small;
  font-weight: 600;

}
.contact-form label strong{
  color: #000000;
  font-size: medium;
  font-weight: bold;

}

.contact-form input,
.contact-form textarea{
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;

}

.contact-form-container{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  padding: 5%;
  background-color: var(--warm-beige);
}



/*************
COOKIE
*****************/


.cookieOuter {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(90%, 420px);
  background: var(--accent);
  color: var(--charcoal-grey);
  padding: 1.2rem;
  border-radius: 12px;
  z-index: 9999;
  box-shadow: var(--box-shadow);
}

.cookieButtons {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  justify-content: space-around;
}



@media (max-device-width: 900px) {
  .contact-form-container{
  margin-bottom: 0%;
  }
}

@media (max-width: 768px) {
    .video-hero{
      padding: 5%;
    }
    .heroButtons a{
      min-width: 40%;
      font-size: small;
      display: flex;
      align-items: center;
      flex-direction: column;
      justify-content: center;
    }
    #pricingBodySection, .threeCards, .fourWaySection, .ctaCards{
        grid-template-columns: 1fr;
    }
    .singleCardText p{
      margin-top: 0;
    }
    .singleCardText h3{
      margin-bottom: 1%;
    }
    #hero-text-left{
      text-align: left;
    }
    .contact-form{
      width: 90%;
      margin: 10%;
    }
    .contact-form-container{
      flex-direction: column;
      background-color: transparent;
      width: 100%;
      padding: 0;
    }
    .contact-form-inputs{
      min-width: 1px;
    }
    #calendar-section{
      padding: 10% 5%;
      background-color: var(--warm-beige);
    }
    #prevMonthButton{
      min-width: 130px;
    }
    #nextMonthButton{
      min-width: 130px;
    }
    th, td{
      min-width: 50px;
      height: 60px;
    }
    #contactHeroSection{
      padding-bottom: 0;
    }
    #aboutHeroSection{
      display: flex;
      flex-direction: column;
      
    }
  }


/*-----------
ACCESIBILITY
--------------*/

@media (prefers-reduced-motion: reduce) {
  .divider,
  .divider * {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

