/* ============================================================
   PRED Clinic — Full Stylesheet (Tailwind-free)
   Implements every utility class used in the HTML
   ============================================================ */

/* ------------------------------------------------------------------
   Design Tokens
   ------------------------------------------------------------------ */
:root {
  --primary:                 #0d2b45;
  --primary-container:       #1e3d5a;
  --secondary:               #006c52;
  --on-secondary:            #ffffff;
  --secondary-container:     #8ff3ce;
  --secondary-fixed:         #92f5d0;
  --on-secondary-container:  #007055;
  --tertiary:                #ffdf9f;
  --surface:                 #f7f9fb;
  --on-surface:              #191c1e;
  --surface-variant:         #e0e3e5;
  --on-surface-variant:      #43474d;
  --outline:                 #73777e;
  --outline-variant:         #c3c6ce;
  --surface-container-low:   #f2f4f6;
  --surface-container-lowest:#ffffff;
}

/* ------------------------------------------------------------------
   Reset
   ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Manrope', sans-serif; background: var(--surface); color: var(--on-surface); line-height: 1.5; }
img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }
input, select, textarea { font-family: inherit; }
table { border-collapse: collapse; width: 100%; }

/* ------------------------------------------------------------------
   Material Symbols
   ------------------------------------------------------------------ */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

/* ==================================================================
   TAILWIND UTILITY CLASSES — implemented verbatim
   ================================================================== */

/* --- Display --- */
.block        { display: block; }
.inline-block { display: inline-block; }
.inline-flex  { display: inline-flex; align-items: center; }
.flex         { display: flex; }
.grid         { display: grid; }
.hidden       { display: none !important; }
.fixed        { position: fixed; }
.sticky       { position: sticky; }
.absolute     { position: absolute; }
.relative     { position: relative; }

/* --- Flex --- */
.flex-col      { flex-direction: column; }
.flex-wrap     { flex-wrap: wrap; }
.flex-shrink-0 { flex-shrink: 0; }
.items-center  { align-items: center; }
.items-end     { align-items: flex-end; }
.justify-between { justify-content: space-between; }
.justify-center  { justify-content: center; }

/* --- Grid columns (mobile-first 1-col base) --- */
.grid-cols-1 { grid-template-columns: repeat(1, 1fr); }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }

/* --- Column spans (used inside lg:grid-cols-12) --- */
.col-span-2  { grid-column: span 2; }
.row-span-2  { grid-row: span 2; }

/* --- Gap --- */
.gap-1  { gap: 0.25rem; }
.gap-2  { gap: 0.5rem; }
.gap-3  { gap: 0.75rem; }
.gap-4  { gap: 1rem; }
.gap-5  { gap: 1.25rem; }
.gap-6  { gap: 1.5rem; }
.gap-8  { gap: 2rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }
.gap-x-6 { column-gap: 1.5rem; }
.gap-y-1 { row-gap: 0.25rem; }

/* --- Spacing (padding) --- */
.p-4  { padding: 1rem; }
.p-5  { padding: 1.25rem; }
.p-6  { padding: 1.5rem; }
.p-8  { padding: 2rem; }
.p-10 { padding: 2.5rem; }

.px-2 { padding-inline: 0.5rem; }
.px-3 { padding-inline: 0.75rem; }
.px-4 { padding-inline: 1rem; }
.px-5 { padding-inline: 1.25rem; }
.px-6 { padding-inline: 1.5rem; }
.px-8 { padding-inline: 2rem; }
.px-margin-desktop { padding-inline: 40px; }

.py-0\.5 { padding-block: 0.125rem; }
.py-1   { padding-block: 0.25rem; }
.py-2   { padding-block: 0.5rem; }
.py-2\.5{ padding-block: 0.625rem; }
.py-3   { padding-block: 0.75rem; }
.py-4   { padding-block: 1rem; }
.py-5   { padding-block: 1.25rem; }
.py-8   { padding-block: 2rem; }
.py-16  { padding-block: 4rem; }
.py-20  { padding-block: 5rem; }
.py-24  { padding-block: 6rem; }

.pb-0\.5 { padding-bottom: 0.125rem; }
.pb-5  { padding-bottom: 1.25rem; }
.pb-10 { padding-bottom: 2.5rem; }
.pb-16 { padding-bottom: 4rem; }
.pb-20 { padding-bottom: 5rem; }

