
/*
========================================
COLOR SYSTEM
========================================
*/

:root {
  --dc-primary: #7c3aed;
  --dc-primary-dark: #6d28d9;

  --dc-success-bg: #dcfce7;
  --dc-success-text: #166534;

  --dc-rating: #fbbf24;

  --dc-text-main: #111827;
  --dc-text-sub: #6b7280;
  --dc-text-muted: #9ca3af;

  --dc-bg-card: #ffffff;
  --dc-bg-soft: #f3f4f6;

  --dc-border: #e5e7eb;
}

/*
========================================
COLOR THEMES (LOCKED)
========================================
*/

/* 1. Purple (default) */
.dc-theme-purple {
  --dc-primary: #7c3aed;
  --dc-primary-dark: #6d28d9;
  --dc-primary-rgb: 124, 58, 237;
}

.dc-theme-softgreen {
  --dc-primary: #7adaa5;
  --dc-primary-dark: #4fbf82;
  --dc-primary-rgb: 122, 218, 165;
}

.dc-theme-orange {
  --dc-primary: #ff5200;
  --dc-primary-dark: #c2410c;
  --dc-primary-rgb: 255, 82, 0;
}

.dc-theme-cyan {
  --dc-primary: #03aed2;
  --dc-primary-dark: #0369a1;
  --dc-primary-rgb: 3, 174, 210;
}

.dc-theme-pink {
  --dc-primary: #ff0087;
  --dc-primary-dark: #c40067;
  --dc-primary-rgb: 255, 0, 135;
}

.dc-theme-blue {
  --dc-primary: #2563eb;
  --dc-primary-dark: #1d4ed8;
  --dc-primary-rgb: 37, 99, 235;
}

.dc-btn {
  transition: all 0.15s ease;
}

.dc-btn:active {
  transform: scale(0.98);
}

.dc-btn.primary {
  box-shadow: none !important;
}

@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@500;600;700;800&display=swap');

/*
========================================
GLOBAL RESET FOR DAYCARE PAGE
========================================
*/

.single-daycare .site-content,
.single-daycare .site-main,
.single-daycare article {
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Allow hero to break layout without affecting header */
.single-daycare .site-content .ast-container {
  max-width: 100% !important;
  padding: 0 !important;
}
.site-header .ast-builder-grid-row {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header .site-branding {
  flex-shrink: 0;
}

.main-header-menu {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* =============================
   MAIN MENU (THEMED + MODERN)
============================= */

.main-header-menu > li > a {
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  letter-spacing: 0.2px;
  padding: 8px 12px;
  position: relative;
  transition: all 0.25s ease;
}

/* HOVER */
.main-header-menu > li > a:hover {
  color: var(--dc-primary);
}

/* 🔥 UNDERLINE ANIMATION */
.main-header-menu > li > a::after {
  content: "";
  position: absolute;
  left: 12px;
  bottom: 4px;
  width: 0;
  height: 2px;
  background: var(--dc-primary);
  border-radius: 10px;
  transition: width 0.25s ease;
}

.main-header-menu > li > a:hover::after {
  width: calc(100% - 24px);
}

/* ACTIVE MENU ITEM */
.main-header-menu > li.current-menu-item > a,
.main-header-menu > li.current_page_item > a {
  color: var(--dc-primary);
  font-weight: 600;
}

/* ACTIVE UNDERLINE ALWAYS VISIBLE */
.main-header-menu > li.current-menu-item > a::after,
.main-header-menu > li.current_page_item > a::after {
  width: calc(100% - 24px);
}

.main-header-menu > li > a:hover {
  transform: translateY(-1px);
}

.dc-hero-card {
  max-width: 100%;
  box-sizing: border-box;
}
.idc-fullwidth {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
.dc-hero-image {
  width: 100%;
}

.dc-hero-image img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .dc-hero {
    flex-direction: column;
  }
}


/* =============================
   FORCE THEME COLOR (OVERRIDE ASTRA)
============================= */

/* Default link color */
.main-header-menu > li > a {
  color: #374151;
}

/* Hover */
.main-header-menu > li > a:hover,
.main-header-menu > li > a:focus {
  color: var(--dc-primary) !important;
}

/* Active / current page */
.main-header-menu > li.current-menu-item > a,
.main-header-menu > li.current_page_item > a {
  color: var(--dc-primary) !important;
}
/*
========================================
FULL WIDTH WRAPPER
========================================
*/

.idc-fullwidth {
  width: 100%;
  overflow-x: hidden;
}


/*
========================================
HERO (CLEAN MODERN VERSION)
========================================
*/

.dc-hero {
  position: relative;
  width: 100%;
}

/* FULL BLEED IMAGE */
.dc-hero-image img {
  width: 100vw; /* force full width */
  height: 600px;
  object-fit: cover;
  object-position: 35% center;
  margin-left: calc(-50vw + 50%); /* break container */
}

/* CONTENT WRAPPER */
.dc-hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Card aligned to site grid */
.dc-hero-card {
  position: absolute;

  right: max(20px, calc((100% - 1100px) / 2));
  top: 50%;
  transform: translateY(-50%);

  width: 360px;
  background: var(--dc-bg-card);
  padding: 28px;
  border-radius: 18px;

  border: 1px solid var(--dc-border);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);

  pointer-events: auto;
}

/* Mobile */
@media (max-width: 768px) {
  .dc-hero-card {
    position: static;
    transform: none;
    margin: -60px 20px 0;
    margin-top: 55px;
    width: auto;
  }
}

/*
========================================
HERO – FULL WIDTH FIX
========================================
*/

.dc-hero-wrap {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}
/* FORCE HERO TO ESCAPE ASTRA CONTAINER */
.single-daycare .site-content {
  overflow-x: hidden;
}

.single-daycare .dc-hero-wrap {
  width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
}

/* HARD BREAKOUT FIX */
.single-daycare .ast-container {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
/*
========================================
BADGE
========================================
*/

.dc-badge {
  display: inline-block;
  background: var(--dc-success-bg);
  color: var(--dc-success-text);
  font-size: 13px;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 13px;
  font-weight: 600;
}

/*
========================================
TEXT
========================================
*/

.dc-hero-card h1 {
  font-size: 30px;
  margin-bottom: 10px;
  color: var(--dc-text-main);
}

.dc-price {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 18px;
  color: var(--dc-text-main);
}

/* Provider type + location */

.dc-profile-meta-line {
  margin: 8px 0 24px;

  color: #6b7280;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.005em;
}


/* OLD LOCATION STYLE - no longer used in hero card */
/*
.dc-location {
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.dc-neighbourhood {
  color: #374151;
  font-weight: 500;
}

.dc-separator {
  color: #d1d5db;
  font-size: 14px;
}

.dc-city {
  color: var(--dc-text-muted);
  font-weight: 400;
}
*/
/*
========================================
RATING (FINAL CLEAN VERSION)
========================================
*/

/* CONTAINER */
.dc-rating {
  display: flex;
  flex-wrap: wrap;              /* allow multiple rows */
  align-items: center;
  gap: 8px;
  margin: 10px 0 16px;
}

/* STARS */
.dc-rating .dc-stars {
  font-size: 14px;
  color: var(--dc-rating);
  letter-spacing: 1px;
}

/* SCORE */
.dc-rating .dc-score {
  font-size: 13px;
  font-weight: 600;
  color: var(--dc-text-main);
}

/* REVIEWS */
.dc-rating .dc-reviews {
  font-size: 13px;
  color: var(--dc-text-muted);
}

/* ⭐ FORCE VERIFIED TO NEW ROW */
.dc-rating .dc-verified {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  flex: 0 0 100%;          /* THIS is the real fix */

  width: fit-content;      /* prevent stretching */
  max-width: fit-content;

  font-size: 12px;
  font-weight: 500;
  color: #10b981;

  background: rgba(16,185,129,0.08);
  padding: 4px 10px;
  border-radius: 20px;

  margin-top: 4px;
}
/*
========================================
CTA
========================================
*/

.dc-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dc-btn {
  padding: 14px;
  text-align: center;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
}

/* PRIMARY */
.dc-btn.primary {
  background: linear-gradient(135deg, var(--dc-primary), var(--dc-primary-dark));
  color: #fff;
  box-shadow: 0 8px 20px rgba(var(--dc-primary-rgb), 0.35);
}

.dc-btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(var(--dc-primary-rgb), 0.4);
}

/* SECONDARY */
.dc-btn.secondary {
  background: #fff;
  border: 2px solid var(--dc-primary);
  color: var(--dc-primary);
  transition: all 0.2s ease;
}

.dc-btn.secondary:hover {
  background: var(--dc-primary);
  color: #fff;
}

/*
========================================
INFO STRIP
========================================
*/

.dc-strip {
  max-width: 1100px;
  margin: 60px auto 0;
  padding: 18px 20px;
  background: var(--dc-bg-soft);
  border-radius: 14px;

  display: flex;
  justify-content: space-between;
}

/*
========================================
FORCE HERO TO BREAK ASTRA CONTAINER (FINAL)
========================================
*/

/* Allow overflow */
.single-daycare .site-content {
  overflow: visible !important;
}

/* Break hero OUT of container */
.single-daycare .dc-hero-full {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

/* IMPORTANT: prevent Astra from clipping */
.single-daycare .ast-container {
  overflow: visible !important;
}
.single-daycare .site-main {
  overflow: visible !important;
}

/*
========================================
HEADER – ALIGN TO CONTENT GRID (FIX)
========================================
*/

/* Force header content to match 1100px grid */
.site-header .ast-builder-grid-row {
  max-width: 1100px !important;
  margin: 0 auto !important;
  padding: 0 20px !important;
}

/* Keep logo + menu on same line */
.site-header .ast-builder-grid-row {
  display: flex;
  align-items: center;
}

/* Push menu to right */
.site-header .ast-header-menu {
  margin-left: auto;
}

/*
========================================
HIGHLIGHTS — FULL WIDTH BOX (MATCH MOCKUP)
========================================
*/

/*
========================================
HIGHLIGHTS – PREMIUM LAYOUT
========================================
*/

.dc-highlights-wrap {
  width: 100%;
  border-top: 1px solid var(--dc-border);
  border-bottom: 1px solid var(--dc-border);
  margin-top: 0;
}

/* inner container */
.dc-highlights {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 20px;

  display: flex;
  align-items: center;
}

/* each item */
.dc-highlight {
  display: flex;
  align-items: center;
  gap: 12px;

  flex: 1;
  padding: 10px 16px;
}

/* vertical divider */
.dc-highlight + .dc-highlight {
  border-left: 1px solid var(--dc-border);
}

/* icon */
.dc-icon {
  font-size: 22px;
  width: 34px;
  text-align: center;
  opacity: 0.85;
}

/* text stack */
.dc-text {
  display: flex;
  flex-direction: column;
}

/* label */
.dc-label {
  font-size: 12px;
  color: var(--dc-text-muted);
  margin-bottom: 2px;
}

/* value */
.dc-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--dc-text-main);
}

/* sub text */
.dc-sub {
  font-size: 12px;
  color: var(--dc-text-muted);
  margin-top: 2px;
}

/* mobile */
@media (max-width: 768px) {
  .dc-highlights {
    flex-direction: column;
    align-items: flex-start;
  }

  .dc-highlight {
    width: 100%;
    border-left: none !important;
    border-top: 1px solid var(--dc-border);
  }

  .dc-highlight:first-child {
    border-top: none;
  }
}
/*
========================================
HIGHLIGHTS — FULL WIDTH BOX (MATCH MOCKUP)
========================================
*/

/* OUTER FULL WIDTH BAR */
/*.dc-highlights-wrap {
  width: 100%;
  border-bottom: 1px solid var(--dc-border);
  border-left: 1px solid var(--dc-border);
  border-right: 1px solid var(--dc-border);
  background: #fff;
}
*/
/* INNER CONTENT (ALIGNED TO SITE WIDTH) */
/*.dc-highlights {
  max-width: 1100px;
  margin: 0 auto;
  padding: 22px 20px;

  display: flex;
  align-items: center;
}
/*
/* ITEM */
/*.dc-highlight {
  display: flex;
  align-items: center;
  gap: 14px;

  padding: 0 24px;
  position: relative;
}
*/
/* VERTICAL DIVIDERS */
/*.dc-highlight:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);

  width: 1px;
  height: 40px;
  background: var(--dc-border);
}

.dc-icon {
  width: 36px;
  height: 36px;

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

  color: var(--dc-primary);
}

.dc-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
}

*/

/* ================================
HIGHLIGHTS – PREMIUM
================================ */

.dc-highlights-wrap {
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  margin-top: 0; /* remove gap from hero */
}

.dc-highlights {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
}

/* EACH ITEM */
.dc-highlight {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 18px;
  position: relative;
}

/* SOFT DIVIDER */
.dc-highlight:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: #e5e7eb;
}

