/* 
  VITALYEARS MONTESSORI SCHOOL - UNIFIED STYLESHEET
  Contains all site-wide and component-specific styles.
*/

:root {
  --orange: #F7941D;
  --orange-dark: #E0820A;
  --green: #39B54A;
  --blue: #00AEEF;
  --red: #EE3124;
  --purple: #8B5CF6;
  --yellow: #FFD43B;
  --dark: #1a1a2e;
  --light-bg: #FFF9F0;
  --grey: #6b7280;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Nunito', sans-serif;
  background: #fff;
  overflow-x: hidden;
}

/* TOP BAR */
.top-bar {
  background: var(--orange);
  color: #fff;
  font-size: .82rem;
  font-weight: 600;
  padding: 7px 0;
}

.top-bar a {
  color: #fff;
  text-decoration: none;
}

.marquee-wrap {
  overflow: hidden;
  white-space: nowrap;
}

.marquee-text {
  display: inline-block;
  animation: marquee 30s linear infinite;
}

@keyframes marquee {
  from { transform: translateX(100vw); }
  to { transform: translateX(-100%); }
}

/* NAVBAR */
.main-nav {
  background: #fff;
  box-shadow: 0 2px 16px rgba(0, 0, 0, .10);
  position: sticky;
  top: 0;
  z-index: 1050;
  padding: 0;
}

.main-nav .navbar-nav .nav-link {
  font-family: 'Baloo 2', cursive;
  font-weight: 600;
  font-size: .95rem;
  color: var(--dark) !important;
  padding: 18px 14px !important;
  position: relative;
  transition: color .2s;
}

.main-nav .navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px 2px 0 0;
  transform: scaleX(0);
  transition: transform .25s;
}

.main-nav .navbar-nav .nav-link:hover {
  color: var(--orange) !important;
}

.main-nav .navbar-nav .nav-link:hover::after {
  transform: scaleX(1);
}

.nav-enquire-btn {
  background: var(--orange);
  color: #fff !important;
  border-radius: 25px !important;
  padding: 8px 22px !important;
  font-family: 'Baloo 2', cursive !important;
  font-weight: 700 !important;
  font-size: .9rem !important;
  transition: background .2s, transform .2s !important;
  margin-left: 8px;
}

.nav-enquire-btn:hover {
  background: var(--orange-dark) !important;
  transform: scale(1.04);
}

/* HERO SLIDER */
.hero-slider {
  position: relative;
  overflow: hidden;
}

.hero-slide {
  min-height: 520px;
  position: relative;
  display: flex;
  align-items: center;
}

.slide-1 { background: linear-gradient(120deg, #fff8f0 0%, #ffe8cc 100%); }
.slide-2 { background: linear-gradient(120deg, #e8f8ff 0%, #b3e8ff 100%); }
.slide-3 { background: linear-gradient(120deg, #f0fff4 0%, #b3f0c8 100%); }

.hero-slide .slide-content { padding: 50px 0; }

.slide-badge {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: .8rem;
  padding: 4px 16px;
  border-radius: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.slide-badge.blue { background: var(--blue); }
.slide-badge.green { background: var(--green); }

.hero-slide h1 {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero-slide h1 .ho { color: var(--orange); }
.hero-slide h1 .hb { color: var(--blue); }
.hero-slide h1 .hg { color: var(--green); }

.hero-slide p {
  font-size: 1rem;
  color: #555;
  max-width: 480px;
  margin-bottom: 28px;
  line-height: 1.7;
}

.btn-ora {
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 28px;
  padding: 12px 30px;
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: .98rem;
  text-decoration: none;
  display: inline-block;
  transition: background .2s, transform .2s;
  margin-right: 10px;
}

.btn-ora:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  color: #fff;
}

.btn-out-ora {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
  border-radius: 28px;
  padding: 10px 26px;
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: .98rem;
  text-decoration: none;
  display: inline-block;
  transition: all .2s;
}

.btn-out-ora:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-2px);
}

.hero-img-wrap {
  position: relative;
  text-align: center;
  padding: 20px 0;
}

.hero-main-img {
  width: 100%;
  max-width: 460px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .12);
  object-fit: cover;
  height: 340px;
}

.hero-float-card {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  padding: 12px 16px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .14);
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: .85rem;
  color: var(--dark);
  animation: floatY 3s ease-in-out infinite;
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-float-card.card-tl { top: 30px; left: -10px; animation-delay: 0s; }
.hero-float-card.card-br { bottom: 40px; right: -10px; animation-delay: 1.5s; }

.hero-float-card .fc-icon { font-size: 1.4rem; margin-bottom: 4px; }
.hero-float-card .fc-num { font-size: 1.3rem; color: var(--orange); }

.slider-controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .25);
  cursor: pointer;
  transition: background .3s, transform .3s;
  border: none;
}

.slider-dot.active {
  background: var(--orange);
  transform: scale(1.3);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, .85);
  border: none;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--dark);
  box-shadow: 0 4px 14px rgba(0, 0, 0, .15);
  cursor: pointer;
  z-index: 10;
  transition: background .2s, color .2s;
}

