/* ==========================================================================
   MINIART FAMILY CHILDCARE CENTER - OFFICIAL BRANDING & HIGH-IMPACT LAYOUT
   Mother-Daughter Duo Info Box, Glowing Best of Florida Award & Social Buttons
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800;900&family=Caveat:wght@600;700&display=swap');

/* --- BRAND COLOR TOKENS --- */
:root {
  --primary: #26abb9;
  --primary-hover: #1f939f;
  --primary-light: #e6f6f8;
  --primary-glow: rgba(38, 171, 185, 0.35);
  
  --secondary: #C05530;
  --secondary-hover: #a54221;
  --secondary-light: #fdf2ee;
  --secondary-glow: rgba(192, 85, 48, 0.35);
  
  --brand-pink: #f00c82;
  --brand-orange: #ff6601;
  --brand-blue: #1e3b8a;
  --brand-turquoise: #26abb9;
  
  --bg-main: #fcfdfd;
  --bg-surface: #ffffff;
  --bg-subtle: #f4f8f9;
  
  --border-subtle: #e2e8f0;
  --border-brand: rgba(38, 171, 185, 0.3);
  
  --text-dark: #111827;
  --text-main: #374151;
  --text-muted: #4b5563;
  --text-light: #6b7280;
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 45px rgba(0, 0, 0, 0.14);
  
  --radius-sm: 8px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-full: 9999px;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- RESET & BASE --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: clip;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
}

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

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

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

.section {
  padding: 6rem 0;
  position: relative;
}

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

/* --- BUTTONS & BADGES --- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.badge-primary {
  background: var(--primary-light);
  color: var(--primary);
  border: 1px solid rgba(38, 171, 185, 0.4);
}

.badge-pink {
  background: rgba(240, 12, 130, 0.12);
  color: var(--brand-pink);
  border: 1px solid rgba(240, 12, 130, 0.35);
}

.badge-secondary {
  background: rgba(192, 85, 48, 0.12);
  color: var(--secondary);
  border: 1px solid rgba(192, 85, 48, 0.35);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.85rem;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition-normal);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
}

.btn-primary {
  background: var(--primary);
  color: #ffffff !important;
  box-shadow: 0 6px 20px var(--primary-glow);
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(38, 171, 185, 0.5);
}

.btn-secondary {
  background: var(--secondary);
  color: #ffffff !important;
  box-shadow: 0 6px 20px rgba(192, 85, 48, 0.3);
}

.btn-secondary:hover {
  background: var(--secondary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(192, 85, 48, 0.45);
}

.btn-pink {
  background: var(--brand-pink);
  color: #ffffff !important;
  box-shadow: 0 6px 20px rgba(240, 12, 130, 0.35);
}

.btn-pink:hover {
  background: #d00a70;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(240, 12, 130, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border: 2px solid var(--border-subtle);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}

/* --- HEADER (DISTINCT SOFT GRAY CONTRAST BACKGROUND, LARGE LOGO) --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #e5e9ee;
  border-bottom: 2px solid #cbd5e1;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
}

.header-row-1 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 1.5rem 0.6rem 1.5rem;
  background: #e5e9ee;
  transition: all 0.35s ease;
}

.official-logo-centered {
  height: 95px;
  width: auto;
  object-fit: contain;
  transition: all 0.35s ease;
}

.header-row-2 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background: #e5e9ee;
  border-top: 1px solid #cbd5e1;
  transition: all 0.35s ease;
}

.nav-menu-centered {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  list-style: none;
}

.nav-link {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
  position: relative;
  padding: 0.35rem 0;
  transition: all 0.35s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary);
  border-radius: var(--radius-full);
}

.header-row-3 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  padding: 0.85rem 1.5rem 1.15rem 1.5rem;
  background: #dadfe6;
  border-top: 1px solid #cbd5e1;
  transition: all 0.35s ease;
}

.header-row-3 .btn {
  transition: all 0.35s ease;
}

/* --- SCROLLED STATE (SLEEK COMPACT HEADER ON SCROLL) --- */
.header.scrolled {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.header.scrolled .header-row-1 {
  padding: 0.35rem 1.5rem 0.25rem 1.5rem;
}

.header.scrolled .official-logo-centered {
  height: 55px;
}

.header.scrolled .header-row-2 {
  padding: 0.4rem 1.5rem;
}

.header.scrolled .nav-link {
  font-size: 0.92rem;
}

.header.scrolled .header-row-3 {
  padding: 0.45rem 1.5rem 0.55rem 1.5rem;
  gap: 1rem;
}

.header.scrolled .header-row-3 .btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
}

.mobile-menu-btn {
  display: none !important;
}

/* --- FULL HORIZONTAL & VERTICAL VIDEO BANNER (100% UNCROPPED FIT) --- */
.clean-video-wrapper {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-top: 245px;
  background: #ffffff;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid var(--border-subtle);
}