/* ================================
ICON – UPGRADED (CLEAN + PREMIUM)
================================ */

.dc-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;

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

  background: rgba(var(--dc-primary-rgb), 0.08); /* soft theme tint */
  color: var(--dc-primary);

  flex-shrink: 0;
}

.dc-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.2;
}

/* TEXT BLOCK */
.dc-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

/* LABEL */
.dc-label {
  font-size: 12px;
  color: var(--dc-text-muted);
  font-weight: 500;
}


/* VALUE */
.dc-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--dc-text-main);

  line-height: 1.35;
  max-width: 190px;
}
/* SUB TEXT */
.dc-sub {
  font-size: 12px;
  color: var(--dc-text-muted);
  margin-top: 2px;
}


/* =============================
   ABOUT SECTION (REFINED)
============================= */

.dc-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* SECTION BACKGROUND + SEPARATION */
.dc-about-section {
    background: linear-gradient(
        to bottom,
        rgba(var(--dc-primary-rgb), 0.04),
        #ffffff
    );
    padding: 70px 0;

    border-top: 1px solid rgba(var(--dc-primary-rgb), 0.25);
    border-bottom: 1px solid rgba(var(--dc-primary-rgb), 0.25);
  
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.6),
    inset 0 -1px 0 rgba(var(--dc-primary-rgb), 0.08);
}


/* SOFT GLOW DIVIDER */
.dc-about-section::before,
.dc-about-section::after {
    content: "";
    display: block;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(var(--dc-primary-rgb), 0.4),
        transparent
    );
}

.dc-about-section::before { margin-bottom: 40px; }
.dc-about-section::after  { margin-top: 40px; }

/* GRID */
.dc-about-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 50px;
    align-items: center;
}

/* LEFT */
.dc-about-left {
    max-width: 520px;
}

/* TITLE */
.dc-section-title {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 14px;
    position: relative;
}

.dc-section-title::after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    margin-top: 8px;
    border-radius: 10px;
    background: var(--dc-primary);
}

/* TEXT */
.dc-about-text {
    font-size: 15px;
    line-height: 1.75;
    color: #4b5563;
    margin-bottom: 26px;
}

/* ROUTINE */
.dc-sub-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
}

.dc-routine-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #374151;

    display: flex;
    align-items: center;
    gap: 10px;
}

/* THEME-BASED ICON */
.dc-routine-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;

    background: rgba(var(--dc-primary-rgb), 0.15);
}

.dc-routine-list li::after {
    content: "✓";
    position: absolute;
    left: 3px;
    top: 0px;
    font-size: 12px;

    color: var(--dc-primary);
}

/* IMAGE CARD */
.dc-about-image-card {
    border-radius: 18px;
    overflow: hidden;

    box-shadow:
        0 12px 35px rgba(0,0,0,0.08),
        0 0 0 1px rgba(var(--dc-primary-rgb), 0.1);

    transition: all 0.2s ease;
}

.dc-about-image-card:hover {
    transform: translateY(-3px);
}

.dc-about-image-card {
    border-radius: 18px;
    overflow: hidden;

    box-shadow:
        0 12px 35px rgba(0,0,0,0.08),
        0 0 0 1px rgba(var(--dc-primary-rgb), 0.1);

    transition: all 0.2s ease;

    /* 🔥 ADD THIS */
    height: 420px; /* controls layout */
}

.dc-about-image-card:hover {
    transform: translateY(-3px);
}

.dc-about-image-card img {
    width: 100%;
    height: 100%;          /* 🔥 important */
    object-fit: cover;     /* 🔥 key control */
    display: block;
}



/* MOBILE */
@media (max-width: 900px) {
    .dc-about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .dc-about-right {
        order: -1;
    }
}

/* ================================
   PHOTO GALLERY
================================ */

/* ========================================
   PHOTO GALLERY SECTION (PUBLIC PROFILE)
======================================== */

.dc-gallery-section {
    padding: 50px 0;
    margin-top: 10px;
    background: linear-gradient(
        to bottom,
        rgba(var(--dc-primary-rgb), 0.03),
        #ffffff
    );
    border-top: 1px solid rgba(var(--dc-primary-rgb), 0.15);
    border-bottom: 1px solid rgba(var(--dc-primary-rgb), 0.15);
}

.dc-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.dc-gallery-outer {
    border-radius: 20px;
    padding: 14px;
    background: #fff;
    border: 1px solid rgba(var(--dc-primary-rgb), 0.12);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    overflow: hidden; /* Contains the scroll area */
}

.dc-gallery-wrap {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap; /* Forces horizontal layout */
    padding-bottom: 15px;
    scroll-snap-type: x mandatory;
}