.slider-arrow:hover {
  background: var(--orange);
  color: #fff;
}

.slider-arrow.prev { left: 14px; }
.slider-arrow.next { right: 14px; }

/* STATS */
.stats-bar {
  background: var(--orange);
  padding: 0;
}

.stat-box {
  padding: 22px 10px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .25);
}

.stat-box:last-child { border-right: none; }

.stat-box h3 {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 2rem;
  color: #fff;
  margin: 0;
}

.stat-box p {
  color: rgba(255, 255, 255, .85);
  font-size: .82rem;
  margin: 0;
  font-weight: 600;
}

/* SECTION TITLES */
.sec-label {
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: .8rem;
  color: var(--orange);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.sec-title {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.2;
}

.sec-title span { color: var(--orange); }

.sec-desc {
  color: var(--grey);
  font-size: .95rem;
  line-height: 1.7;
  max-width: 600px;
}

/* PROGRAMS */
.programs-section {
  background: var(--light-bg);
  padding: 70px 0;
}

.prog-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0, 0, 0, .08);
  transition: transform .3s, box-shadow .3s;
  height: 100%;
}

.prog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 44px rgba(0, 0, 0, .14);
}

.prog-card-img {
  height: 220px;
  overflow: hidden;
  display: block;
}

.prog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.prog-card:hover .prog-card-img img {
  transform: scale(1.1);
}

.prog-card-body { padding: 20px 20px 24px; }

.prog-age-tag {
  display: inline-block;
  font-family: 'Baloo 2', cursive;
  font-size: .72rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 12px;
  color: #fff;
  margin-bottom: 10px;
}

.prog-card-body h5 {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.prog-card-body p {
  font-size: .86rem;
  color: var(--grey);
  line-height: 1.6;
  margin-bottom: 14px;
}

.prog-link {
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: .88rem;
  color: var(--orange);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
}

.prog-link:hover { color: var(--orange-dark); }

/* WHY US */
.why-section {
  padding: 70px 0;
  background: #fff;
}

.why-big-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, .12);
}

.why-img-side { position: relative; }

.why-badge-float {
  position: absolute;
  background: var(--orange);
  color: #fff;
  border-radius: 16px;
  padding: 14px 18px;
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 8px 24px rgba(247, 148, 29, .4);
  bottom: 28px;
  left: -18px;
  text-align: center;
  min-width: 130px;
}

.why-badge-float small {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  opacity: .85;
}

.why-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.why-point h6 {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 4px;
}

.why-point p {
  font-size: .86rem;
  color: var(--grey);
  margin: 0;
  line-height: 1.6;
}

/* GALLERY SECTION */
.gallery-section {
  padding: 70px 0;
  background: var(--light-bg);
}

.gf-btn {
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: .88rem;
  border: 2px solid #e2e8f0;
  border-radius: 22px;
  padding: 7px 20px;
  margin: 4px;
  cursor: pointer;
  background: #fff;
  color: var(--dark);
  transition: all .25s;
}

.gf-btn:hover,
.gf-btn.active {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
  transform: scale(1.05);
}