.clean-hero-video {
  width: 100%;
  height: auto;
  max-height: 720px;
  object-fit: contain;
  display: block;
}

/* --- HERO HIGH-IMPACT INFO SECTION (BELOW VIDEO) --- */
.hero-info-section {
  padding: 4.5rem 0 3.5rem 0;
  background: linear-gradient(180deg, #f0f9fa 0%, #ffffff 100%);
  border-bottom: 1px solid var(--border-subtle);
}

.hero-info-box {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.hero-info-title {
  font-size: 3.25rem;
  font-weight: 900;
  color: var(--text-dark);
  margin: 1.25rem 0 1rem 0;
  line-height: 1.18;
}

.hero-info-title span {
  color: var(--primary);
}

.hero-info-subtitle {
  font-size: 1.3rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 2.25rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-info-badges {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-info-cta {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* --- STUNNING IMMERSIVE 4 PILLARS SHOWCASE SECTION --- */
.pillars-showcase-section {
  padding: 6rem 0;
  background: #ffffff;
}

.pillars-showcase-stack {
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
  margin-top: 3.5rem;
}

.showcase-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
}

.showcase-row.reverse {
  grid-template-columns: 1fr 1fr;
  direction: rtl;
}

.showcase-row.reverse > * {
  direction: ltr;
}

.showcase-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-bounce);
}

.showcase-image-wrap:hover {
  transform: scale(1.025);
}

.showcase-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.showcase-content-box {
  padding: 3rem 2.5rem;
  border-radius: var(--radius-lg);
  color: #ffffff;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-normal);
}

.showcase-content-box:hover {
  transform: translateY(-4px);
}

.bg-pillar-turquoise {
  background: linear-gradient(135deg, #26abb9 0%, #1f8b96 100%);
  box-shadow: 0 16px 36px rgba(38, 171, 185, 0.35);
}

.bg-pillar-blue {
  background: linear-gradient(135deg, #1e3a8a 0%, #152763 100%);
  box-shadow: 0 16px 36px rgba(30, 58, 138, 0.35);
}

.bg-pillar-pink {
  background: linear-gradient(135deg, #f00c82 0%, #b80562 100%);
  box-shadow: 0 16px 36px rgba(240, 12, 130, 0.35);
}

.bg-pillar-orange {
  background: linear-gradient(135deg, #ff6601 0%, #d45100 100%);
  box-shadow: 0 16px 36px rgba(255, 102, 1, 0.35);
}

.showcase-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.showcase-title {
  font-size: 2.25rem;
  color: #ffffff;
  font-weight: 900;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.showcase-desc {
  font-size: 1.15rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}

/* --- PROGRAMS GRID WITH ENLARGED CLEAR IMAGES & HOVER GLOW --- */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.program-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-bounce), box-shadow var(--transition-normal), border-color var(--transition-normal);
  text-align: center;
  padding: 2.75rem 2rem;
  position: relative;
}

.program-card-turquoise:hover {
  transform: translateY(-8px);
  border-color: #26abb9;
  box-shadow: 0 20px 45px rgba(38, 171, 185, 0.4);
}

.program-card-coral:hover {
  transform: translateY(-8px);
  border-color: #C05530;
  box-shadow: 0 20px 45px rgba(192, 85, 48, 0.4);
}

.program-card-pink:hover {
  transform: translateY(-8px);
  border-color: #f00c82;
  box-shadow: 0 20px 45px rgba(240, 12, 130, 0.4);
}

.program-icon-img {
  width: 210px;
  height: 210px;
  object-fit: cover;
  margin: 0 auto 1.75rem auto;
  border-radius: 50%;
  padding: 5px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.program-card-turquoise .program-icon-img {
  border: 4px solid rgba(38, 171, 185, 0.4);
}

.program-card-coral .program-icon-img {
  border: 4px solid rgba(192, 85, 48, 0.4);
}

.program-card-pink .program-icon-img {
  border: 4px solid rgba(240, 12, 130, 0.4);
}

/* --- STICKY NOTES TESTIMONIALS GRID --- */
.sticky-notes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.sticky-card {
  padding: 2.25rem 1.75rem 1.75rem 1.75rem;
  border-radius: var(--radius-md);
  position: relative;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-bounce), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.sticky-card:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: var(--shadow-lg);
}

.sticky-pin {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.35rem;
  color: var(--secondary);
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.sticky-yellow {
  background: #fffbeb;
  border: 1px solid #fef3c7;
}

.sticky-pink {
  background: #fdf2f8;
  border: 1px solid #fce7f3;
}

.sticky-turquoise {
  background: #f0fdfa;
  border: 1px solid #ccfbf1;
}

.sticky-orange {
  background: #fff7ed;
  border: 1px solid #ffedd5;
}

.sticky-stars {
  color: #f5b027;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  display: flex;
  gap: 0.25rem;
}

.sticky-quote {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.6;
  font-weight: 600;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.sticky-author {
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--text-dark);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  border-top: 1px dashed rgba(0,0,0,0.1);
  padding-top: 0.75rem;
}

.verified-tag {
  font-size: 0.75rem;
  color: #059669;
  font-weight: 700;
}

/* --- LEADERSHIP & AWARD GLOW CARD --- */
.award-card-glowing {
  background: #ffffff;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 0 35px rgba(38, 171, 185, 0.45), 0 0 70px rgba(192, 85, 48, 0.25);
  border: 1px solid var(--border-subtle);
  animation: awardGlowPulse 3s infinite alternate ease-in-out;
}

@keyframes awardGlowPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 30px rgba(38, 171, 185, 0.4), 0 0 60px rgba(240, 12, 130, 0.25);
  }
  100% {
    transform: scale(1.025);
    box-shadow: 0 0 50px rgba(38, 171, 185, 0.65), 0 0 90px rgba(192, 85, 48, 0.45);
  }
}

/* --- UNIFORMS CALCULATOR --- */
.tab-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.tab-btn {
  padding: 0.85rem 2.25rem;
  border-radius: var(--radius-full);
  border: 2px solid var(--border-subtle);
  background: #ffffff;
  color: var(--text-muted);
  font-weight: 800;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.tab-btn.active {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

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

.uniform-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid var(--border-subtle);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.uniform-img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  margin-bottom: 1rem;
  border-radius: var(--radius-sm);
  background: #f8fafc;
  padding: 0.5rem;
}

.qty-picker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

.qty-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-subtle);
  background: #ffffff;
  color: var(--text-dark);
  font-weight: 800;
  cursor: pointer;
}

.qty-btn:hover {
  background: var(--primary);
  color: #ffffff;
}

.qty-val {
  font-weight: 800;
  font-size: 1.1rem;
  min-width: 28px;
}

.uniform-summary-box {
  margin-top: 3rem;
  padding: 2.25rem;
  border-radius: var(--radius-md);
  background: #ffffff;
  border: 2px dashed var(--primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

/* --- FOOTER --- */
.footer {
  background: #111827;
  color: #ffffff;
  padding: 4.5rem 0 2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: #9ca3af;
  margin-top: 1rem;
  font-size: 0.95rem;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  color: #ffffff;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #d1d5db;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid #1f2937;
  display: flex;
  justify-content: space-between;
  color: #9ca3af;
  font-size: 0.85rem;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
  .showcase-row, .showcase-row.reverse {
    grid-template-columns: 1fr;
    direction: ltr !important;
  }
  .hero-info-title {
    font-size: 2.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .header-row-2 {
    flex-direction: column;
    gap: 0.75rem;
  }
  .header-row-3 {
    flex-direction: column;
    gap: 0.5rem;
  }
  .nav-menu-centered {
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  .clean-video-wrapper {
    margin-top: 280px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* --- INSTAGRAM FEED SHOWCASE GRID --- */
.instagram-feed-section {
  background: #ffffff;
  padding: 4.5rem 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.ig-feed-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1.1rem;
  align-items: center;
  margin-top: 1.5rem;
}

.ig-post-card {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  display: block;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  background: #f8fafc;
  border: 2px solid #ffffff;
}

.ig-post-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.ig-post-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 16px 32px rgba(38, 171, 185, 0.3);
  border-color: var(--primary);
}

.ig-post-card:hover img {
  transform: scale(1.1);
}

.ig-video-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.45);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  backdrop-filter: blur(4px);
  z-index: 2;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.ig-time-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.65);
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
  z-index: 2;
}

.ig-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(38, 171, 185, 0.85), rgba(240, 12, 130, 0.85));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 2.25rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
}

.ig-post-card:hover .ig-overlay {
  opacity: 1;
}

@media (max-width: 1100px) {
  .ig-feed-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

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

/* --- CAROUSEL TRACK & CONTROLS --- */
.ig-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 1.5rem;
}

.ig-carousel-track {
  display: flex;
  gap: 1.1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 1rem 0.25rem;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

.ig-carousel-track::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.ig-carousel-track .ig-post-card {
  min-width: 175px;
  flex: 0 0 175px;
}

.ig-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  color: var(--text-dark);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  transition: all 0.25s ease;
  z-index: 10;
}

.ig-carousel-btn:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 6px 20px rgba(38, 171, 185, 0.35);
}

.ig-prev {
  left: -20px;
}

.ig-next {
  right: -20px;
}

@media (max-width: 768px) {
  .ig-carousel-btn {
    display: none;
  }
}

/* ==========================================================================
   BLOG PAGE LAYOUT & ARTICLE CARDS STYLES
   ========================================================================== */
.blog-layout-grid {
  display: grid;
  grid-template-columns: 2.3fr 1fr;
  gap: 3.5rem;
  margin-top: 2.5rem;
}

.blog-post-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-subtle);
  margin-bottom: 2.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.blog-post-img-wrap {
  position: relative;
  width: 100%;
  height: 360px;
  overflow: hidden;
}

.blog-post-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-post-card:hover .blog-post-img-wrap img {
  transform: scale(1.04);
}

.blog-category-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--primary);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(38, 171, 185, 0.4);
}