/* Scrollbar Styling */
.dc-gallery-wrap::-webkit-scrollbar {
    height: 6px;
}
.dc-gallery-wrap::-webkit-scrollbar-thumb {
    background: rgba(var(--dc-primary-rgb), 0.35);
    border-radius: 10px;
}

/* Individual Photo Cards */
.dc-gallery-item {
    flex: 0 0 260px; /* Width of the card */
    scroll-snap-align: start;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(var(--dc-primary-rgb), 0.12);
    transition: all 0.25s ease;
    position: relative;
}

.dc-gallery-item img {
    width: 100%;
    height: 250px; /* 👈 Increased height for a better look */
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

/* Interaction Effects */
.dc-gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

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

/* ========================================
   DASHBOARD / PREVIEW STYLING
   (Changed classes to avoid conflicts)
======================================== */

.dc-dashboard-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

/* Used for the small selection previews in the admin area */
.dc-gallery-preview {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.dc-gallery-preview .preview-item {
    width: 90px;
    height: 90px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid var(--dc-border);
}

.dc-gallery-preview .preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dc-btn-outline {
    text-decoration: none;
    background: transparent;
    border: 1.5px solid var(--dc-primary);
    color: var(--dc-primary);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}

.dc-btn-outline:hover {
    background: rgba(var(--dc-primary-rgb), 0.08);
    color: var(--dc-primary);
}
/*
========================================
LIGHTBOX
========================================
*/

/* LIGHTBOX BACKDROP */
.dc-lightbox {
  position: fixed;
  inset: 0;

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

  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(6px);

  z-index: 9999;
}

/* ACTIVE STATE */
.dc-lightbox.active {
  display: flex;
}

/* MODAL BOX */
.dc-lightbox-content {
  background: #fff;
  border-radius: 20px;

  max-width: 900px;
  width: 90%;
  max-height: 80vh;

  overflow-y: auto;
  padding: 20px;

  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

/* IMAGES INSIDE */
.dc-lightbox-content img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 16px;
}

/* CLOSE BUTTON */
.dc-lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;

  font-size: 28px;
  cursor: pointer;
  color: #fff;
}


/*
========================================
FEES + TRUST SECTION
========================================
*/

.dc-pricing-section {
  padding-top: 10px;
}

.dc-fees-trust-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  margin: 36px 0 54px;
}

.dc-fees-card,
.dc-trust-card-new {
  background: #fff;
  border: 1px solid var(--dc-border);
  border-radius: 26px;
  padding: 30px;
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.055);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.dc-fees-card:hover,
.dc-trust-card-new:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(17, 24, 39, 0.08);
}

.dc-section-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 22px;

  color: var(--dc-primary);
  background: rgba(var(--dc-primary-rgb), 0.08);

  border-radius: 999px;
  padding: 8px 12px;

  font-size: 13px;
  font-weight: 850;
}

.dc-fee-main {
  margin-bottom: 26px;
}

.dc-fee-main > span {
  display: block;
  margin-bottom: 8px;

  color: var(--dc-text-sub);
  font-size: 15px;
  font-weight: 700;
}

.dc-fee-main strong {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;

  color: var(--dc-primary);
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 850;
  letter-spacing: -0.045em;
  line-height: 1;
}

.dc-fee-main strong.dc-contact-price {
  color: var(--dc-text-main);
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.035em;
}

.dc-fee-main em {
  color: var(--dc-text-muted);
  font-size: 18px;
  font-style: normal;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.dc-fee-subnote {
  margin: 12px 0 0;
  color: var(--dc-text-sub);
  font-size: 14px;
  font-weight: 650;
}

.dc-fee-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.dc-fee-details div {
  background: #f9fafb;
  border: 1px solid #eef0f4;
  border-radius: 18px;
  padding: 16px;
}

.dc-fee-details span {
  display: block;
  margin-bottom: 6px;

  color: var(--dc-text-muted);
  font-size: 13px;
  font-weight: 700;
}

.dc-fee-details strong {
  color: var(--dc-text-main);
  font-size: 16px;
  font-weight: 800;
}

/*
========================================
FEES CARD AVAILABILITY BADGE
========================================
*/

.dc-fee-availability {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 14px !important;
  font-weight: 850 !important;
  line-height: 1.1;
}

.dc-fee-availability.is-available {
  background: #dcfce7;
  color: #166534;
}

.dc-fee-availability.is-waitlist {
  background: #fef3c7;
  color: #92400e;
}

.dc-fee-availability.is-full {
  background: #fee2e2;
  color: #991b1b;
}

.dc-fee-availability.is-contact {
  background: #f3f4f6;
  color: #374151;
}

.dc-trust-list-new {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.dc-trust-item-new {
  display: flex;
  align-items: center;
  gap: 11px;

  background: #f9fafb;
  border: 1px solid #eef0f4;
  border-radius: 18px;
  padding: 15px;
}

.dc-trust-item-new span {
  width: 28px;
  height: 28px;
  border-radius: 999px;

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

  background: rgba(var(--dc-primary-rgb), 0.10);
  color: var(--dc-primary);

  font-size: 16px;
  font-weight: 900;
  flex: 0 0 auto;
}

.dc-trust-item-new strong {
  color: var(--dc-text-main);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.35;
}

.dc-trust-note {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  align-items: flex-start;

  background: rgba(var(--dc-primary-rgb), 0.06);
  border-radius: 18px;
  padding: 15px 16px;
}

.dc-trust-note span {
  color: var(--dc-primary);
  font-size: 16px;
  line-height: 1.4;
}

.dc-trust-note p {
  margin: 0;
  color: var(--dc-text-sub);
  font-size: 14px;
  line-height: 1.5;
}

.dc-muted-note {
  margin: 0;
  color: var(--dc-text-sub);
  font-size: 15px;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .dc-fees-trust-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .dc-fees-card,
  .dc-trust-card-new {
    padding: 22px;
    border-radius: 22px;
  }

  .dc-fee-details,
  .dc-trust-list-new {
    grid-template-columns: 1fr;
  }

  .dc-fee-main strong {
    font-size: 38px;
  }
}
/* =============================
   REVIEWS SECTION
============================= */

.dc-reviews-section {
  margin-top: 40px;
}


/* =============================
   HEADER
============================= */

.dc-reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.dc-reviews-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--dc-text-main);
}

.dc-reviews-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dc-rating-number {
  font-size: 18px;
  font-weight: 700;
  color: var(--dc-text-main);
}

.dc-stars {
  color: #fbbf24;
  font-size: 15px;
}

.dc-review-count {
  font-size: 13px;
  color: var(--dc-text-sub);
}


/* =============================
   GRID
============================= */

.dc-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

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


/* =============================
   REVIEW CARD
============================= */

.dc-review-card {
  background: #fff;
  border: 1px solid var(--dc-border);
  border-radius: 16px;
  padding: 18px;

  box-shadow: 0 8px 20px rgba(0,0,0,0.05);

  display: flex;
  flex-direction: column;
  gap: 12px;

  transition: all 0.2s ease;
}

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


/* =============================
   USER
============================= */

.dc-review-user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dc-review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;

  background: rgba(var(--dc-primary-rgb), 0.15);
  color: var(--dc-primary);

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

  font-weight: 600;
  font-size: 14px;
}

.dc-review-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--dc-text-main);
}

.dc-review-time {
  font-size: 12px;
  color: var(--dc-text-sub);
}


/* =============================
   STARS (per review)
============================= */

.dc-review-stars {
  color: #fbbf24;
  font-size: 14px;
  letter-spacing: 1px;
}


/* =============================
   TEXT
============================= */

.dc-review-text {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--dc-text-main);
}


/* =============================
   EMPTY STATE
============================= */

.dc-reviews-grid p {
  font-size: 14px;
  color: var(--dc-text-sub);
}

/* =============================
   REVIEWS UI (UPGRADED)
============================= */

.dc-reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.dc-reviews-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--dc-text-main);
}

.dc-reviews-rating {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dc-rating-number {
  font-size: 20px;
  font-weight: 700;
  color: var(--dc-text-main);
}

.dc-stars {
  color: var(--dc-rating);
  font-size: 16px;
}

.dc-review-count {
  font-size: 13px;
  color: var(--dc-text-sub);
}

/* GRID */
.dc-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

/* CARD */
.dc-review-card {
  background: #fff;
  border: 1px solid var(--dc-border);
  border-radius: 16px;
  padding: 18px;

  box-shadow: 0 6px 18px rgba(0,0,0,0.04);

  display: flex;
  flex-direction: column;
  gap: 12px;

  transition: all 0.2s ease;
}

.dc-review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.06);
}

/* USER */
.dc-review-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dc-review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(var(--dc-primary-rgb), 0.15);
  color: var(--dc-primary);

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

  font-weight: 600;
  font-size: 16px;
}