.gal-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, .09);
  cursor: pointer;
  position: relative;
  transition: transform .3s, box-shadow .3s;
  aspect-ratio: 4/3;
}

.gal-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 14px 36px rgba(0, 0, 0, .16);
}

.gal-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}

.gal-card:hover img { transform: scale(1.07); }

.gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(247, 148, 29, .85) 0%, transparent 55%);
  opacity: 0;
  transition: opacity .3s;
  display: flex;
  align-items: flex-end;
  padding: 14px;
}

.gal-card:hover .gal-overlay { opacity: 1; }

.gal-overlay span {
  color: #fff;
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: .9rem;
}

.gal-zoom {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, .9);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: .9rem;
  opacity: 0;
  transition: opacity .3s;
  z-index: 5;
}

.gal-card:hover .gal-zoom { opacity: 1; }

.cat-pill {
  position: absolute;
  top: 10px;
  left: 10px;
  font-family: 'Baloo 2', cursive;
  font-size: .68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 10px;
  color: #fff;
  z-index: 5;
}

.gal-item.hidden { display: none !important; }

/* TESTIMONIALS */
.testi-section {
  padding: 70px 0;
  background: #fff;
}

.testi-card {
  background: #fff;
  border-radius: 24px;
  padding: 35px 30px;
  border: 2px solid #FFB23F;
  transition: all .4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 10px 40px rgba(247, 148, 29, 0.08);
  width: 100%;
}

.testi-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(247, 148, 29, 0.15);
  border-color: var(--orange);
}

.testi-quote {
  font-size: 2.8rem;
  color: #FFB23F;
  font-family: 'Baloo 2', cursive;
  line-height: 1;
  margin-bottom: 15px;
  display: block;
}

.testi-card p {
  flex-grow: 1;
  font-size: 1rem;
  color: #444;
  line-height: 1.75;
  margin-bottom: 25px;
  font-style: italic;
}

.testi-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), #FFD43B);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(247, 148, 29, 0.3);
}

.testi-name {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 2px;
}

.testi-role {
  font-size: .85rem;
  color: var(--grey);
  font-weight: 600;
}

.testi-stars {
  color: #FFD43B;
  font-size: 1rem;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.testi-carousel-wrapper {
  position: relative;
  padding: 0 40px;
}

.testi-arrow {
  background: var(--orange);
  color: #fff;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(247, 148, 29, 0.3);
  transition: all .3s ease;
}

.carousel-control-prev,
.carousel-control-next {
  width: auto;
  opacity: 1;
  z-index: 10;
}

.carousel-control-prev { left: -50px; }
.carousel-control-next { right: -50px; }

.testi-arrow:hover {
  background: var(--orange-dark);
  transform: scale(1.1);
  color: #fff;
}

/* Hide arrows on mobile if they overlap too much */
@media (max-width: 768px) {
  .testi-carousel-wrapper { padding: 0; }
  .carousel-control-prev { left: 5px; }
  .carousel-control-next { right: 5px; }
  .testi-arrow { width: 36px; height: 36px; font-size: 1rem; }
}

/* FIND / CONTACT */
.find-section {
  padding: 70px 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  position: relative;
  overflow: hidden;
}

.find-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Ccircle cx='20' cy='20' r='5' fill='%23F7941D18'/%3E%3Ccircle cx='60' cy='60' r='8' fill='%2300AEEF12'/%3E%3C/svg%3E") repeat;
}

.find-section .sec-title { color: #fff; }
.find-section .sec-label { color: var(--yellow); }
.find-section .sec-desc { color: rgba(255, 255, 255, .7); }

.find-form-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .3);
}

.find-form-card h5 {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 20px;
}

.find-form-card .form-control,
.find-form-card .form-select {
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  padding: 10px 14px;
  font-size: .9rem;
  margin-bottom: 14px;
  transition: border-color .2s;
}

.find-form-card .form-control:focus,
.find-form-card .form-select:focus {
  border-color: var(--orange);
  box-shadow: none;
}

.find-submit {
  width: 100%;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 28px;
  padding: 12px;
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background .2s, transform .2s;
}

.find-submit:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

.find-info-item {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
  transition: color 0.3s;
  cursor: pointer;
}