.blog-post-content {
  padding: 2rem;
}

.blog-post-meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.blog-post-meta span i {
  color: var(--primary);
  margin-right: 0.35rem;
}

.blog-post-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.35;
}

.blog-post-title a {
  color: var(--text-dark);
  transition: color 0.2s ease;
}

.blog-post-title a:hover {
  color: var(--brand-pink);
}

.blog-post-excerpt {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.blog-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.blog-tag {
  background: var(--bg-subtle);
  color: var(--text-dark);
  font-size: 0.78rem;
  padding: 0.25rem 0.65rem;
  border-radius: 12px;
  font-weight: 600;
  border: 1px solid var(--border-subtle);
}

/* SIDEBAR STYLES */
.blog-sidebar-box {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 1.75rem;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
}

.sidebar-widget-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.sidebar-widget-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.blog-categories-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-categories-list li {
  margin-bottom: 0.75rem;
}

.blog-categories-list a {
  display: flex;
  justify-content: space-between;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.4rem 0;
  transition: color 0.2s ease;
}

.blog-categories-list a:hover {
  color: var(--brand-pink);
}

.blog-categories-list span {
  background: var(--bg-subtle);
  color: var(--primary);
  padding: 0.15rem 0.55rem;
  border-radius: 10px;
  font-size: 0.8rem;
}

.recent-post-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  align-items: center;
}