.dc-review-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--dc-text-main);
}

.dc-review-time {
  font-size: 12px;
  color: var(--dc-text-muted);
}

/* STARS */
.dc-review-stars {
  display: flex;
  gap: 2px;
}

.dc-star {
  font-size: 16px;
  color: #d1d5db;
}

.dc-star.filled {
  color: var(--dc-rating);
}

/* TEXT */
.dc-review-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--dc-text-sub);
}

.dc-read-more {
  display: inline-block;
  margin-top: 6px;
  font-size: 13px;
  color: var(--dc-primary);
  font-weight: 500;
  cursor: pointer;
}

.dc-read-more:hover {
  text-decoration: underline;
}

/* MODAL BACKGROUND */
.dc-review-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: rgba(0,0,0,0.5);

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

  z-index: 9999;
}

.dc-review-modal.active {
  display: flex;
}

/* MODAL BOX */
.dc-review-modal-box {
  background: #fff;
  width: 90%;
  max-width: 500px;

  border-radius: 16px;
  padding: 24px;

  position: relative;
}

.dc-reviews-section {
  padding-bottom: 80px;
}

/* CLOSE */
.dc-review-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 22px;
  cursor: pointer;
}

/* HEADER */
.dc-review-modal-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

/* FULL TEXT */
.dc-review-full-text {
  font-size: 12px;
  line-height: 1.6;
  color: var(--dc-text-sub);
  margin-top: 10px;
}
:root {
  --dc-border-subtle: #f1f1f1;
}

.dc-reviews-section {
  border-bottom: 1px solid var(--dc-border-subtle);
}

.dc-reviews-section .dc-verified {
  font-size: 12px;
  color: #10b981; /* green */
  font-weight: 500;
  background: rgba(16,185,129,0.08);
  padding: 3px 8px;
  border-radius: 20px;
}
/* Side Scroll Width Fix Mobile Entire Site*/
html, body {
  overflow-x: hidden;
}

/* =============================
   STICKY MOBILE CTA
============================= */

.dc-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;

  display: flex;
  gap: 10px;

  padding: 12px;
  background: #ffffff;

  border-top: 1px solid #eee;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.05);

  z-index: 9999;
}

/* buttons */
.dc-cta-btn {
  flex: 1;
  text-align: center;

  padding: 14px 12px;
  border-radius: 10px;

  font-size: 14px;
  font-weight: 600;

  text-decoration: none;
}

/* primary */
.dc-cta-btn.primary {
  background: var(--dc-primary);
  color: #fff;
}

/* secondary */
.dc-cta-btn.secondary {
  background: #f3f4f6;
  color: #111827;
}

/* hide on desktop */
@media (min-width: 769px) {
  .dc-sticky-cta {
    display: none;
  }
}
body {
  padding-bottom: 80px;
}


/* Dashboard, Dashboard, Dashboard, Dashboard, DashboardDashboard, Dashboard, Dashboard, Dashboard */
/*
========================================
DASHBOARD — PROVIDER CONTROL PANEL
========================================
*/

.idaycare-dashboard {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  width: 100%;
  max-width: 1420px;
  margin: 44px auto;
  padding: 0 28px;
  box-sizing: border-box;
  color: #111827;
}

/*
========================================
DASHBOARD SIDEBAR
========================================
*/

.idaycare-sidebar {
  width: 250px;
  flex: 0 0 250px;
  background: #ffffff;
  border: 1px solid #eef0f4;
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 16px 42px rgba(17, 24, 39, 0.055);
  position: sticky;
  top: 110px;
}

.idaycare-sidebar h3 {
  margin: 0 0 28px;
  font-size: 28px;
  font-weight: 850;
  letter-spacing: -0.05em;
  color: #111827;
}

.idaycare-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.idaycare-sidebar li {
  padding: 14px 16px;
  border-radius: 14px;
  cursor: pointer;
  margin-bottom: 8px;
  transition: background 0.16s ease, color 0.16s ease, transform 0.16s ease;
  font-size: 16px;
  font-weight: 550;
  color: #374151;
}

.idaycare-sidebar li.active,
.idaycare-sidebar li:hover {
  background: #f3f0ff;
  color: #6c3cf0;
}

.idaycare-sidebar li:hover {
  transform: translateX(2px);
}

/*
========================================
DASHBOARD CONTENT
========================================
*/

#idaycare-tab-content,
.idaycare-content {
  flex: 1;
  min-width: 0;
  max-width: none;
}

.tab-view {
  display: none;
}

.tab-view.active {
  display: block;
}

.tab-view > h2,
.idaycare-content > h2 {
  margin: 0 0 26px;
  font-size: clamp(34px, 3.4vw, 52px);
  font-weight: 850;
  letter-spacing: -0.055em;
  color: #111827;
  line-height: 1.05;
}

.idaycare-card {
  width: 100%;
  max-width: 100%;
  background: #ffffff;
  padding: 34px;
  border: 1px solid #eef0f4;
  border-radius: 26px;
  margin-bottom: 28px;
  box-shadow: 0 16px 42px rgba(17, 24, 39, 0.055);
  box-sizing: border-box;
}

/*
========================================
FORM FIELDS — SCOPED, SAFE
========================================
*/

.idaycare-card label {
  display: block;
  margin: 0 0 8px;
  color: #1f2937;
  font-size: 15px;
  font-weight: 750;
  letter-spacing: -0.01em;
}

.idaycare-card input:not([type="checkbox"]):not([type="radio"]),
.idaycare-card select,
.idaycare-card textarea {
  display: block;
  width: 100%;
  min-height: 52px;
  margin: 0 0 22px;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1px solid #d9dee8;
  background: #ffffff;
  color: #111827;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.idaycare-card textarea {
  min-height: 130px;
  resize: vertical;
}

.idaycare-card input:not([type="checkbox"]):not([type="radio"]):focus,
.idaycare-card select:focus,
.idaycare-card textarea:focus {
  border-color: #7c35e8;
  box-shadow: 0 0 0 4px rgba(124, 53, 232, 0.10);
}

.idaycare-card input::placeholder,
.idaycare-card textarea::placeholder {
  color: #9ca3af;
}

.dc-help-text,
.idaycare-card .help-text,
.idaycare-card small.help-text {
  display: block;
  margin: -10px 0 22px;
  color: #8b95a5;
  font-size: 14px;
  line-height: 1.6;
}

/*
========================================
BUTTONS — SCOPED ONLY
========================================
*/

.idaycare-card button,
.idaycare-dashboard .btn-primary,
.idaycare-dashboard .btn-secondary,
.idaycare-dashboard .btn-outline,
.idaycare-dashboard .dc-add-custom-btn,
.idaycare-dashboard .dc-save-program-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin: 8px 10px 0 0;
  padding: 13px 22px;
  border-radius: 13px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none !important;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.idaycare-card button,
.idaycare-dashboard .btn-primary,
.idaycare-dashboard .dc-add-custom-btn,
.idaycare-dashboard .dc-save-program-btn {
  background: #6c3cf0;
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(108, 60, 240, 0.22);
}

.idaycare-card button:hover,
.idaycare-dashboard .btn-primary:hover,
.idaycare-dashboard .dc-add-custom-btn:hover,
.idaycare-dashboard .dc-save-program-btn:hover {
  background: #5630c9;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(108, 60, 240, 0.28);
}

.idaycare-dashboard .btn-secondary {
  background: #f3f4f6;
  color: #374151;
  box-shadow: none;
}

.idaycare-dashboard .btn-outline {
  background: #ffffff;
  color: #6c3cf0;
  border: 2px solid #6c3cf0;
  box-shadow: none;
}

/*
========================================
PRICING & AVAILABILITY — CLEARER UI
========================================
*/

#pricing .idaycare-card,
.tab-view[data-tab="pricing"] .idaycare-card {
  max-width: 920px;
}

#dc_rate_type {
  font-weight: 750;
  color: #111827;
  background-color: #fbfbfd;
}

#dc_rate_type + .dc-help-text,
#dc_rate_type + p {
  margin-top: -10px;
  margin-bottom: 20px;
  color: #8b95a5;
  font-size: 15px;
  line-height: 1.55;
}

#dc_price {
  font-size: 18px;
  font-weight: 750;
}

#dc_capacity:disabled {
  background: #f5f6f8;
  color: #9ca3af;
  cursor: not-allowed;
}

#dc_capacity_label[style*="opacity"],
#dc_capacity_help[style*="opacity"] {
  transition: opacity 0.15s ease;
}

/* Make the Pricing card read like sections */
#dc_rate_type,
#dc_price,
#dc_age_range,
#dc_vacancy,
#dc_capacity {
  border-radius: 12px;
}

#save-pricing,
button#save-pricing {
  margin-top: 18px;
  min-width: 160px;
  font-size: 16px;
}

