/*
Theme Name:   Flatsome Child
Theme URI:    http://flatsome.uxthemes.com
Description:  Flatsome Child Theme for Bright Learning Academy
Author:       Bright Learning Academy
Author URI:   https://brightlearningacademy.com
Template:     flatsome
Version:      1.0.1
License:      GNU General Public License v2 or later
License URI:  http://www.gnu.org/licenses/gpl-2.0.html
Text Domain:  flatsome-child
*/

/* ============================================
   CURRICULUM SLIDER SECTION — Sunshine Theme
   ============================================ */

.curriculum-slider-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Swiper container */
.curriculum-swiper {
  padding-bottom: 56px;
  position: relative;
}

/* Card */
.curriculum-card {
  background: #FFFFFF;
  border-radius: 24px;
  border: 2px solid #FFE4CC;
  box-shadow: 4px 4px 16px rgba(68, 46, 102, 0.12);
  overflow: hidden;
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out, border-color 0.3s ease-out;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Accent bar at top of card */
.curriculum-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--card-accent-color, #FFB606);
  z-index: 2;
}

.curriculum-card:hover {
  transform: translateY(-6px);
  border-color: #FFB606;
  box-shadow: 6px 6px 24px rgba(68, 46, 102, 0.18);
}

/* Card header */
.curriculum-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  color: #fff;
  position: relative;
}

/* Subtle gradient overlay on header for depth */
.curriculum-card-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(0, 0, 0, 0.08) 100%);
  pointer-events: none;
}

.curriculum-card-emoji {
  font-size: 20px;
  line-height: 1;
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.2);
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  color: #fff;
}

.curriculum-card-title {
  font-family: 'Baloo 2', cursive;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

/* Card list */
.curriculum-card-list {
  list-style: none;
  padding: 20px 20px 24px;
  margin: 0;
  flex: 1;
}

.curriculum-card-list li {
  position: relative;
  padding: 6px 0 6px 24px;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  color: #2D2D2D;
  line-height: 1.6;
}

.curriculum-card-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #81C784;
  font-weight: 700;
  font-size: 14px;
}

/* Navigation arrows — sunshine button style */
.curriculum-swiper-prev,
.curriculum-swiper-next {
  width: 44px;
  height: 44px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.curriculum-swiper-prev::after,
.curriculum-swiper-next::after {
  font-size: 16px;
  font-weight: 800;
  color: #2D2D2D;
}

.curriculum-swiper-prev:hover,
.curriculum-swiper-next:hover {
  transform: translateY(-2px);
}

/* Pagination dots */
.curriculum-swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #FFE4CC;
  opacity: 1;
  transition: all 0.3s ease;
}

.curriculum-swiper-pagination .swiper-pagination-bullet-active {
  background: #FFB606;
  width: 28px;
  border-radius: 5px;
}

/* Responsive */
@media (max-width: 768px) {
  .curriculum-slider-section {
    padding: 0 16px;
  }

  .curriculum-swiper-prev,
  .curriculum-swiper-next {
    display: none;
  }
}


/* ============================================
   FORM FIELDS — Fix clipped text (Flatsome override)
   ============================================ */
html .bright-form input[type="text"],
html .bright-form input[type="email"],
html .bright-form input[type="tel"],
html .bright-form input[type="date"],
html .bright-form select,
html .bright-form textarea,
html .cta-form-wrapper-sunshine .wpcf7 input[type="text"],
html .cta-form-wrapper-sunshine .wpcf7 input[type="email"],
html .cta-form-wrapper-sunshine .wpcf7 input[type="tel"],
html .cta-form-wrapper-sunshine .wpcf7 select,
html .cta-form-wrapper-sunshine .wpcf7 textarea {
  height: auto !important;
  min-height: 52px !important;
  line-height: 24px !important;
}

/* Reduce spacing between form fields */
html .bright-form label {
  margin-top: 12px !important;
  margin-bottom: 4px !important;
}
html .bright-form label:first-child {
  margin-top: 0 !important;
}
html .bright-form input,
html .bright-form select,
html .bright-form textarea {
  margin-bottom: 0 !important;
}
html .cta-form-wrapper-sunshine .wpcf7 input,
html .cta-form-wrapper-sunshine .wpcf7 select,
html .cta-form-wrapper-sunshine .wpcf7 textarea {
  margin-bottom: 0 !important;
}