.recent-post-item img {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  object-fit: cover;
}

.recent-post-info h5 {
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.25rem;
}

.recent-post-info h5 a {
  color: var(--text-dark);
  transition: color 0.2s ease;
}

.recent-post-info h5 a:hover {
  color: var(--primary);
}

.recent-post-info span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

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

/* ================= FORMINATOR UNIFORMS E-COMMERCE STYLES ================= */
.forminator-uniforms-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

.product-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.uniform-product-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  padding: 1.5rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.uniform-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(38, 171, 185, 0.18);
  border-color: var(--primary);
}

.uniform-product-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1.25rem;
  background: #f8fafc;
}

.pill-btn-group {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.pill-btn {
  padding: 0.6rem 1.25rem;
  border-radius: 25px;
  border: 2px solid var(--border-subtle);
  background: #ffffff;
  color: var(--text-dark);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.pill-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: #f0fdfa;
}

.pill-btn.active {
  background: linear-gradient(135deg, var(--primary), var(--brand-pink));
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(38, 171, 185, 0.35);
}

.qty-control-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: #ffffff;
  color: var(--primary);
  font-weight: 900;
  font-size: 1.1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.qty-control-btn:hover {
  background: var(--primary);
  color: #ffffff;
}

.contact-card-stylish {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  padding: 2.25rem;
  margin-top: 2.5rem;
}

.contact-input-icon-wrap {
  position: relative !important;
  width: 100% !important;
}

.contact-input-icon-wrap i {
  position: absolute !important;
  left: 16px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  color: var(--primary) !important;
  font-size: 1rem !important;
}

.contact-input-icon-wrap input {
  width: 100% !important;
  display: block !important;
  box-sizing: border-box !important;
  padding-left: 45px !important;
  height: 48px !important;
  border-radius: 12px !important;
  border: 1.5px solid #cbd5e1 !important;
  background: #f8fafc !important;
  font-size: 0.98rem !important;
  font-weight: 600 !important;
  color: var(--text-dark) !important;
  transition: all 0.25s ease !important;
}

.contact-input-icon-wrap input:focus {
  border-color: var(--primary) !important;
  background: #ffffff !important;
  box-shadow: 0 0 0 4px rgba(38, 171, 185, 0.18) !important;
  outline: none !important;
}

.horizontal-summary-card {
  background: linear-gradient(135deg, #ffffff 0%, #f0fdfa 100%);
  border-radius: 20px;
  border: 2.5px solid var(--primary);
  box-shadow: 0 12px 40px rgba(38, 171, 185, 0.15);
  padding: 2.25rem;
  margin-top: 2.5rem;
}

.horizontal-summary-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* ================= CONTACT US / TOUR FORM STYLING ================= */
.tour-form-card {
  background: #ffffff;
  border-radius: 24px;
  border: 2px solid #e2e8f0;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  padding: 2.75rem 2.25rem;
  transition: all 0.3s ease;
}

.tour-form-card:hover {
  border-color: rgba(240, 12, 130, 0.3);
  box-shadow: 0 25px 60px rgba(240, 12, 130, 0.12);
}

.tour-input-wrap {
  position: relative;
  margin-top: 0.4rem;
}

.tour-input-wrap i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--brand-pink);
  font-size: 1.05rem;
  pointer-events: none;
  z-index: 2;
}