/*
========================================
CHECKBOX GROUPS — FIX MISALIGNMENT
========================================
*/

.idaycare-card input[type="checkbox"],
.idaycare-card input[type="radio"] {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px;
  margin: 0 !important;
  padding: 0 !important;
  flex: 0 0 auto;
  accent-color: #6c3cf0;
  cursor: pointer;
}

.dc-program-options,
.dc-trust-options,
.dc-activity-options,
.dc-outdoor-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 28px;
  margin: 18px 0 24px;
}

.dc-checkbox,
.idaycare-card label.dc-checkbox,
.idaycare-card .dc-checkbox {
  display: flex !important;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  min-height: 48px;
  padding: 12px 14px;
  margin: 0;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.dc-checkbox:hover {
  border-color: rgba(108, 60, 240, 0.45);
  background: #faf8ff;
}

.dc-checkbox.active {
  border-color: #6c3cf0;
  background: #f3f0ff;
  box-shadow: 0 8px 18px rgba(108, 60, 240, 0.08);
}

.dc-checkbox span {
  color: #1f2937;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.25;
}

/* If your checkbox labels are plain label > input + text */
.idaycare-card label:has(input[type="checkbox"]),
.idaycare-card label:has(input[type="radio"]) {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 12px;
}

/*
========================================
TRUST & SAFETY GRID
========================================
*/

#trust .idaycare-card,
.tab-view[data-tab="trust"] .idaycare-card {
  max-width: 980px;
}

#trust .idaycare-card label,
.tab-view[data-tab="trust"] .idaycare-card label {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  font-size: 16px;
  font-weight: 650;
}

/*
========================================
IMAGE LIBRARY / GALLERY
========================================
*/

.idaycare-card .image-grid,
.image-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 100%;
  margin: 16px 0 20px;
  overflow: visible;
}

.idaycare-card .image-grid img,
.image-grid img {
  width: 170px;
  height: 96px;
  object-fit: cover;
  flex: 0 0 auto;
  border-radius: 12px;
  cursor: pointer;
  border: 3px solid transparent;
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.idaycare-card .image-grid img:hover,
.image-grid img:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(17, 24, 39, 0.10);
}

.idaycare-card .image-grid img.selected,
.image-grid img.selected {
  border-color: #6c3cf0;
}

/* Hero preview should not stretch layout */
#hero-preview {
  max-width: 420px;
  margin-top: 18px;
}

#hero-preview img {
  width: 100% !important;
  max-width: 420px;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
}

/*
========================================
ABOUT / ACTIVITIES
========================================
*/

.dc-custom-activity-box {
  margin-top: 24px;
}

.dc-custom-activity-box label,
.dc-program-style-box label {
  display: block;
  margin-bottom: 8px;
  font-weight: 750;
}

.dc-custom-activity-row {
  display: flex;
  gap: 12px;
  align-items: center;
}

.dc-custom-activity-row input {
  flex: 1;
  margin-bottom: 0 !important;
}

.dc-program-style-box {
  margin-top: 24px;
  clear: both;
}

.dc-save-program-btn {
  margin-top: 18px;
}


/*
========================================
DASHBOARD PROFILE COMPLETION CHECKLIST
========================================
*/

.idc-profile-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0 24px;
  max-width: 760px;
}

.idc-profile-check-item {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 44px;
  padding: 11px 13px;
  border-radius: 14px;
  border: 1px solid #eef0f4;
  background: #ffffff;
  color: #374151;
  font-size: 14px;
  font-weight: 550;
  line-height: 1.25;
}

.idc-check-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.idc-profile-check-item.is-complete {
  background: #f8fffb;
  border-color: #dcfce7;
}

.idc-profile-check-item.is-complete .idc-check-icon {
  background: #dcfce7;
  color: #166534;
}

.idc-profile-check-item.is-missing {
  background: #fffdf7;
  border-color: #fef3c7;
}

.idc-profile-check-item.is-missing .idc-check-icon {
  background: #fef3c7;
  color: #92400e;
}

.idc-profile-check-item.is-missing .idc-check-label {
  color: #92400e;
}

.idc-check-label {
  color: #374151;
}

@media (max-width: 700px) {
  .idc-profile-checklist {
    grid-template-columns: 1fr;
  }
}
/*
========================================
PROVIDER PROFILE STATUS PAGE
========================================
*/

.idc-profile-status-page {
  min-height: calc(100vh - 90px);
  display: grid;
  place-items: center;
  padding: 90px 20px;
  background: #ffffff;
  width: 100%;
  box-sizing: border-box;
}

.idc-profile-status-card {
  width: min(760px, 100%);
  margin: 0 auto;
  background: #fff;
  border: 1px solid #eef0f4;
  border-radius: 30px;
  padding: 46px;
  text-align: center;
  box-shadow: 0 20px 54px rgba(17, 24, 39, 0.08);
  box-sizing: border-box;
}

.idc-profile-status-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 22px;
  border-radius: 999px;
  background: #f3f0ff;
  color: #7c35e8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 900;
}

.idc-profile-status-card h1 {
  margin: 0 0 16px;
  color: #111827;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 850;
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.idc-profile-status-card p {
  max-width: 610px;
  margin: 0 auto 14px;
  color: #6b7280;
  font-size: 17px;
  line-height: 1.65;
}

.idc-profile-status-actions {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.idc-status-primary,
.idc-status-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border-radius: 15px;
  font-size: 15px;
  font-weight: 850;
  text-decoration: none !important;
}

.idc-status-primary {
  background: #7c35e8;
  color: #ffffff !important;
  box-shadow: 0 12px 24px rgba(124, 53, 232, 0.22);
}

.idc-status-primary:hover {
  background: #6d28d9;
  color: #ffffff !important;
}

.idc-status-secondary {
  background: #f3f4f6;
  color: #374151 !important;
}

.idc-status-secondary:hover {
  background: #e5e7eb;
  color: #111827 !important;
}

@media (max-width: 560px) {
  .idc-profile-status-card {
    padding: 34px 22px;
    border-radius: 24px;
  }

  .idc-profile-status-actions {
    flex-direction: column;
  }

  .idc-status-primary,
  .idc-status-secondary {
    width: 100%;
  }
}

/*
========================================
PROFILE / LOGOUT BUTTONS
========================================
*/

.idc-view-profile-btn,
.idc-provider-logout {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 16px;
  padding: 13px 16px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none !important;
}

.idc-view-profile-btn {
  background: #7c35e8;
  color: #ffffff !important;
  box-shadow: 0 12px 24px rgba(124, 53, 232, 0.20);
}

.idc-view-profile-btn:hover {
  background: #6d28d9;
  color: #ffffff !important;
  transform: translateY(-1px);
}

.idc-provider-logout {
  background: #f3f4f6;
  color: #374151 !important;
}

.idc-provider-logout:hover {
  background: #fee2e2;
  color: #991b1b !important;
}


/*
========================================
DASHBOARD APPEARANCE THEME SELECTOR
========================================
*/

.theme-selector-grid {
  display: grid !important;
  grid-template-columns: repeat(6, minmax(90px, 1fr));
  gap: 16px !important;
  margin-top: 22px !important;
  margin-bottom: 24px;
}

.theme-option {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;

  min-height: 120px;
  padding: 16px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  background: #ffffff;

  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.theme-option:hover {
  border-color: rgba(124, 53, 232, 0.35);
  background: #faf8ff;
  transform: translateY(-1px);
}

.theme-option.active {
  border-color: #7c35e8;
  background: #f7f3ff;
  box-shadow: 0 12px 24px rgba(124, 53, 232, 0.12);
}

.theme-option input[type="radio"] {
  display: none !important;
}

.theme-circle {
  width: 46px !important;
  height: 46px !important;
  border-radius: 999px !important;
  border: 4px solid #ffffff !important;
  box-shadow: 0 0 0 1px #e5e7eb, 0 8px 18px rgba(17, 24, 39, 0.12) !important;
}

.theme-option.active .theme-circle {
  box-shadow: 0 0 0 3px rgba(124, 53, 232, 0.22), 0 10px 22px rgba(17, 24, 39, 0.14) !important;
}

.theme-option span {
  color: #374151 !important;
  font-size: 13px !important;
  font-weight: 750 !important;
  text-transform: capitalize;
}

/* Actual theme colour dots */
.theme-circle.dc-theme-purple {
  background: #7c35e8 !important;
}

.theme-circle.dc-theme-softgreen {
  background: #7adaa5 !important;
}

.theme-circle.dc-theme-orange {
  background: #ff5200 !important;
}

.theme-circle.dc-theme-cyan {
  background: #03aed2 !important;
}

.theme-circle.dc-theme-pink {
  background: #ff0087 !important;
}

.theme-circle.dc-theme-blue {
  background: #2563eb !important;
}

@media (max-width: 900px) {
  .theme-selector-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .theme-selector-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
/*
========================================
PROGRESS BAR
========================================
*/

.progress-bar {
  height: 9px;
  background: #eef0f4;
  border-radius: 999px;
  overflow: hidden;
  margin: 12px 0 16px;
}

.progress {
  height: 100%;
  background: #6c3cf0;
  border-radius: 999px;
}

/*
========================================
PUBLIC PAGE GALLERY SAFETY
========================================
*/

.dc-page .dc-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.dc-page .dc-gallery-item {
  height: 120px;
  border-radius: 12px;
  overflow: hidden;
}

.dc-page .dc-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*
========================================
MOBILE FRIENDLY DASHBOARD
========================================
*/

@media (max-width: 900px) {
  .idaycare-dashboard {
    display: block;
    margin: 28px auto;
    padding: 0 16px;
  }

  .idaycare-sidebar {
    position: relative;
    top: auto;
    width: 100%;
    flex: none;
    margin-bottom: 24px;
    padding: 20px;
    border-radius: 22px;
  }

  .idaycare-sidebar h3 {
    margin-bottom: 18px;
    font-size: 24px;
  }

  .idaycare-sidebar ul {
    display: flex;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 8px;
    scrollbar-width: none;
  }

  .idaycare-sidebar ul::-webkit-scrollbar {
    display: none;
  }

  .idaycare-sidebar li {
    white-space: nowrap;
    flex: 0 0 auto;
    margin-bottom: 0;
  }

  #idaycare-tab-content {
    width: 100%;
  }

  .idaycare-card {
    padding: 22px;
    border-radius: 22px;
  }

  .tab-view > h2,
  .idaycare-content > h2 {
    font-size: 34px;
  }

  .dc-program-options,
  .dc-trust-options,
  .dc-activity-options,
  .dc-outdoor-options {
    grid-template-columns: 1fr;
  }

  .image-grid,
  .idaycare-card .image-grid {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .dc-custom-activity-row {
    flex-direction: column;
    align-items: stretch;
  }

  .dc-add-custom-btn {
    width: 100%;
  }

  .idaycare-card input:not([type="checkbox"]):not([type="radio"]),
  .idaycare-card select,
  .idaycare-card textarea {
    font-size: 16px;
  }
}


/* Upload buttons (unified style) */
.upload-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 12px 20px;
  border-radius: 12px;

  font-weight: 600;
  font-size: 15px;

  background: #fff;
  border: 2px solid #6c3cf0;
  color: #6c3cf0;

  cursor: pointer;
  transition: all 0.2s ease;
}

.upload-btn:hover {
  background: #f3f0ff;
  border-color: #5630c9;
  color: #5630c9;
}

.idaycare-card .upload-btn {
  margin-bottom: 14px;
}

/*Trust Badges*/

.dc-trust-badge-icon {
  color: var(--dc-primary);
  background: rgba(var(--dc-primary-rgb), 0.12);
}

.dc-trust-badge-icon svg {
  width: 28px;
  height: 28px;
  display: block;
}

.dc-trust-label {
  color: var(--dc-text-main);
}

/* --- GLOBAL FOOTER --- */
.dc-global-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding-top: 60px;
    font-family: 'Inter', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #fff;
}

.footer-logo span {
    color: #7c3aed; /* Your brand purple */
}

.brand-col p {
    color: #a3a3a3;
    line-height: 1.6;
    font-size: 15px;
}

.footer-col h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #a3a3a3;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 15px;
}