/* ============================================
   MOBILE MENU — Custom Overlay (bypasses Flatsome)
   Sunshine Theme
   ============================================ */

/* Hamburger button — hidden by default, shown on mobile */
.bright-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 10001;
  position: fixed;
  top: 12px;
  right: 16px;
  height: 70px;
  align-items: center;
  justify-content: center;
}
.bright-hamburger span {
  width: 28px;
  height: 3px;
  background: #2D2D2D;
  border-radius: 2px;
  transition: all 0.3s ease-out;
}
.bright-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.bright-hamburger.active span:nth-child(2) {
  opacity: 0;
}
.bright-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Full-screen overlay */
.bright-mobile-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255, 255, 255, 0.98);
  z-index: 10000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.bright-mobile-overlay.active {
  display: flex;
}
.bright-mobile-overlay a {
  font-family: 'Baloo 2', cursive !important;
  font-weight: 600 !important;
  font-size: 24px !important;
  color: #2D2D2D !important;
  padding: 8px 0 !important;
  position: relative !important;
  text-transform: none !important;
  text-decoration: none !important;
}
.bright-mobile-overlay a:hover,
.bright-mobile-overlay a.current {
  color: #FFB606 !important;
}
.bright-mobile-overlay a.current::after {
  content: '' !important;
  position: absolute !important;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 120px;
  height: 3px;
  background: #FFB606;
  border-radius: 2px;
}

/* Body scroll lock when menu is open */
body.bright-menu-open {
  overflow: hidden;
}

/* Mobile-only: show hamburger, hide Flatsome's default */
@media (max-width: 849px) {
  .bright-hamburger {
    display: flex;
  }
  [data-open="#main-menu"] {
    display: none !important;
  }
}





/* ============================================
   CONTACT PAGE — Sunshine Playground
   ============================================ */

/* Keyframes */
@keyframes floatSlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes twinkle {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}