.pt-6  { padding-top: 1.5rem; }
.pt-8  { padding-top: 2rem; }
.pt-10 { padding-top: 2.5rem; }
.pt-20 { padding-top: 5rem; }

/* --- Spacing (margin) --- */
.mx-auto { margin-inline: auto; }
.-mt-1   { margin-top: -0.25rem; }
.mt-1    { margin-top: 0.25rem; }
.mt-4    { margin-top: 1rem; }
.mt-6    { margin-top: 1.5rem; }
.mt-8    { margin-top: 2rem; }
.mt-10   { margin-top: 2.5rem; }

.mb-1  { margin-bottom: 0.25rem; }
.mb-2  { margin-bottom: 0.5rem; }
.mb-3  { margin-bottom: 0.75rem; }
.mb-4  { margin-bottom: 1rem; }
.mb-6  { margin-bottom: 1.5rem; }
.mb-8  { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-20 { margin-bottom: 5rem; }

/* --- Sizing --- */
.w-4    { width: 1rem; }
.w-10   { width: 2.5rem; }
.w-11   { width: 2.75rem; }
.w-12   { width: 3rem; }
.w-14   { width: 3.5rem; }
.w-16   { width: 4rem; }
.w-full { width: 100%; }

.h-4    { height: 1rem; }
.h-10   { height: 2.5rem; }
.h-11   { height: 2.75rem; }
.h-12   { height: 3rem; }
.h-14   { height: 3.5rem; }
.h-16   { height: 4rem; }
.h-20   { height: 5rem; }
.h-32   { height: 8rem; }
.h-44   { height: 11rem; }
.h-52   { height: 13rem; }
.h-56   { height: 14rem; }
.h-72   { height: 18rem; }
.h-full { height: 100%; }
.h-\[700px\] { height: 700px; }

.min-h-\[240px\] { min-height: 240px; }
.max-h-\[90vh\]  { max-height: 90vh; }

.max-w-xs  { max-width: 20rem; }
.max-w-md  { max-width: 28rem; }
.max-w-lg  { max-width: 32rem; }
.max-w-xl  { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-full{ max-width: 100%; }
.max-w-\[200px\]      { max-width: 200px; }
.max-w-container-max  { max-width: 1280px; }

/* Aspect ratios */
.aspect-\[4\/5\]  { aspect-ratio: 4/5; }
.aspect-\[4\/3\]  { aspect-ratio: 4/3; }
.aspect-video     { aspect-ratio: 16/9; }

/* --- Position helpers --- */
.inset-0  { inset: 0; }
.top-0    { top: 0; }
.top-4    { top: 1rem; }
.top-6    { top: 1.5rem; }
.top-28   { top: 7rem; }
.bottom-6 { bottom: 1.5rem; }
.left-4   { left: 1rem; }
.left-6   { left: 1.5rem; }
.right-6  { right: 1.5rem; }
.-bottom-6 { bottom: -1.5rem; }
.-left-6   { left: -1.5rem; }

/* --- Z-index --- */
.z-0     { z-index: 0; }
.z-10    { z-index: 10; }
.z-40    { z-index: 40; }
.z-50    { z-index: 50; }
.z-\[100\] { z-index: 100; }

/* --- Overflow --- */
.overflow-hidden   { overflow: hidden; }
.overflow-x-auto   { overflow-x: auto; }

/* --- Object fit --- */
.object-cover   { object-fit: cover; }
.object-contain { object-fit: contain; }

/* --- Order --- */
.order-last       { order: 999; }

/* --- Typography --- */
.text-xs   { font-size: 0.75rem;  line-height: 1rem; }
.text-sm   { font-size: 0.975rem; line-height: 1.25rem; }
.text-lg   { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl   { font-size: 1.25rem;  line-height: 1.75rem; }
.text-2xl  { font-size: 1.5rem;   line-height: 2rem; }
.text-3xl  { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl  { font-size: 2.25rem;  line-height: 2.5rem; }
.text-5xl  { font-size: 3rem;     line-height: 1; }
.text-\[10px\] { font-size: 10px; }
.text-\[11px\] { font-size: 11px; }
.text-\[12px\] { font-size: 12px; }
.text-\[13px\] { font-size: 13px; }
.text-\[16px\] { font-size: 16px; }
.text-\[18px\] { font-size: 18px; }
.text-\[20px\] { font-size: 20px; }
.text-\[24px\] { font-size: 24px; }
.text-\[28px\] { font-size: 28px; }
.text-\[32px\] { font-size: 32px; }
.text-\[40px\] { font-size: 40px; }
.text-center { text-align: center; }
.text-left   { text-align: left; }
.font-medium  { font-weight: 500; }
.font-semibold{ font-weight: 600; }
.font-bold    { font-weight: 700; }
.italic       { font-style: italic; }
.uppercase    { text-transform: uppercase; }
.tracking-tight   { letter-spacing: -0.025em; }
.tracking-widest  { letter-spacing: 0.1em; }
.leading-relaxed  { line-height: 1.625; }
.leading-\[1\.1\] { line-height: 1.1; }
.whitespace-nowrap{ white-space: nowrap; }

/* --- Colors: text --- */
.text-white            { color: #ffffff; }
.text-white\/40        { color: rgba(255,255,255,0.40); }
.text-white\/50        { color: rgba(255,255,255,0.50); }
.text-white\/60        { color: rgba(255,255,255,0.60); }
.text-white\/70        { color: rgba(255,255,255,0.70); }
.text-white\/80        { color: rgba(255,255,255,0.80); }
.text-white\/90        { color: rgba(255,255,255,0.90); }
.text-primary          { color: var(--primary); }
.text-secondary        { color: var(--secondary); }
.text-secondary-fixed  { color: var(--secondary-fixed); }
.text-tertiary         { color: var(--tertiary); }
.text-on-surface       { color: var(--on-surface); }
.text-on-surface-variant      { color: var(--on-surface-variant); }
.text-on-surface-variant\/40  { color: rgba(67,71,77,0.40); }
.text-outline          { color: var(--outline); }

/* --- Colors: background --- */
.bg-white              { background-color: #ffffff; }
.bg-white\/5           { background-color: rgba(255,255,255,0.05); }
.bg-white\/10          { background-color: rgba(255,255,255,0.10); }
.bg-white\/95          { background-color: rgba(255,255,255,0.95); }
.bg-black\/90          { background-color: rgba(0,0,0,0.90); }
.bg-primary            { background-color: var(--primary); }
.bg-primary\/0         { background-color: rgba(13,43,69,0); }
.bg-primary\/30        { background-color: rgba(13,43,69,0.30); }
.bg-secondary          { background-color: var(--secondary); }
.bg-secondary\/10      { background-color: rgba(0,108,82,0.10); }
.bg-tertiary           { background-color: var(--tertiary); }
.bg-surface            { background-color: var(--surface); }
.bg-surface-container-low     { background-color: var(--surface-container-low); }
.bg-gradient-to-r      { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }

/* Gradient stops */
.from-primary\/80 { --tw-gradient-from: rgba(13,43,69,0.80); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.from-primary\/90 { --tw-gradient-from: rgba(13,43,69,0.90); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.via-primary\/40  {
  --tw-gradient-stops: var(--tw-gradient-from), rgba(13,43,69,0.40), var(--tw-gradient-to, transparent);
}
.via-primary\/50  {
  --tw-gradient-stops: var(--tw-gradient-from), rgba(13,43,69,0.50), var(--tw-gradient-to, transparent);
}
.to-transparent   { --tw-gradient-to: transparent; }

/* --- Colors: border --- */
.border               { border-width: 1px; border-style: solid; }
.border-2             { border-width: 2px; border-style: solid; }
.border-b             { border-bottom-width: 1px; border-bottom-style: solid; }
.border-b-2           { border-bottom-width: 2px; border-bottom-style: solid; }
.border-t             { border-top-width: 1px; border-top-style: solid; }
.border-dashed        { border-style: dashed; }
.border-outline-variant { border-color: var(--outline-variant); }
.border-primary        { border-color: var(--primary); }
.border-white          { border-color: #ffffff; }
.border-white\/10      { border-color: rgba(255,255,255,0.10); }

/* --- Border radius --- */
.rounded      { border-radius: 0.25rem; }
.rounded-lg   { border-radius: 0.25rem; }
.rounded-xl   { border-radius: 0.5rem; }
.rounded-full { border-radius: 9999px; }

/* --- Shadow --- */
.shadow-sm  { box-shadow: 0 1px 2px rgba(0,0,0,0.05); }
.shadow-lg  { box-shadow: 0 10px 24px rgba(0,0,0,0.10); }
.shadow-xl  { box-shadow: 0 16px 32px rgba(0,0,0,0.12); }
.shadow-2xl { box-shadow: 0 20px 48px rgba(0,0,0,0.15); }

/* --- Opacity --- */
.opacity-0  { opacity: 0; }
.opacity-50 { opacity: 0.5; }

/* --- Filters --- */
.grayscale       { filter: grayscale(100%); }
.backdrop-blur-sm{ backdrop-filter: blur(4px); }

/* --- Transitions --- */
.transition-all       { transition: all 0.2s ease; }
.transition-colors    { transition: color 0.15s, background-color 0.15s, border-color 0.15s; }
.transition-transform { transition: transform 0.15s; }
.transition-opacity   { transition: opacity 0.15s; }
.duration-500  { transition-duration: 0.5s; }
.duration-700  { transition-duration: 0.7s; }
.ease-in-out   { transition-timing-function: ease-in-out; }

/* --- Space-y (vertical child spacing) --- */
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }

/* --- Divide (table-like borders) --- */
.divide-y > * + *           { border-top-width: 1px; border-top-style: solid; }
.divide-outline-variant > * + * { border-color: var(--outline-variant); }

/* --- Cursor --- */
.cursor-pointer { cursor: pointer; }

/* --- Resize --- */
.resize-none { resize: none; }

/* --- Fill --- */
.fill-white { fill: #ffffff; }

/* ==================================================================
   HOVER / FOCUS / GROUP STATES
   ================================================================== */
.hover\:bg-primary:hover                { background-color: var(--primary); }
.hover\:bg-primary-container:hover      { background-color: var(--primary-container); }
.hover\:bg-secondary:hover              { background-color: var(--secondary); }
.hover\:bg-secondary-fixed:hover        { background-color: var(--secondary-fixed); }
.hover\:bg-tertiary:hover               { background-color: var(--tertiary); }
.hover\:bg-on-secondary-container:hover { background-color: var(--on-secondary-container); }
.hover\:bg-surface-container-low:hover  { background-color: var(--surface-container-low); }
.hover\:bg-white\/10:hover  { background-color: rgba(255,255,255,0.10); }
.hover\:bg-white\/20:hover  { background-color: rgba(255,255,255,0.20); }
.hover\:text-primary:hover  { color: var(--primary); }
.hover\:text-secondary:hover{ color: var(--secondary); }
.hover\:text-white:hover    { color: #ffffff; }
.hover\:border-secondary:hover { border-color: var(--secondary); }
.hover\:shadow-md:hover  { box-shadow: 0 4px 12px rgba(0,0,0,0.10); }
.hover\:shadow-lg:hover  { box-shadow: 0 10px 24px rgba(0,0,0,0.12); }
.hover\:translate-x-1:hover { transform: translateX(0.25rem); }
.hover\:grayscale-0:hover   { filter: none; }
.hover\:opacity-100:hover   { opacity: 1; }

/* Group hover — requires .group on ancestor */
.group:hover .group-hover\:scale-105     { transform: scale(1.05); }
.group:hover .group-hover\:-translate-y-1{ transform: translateY(-0.25rem); }
.group:hover .group-hover\:translate-x-1 { transform: translateX(0.25rem); }
.group:hover .group-hover\:bg-secondary  { background-color: var(--secondary); }
.group:hover .group-hover\:bg-primary\/40{ background-color: rgba(13,43,69,0.40); }
.group:hover .group-hover\:opacity-100   { opacity: 1; }

/* Focus */
.focus\:outline-none:focus   { outline: none; }
.focus\:border-secondary:focus { border-color: var(--secondary); }
.focus\:ring-1:focus         { box-shadow: 0 0 0 1px var(--secondary); }
.focus\:ring-secondary:focus { box-shadow: 0 0 0 2px rgba(0,108,82,0.25); }

/* ==================================================================
   RESPONSIVE — md: (≥768px)
   ================================================================== */
@media (min-width: 768px) {
  .md\:block        { display: block !important; }
  .md\:flex-row     { flex-direction: row; }
  .md\:items-end    { align-items: flex-end; }
  .md\:justify-between { justify-content: space-between; }
  .md\:py-24        { padding-block: 6rem; }
  .md\:text-5xl     { font-size: 3rem; line-height: 1; }
  .md\:text-6xl     { font-size: 3.75rem; line-height: 1; }

  .md\:grid-cols-2  { grid-template-columns: repeat(2,1fr); }
  .md\:grid-cols-3  { grid-template-columns: repeat(3,1fr); }
  .md\:grid-cols-4  { grid-template-columns: repeat(4,1fr); }
  .md\:grid-cols-12 { grid-template-columns: repeat(12,1fr); }

  .md\:col-span-2   { grid-column: span 2; }
  .md\:col-span-4   { grid-column: span 4; }

  .md\:w-\[calc\(50\%-12px\)\] { width: calc(50% - 12px); }
}

/* ==================================================================
   RESPONSIVE — lg: (≥1024px)
   ================================================================== */
@media (min-width: 1024px) {
  .lg\:block  { display: block !important; }
  .lg\:flex   { display: flex !important; }
  .lg\:hidden { display: none !important; }

  .lg\:grid-cols-2  { grid-template-columns: repeat(2,1fr); }
  .lg\:grid-cols-3  { grid-template-columns: repeat(3,1fr); }
  .lg\:grid-cols-4  { grid-template-columns: repeat(4,1fr); }
  .lg\:grid-cols-12 { grid-template-columns: repeat(12,1fr); }

  .lg\:col-span-3  { grid-column: span 3; }
  .lg\:col-span-4  { grid-column: span 4; }
  .lg\:col-span-5  { grid-column: span 5; }
  .lg\:col-span-7  { grid-column: span 7; }
  .lg\:col-span-8  { grid-column: span 8; }
  .lg\:order-first { order: -1; }

  .lg\:w-\[calc\(33\.333\%-16px\)\] { width: calc(33.333% - 16px); }
}

/* Mobile menu: shown when JS removes hidden class */
#mob-menu:not(.hidden) { display: block; }

/* ==================================================================
   COMPONENT STYLES
   (for elements that need styling beyond utilities)
   ================================================================== */

/* ==================================================================
   LOGO — text-only, Basavanagudi ENT style
   ================================================================== */
.pred-logo-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.2;
}
.pred-logo-name {
  font-size: 1.30rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.00em;
  line-height: 1.15;
}
.pred-logo-sub {
  font-size: 0.75rem;
  font-weight: 700;
  color: #006e2f !important;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 1px;
}
/* Footer variant — white text */
.pred-logo-footer .pred-logo-name { color: #ffffff; }
.pred-logo-footer .pred-logo-sub  { color: rgba(255,255,255,0.55); }
.pred-logo-footer { margin-bottom: 2rem; }

/* --- Navigation --- */
nav {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(4px);
  border-bottom: 1px solid var(--outline-variant);
  transition: box-shadow 0.2s;
}
nav.shadow-md { box-shadow: 0 4px 16px rgba(0,0,0,0.10); }

/* Nav inner container */
nav > div {
  max-width: 1280px;
  margin-inline: auto;
}

/* Mobile menu toggle — JS adds/removes .hidden */

/* Nav active link */
nav a.active {
  color: var(--primary);
  font-weight: 700;
}

/* --- Gallery filter active state --- */
.active-filter {
  background-color: var(--primary) !important;
  color: #ffffff !important;
  border-color: var(--primary) !important;
}

/* --- Gallery item visibility --- */
.gallery-item { display: block; }

/* --- Testimonial slider dots --- */
.h-2 { height: 0.5rem; }
.w-2 { width: 0.5rem; }
.w-6 { width: 1.5rem; }
.bg-outline-variant { background-color: var(--outline-variant); }

/* --- FAQ item hidden/shown --- */
.faq-answer.hidden { display: none; }

/* --- Form success hidden --- */
#form-success.hidden { display: none; }

/* --- Lightbox --- */
#lightbox       { display: none; }
#lightbox.flex  { display: flex; }

/* ==================================================================
   TOPBAR
   ================================================================== */
.topbar-text { font-size: 14px; }

/* Show topbar only on md+ — handled via md:block hidden combo */

/* ==================================================================
   TOP BAR — bigger text, beats Tailwind CDN
   ================================================================== */
body > div.bg-primary span,
body > div.bg-primary div {
  font-size: 14px !important;
}
body > div.bg-primary .material-symbols-outlined {
  font-size: 18px !important;
}

/* ==================================================================
   NAV LINKS — match screenshot: dark primary, bold, 16px
   ================================================================== */
nav .hidden a,
nav a {
  font-size: 16px !important;
  font-weight: 600 !important;
  color: #0d2b45 !important;
}

/* Active / current page link gets underline */
nav a[class*="border-b-2"] {
  color: #0d2b45 !important;
  border-bottom-color: #006e2f !important;
}

/* Hover stays dark primary */
nav a:hover {
  color: #0d2b45 !important;
  opacity: 0.75;
}

/* ==================================================================
   BOOK APPOINTMENT BUTTON — solid green, white text, rounded
   ================================================================== */
nav button.bg-primary,
nav > div > button.bg-primary {
  background-color: #006e2f !important;
  color: #ffffff !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  border-radius: 6px !important;
  padding: 0.65rem 1.5rem !important;
  border: none !important;
  transition: background-color 0.2s !important;
}
nav button.bg-primary:hover,
nav > div > button.bg-primary:hover {
  background-color: #005a26 !important;
}

/* ==================================================================
   MOBILE MENU LINKS & BUTTON
   ================================================================== */
#mob-menu a {
  font-size: 15px !important;
  font-weight: 600 !important;
  color: #0d2b45 !important;
}
#mob-menu button.bg-primary {
  background-color: #006e2f !important;
  color: #ffffff !important;
  font-size: 15px !important;
  font-weight: 700 !important;
}

/* ==================================================================
   SECONDARY COLOUR — all buttons, icons, tags → #006e2f
   ================================================================== */
.bg-secondary                           { background-color: #006e2f !important; }
.text-secondary                         { color: #006e2f !important; }
.hover\:bg-secondary:hover              { background-color: #006e2f !important; }
.group:hover .group-hover\:bg-secondary { background-color: #006e2f !important; }
.hover\:text-secondary:hover            { color: #006e2f !important; }
.hover\:border-secondary:hover          { border-color: #006e2f !important; }
.focus\:border-secondary:focus          { border-color: #006e2f !important; }
.focus\:ring-secondary:focus            { box-shadow: 0 0 0 2px rgba(0,110,47,0.25) !important; }
.bg-secondary\/10                       { background-color: rgba(0,110,47,0.10) !important; }
.hover\:bg-on-secondary-container:hover { background-color: #005a26 !important; }

/* ==================================================================
   FOOTER — #7fbfe8 accent colour scheme
   ================================================================== */

/* Section heading labels (e.g. "Quick Links", "Legal", "Location") */
footer h4,
footer h4.text-secondary-fixed {
  color: #7fbfe8 !important;
  letter-spacing: 0.12em;
  font-size: 0.9rem;
  font-weight: 700;
}

/* Body / paragraph text */
footer p,
footer .text-white\/60,
footer ul.space-y-4 li,
footer ul.space-y-4 li a {
  color: rgba(255, 255, 245, 0.85) !important;
  font-size: 0.9rem;
}

/* Link hover → bright #7fbfe8 */
footer a:hover {
  color: #7fbfe8 !important;
}

/* Social icon circles */
footer a.bg-white\/5 {
  background-color: rgba(127, 191, 232, 0.12) !important;
  border: 1px solid rgba(127, 191, 232, 0.2);
}
footer a.bg-white\/5:hover {
  background-color: #7fbfe8 !important;
}
footer a.bg-white\/5:hover svg {
  fill: #0d2b45 !important;
}

/* Logo sub-label */
.pred-logo-footer .pred-logo-sub {
  color: rgba(127, 191, 232, 0.7) !important;
}

/* Icons in bottom bar (phone, mail) */
footer .text-secondary-fixed,
footer span.text-secondary-fixed {
  color: #7fbfe8 !important;
}

/* Bottom bar text */
footer .text-white\/40 {
  color: rgba(245, 255, 232, 0.6) !important;
}
footer .text-white\/80 {
  color: rgba(245, 255, 232, 0.6) !important;
}

/* Divider line */
footer .border-white\/10 {
  border-color: rgba(127, 191, 232, 0.15) !important;
}

/* Bottom bar small text */
footer .text-xs {
  font-size: 0.95rem !important;
  line-height: 1rem;
}


/* ==================================================================
   MISSING UTILITIES — added to replace Tailwind CDN dependency
   ================================================================== */

/* --- Opacity backgrounds --- */
.bg-white\/5   { background-color: rgba(255,255,255,0.05); }
.bg-white\/10  { background-color: rgba(255,255,255,0.10); }
.bg-white\/95  { background-color: rgba(255,255,255,0.95); }
.bg-black\/90  { background-color: rgba(0,0,0,0.90); }
.bg-primary\/0  { background-color: rgba(13,43,69,0); }
.bg-primary\/30 { background-color: rgba(13,43,69,0.30); }
.bg-secondary\/10 { background-color: rgba(0,108,82,0.10); }

/* --- Border opacity --- */
.border-white\/10 { border-color: rgba(255,255,255,0.10); }
.border-white     { border-color: #ffffff; }

/* --- Text opacity --- */
.text-white\/40 { color: rgba(255,255,255,0.40); }
.text-white\/50 { color: rgba(255,255,255,0.50); }
.text-white\/60 { color: rgba(255,255,255,0.60); }
.text-white\/70 { color: rgba(255,255,255,0.70); }
.text-white\/80 { color: rgba(255,255,255,0.80); }
.text-white\/90 { color: rgba(255,255,255,0.90); }
.text-on-surface-variant\/40 { color: rgba(67,71,77,0.40); }

/* --- Gradients --- */
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.from-primary\/80 { --tw-gradient-from: rgba(13,43,69,0.80); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(13,43,69,0)); }
.from-primary\/90 { --tw-gradient-from: rgba(13,43,69,0.90); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(13,43,69,0)); }
.via-primary\/40  { --tw-gradient-stops: var(--tw-gradient-from), rgba(13,43,69,0.40), var(--tw-gradient-to, rgba(13,43,69,0)); }
.via-primary\/50  { --tw-gradient-stops: var(--tw-gradient-from), rgba(13,43,69,0.50), var(--tw-gradient-to, rgba(13,43,69,0)); }
.to-transparent   { --tw-gradient-to: transparent; }

/* --- Backdrop blur --- */
.backdrop-blur-sm { backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }

/* --- Leading --- */
.leading-\[1\.1\] { line-height: 1.1; }
.leading-relaxed  { line-height: 1.625; }

/* --- Aspect ratios --- */
.aspect-\[4\/5\] { aspect-ratio: 4/5; }
.aspect-\[4\/3\] { aspect-ratio: 4/3; }
.aspect-video    { aspect-ratio: 16/9; }

/* --- Position --- */
.-bottom-6 { bottom: -1.5rem; }

/* --- Min/Max heights --- */
.min-h-\[240px\] { min-height: 240px; }
.max-h-\[90vh\]  { max-height: 90vh; }

/* --- Padding extras --- */
.py-0\.5  { padding-block: 0.125rem; }
.py-2\.5  { padding-block: 0.625rem; }
.pb-0\.5  { padding-bottom: 0.125rem; }

/* --- Space-y utilities --- */
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }

/* --- Divide --- */
.divide-y > * + *          { border-top-width: 1px; border-top-style: solid; }
.divide-outline-variant > * + * { border-top-color: var(--outline-variant); }

/* --- Transition extras --- */
.duration-500   { transition-duration: 500ms; }
.duration-700   { transition-duration: 700ms; }
.ease-in-out    { transition-timing-function: ease-in-out; }
.transition-opacity   { transition-property: opacity; transition-duration: 150ms; }
.transition-transform { transition-property: transform; transition-duration: 150ms; }

/* --- Misc --- */
.whitespace-nowrap { white-space: nowrap; }
.resize-none       { resize: none; }
.cursor-pointer    { cursor: pointer; }
.italic            { font-style: italic; }
.fill-white        { fill: #ffffff; }
.opacity-0         { opacity: 0; }
.opacity-50        { opacity: 0.5; }
.grayscale         { filter: grayscale(100%); }

/* --- Hover utilities --- */
.hover\:bg-primary:hover           { background-color: var(--primary); }
.hover\:bg-primary-container:hover { background-color: var(--primary-container); }
.hover\:bg-secondary-fixed:hover   { background-color: var(--secondary-fixed); }
.hover\:bg-surface-container-low:hover { background-color: var(--surface-container-low); }
.hover\:bg-tertiary:hover          { background-color: var(--tertiary); }
.hover\:bg-white\/10:hover         { background-color: rgba(255,255,255,0.10); }
.hover\:bg-white\/20:hover         { background-color: rgba(255,255,255,0.20); }
.hover\:text-primary:hover         { color: var(--primary); }
.hover\:text-white:hover           { color: #ffffff; }
.hover\:shadow-md:hover            { box-shadow: 0 4px 16px rgba(0,0,0,0.10); }
.hover\:shadow-lg:hover            { box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.hover\:translate-x-1:hover        { transform: translateX(0.25rem); }

/* --- Focus utilities --- */
.focus\:outline-none:focus    { outline: none; }
.focus\:border-secondary:focus { border-color: var(--secondary); }
.focus\:ring-1:focus           { box-shadow: 0 0 0 1px var(--secondary); }
.focus\:ring-secondary:focus   { box-shadow: 0 0 0 2px rgba(0,108,82,0.25); }

/* --- Group hover utilities --- */
.group-hover\:scale-105       { transition: transform 150ms; }
.group:hover .group-hover\:scale-105      { transform: scale(1.05); }
.group:hover .group-hover\:-translate-y-1 { transform: translateY(-0.25rem); }
.group:hover .group-hover\:translate-x-1  { transform: translateX(0.25rem); }
.group:hover .group-hover\:bg-secondary   { background-color: var(--secondary); }
.group:hover .group-hover\:bg-primary\/40 { background-color: rgba(13,43,69,0.40); }
.group:hover .group-hover\:opacity-100    { opacity: 1; }

/* --- Component: t-slide (testimonial) --- */
.t-slide { flex-shrink: 0; }

/* --- Component: filter-btn --- */
.filter-btn { cursor: pointer; transition: all 0.2s; }

/* --- Component: faq-item --- */
.faq-item { overflow: hidden; }


/* --- md: responsive extras --- */
@media (min-width: 768px) {
  .md\:col-span-2  { grid-column: span 2; }
  .md\:col-span-4  { grid-column: span 4; }
  .md\:flex-row    { flex-direction: row; }
  .md\:items-end   { align-items: flex-end; }
  .md\:justify-between { justify-content: space-between; }
  .md\:py-24       { padding-block: 6rem; }
  .md\:text-5xl    { font-size: 3rem; line-height: 1; }
  .md\:text-6xl    { font-size: 3.75rem; line-height: 1; }
  .md\:grid-cols-2  { grid-template-columns: repeat(2,1fr); }
  .md\:grid-cols-3  { grid-template-columns: repeat(3,1fr); }
  .md\:grid-cols-4  { grid-template-columns: repeat(4,1fr); }
  .md\:grid-cols-12 { grid-template-columns: repeat(12,1fr); }
  .md\:w-\[calc\(50\%-12px\)\] { width: calc(50% - 12px); }
}

/* --- lg: responsive extras --- */
@media (min-width: 1024px) {
  .lg\:grid-cols-2  { grid-template-columns: repeat(2,1fr); }
  .lg\:grid-cols-3  { grid-template-columns: repeat(3,1fr); }
  .lg\:grid-cols-4  { grid-template-columns: repeat(4,1fr); }
  .lg\:grid-cols-12 { grid-template-columns: repeat(12,1fr); }
  .lg\:col-span-3  { grid-column: span 3; }
  .lg\:col-span-4  { grid-column: span 4; }
  .lg\:col-span-5  { grid-column: span 5; }
  .lg\:col-span-7  { grid-column: span 7; }
  .lg\:col-span-8  { grid-column: span 8; }
  .lg\:order-first { order: -1; }
  .lg\:w-\[calc\(33\.333\%-16px\)\] { width: calc(33.333% - 16px); }
}