.footer-col ul li a:hover {
    color: #7c3aed;
}

.footer-email {
    display: inline-block;
    margin-top: 10px;
    color: #7c3aed;
    font-weight: 600;
    text-decoration: none;
}

.footer-bottom {
    margin-top: 60px;
    padding: 25px 0;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    color: #737373;
    font-size: 14px;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 480px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   iDaycare Home Page - Full Replacement CSS
   ========================================================================== */

/* 1. ASTRA LAYOUT RESET 
   Forces the home page to ignore sidebars and use the full screen width. */
.home.page-template-page-home #primary {
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
}

.idc-home-wrapper {
    display: block !important;
    width: 100% !important;
    clear: both !important;
}

/* 2. HERO SECTION
   Clean white background with the purple accent from the mockup. */
.idc-hero {
    padding: 100px 0;
    background: #ffffff;
    border-bottom: 1px solid #f0f0f0;
    width: 100%;
    clear: both;
}

.idc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.idc-hero-content {
    max-width: 650px;
}

.idc-hero h1 {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 20px;
}

.text-purple {
    color: #7c3aed; /* Your brand purple */
}

/* 3. SEARCH BOX & ICON FIXES
   Specifically fixes the massive icons from the previous version. */
.idc-search-box {
    background: #ffffff;
    padding: 10px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    margin-top: 35px;
    max-width: 550px;
}

.idc-search-input-wrap {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 8px 8px 8px 16px;
    gap: 12px;
}

.search-icon {
    width: 20px !important;
    height: 20px !important;
    color: #a3a3a3;
    flex-shrink: 0;
}

#idc-main-search {
    border: none;
    background: transparent;
    flex: 1;
    font-size: 16px;
    outline: none;
    color: #1a1a1a;
    padding: 10px 0;
}

#idc-search-btn {
    background: #7c3aed;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

#idc-search-btn:hover {
    background: #6d28d9;
}

/* 4. GEO-LOCATION TRIGGER */
.idc-geo-trigger {
    display: flex;
    align-items: center;
    margin-top: 15px;
    padding-left: 10px;
    cursor: pointer;
    color: #666;
    font-size: 14px;
    gap: 8px;
}

.idc-geo-trigger svg {
    width: 16px !important;
    height: 16px !important;
    color: #7c3aed;
}

/* 5. NEIGHBORHOOD GRID SECTION */
.idc-neighborhoods {
    padding: 80px 0;
    background: #fcfcfc;
    width: 100%;
    clear: both;
}

.idc-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.idc-neighborhood-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.neighbor-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.neighbor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-color: #7c3aed;
}

.neighbor-info h3 {
    margin: 0;
    font-size: 18px;
    color: #1a1a1a;
    font-weight: 700;
}

.neighbor-info span {
    font-size: 14px;
    color: #6b7280;
}

.neighbor-card svg {
    width: 18px;
    color: #7c3aed;
}

/* 6. FOOTER SAFETY MARGIN
   Ensures the footer never overlaps with the content. */
.dc-global-footer {
    display: block !important;
    width: 100% !important;
    clear: both !important;
    margin-top: 0 !important;
}

/*
========================================
STATIC INFO PAGES: ABOUT + CONTACT
========================================
*/

.idc-page-container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.idc-page-hero {
  padding: 80px 0 60px;
  background:
    radial-gradient(circle at top left, rgba(124, 53, 232, 0.14), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, #faf8ff 100%);
  border-bottom: 1px solid #ececf3;
}

.idc-page-kicker {
  display: inline-flex;
  margin-bottom: 16px;
  color: #7c35e8;
  background: #f7f3ff;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 850;
}

.idc-page-hero h1 {
  max-width: 820px;
  margin: 0;
  color: #111827;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.idc-page-hero p {
  max-width: 720px;
  margin: 22px 0 0;
  color: #4b5563;
  font-size: 18px;
  line-height: 1.65;
}

.idc-page-section {
  padding: 64px 0;
}

.idc-two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 42px;
  align-items: start;
}

.idc-page-section h2 {
  margin: 0 0 16px;
  color: #111827;
  font-size: 34px;
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.idc-page-section p {
  color: #4b5563;
  font-size: 16px;
  line-height: 1.7;
}

.idc-info-panel {
  background: #fff;
  border: 1px solid #ececf3;
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.055);
}

.idc-info-panel h3 {
  margin: 0 0 12px;
  color: #111827;
  font-size: 22px;
  letter-spacing: -0.035em;
}

.idc-info-panel a {
  display: inline-flex;
  margin-top: 10px;
  color: #7c35e8;
  font-weight: 850;
  text-decoration: none !important;
}

.idc-soft-section {
  background: #fafafa;
  border-top: 1px solid #f0f0f4;
  border-bottom: 1px solid #f0f0f4;
}

.idc-section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.idc-section-heading span {
  color: #7c35e8;
  font-size: 13px;
  font-weight: 850;
}

.idc-section-heading h2 {
  margin-top: 10px;
}

.idc-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.idc-feature-card {
  background: #fff;
  border: 1px solid #ececf3;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.045);
}

.idc-feature-card strong {
  display: block;
  color: #111827;
  font-size: 17px;
  margin-bottom: 10px;
}

.idc-feature-card p {
  margin: 0;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.55;
}

.idc-page-cta {
  padding: 70px 0;
  background:
    radial-gradient(circle at top right, rgba(124, 53, 232, 0.18), transparent 34%),
    #7c35e8;
  color: #fff;
  text-align: center;
}