.tour-input-wrap input,
.tour-input-wrap select {
  width: 100%;
  padding: 0.85rem 1rem 0.85rem 48px !important;
  border-radius: 14px !important;
  border: 1.5px solid #cbd5e1 !important;
  background: #f8fafc !important;
  font-size: 0.98rem !important;
  font-weight: 600 !important;
  color: var(--text-dark) !important;
  transition: all 0.25s ease !important;
  box-sizing: border-box !important;
}

.tour-input-wrap input:focus,
.tour-input-wrap select:focus {
  border-color: var(--brand-pink) !important;
  background: #ffffff !important;
  box-shadow: 0 0 0 4px rgba(240, 12, 130, 0.15) !important;
  outline: none !important;
}

.tour-image-container {
  position: relative;
}

.tour-floating-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

/* ==========================================================================
   MOBILE & RESPONSIVE DESIGN OVERHAUL FOR ALL SUBPAGES
   (About Us, Programs, Blog, Uniforms & Home)
   ========================================================================== */

@media (max-width: 992px) {
  /* Collapse All Multi-column Grid Layouts across Subpages */
  .brand-card[style*="display: grid"],
  .brand-card[style*="display:grid"],
  div[style*="grid-template-columns: 1.1fr 1fr"],
  div[style*="grid-template-columns: 1.2fr 1fr"],
  div[style*="grid-template-columns: 1fr 1.1fr"],
  div[style*="grid-template-columns: 1fr 1.15fr"],
  div[style*="grid-template-columns: repeat(auto-fill"],
  div[style*="grid-template-columns: repeat(auto-fit"] {
    grid-template-columns: 1fr !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 1.25rem !important;
  }

  .horizontal-summary-grid {
    flex-direction: column !important;
    text-align: center !important;
  }
  
  .forminator-uniforms-layout {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
  }

  .tour-form-card {
    padding: 1.75rem 1.25rem !important;
  }

  .blog-layout-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 768px) {
  /* Global Base & Spacing */
  html {
    font-size: 15px;
  }

  .section {
    padding: 2.25rem 0 !important;
  }

  .container {
    padding: 0 1rem !important;
  }

  main {
    margin-top: 165px !important;
  }

  /* --- MANDATORY IMAGE TOP, INFO BOTTOM ORDERING FOR ALL MEDIA CARDS --- */
  .brand-card,
  div[style*="grid-template-columns: 1.1fr 1fr"],
  div[style*="grid-template-columns: 1.2fr 1fr"],
  div[style*="grid-template-columns: 1fr 1.1fr"],
  div[style*="grid-template-columns: 1fr 1.15fr"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    overflow: hidden !important;
  }

  /* Any container inside media cards that holds an <img> goes TOP (order: 1) */
  .brand-card > div:has(img),
  div[style*="grid-template-columns"] > div:has(img):not(.leadership-left-box) {
    order: 1 !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: 310px !important;
    overflow: hidden !important;
  }

  .showcase-row,
  .showcase-row.reverse {
    grid-template-columns: 1fr !important;
    direction: ltr !important;
    gap: 1.5rem !important;
  }

  /* Ensure all showcase and card images are 100% centered, uncropped & sharp on mobile */
  .showcase-img,
  .brand-card img,
  div[style*="grid-template-columns"] img {
    width: 100% !important;
    height: 290px !important;
    min-height: 0 !important;
    object-fit: cover !important;
    display: block !important;
  }

  /* Specific focal alignment: Mini Toddler & Mini Preschool top-aligned, Mini Baby bottom-aligned for floor babies */
  #mini-toddler img,
  #mini-preschool img {
    object-position: center top !important;
  }

  #mini-baby img {
    object-position: center 35% !important;
  }

  /* Sticky Notes Testimonials Mobile Layout */
  .sticky-notes-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
    margin-top: 1.75rem !important;
  }

  /* Any container inside media cards holding text goes BOTTOM (order: 2) */
  .brand-card > div:not(:has(img)),
  div[style*="grid-template-columns"] > div:not(:has(img)) {
    order: 2 !important;
    width: 100% !important;
    padding: 1.35rem 1.15rem !important;
    flex-grow: 0 !important;
    min-height: 0 !important;
  }

  /* --- DIRECTIVE 2: TUITION PILLARS (2 TOP, 1 BOTTOM CENTERED) --- */
  .tuition-pillars-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.85rem !important;
  }

  .tuition-pillars-grid > div:nth-child(3) {
    grid-column: 1 / -1 !important;
    max-width: 280px !important;
    margin: 0 auto !important;
    width: 100% !important;
  }

  .tuition-pillars-grid .brand-card {
    padding: 1.25rem 0.85rem !important;
  }

  /* --- DIRECTIVE 4: EQUAL 3 PILL BOXES (LOVE, FAMILY, HAPPINESS) --- */
  div[style*="grid-template-columns: repeat(3, 1fr)"] > div {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0.85rem 0.25rem !important;
    min-height: 110px !important;
    height: 100% !important;
  }

  div[style*="grid-template-columns: repeat(3, 1fr)"] h4 {
    font-size: 0.8rem !important;
    letter-spacing: -0.2px !important;
    white-space: nowrap !important;
    margin-bottom: 0.2rem !important;
  }

  /* --- DIRECTIVE 5: BEST OF FLORIDA RIBBON UN-CROPPED & SCALED (MOBILE ONLY) --- */
  .about-storefront-badge,
  .award-card-glowing {
    position: relative !important;
    bottom: auto !important;
    right: auto !important;
    margin: 1.25rem auto 0 auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    overflow: visible !important;
    height: auto !important;
    max-height: none !important;
    width: fit-content !important;
    max-width: 100% !important;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
  }

  .about-storefront-badge img,
  .award-card-glowing img,
  img[src*="BOFL-Ribbon-2025-Regional"],
  img[src*="best-daycare-of-wesleychapel"] {
    max-height: 140px !important;
    height: auto !important;
    width: auto !important;
    max-width: 85% !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  /* --- FOOTER LOGO RESTORATION (PRESERVE EXACT SIDE-BY-SIDE ALIGNMENT) --- */
  .footer-brand div {
    display: flex !important;
    align-items: center !important;
    gap: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }

  .footer-brand img {
    margin: 0 !important;
    display: inline-block !important;
    max-width: none !important;
    filter: none !important;
  }

  .footer-brand img[src*="best-daycare-of-wesleychapel"] {
    height: 65px !important;
    width: auto !important;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3)) !important;
  }

  .footer-brand img[src*="miniartlogo_childcarecenter_whiteborder"] {
    height: 55px !important;
    width: auto !important;
  }

  /* Header Responsiveness */
  .header-row-1 {
    padding: 0.45rem 0.75rem 0.25rem 0.75rem !important;
  }

  .official-logo-centered {
    height: 48px !important;
  }

  .header-row-2 {
    padding: 0.35rem 0.5rem !important;
  }

  .nav-menu-centered {
    gap: 1rem !important;
  }

  .nav-link {
    font-size: 0.82rem !important;
    padding: 0.2rem 0 !important;
  }

  .header-row-3 {
    padding: 0.45rem 0.5rem !important;
    gap: 0.35rem !important;
    flex-wrap: wrap !important;
  }

  .header-row-3 .btn {
    padding: 0.4rem 0.65rem !important;
    font-size: 0.72rem !important;
    flex: 1 1 auto !important;
    text-align: center !important;
    min-width: 98px !important;
  }

  .header-row-3 .btn i {
    font-size: 0.75rem !important;
  }

  /* Page Headings */
  h1 {
    font-size: 1.75rem !important;
    line-height: 1.25 !important;
  }

  h2 {
    font-size: 1.45rem !important;
    line-height: 1.25 !important;
  }

  h3 {
    font-size: 1.18rem !important;
  }

  /* Hero Banners */
  section[style*="min-height: 460px"] {
    min-height: 300px !important;
    padding: 1.75rem 1rem !important;
    background-position: center center !important;
  }

  section[style*="min-height: 460px"] h1 {
    font-size: 1.5rem !important;
  }

  section[style*="min-height: 460px"] p {
    font-size: 0.92rem !important;
  }

  /* Clean Video Banner */
  .clean-video-wrapper {
    margin-top: 165px !important;
  }

  /* E-Commerce Product Cards Grid (Uniforms) */
  .product-cards-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }

  .uniform-product-card {
    padding: 1.25rem !important;
  }

  .uniform-product-img {
    height: 180px !important;
    object-fit: contain !important;
  }

  /* Pill Buttons */
  .pill-btn-group {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0.45rem !important;
  }

  .pill-btn {
    padding: 0.55rem 0.95rem !important;
    font-size: 0.82rem !important;
  }

  /* Contact Form Inputs & Rows */
  .form-responsive-row,
  div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .tour-input-wrap input,
  .tour-input-wrap select,
  .contact-input-icon-wrap input {
    height: 48px !important;
    font-size: 0.95rem !important;
    width: 100% !important;
  }

  .tour-image-container img {
    height: 240px !important;
  }

  .tour-floating-badge {
    bottom: 12px !important;
    left: 12px !important;
    right: 12px !important;
    padding: 0.65rem 0.85rem !important;
  }

  .tour-floating-badge h4 {
    font-size: 0.82rem !important;
  }

  .tour-floating-badge p {
    font-size: 0.72rem !important;
  }

  /* Sticky Summary Card */
  .horizontal-summary-card {
    padding: 1.5rem !important;
    margin-top: 1.5rem !important;
    text-align: left !important;
    align-items: flex-start !important;
  }

  .horizontal-summary-card h3,
  .horizontal-summary-card p,
  .horizontal-summary-card div {
    text-align: left !important;
  }
}