/* Header */
.contact-compact-header {
  padding: 52px 24px 36px;
  text-align: center;
  background: linear-gradient(170deg, #FFF9F0 0%, #FFF0E0 50%, #FFE4CC 100%);
  position: relative;
  overflow: hidden;
}
.contact-compact-header::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255,107,157,0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: floatSlow 6s ease-in-out infinite;
}
.contact-compact-header::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 40px;
  width: 90px;
  height: 90px;
  background: radial-gradient(circle, rgba(79,195,247,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: floatSlow 8s ease-in-out infinite reverse;
}
.contact-compact-header h1 {
  font-family: 'Baloo 2', cursive;
  font-size: 36px;
  font-weight: 800;
  color: #442E66;
  margin: 0 0 8px;
  position: relative;
  display: inline-block;
  animation: fadeSlideDown 0.6s ease-out both;
}
.contact-compact-header h1::before {
  content: '\2726';
  position: absolute;
  top: -8px;
  right: -28px;
  font-size: 16px;
  color: #FFB606;
  opacity: 0.6;
  animation: twinkle 3s ease-in-out infinite;
  pointer-events: none;
}
.contact-compact-header h1::after {
  content: '';
  display: block;
  width: 80px;
  height: 5px;
  background: linear-gradient(90deg, #FFB606, #FF6B9D);
  border-radius: 3px;
  margin: 14px auto 0;
}
.contact-compact-header p {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  color: rgba(68, 46, 102, 0.65);
  margin: 14px auto 0;
  max-width: 480px;
  line-height: 1.6;
  animation: fadeSlideDown 0.6s ease-out 0.15s both;
}

/* Two-column body */
.contact-compact-body {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px 56px;
  display: grid !important;
  grid-template-columns: 2fr 3fr !important;
  gap: 32px !important;
  align-items: start;
  background: #FFF9F0;
  position: relative;
}
.contact-compact-body::before {
  content: '';
  position: absolute;
  top: -24px;
  left: 0;
  right: 0;
  height: 24px;
  background: #FFF9F0;
  clip-path: ellipse(55% 100% at 50% 100%);
  pointer-events: none;
  z-index: 1;
}

/* Left column */
.contact-compact-info {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #FFFFFF;
  border-radius: 24px;
  border: 2px solid #FFE4CC;
  box-shadow: 0 8px 32px rgba(68, 46, 102, 0.10), 0 2px 8px rgba(68, 46, 102, 0.06);
  padding: 28px 24px;
  overflow: hidden;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}
.contact-compact-info::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, #FF6B9D, #FFB606);
  z-index: 2;
}
.contact-compact-info::after {
  content: '';
  position: absolute;
  bottom: -30px; right: -30px;
  width: 100px; height: 100px;
  background: radial-gradient(circle, rgba(79,195,247,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.contact-compact-info:hover {
  transform: translateY(-5px);
  border-color: #FFB606;
  box-shadow: 0 12px 40px rgba(68, 46, 102, 0.16), 0 4px 12px rgba(68, 46, 102, 0.08);
}
.contact-compact-info h3 {
  font-family: 'Baloo 2', cursive;
  font-size: 22px;
  font-weight: 700;
  color: #442E66;
  margin: 0 0 20px;
  position: relative;
  z-index: 1;
}

/* Contact info items */
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  margin-bottom: 10px;
  background: #FFF9F0;
  border-radius: 14px;
  border-left: 4px solid #FFB606;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.2s ease, box-shadow 0.25s ease;
  position: relative;
  z-index: 1;
}
.contact-info-item:last-of-type {
  margin-bottom: 0;
}
.contact-info-item:hover {
  background: #FFFFFF;
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(68, 46, 102, 0.10);
}
.contact-info-item:nth-child(2) { border-left-color: #4FC3F7; }
.contact-info-item:nth-child(3) { border-left-color: #FF6B9D; }
.contact-info-item:nth-child(4) { border-left-color: #81C784; }

.contact-info-item i {
  color: #FFB606;
  font-size: 18px;
  width: 42px; height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 182, 6, 0.15);
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.06);
}
.contact-info-item:hover i {
  transform: scale(1.15) rotate(-5deg);
  box-shadow: 0 4px 12px rgba(255, 182, 6, 0.25);
}
.contact-info-item:nth-child(2) i { background: rgba(79, 195, 247, 0.15); color: #4FC3F7; }
.contact-info-item:nth-child(2):hover i { box-shadow: 0 4px 12px rgba(79, 195, 247, 0.25); }
.contact-info-item:nth-child(3) i { background: rgba(255, 107, 157, 0.15); color: #FF6B9D; }
.contact-info-item:nth-child(3):hover i { box-shadow: 0 4px 12px rgba(255, 107, 157, 0.25); }
.contact-info-item:nth-child(4) i { background: rgba(129, 199, 132, 0.15); color: #81C784; }
.contact-info-item:nth-child(4):hover i { box-shadow: 0 4px 12px rgba(129, 199, 132, 0.25); }

.contact-info-item span,
.contact-info-item a {
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  color: #2D2D2D;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.2s ease;
  font-weight: 600;
}
.contact-info-item a:hover { color: #442E66; }

/* Hours */
.contact-compact-hours {
  margin-top: 24px;
  position: relative;
  z-index: 1;
}
.contact-compact-hours h4 {
  font-family: 'Baloo 2', cursive;
  font-size: 18px;
  font-weight: 700;
  color: #442E66;
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-compact-hours h4::before {
  content: '';
  display: inline-block;
  width: 4px; height: 20px;
  background: linear-gradient(180deg, #4FC3F7, #442E66);
  border-radius: 2px;
  flex-shrink: 0;
}
.contact-compact-hours table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  background: #FFF9F0;
  border-radius: 16px;
  border: 1.5px solid #FFE4CC;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(68, 46, 102, 0.05);
}
.contact-compact-hours td {
  padding: 11px 16px;
  color: #6B6B6B;
  transition: background 0.2s ease;
}
.contact-compact-hours td:first-child {
  color: #2D2D2D;
  font-weight: 700;
  position: relative;
}
.contact-compact-hours td:first-child::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #FFB606;
  margin-right: 8px;
  vertical-align: middle;
}
.contact-compact-hours tr {
  border-bottom: 1px solid #FFE4CC;
  transition: background 0.2s ease;
}
.contact-compact-hours tr:hover {
  background: rgba(255, 182, 6, 0.06);
}
.contact-compact-hours tr:nth-child(even) {
  background: rgba(255, 228, 204, 0.25);
}
.contact-compact-hours tr:nth-child(even):hover {
  background: rgba(255, 182, 6, 0.10);
}
.contact-compact-hours tr:last-child { border-bottom: none; }

/* Right column — form */
.contact-compact-form {
  background: #FFFFFF;
  border-radius: 24px;
  border: 2px solid #FFE4CC;
  box-shadow: 0 8px 32px rgba(68, 46, 102, 0.10), 0 2px 8px rgba(68, 46, 102, 0.06);
  padding: 32px 28px;
  overflow: hidden;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}
.contact-compact-form::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, #4FC3F7, #442E66);
  z-index: 2;
}
.contact-compact-form::after {
  content: '';
  position: absolute;
  top: -20px; right: -20px;
  width: 80px; height: 80px;
  background: radial-gradient(circle, rgba(255,182,6,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.contact-compact-form:hover {
  transform: translateY(-5px);
  border-color: #FFB606;
  box-shadow: 0 12px 40px rgba(68, 46, 102, 0.16), 0 4px 12px rgba(68, 46, 102, 0.08);
}
.contact-compact-form h3 {
  font-family: 'Baloo 2', cursive;
  font-size: 22px;
  font-weight: 700;
  color: #442E66;
  margin: 0 0 20px;
  position: relative;
  z-index: 1;
}

/* Remove inner .bright-form wrapper styling — card already has border/padding */
.contact-compact-form .bright-form {
  padding: 0 !important;
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

/* Form labels */
.contact-compact-form .bright-form label {
  margin-top: 12px !important;
  margin-bottom: 5px !important;
  font-size: 13px !important;
  color: #442E66 !important;
  font-weight: 700 !important;
  font-family: 'Nunito', sans-serif !important;
  letter-spacing: 0.3px !important;
  text-transform: uppercase !important;
  position: relative;
  z-index: 1;
}
.contact-compact-form .bright-form label:first-child {
  margin-top: 0 !important;
}

/* Form fields */
.contact-compact-form .bright-form input[type="text"],
.contact-compact-form .bright-form input[type="email"],
.contact-compact-form .bright-form input[type="tel"],
.contact-compact-form .bright-form input[type="date"],
.contact-compact-form .bright-form select {
  min-height: 50px !important;
  height: 50px !important;
  padding: 10px 16px !important;
  font-size: 15px !important;
  border: 2px solid #FFE4CC !important;
  border-radius: 14px !important;
  background: #FFFCF7 !important;
  font-family: 'Nunito', sans-serif !important;
  color: #2D2D2D !important;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, transform 0.2s ease !important;
  position: relative;
  z-index: 1;
}
.contact-compact-form .bright-form input[type="text"]:focus,
.contact-compact-form .bright-form input[type="email"]:focus,
.contact-compact-form .bright-form input[type="tel"]:focus,
.contact-compact-form .bright-form input[type="date"]:focus,
.contact-compact-form .bright-form select:focus {
  border-color: #FFB606 !important;
  outline: none !important;
  box-shadow: 0 0 0 4px rgba(255, 182, 6, 0.15), 0 4px 12px rgba(255, 182, 6, 0.10) !important;
  background: #FFFFFF !important;
  transform: translateY(-1px) !important;
}
.contact-compact-form .bright-form textarea {
  min-height: 88px !important;
  height: 88px !important;
  padding: 12px 16px !important;
  font-size: 15px !important;
  resize: none;
  border: 2px solid #FFE4CC !important;
  border-radius: 14px !important;
  background: #FFFCF7 !important;
  font-family: 'Nunito', sans-serif !important;
  color: #2D2D2D !important;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, transform 0.2s ease !important;
  position: relative;
  z-index: 1;
}
.contact-compact-form .bright-form textarea:focus {
  border-color: #FFB606 !important;
  outline: none !important;
  box-shadow: 0 0 0 4px rgba(255, 182, 6, 0.15), 0 4px 12px rgba(255, 182, 6, 0.10) !important;
  background: #FFFFFF !important;
  transform: translateY(-1px) !important;
}
.contact-compact-form .bright-form input::placeholder,
.contact-compact-form .bright-form textarea::placeholder {
  color: #B8A99A !important;
  font-style: italic !important;
  font-weight: 400 !important;
}
.contact-compact-form .wpcf7-form p {
  margin-bottom: 0 !important;
}
.contact-compact-form .wpcf7-form .wpcf7-response-output {
  margin: 14px 0 0 !important;
  padding: 12px 18px !important;
  font-size: 14px !important;
  border-radius: 14px !important;
  font-family: 'Nunito', sans-serif !important;
}

/* Submit button */
.contact-compact-form .wpcf7-submit,
.contact-compact-form input[type="submit"] {
  width: 100% !important;
  padding: 16px 32px !important;
  font-family: 'Baloo 2', cursive !important;
  font-weight: 700 !important;
  font-size: 18px !important;
  background: linear-gradient(135deg, #FFB606 0%, #FFC940 100%) !important;
  color: #2D2D2D !important;
  border: 3px solid #2D2D2D !important;
  border-radius: 16px !important;
  box-shadow: 4px 4px 0 #2D2D2D !important;
  cursor: pointer !important;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease, background 0.2s ease !important;
  margin-top: 16px !important;
  position: relative;
  z-index: 1;
  letter-spacing: 0.5px !important;
}
.contact-compact-form .wpcf7-submit:hover,
.contact-compact-form input[type="submit"]:hover {
  transform: translate(2px, 2px) !important;
  box-shadow: 2px 2px 0 #2D2D2D !important;
  background: linear-gradient(135deg, #FFC940 0%, #FFB606 100%) !important;
}
.contact-compact-form .wpcf7-submit:active,
.contact-compact-form input[type="submit"]:active {
  transform: translate(4px, 4px) !important;
  box-shadow: 0 0 0 #2D2D2D !important;
}
.contact-compact-form .wpcf7-submit:focus-visible,
.contact-compact-form input[type="submit"]:focus-visible {
  outline: 3px solid #442E66 !important;
  outline-offset: 3px !important;
}

/* Responsive 768px */
@media (max-width: 768px) {
  .contact-compact-header { padding: 40px 16px 28px; }
  .contact-compact-header h1 { font-size: 28px; }
  .contact-compact-header h1::before { display: none; }
  .contact-compact-body {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    padding: 28px 16px 40px;
  }
  .contact-compact-body::before { top: -16px; height: 16px; }
  .contact-compact-info,
  .contact-compact-form { padding: 24px 20px; border-radius: 20px; }
  .contact-compact-info:hover,
  .contact-compact-form:hover {
    transform: none;
    box-shadow: 0 8px 32px rgba(68, 46, 102, 0.10), 0 2px 8px rgba(68, 46, 102, 0.06);
  }
  .contact-info-item:hover {
    transform: none;
    background: #FFF9F0;
    box-shadow: none;
  }
  .contact-info-item:hover i { transform: none; }
}

/* Responsive 480px */
@media (max-width: 480px) {
  .contact-compact-header h1 { font-size: 24px; }
  .contact-compact-header::before,
  .contact-compact-header::after { display: none; }
  .contact-compact-body { gap: 20px !important; padding: 24px 12px 32px; }
  .contact-compact-info,
  .contact-compact-form { padding: 20px 16px; }
  .contact-info-item { padding: 12px 14px; }
  .contact-compact-hours td { padding: 9px 12px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .contact-compact-header::before,
  .contact-compact-header::after,
  .contact-compact-header h1,
  .contact-compact-header h1::before,
  .contact-compact-header p {
    animation: none !important;
  }
  .contact-compact-info,
  .contact-compact-form,
  .contact-info-item,
  .contact-info-item i,
  .contact-compact-form .bright-form input,
  .contact-compact-form .bright-form select,
  .contact-compact-form .bright-form textarea,
  .contact-compact-form .wpcf7-submit,
  .contact-compact-form input[type="submit"] {
    transition: none !important;
  }
}