.idc-page-cta h2 {
  margin: 0;
  color: #fff;
  font-size: 42px;
  letter-spacing: -0.045em;
}

.idc-page-cta p {
  margin: 14px auto 26px;
  max-width: 620px;
  color: rgba(255,255,255,0.86);
  font-size: 17px;
  line-height: 1.6;
}

.idc-page-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #7c35e8;
  border-radius: 18px;
  padding: 16px 24px;
  font-weight: 900;
  text-decoration: none !important;
}

.idc-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 28px;
}

.idc-contact-card {
  background: #fff;
  border: 1px solid #ececf3;
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.055);
}

.idc-form-placeholder {
  margin-top: 24px;
  background: #f9fafb;
  border: 1px dashed #d1d5db;
  border-radius: 20px;
  padding: 24px;
  color: #6b7280;
}

.idc-form-placeholder p {
  margin: 0 0 8px;
}

.idc-contact-side {
  display: grid;
  gap: 18px;
}

@media (max-width: 980px) {
  .idc-two-col,
  .idc-contact-grid {
    grid-template-columns: 1fr;
  }

  .idc-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .idc-page-container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .idc-page-hero {
    padding: 58px 0 46px;
  }

  .idc-page-section {
    padding: 46px 0;
  }

  .idc-feature-grid {
    grid-template-columns: 1fr;
  }

  .idc-contact-card,
  .idc-info-panel {
    padding: 24px;
    border-radius: 22px;
  }
}

/*Log Out */

.idc-dashboard-empty {
  max-width: 780px;
  margin: 70px auto;
  padding: 0 20px;
}

.idc-dashboard-empty-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 26px;
  padding: 38px;
  box-shadow: 0 18px 44px rgba(17, 24, 39, 0.08);
  text-align: center;
}

.idc-dashboard-empty-card h2 {
  margin: 0 0 12px;
  color: #111827;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.idc-dashboard-empty-card p {
  max-width: 560px;
  margin: 0 auto 12px;
  color: #6b7280;
  font-size: 16px;
  line-height: 1.65;
}

.idc-dashboard-empty-actions {
  margin-top: 26px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.idc-empty-primary,
.idc-empty-logout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 850;
  text-decoration: none !important;
}

.idc-empty-primary {
  background: #7c35e8;
  color: #fff !important;
  box-shadow: 0 12px 24px rgba(124, 53, 232, 0.22);
}

.idc-empty-logout {
  background: #f3f4f6;
  color: #374151 !important;
}

.idc-empty-logout:hover {
  background: #fee2e2;
  color: #991b1b !important;
}

.idc-dashboard-empty-actions .idc-empty-logout,
.idc-dashboard-empty-actions .idc-empty-logout:visited,
.idc-dashboard-empty-actions .idc-empty-logout:link {
  color: #374151 !important;
  text-decoration: none !important;
  font-size: 14px !important;
  font-weight: 850 !important;
  line-height: 1 !important;
}

.idc-dashboard-empty-actions .idc-empty-logout:hover {
  color: #991b1b !important;
  text-decoration: none !important;
}

/*
========================================
DASHBOARD SIDEBAR LOGOUT
========================================
*/

.idc-provider-logout {
  display: flex;
  align-items: center;
  justify-content: center;

  margin-top: 18px;
  padding: 13px 16px;

  border-radius: 14px;
  background: #f3f4f6;
  color: #374151 !important;

  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none !important;

  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.idc-provider-logout:hover {
  background: #fee2e2;
  color: #991b1b !important;
  transform: translateY(-1px);
}

/* =======================================================
   PROVIDERS PAGE
======================================================= */

.idp-page {
    color: #1f2937;
    background: #fff;
    font-family: inherit;
}

.idp-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.idp-narrow {
    max-width: 860px;
}

.idp-section {
    padding: 90px 0;
}

.idp-soft-bg {
    background: #f8fafc;
}

/* HERO */

.idp-hero {
    padding: 120px 0 100px;
    background:
        linear-gradient(
            180deg,
            #f9fafb 0%,
            #ffffff 100%
        );
    text-align: center;
}

.idp-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(var(--dc-primary-rgb), 0.12);
    color: var(--dc-primary);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
}

.idp-hero h1 {
    font-size: 58px;
    line-height: 1.05;
    margin-bottom: 24px;
    font-weight: 800;
    letter-spacing: -1px;
    color: #111827;
}

.idp-subtitle {
    max-width: 820px;
    margin: 0 auto;
    font-size: 21px;
    line-height: 1.7;
    color: #4b5563;
}

.idp-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 42px;
    flex-wrap: wrap;
}

.idp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 28px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.25s ease;
    font-size: 16px;
}

.idp-btn-primary {
    background: var(--dc-primary);
    color: #111;
}

.idp-btn-primary:hover {
    transform: translateY(-2px);
    opacity: 0.95;
}

.idp-btn-secondary {
    background: #fff;
    color: #111827;
    border: 1px solid #d1d5db;
}

.idp-btn-secondary:hover {
    background: #f3f4f6;
}

.idp-small-text {
    margin-top: 20px;
    color: #6b7280;
    font-size: 14px;
}

/* HEADINGS */

.idp-section-heading {
    text-align: center;
    margin-bottom: 54px;
}

.idp-section-heading h2 {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
    color: #111827;
    margin: 0;
}

/* TEXT */

.idp-text-block {
    font-size: 19px;
    line-height: 1.9;
    color: #4b5563;
}

.idp-text-block p {
    margin-bottom: 24px;
}

/* GRID */

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

.idp-card {
    background: #fff;
    border-radius: 24px;
    padding: 32px;
    box-shadow:
        0 8px 30px rgba(0,0,0,0.05);
    transition: 0.25s ease;
}

.idp-card:hover {
    transform: translateY(-4px);
}

.idp-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
    line-height: 1.4;
    color: #111827;
}

.idp-card p {
    color: #6b7280;
    line-height: 1.8;
    font-size: 16px;
    margin: 0;
}

/* COMPARISON */

.idp-compare-wrap {
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 10px 30px rgba(0,0,0,0.04);
}

.idp-compare-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.idp-compare-row:nth-child(odd) {
    background: #f9fafb;
}

.idp-compare-left,
.idp-compare-right {
    padding: 24px 28px;
    font-size: 17px;
    line-height: 1.7;
}

.idp-compare-left {
    color: #6b7280;
}

.idp-compare-right {
    font-weight: 700;
    color: #111827;
    background: rgba(var(--dc-primary-rgb), 0.08);
}

/* FEATURES */

.idp-feature-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.idp-feature-item {
    background: #fff;
    padding: 20px 22px;
    border-radius: 16px;
    font-weight: 600;
    color: #111827;
    box-shadow:
        0 4px 18px rgba(0,0,0,0.04);
}

/* CTA */

.idp-cta-section {
    padding: 110px 0;
}

.idp-cta-box {
    background:
        linear-gradient(
            135deg,
            rgba(var(--dc-primary-rgb), 0.15),
            rgba(var(--dc-primary-rgb), 0.05)
        );

    border-radius: 34px;
    padding: 70px 40px;
    text-align: center;
}

.idp-cta-box h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #111827;
}

.idp-cta-box p {
    max-width: 720px;
    margin: 0 auto 28px;
    font-size: 20px;
    line-height: 1.8;
    color: #4b5563;
}

.idp-price-line {
    margin-bottom: 34px;
    font-size: 18px;
    font-weight: 700;
    color: #111827;
}
  /* FIX BUTTON LINK STYLES */

.idp-btn,
.idp-btn:visited,
.idp-btn:hover,
.idp-btn:focus,
.idp-btn:active {
    text-decoration: none !important;
}

/* PRIMARY BUTTON TEXT */

.idp-btn-primary,
.idp-btn-primary:visited {
    color: #111827 !important;
}

/* SECONDARY BUTTON TEXT */

.idp-btn-secondary,
.idp-btn-secondary:visited {
    color: #111827 !important;
}
.idp-btn-primary,
.idp-btn-primary:visited,
.idp-btn-primary:hover,
.idp-btn-primary:focus,
.idp-btn-primary:active {
    color: #fff !important;
    text-decoration: none !important;
}

/* MOBILE */