@media (max-width: 480px) {
  main {
    margin-top: 175px !important;
  }

  .clean-video-wrapper {
    margin-top: 175px !important;
  }

  .header-row-3 {
    flex-direction: row !important;
  }

  .header-row-3 .btn {
    font-size: 0.7rem !important;
    padding: 0.38rem 0.45rem !important;
  }
}

/* ================= STRICT GLOBAL LEFT ALIGNMENT FOR ALL FORMS ================= */
.tour-form-card,
.contact-card-stylish,
.horizontal-summary-card,
.brand-card,
#tourForm,
#forminatorForm6717 {
  text-align: left !important;
  align-items: flex-start !important;
}

.tour-form-card *,
.contact-card-stylish *,
.horizontal-summary-card *,
.brand-card *,
#tourForm *,
#forminatorForm6717 * {
  text-align: left !important;
}

.tour-form-card h2,
.tour-form-card h3,
.contact-card-stylish h3,
.horizontal-summary-card h3,
.brand-card h3 {
  justify-content: flex-start !important;
  text-align: left !important;
}

.contact-input-icon-wrap,
.tour-input-wrap {
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: auto !important;
}

.contact-input-icon-wrap input,
.tour-input-wrap input,
.tour-input-wrap select,
.tour-input-wrap textarea {
  width: 100% !important;
  text-align: left !important;
  box-sizing: border-box !important;
}