.find-info-item:hover h6,
.find-info-item:hover p {
  color: var(--orange) !important;
}

.find-info-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(247, 148, 29, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.find-info-item h6 {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  color: #fff;
  margin: 0;
  font-size: .95rem;
}

.find-info-item p {
  font-size: .82rem;
  color: rgba(255, 255, 255, .65);
  margin: 0;
}

/* NEWS */
.news-section {
  padding: 70px 0;
  background: var(--light-bg);
}

.news-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, .07);
  transition: transform .3s, box-shadow .3s;
  height: 100%;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, .13);
}

.news-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.news-card:hover .news-img img {
  transform: scale(1.08);
}

.news-date {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #fff;
  border-radius: 10px;
  padding: 6px 12px;
  text-align: center;
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: .75rem;
  color: var(--orange);
  box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
}

.news-body { padding: 18px 18px 22px; }

.news-tag {
  display: inline-block;
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: .68rem;
  background: #FFF0D8;
  color: var(--orange);
  padding: 3px 10px;
  border-radius: 10px;
  margin-bottom: 10px;
}

.news-body h6 {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: .98rem;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.4;
}

.news-body p {
  font-size: .83rem;
  color: var(--grey);
  line-height: 1.6;
  margin-bottom: 14px;
}

.news-read {
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: .85rem;
  color: var(--orange);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
}

.news-read:hover { color: var(--orange-dark); }

/* LIGHTBOX */
.lb-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .96);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.lb-overlay.open { display: flex; }

.lb-img-wrap {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.lb-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border: none;
  border-radius: 0;
  box-shadow: 0 0 100px rgba(0, 0, 0, 0.8);
}

.lb-close {
  position: absolute;
  top: 25px;
  right: 25px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 2010;
}

.lb-close:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: rotate(90deg);
}

.lb-nav {
  position: fixed;
  top: 50%;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 2005;
}

.lb-nav button {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(4px);
}

.lb-nav button:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: scale(1.15);
  box-shadow: 0 0 20px rgba(247, 148, 29, 0.4);
}

.lb-cap {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  text-align: center;
  color: #fff;
  font-family: 'Baloo 2', cursive;
  font-size: 1.4rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  background: rgba(0, 0, 0, 0.4);
  padding: 10px;
  pointer-events: none;
  z-index: 2010;
}

/* FOOTER */
footer {
  background: var(--dark);
  padding: 56px 0 0;
  color: rgba(255, 255, 255, .7);
}

.footer-brand {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--orange);
  margin-bottom: 10px;
}

.footer-desc {
  font-size: .86rem;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 280px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .7);
  font-size: 1rem;
  margin-right: 8px;
  transition: background .2s, color .2s;
  text-decoration: none;
}

.footer-social a:hover {
  background: var(--orange);
  color: #fff;
}

.footer-heading {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li { margin-bottom: 9px; }

.footer-links a {
  color: rgba(255, 255, 255, .65);
  text-decoration: none;
  font-size: .87rem;
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover { color: var(--orange); }

.footer-links a i { font-size: .75rem; }

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: .85rem;
}

.footer-contact-item a:hover { color: var(--orange) !important; }

.footer-contact-item i {
  color: var(--orange);
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 16px 0;
  margin-top: 40px;
  text-align: center;
  font-size: .8rem;
  color: rgba(255, 255, 255, .45);
}

/* SCROLL TOP */
#scrollTop {
  position: fixed;
  bottom: 24px;
  right: 20px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.1rem;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(247, 148, 29, .5);
  cursor: pointer;
  z-index: 999;
  transition: transform .2s;
}

#scrollTop.show { display: flex; }
#scrollTop:hover { transform: scale(1.1); }

/* RESPONSIVE */
@media(max-width:767px) {
  .hero-slide { min-height: auto; }
  .hero-main-img { max-height: 220px !important; height: 220px; }
  .why-big-img { height: 260px; }
  .stat-box {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
  }
  .stat-box:last-child { border-bottom: none; }
  .find-form-card { margin-top: 32px; }
  .hero-float-card { display: none; }
  .why-badge-float { left: 10px; }
}