@media (max-width: 1024px) {

    .idp-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .idp-feature-list {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 768px) {

    .idp-section {
        padding: 70px 0;
    }

    .idp-hero {
        padding: 90px 0 70px;
    }

    .idp-hero h1 {
        font-size: 40px;
    }

    .idp-subtitle {
        font-size: 18px;
    }

    .idp-section-heading h2 {
        font-size: 32px;
    }

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

    .idp-feature-list {
        grid-template-columns: 1fr;
    }

    .idp-compare-row {
        grid-template-columns: 1fr;
    }

    .idp-cta-box {
        padding: 50px 24px;
    }

    .idp-cta-box h2 {
        font-size: 36px;
    }


}

/* =======================================================
   PARENTS PAGE
======================================================= */

.idp-parents-page {
    background: #fff;
}

.idpp-hero {
    padding: 110px 0 80px;
    text-align: center;
    background:
        linear-gradient(
            180deg,
            #f8fafc 0%,
            #ffffff 100%
        );
}

.idpp-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(var(--dc-primary-rgb), 0.12);
    color: var(--dc-primary);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
}

.idpp-hero h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800;
    letter-spacing: -1px;
    color: #111827;
}

.idpp-subtitle {
    font-size: 21px;
    line-height: 1.8;
    color: #4b5563;
}

.idpp-text {
    font-size: 19px;
    line-height: 1.9;
    color: #4b5563;
}

.idpp-text p {
    margin-bottom: 24px;
}

.idpp-bottom {
    padding: 100px 0;
    text-align: center;
    background: #f8fafc;
}

.idpp-bottom h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #111827;
}

.idpp-bottom p {
    font-size: 19px;
    color: #6b7280;
    margin-bottom: 34px;
}

@media (max-width: 768px) {

    .idpp-hero {
        padding: 80px 0 60px;
    }

    .idpp-hero h1 {
        font-size: 38px;
    }

    .idpp-subtitle,
    .idpp-text {
        font-size: 18px;
    }

    .idpp-bottom h2 {
        font-size: 32px;
    }

}
/*
========================================
GLOBAL iDAYCARE HEADER
========================================
*/

.idc-global-header {
  width: 100%;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid #eef0f4;
  position: sticky;
  top: 0;
  z-index: 9999;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.idc-header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px 24px;
  min-height: 82px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.idc-header-left,
.idc-header-right {
  display: flex;
  align-items: center;
  gap: 28px;
}

.idc-header-left {
  min-width: 0;
}

.idc-header-right {
  flex-shrink: 0;
}

/* Logo */
.idc-header-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none !important;
}

.idc-header-logo img {
  display: block;
  width: 112px;
  max-width: 100%;
  height: auto;
}

/* Desktop nav */
.idc-header-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.idc-header-nav a {
  color: #374151 !important;
  font-size: 15px;
  font-weight: 500 !important;
  line-height: 1;
  text-decoration: none !important;
  white-space: nowrap;
  transition: color 0.15s ease;
}

.idc-header-nav a:hover {
  color: #7c35e8 !important;
}

/* Provider CTA button */
.idc-header-nav .idc-header-btn {
  background: #7c35e8;
  color: #ffffff !important;
  padding: 12px 17px;
  border-radius: 999px;

  font-size: 14px;
  font-weight: 850 !important;
  line-height: 1;
  text-decoration: none !important;

  box-shadow: 0 10px 22px rgba(124, 53, 232, 0.20);
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.idc-header-nav .idc-header-btn:hover {
  background: #6d28d9;
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(124, 53, 232, 0.26);
}

/* Mobile toggle hidden on desktop */
.idc-mobile-menu-toggle {
  display: none;
}

/* Mobile menu hidden by default */
.idc-mobile-menu {
  display: none;
}

/*
========================================
MOBILE HEADER
========================================
*/

@media (max-width: 900px) {

  .idc-global-header {
    position: sticky;
    top: 0;
    z-index: 9999;
  }

  .idc-header-inner {
    padding: 16px 20px !important;
    min-height: 76px !important;
    gap: 16px;
  }

  .idc-header-left {
    flex: 1;
    min-width: 0;
  }

  .idc-header-right {
    flex-shrink: 0;
  }

  .idc-header-logo img {
    width: 108px !important;
  }

  .idc-header-nav-left,
  .idc-header-nav-right,
  .idc-header-nav {
    display: none !important;
  }

  .idc-mobile-menu-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: #ffffff;
    color: #111827;

    font-size: 24px;
    font-weight: 900;
    line-height: 1;

    cursor: pointer;
  }

  .idc-mobile-menu {
    display: none;
    width: 100%;
    background: #ffffff;
    border-top: 1px solid #eef0f4;
    padding: 4px 20px 18px;
  }

  .idc-mobile-menu.is-open {
    display: block !important;
  }

  .idc-mobile-menu a {
    display: block;
    padding: 15px 0;

    border-bottom: 1px solid #f1f2f5;

    color: #374151 !important;
    font-size: 16px;
    font-weight: 600 !important;
    line-height: 1.25;
    text-decoration: none !important;
  }

  .idc-mobile-menu a:last-child {
    border-bottom: 0;
  }

  .idc-mobile-menu a:hover {
    color: #7c35e8 !important;
  }
  /*
========================================
MOBILE HAMBURGER BUTTON FIX
========================================
*/

.idc-mobile-menu-toggle,
.idc-mobile-menu-toggle:hover,
.idc-mobile-menu-toggle:focus,
.idc-mobile-menu-toggle:active {
  background: #ffffff !important;
  color: #111827 !important;
  border-color: #e5e7eb !important;
  outline: none !important;
  box-shadow: none !important;
  -webkit-tap-highlight-color: transparent;
}

.idc-mobile-menu-toggle[aria-expanded="true"] {
  background: #f7f3ff !important;
  color: #7c35e8 !important;
  border-color: rgba(124, 53, 232, 0.25) !important;
}
}

/*
========================================
HIDE THEME HEADER
========================================
*/

.site-header,
.ast-primary-header-bar,
.ast-mobile-header-wrap,
.ast-above-header-wrap,
.ast-below-header-wrap {
  display: none !important;
}


/*
========================================
GLOBAL BLACK FOOTER
========================================
*/

.idc-global-footer-black {
  width: 100%;
  background: #050505;
  color: #fff;
  margin-top: 80px;
}

.idc-footer-black-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 62px 24px 46px;

  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(150px, .7fr) minmax(150px, .7fr) minmax(260px, 1fr);
  gap: 44px;
}
/*
.idc-footer-wordmark {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.055em;
}

.idc-footer-wordmark {
  color: #ffffff !important;
  font-family: "Mulish", sans-serif;
  font-size: 34px;
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
}
*/

.idc-footer-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none !important;
}

.idc-footer-logo-img {
  display: block;
  width: 90px;
  max-width: 100%;
  height: auto;
}
.idc-footer-brand-col p {
  max-width: 440px;
  margin: 18px 0 22px;
  color: rgba(255,255,255,.68);
  font-size: 15px;
  line-height: 1.7;
}



.idc-footer-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.idc-footer-trust span {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.82);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 750;
}

.idc-footer-nav-col h4 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.idc-footer-nav-col a {
  display: block;
  margin-bottom: 11px;
  color: rgba(255,255,255,.64);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none !important;
  transition: color .15s ease, transform .15s ease;
}

.idc-footer-nav-col a:hover {
  color: #fff;
  transform: translateX(2px);
}

.idc-footer-city-group {
  margin-bottom: 16px;
}

.idc-footer-city {
  color: #fff !important;
  font-weight: 850 !important;
  margin-bottom: 8px !important;
}

.idc-footer-neighbourhoods {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.idc-footer-neighbourhoods a {
  display: inline-flex;
  margin: 0;
  color: rgba(255,255,255,.58);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 700;
}

.idc-footer-muted {
  color: rgba(255,255,255,.55);
  font-size: 14px;
}

.idc-footer-black-bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 24px 28px;
  border-top: 1px solid rgba(255,255,255,.10);

  display: flex;
  justify-content: space-between;
  gap: 20px;

  color: rgba(255,255,255,.52);
  font-size: 13px;
  line-height: 1.5;
}
/* ========================================
   FOOTER BOTTOM SPACE FIX
======================================== */

.idc-global-footer-black {
  margin-bottom: 0 !important;
}

/* Remove Astra footer wrapper spacing around our shortcode footer */
.site-footer,
.site-footer-section,
.ast-footer-copyright,
.site-primary-footer-wrap,
.site-below-footer-wrap,
.ast-builder-grid-row-container,
.ast-builder-footer-grid-columns,
.footer-widget-area,
.footer-widget-area-inner {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* Remove the white Astra footer area underneath */
.site-primary-footer-wrap,
.site-below-footer-wrap,
.ast-footer-copyright {
  display: none !important;
}

/* Remove bottom spacing from main layout */
body,
html,
#page,
.site,
.site-content,
.ast-container,
.content-area,
.entry-content {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

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

  .idc-footer-brand-col {
    grid-column: 1 / -1;
  }

  .idc-footer-black-bottom {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .idc-footer-black-inner {
    grid-template-columns: 1fr;
    padding: 48px 18px 36px;
  }

  .idc-footer-black-bottom {
    padding-left: 18px;
    padding-right: 18px;
  }
}