.form-group label,
.contact-card-stylish label,
.tour-form-card label {
  display: block !important;
  text-align: left !important;
  margin-left: 0 !important;
  margin-bottom: 0.4rem !important;
  font-weight: 700 !important;
}




/* --- LANGUAGE SWITCHER WIDGET & TRANSLATION CLEANUP --- */
.lang-switcher-wrapper {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  padding: 3px;
  border-radius: 30px;
  border: 1px solid rgba(38, 171, 185, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin-left: 0.75rem;
}
.lang-btn {
  background: transparent;
  border: none;
  padding: 0.3rem 0.65rem;
  border-radius: 20px;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: all 0.25s ease;
}
.lang-btn:hover {
  color: var(--primary);
}
.lang-btn.active {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 3px 10px rgba(38, 171, 185, 0.3);
}
.lang-flag {
  font-size: 1rem;
  line-height: 1;
}

/* Hide Google Translate Banners & Tooltips */
.goog-te-banner-frame.skiptranslate,
.goog-te-banner-frame,
#goog-gt-tt,
.goog-te-balloon-frame {
  display: none !important;
}
body {
  top: 0px !important;
}
.goog-text-highlight {
  background-color: transparent !important;
  box-shadow: none !important;
}


/* ================= 100% PERFECT MOBILE ADAPTABILITY & BUTTON PADDING ================= */
@media (max-width: 768px) {
  .header-row-3 {
    justify-content: center !important;
    gap: 0.35rem !important;
    padding: 0.4rem 0.5rem !important;
  }
  .header-row-3 .btn {
    flex: 1 1 auto !important;
    font-size: 0.72rem !important;
    padding: 0.42rem 0.5rem !important;
    margin: 0.15rem 0 !important;
    white-space: nowrap !important;
  }
  .award-right-box {
    padding-bottom: 3rem !important;
    margin-bottom: 2rem !important;
  }
  .award-right-box div[style*="display: flex"] {
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.85rem !important;
  }
  .award-right-box .btn {
    width: 100% !important;
    max-width: 320px !important;
    margin: 0 auto !important;
  }
  footer.footer {
    margin-top: 2.5rem !important;
  }
}

@media (max-width: 480px) {
  .header-row-3 .btn {
    font-size: 0.68rem !important;
    padding: 0.38rem 0.45rem !important;
  }
}

/* ================= MOBILE LEADERSHIP BOX & HIGHLIGHTED CARD ALIGNMENT ================= */
@media (max-width: 768px) {
  .leadership-left-box {
    margin-bottom: 2.25rem !important;
    width: 100% !important;
  }
  .highlighted-info-card {
    padding: 1.35rem 1.15rem !important;
    margin-top: 1.25rem !important;
    border-radius: var(--radius-md) !important;
    text-align: center !important;
  }
  .highlighted-info-card p {
    font-size: 0.95rem !important;
    line-height: 1.55 !important;
    margin-bottom: 1.15rem !important;
  }
  .highlighted-info-card .btn {
    width: 100% !important;
    max-width: 280px !important;
    margin: 0 auto !important;
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
  }
}

/* ================= LEADERSHIP BOX OVERLAY & MOBILE UNCLIP FIX ================= */
.leadership-left-box,
div.leadership-left-box {
  max-height: none !important;
  height: auto !important;
  overflow: visible !important;
  display: block !important;
  margin-bottom: 2rem !important;
}

.leadership-left-box > div:first-child {
  max-height: 380px !important;
  border-radius: var(--radius-lg) !important;
  overflow: hidden !important;
  margin-bottom: 1.25rem !important;
}

.leadership-left-box .highlighted-info-card {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  margin-top: 1.25rem !important;
  padding: 1.5rem 1.25rem !important;
  background: linear-gradient(135deg, #f0fdfa 0%, #e6f6f8 100%) !important;
  border: 2px solid var(--primary) !important;
  border-radius: var(--radius-md) !important;
  text-align: center !important;
  box-shadow: var(--shadow-md) !important;
}

@media (max-width: 768px) {
  .leadership-left-box > div:first-child {
    max-height: 290px !important;
  }
  .leadership-left-box > div:first-child img {
    height: 290px !important;
    object-fit: cover !important;
  }
  .leadership-left-box .highlighted-info-card {
    padding: 1.25rem 1rem !important;
    text-align: center !important;
  }
  .leadership-left-box .highlighted-info-card p {
    font-size: 0.92rem !important;
    line-height: 1.55 !important;
    margin-bottom: 1.15rem !important;
  }
  .leadership-left-box .highlighted-info-card .btn {
    width: 100% !important;
    max-width: 290px !important;
    margin: 0 auto !important;
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
  }
}


/* ================= HIGH SPECIFICITY MOBILE UNCLIP FOR LEADERSHIP CARD ================= */
@media (max-width: 768px) {
  div[style*="grid-template-columns"] > div.leadership-left-box,
  .leadership-left-box {
    max-height: none !important;
    height: auto !important;
    overflow: visible !important;
    display: flex !important;
    flex-direction: column !important;
    margin-bottom: 2.5rem !important;
  }
  div[style*="grid-template-columns"] > div.leadership-left-box > div:first-child {
    max-height: 290px !important;
    overflow: hidden !important;
    border-radius: var(--radius-lg) !important;
    margin-bottom: 1.25rem !important;
  }
  div[style*="grid-template-columns"] > div.leadership-left-box > div:first-child img {
    height: 290px !important;
    object-fit: cover !important;
    width: 100% !important;
  }
  div[style*="grid-template-columns"] > div.leadership-left-box .highlighted-info-card,
  .highlighted-info-card {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin-top: 1rem !important;
    padding: 1.35rem 1.15rem !important;
    background: linear-gradient(135deg, #f0fdfa 0%, #e6f6f8 100%) !important;
    border: 2px solid var(--primary) !important;
    border-radius: var(--radius-md) !important;
    text-align: center !important;
    box-shadow: var(--shadow-md) !important;
  }
  .highlighted-info-card p {
    font-size: 0.94rem !important;
    line-height: 1.55 !important;
    margin-bottom: 1.15rem !important;
    color: var(--text-dark) !important;
  }
  .highlighted-info-card .btn {
    width: 100% !important;
    max-width: 290px !important;
    margin: 0 auto !important;
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
  }
}


/* ================= 100% BULLETPROOF MOBILE CARD & FLUID BUTTON PERFECTION ================= */
.leadership-left-box,
div[style*="grid-template-columns"] > div.leadership-left-box,
div[style*="grid-template-columns"] > div.leadership-left-box:has(img) {
  order: initial !important;
  max-height: none !important;
  height: auto !important;
  min-height: 0 !important;
  overflow: visible !important;
  display: flex !important;
  flex-direction: column !important;
  margin-bottom: 2rem !important;
}

.leadership-left-box > div:first-child {
  max-height: 380px !important;
  border-radius: var(--radius-lg) !important;
  overflow: hidden !important;
  margin-bottom: 1.25rem !important;
  width: 100% !important;
  flex-shrink: 0 !important;
}

.leadership-left-box > div:first-child img {
  width: 100% !important;
  height: 380px !important;
  object-fit: cover !important;
  display: block !important;
}

.highlighted-info-card,
.leadership-left-box .highlighted-info-card {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  margin-top: 1.25rem !important;
  padding: 1.5rem 1.25rem !important;
  background: linear-gradient(135deg, #f0fdfa 0%, #e6f6f8 100%) !important;
  border: 2px solid var(--primary) !important;
  border-radius: var(--radius-md) !important;
  text-align: center !important;
  box-shadow: var(--shadow-md) !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

@media (max-width: 768px) {
  .leadership-left-box > div:first-child {
    max-height: 290px !important;
  }
  .leadership-left-box > div:first-child img {
    height: 290px !important;
  }
  .highlighted-info-card,
  .leadership-left-box .highlighted-info-card {
    padding: 1.25rem 1rem !important;
    margin-top: 1rem !important;
  }
  .highlighted-info-card p {
    font-size: clamp(0.88rem, 3.2vw, 0.96rem) !important;
    line-height: 1.55 !important;
    margin-bottom: 1rem !important;
  }
  .highlighted-info-card .btn,
  .award-right-box .btn,
  .btn {
    box-sizing: border-box !important;
    max-width: 100% !important;
    white-space: normal !important;
    word-break: break-word !important;
  }
  .header-row-3 .btn {
    font-size: clamp(0.62rem, 2.4vw, 0.72rem) !important;
    padding: 0.38rem 0.35rem !important;
    white-space: normal !important;
    word-break: break-word !important;
    min-width: 0 !important;
    flex: 1 1 30% !important;
  }
}
