/* ==========================================================
   MOULYA GURUKUL — style.css  (final)
   ========================================================== */

:root {
  --green:      #017b85;
  --green2:     #00a5b5;
  --orange:     #ff4141;
  --pink-lt:    #ffb2b2;
  --acc-title:  #00a5b5;
  --acc-body:   #d9f1fb;
  --faq-bg:     #c8e8f2;
  --stone:      #f1efed;
  --white:      #ffffff;
  --text-dark:  #2d3a3a;
  --text-mid:   #4a5568;
  --font:       'Lato', sans-serif;
  --r-pill:     100px;
  --r-md:       12px;
  --r-lg:       20px;
  --trans:      0.3s ease;
  --container:  1200px;
}

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

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

body {
  font-family: var(--font);
  color: var(--text-dark);
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}

img  { max-width: 100%; height: auto; display: block; }
a    { text-decoration: none; color: inherit; transition: var(--trans); }
ul   { list-style: none; }
address { font-style: normal; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
  width: 100%;
}

#scroll-bar {
  position: fixed; top: 0; left: 0;
  height: 3px; background: var(--orange);
  width: 0; z-index: 99999; pointer-events: none; transition: none;
}

/* ==========================================================
   HEADER
   ========================================================== */
.site-header {
  position: sticky; top: 0; left: 0; right: 0;
  background: #effdff;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: var(--trans);
  overflow: hidden;
}
.header-inner {
  display: flex; align-items: center;
  justify-content: space-between; height: 72px;
}
.logo-link { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-link img { height: 52px; width: auto; object-fit: contain; }

.main-nav ul { display: flex; align-items: center; gap: 4px; }
.main-nav ul li a {
  padding: 8px 14px; font-size: 0.88rem; font-weight: 700;
  color: var(--text-dark); border-radius: var(--r-pill);
  transition: var(--trans); text-transform: uppercase;
  letter-spacing: 0.4px; white-space: nowrap;
}
.main-nav ul li a:hover { background: var(--acc-body); color: var(--green); }
.main-nav ul li a.nav-apply { background: var(--orange); color: #fff; padding: 9px 20px; }
.main-nav ul li a.nav-apply:hover { background: #d93535; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px; flex-shrink: 0;
}
.hamburger span {
  display: block; width: 24px; height: 2.5px;
  background: var(--text-dark); border-radius: 2px; transition: var(--trans);
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ==========================================================
   MARQUEE
   ========================================================== */
.marquee-bar {
  background: var(--green); height: 42px;
  display: flex; align-items: center; overflow: hidden; width: 100%;
}
.marquee-track {
  display: flex; align-items: center; gap: 72px;
  white-space: nowrap;
  animation: marquee 24s linear infinite;
  font-size: 0.88rem; font-weight: 700; color: #fff; letter-spacing: 0.3px;
}
.marquee-track span { flex-shrink: 0; }
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================
   HERO
   ========================================================== */
.hero-section {
  position: relative; min-height: 88vh;
  display: flex; align-items: center;
  overflow: hidden; background: var(--green);
}
/* picture + img both need to fill the section */
.hero-slider {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.hero-slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 0;
}
.hero-slide.active {
  opacity: 1;
  z-index: 1;
}
.hero-slide img,
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  max-width: unset;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(1,123,133,0.96) 0%,
    rgba(1,123,133,0.88) 38%,
    rgba(1,123,133,0.55) 60%,
    rgba(1,123,133,0)   78%
  );
}
/* content sits inside .container (padding:0 48px), so it
   naturally left-aligns with the header logo */
.hero-content {
  position: relative; z-index: 2;
  max-width: 500px; text-align: left;
}
.hero-headline {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900; font-style: italic;
  color: #fff; line-height: 1.15; margin-bottom: 20px;
}
.hero-sub {
  font-size: 1rem; color: rgba(255,255,255,0.92);
  line-height: 1.7; margin-bottom: 36px; max-width: 420px;
}
.btn-hero {
  display: inline-block;
  background: var(--pink-lt); color: var(--orange);
  font-weight: 900; font-size: 0.9rem;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 14px 40px; border-radius: var(--r-pill);
  border: 2px solid var(--pink-lt); transition: var(--trans);
}
.btn-hero:hover { background: var(--orange); color: #fff; border-color: var(--orange); }

/* ==========================================================
   FORM SECTION
   ========================================================== */
.form-section {
  background: var(--acc-body)
    url("../assets/images/form/form-kid-bg.webp") no-repeat center / cover;
  overflow: hidden; padding-top: 60px; padding-bottom: 0; position: relative;
}
.form-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: flex-end;
}
.form-kid-wrap {
  display: flex; align-items: flex-end;
  justify-content: center; overflow: hidden;
}
.form-kid-wrap img {
  max-height: 500px; object-fit: contain;
  display: block; margin-bottom: 0;
  filter: drop-shadow(4px 0 16px rgba(0,0,0,0.08));
}
.form-card-wrap { padding-bottom: 60px; }
.form-card {
  background: var(--green); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: 0 8px 32px rgba(1,123,133,0.18);
}
.form-card-header { background: var(--orange); padding: 14px 24px; text-align: center; }
.form-card-header h3 {
  font-size: 1.05rem; font-weight: 900; color: #fff;
  letter-spacing: 2px; text-transform: uppercase;
}
.form-card-body { padding: 16px 16px 20px; }

/* 2px gap between fields matches the teal card bg showing through */
.form-group { margin-bottom: 2px; }
.form-group input,
.form-group select {
  width: 100%; display: block;
  padding: 12px 14px; border: none; border-radius: 6px;
  font-family: var(--font); font-size: 0.88rem;
  color: var(--text-dark); background: rgba(255,255,255,0.88);
  outline: none; transition: var(--trans);
}
.form-group input::placeholder { color: var(--green); }
.form-group select { color: var(--green); cursor: pointer; }
.form-group select option { color: var(--text-dark); }
.form-group input:focus,
.form-group select:focus { background: #fff; box-shadow: 0 0 0 2px var(--orange); }
.btn-submit {
  display: block; width: 100%; padding: 13px;
  background: var(--orange); color: #fff;
  font-family: var(--font); font-size: 1rem; font-weight: 900;
  letter-spacing: 1px; border: none; border-radius: var(--r-pill);
  cursor: pointer; transition: var(--trans); margin-top: 14px;
}
.btn-submit:hover { background: #d93535; }
.form-msg { font-size: 0.8rem; text-align: center; margin-top: 10px; min-height: 18px; color: rgba(255,255,255,0.9); }

/* ==========================================================
   COUNTERS
   ========================================================== */
.counters-section {
  position: relative;
  background: url("../assets/images/counters/counter-bg.webp") no-repeat center / cover;
  padding: 120px 0; /* increased height */
}
.counters-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.counters-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 380px;
  width: 100%;
}
.counter-box {
  background: var(--green); border-radius: 12px; padding: 22px 32px;
  text-align: center; display: flex; flex-direction: column; align-items: center;
}
.counter-box .val { font-size: 2.1rem; font-weight: 900; color: #fff; line-height: 1; }
.counter-box .lbl { font-size: 0.82rem; color: #fff; margin-top: 3px; }

/* ==========================================================
   PHILOSOPHY
   ========================================================== */
.philosophy-section {
  position: relative; min-height: 500px;
  display: flex; align-items: center; overflow: hidden;
  border-top: 1px solid #fff;
}
.philosophy-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; max-width: unset;
}
.philosophy-overlay { position: absolute; inset: 0; background: rgba(1, 123, 133, 0.85); }
.philosophy-inner { position: relative; z-index: 2; padding: 120px 0; width: 100%; } /* increased padding */
.philosophy-inner .container { text-align: center; }
.philosophy-inner h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 900; color: #fff; margin-bottom: 28px; } /* title white */
.philosophy-inner p { font-size: 1rem; color: #fff; line-height: 1.85; margin-bottom: 18px; max-width: 760px; margin-left: auto; margin-right: auto; }
.philosophy-inner p strong { font-weight: 700; }
.btn-explore {
  display: inline-block; background: var(--green); color: #fff;
  border: 2px solid #fff; font-weight: 700; font-size: 0.85rem;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 12px 32px; border-radius: var(--r-md); margin-top: 16px; transition: var(--trans);
}
.btn-explore:hover { background: var(--orange); color: #fff; border-color: var(--orange); }

/* ==========================================================
   ACHIEVEMENTS
   ========================================================== */
.achievements-section { background: #e3fcff; padding: 80px 0; }
.ach-title { text-align: center; font-size: clamp(1.5rem, 2.5vw, 2.1rem); font-weight: 900; color: var(--green); text-transform: uppercase; line-height: 1.25; margin-bottom: 52px; }
.ach-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: stretch; }
.ach-card { background: #fff0f0; border-radius: var(--r-lg); overflow: hidden; display: flex; flex-direction: column; }
.ach-card-header { background: var(--orange); border-radius: var(--r-pill); padding: 13px 24px; }
.ach-card-header h3 { font-size: 1rem; font-weight: 900; color: #fff; }
.ach-card-body { padding: 24px 24px 0; flex: 1; display: flex; flex-direction: column; }
.ach-item { padding-bottom: 20px; margin-bottom: 20px; border-bottom: 1px solid rgba(1,123,133,0.12); }
.ach-item:last-of-type { border-bottom: none; margin-bottom: 0; }
.ach-item .sub  { font-size: 0.8rem; color: var(--text-mid); margin-bottom: 4px; }
.ach-item .big  { font-size: 1.5rem; font-weight: 900; color: var(--green); line-height: 1.1; margin-bottom: 5px; }
.ach-item .desc { font-size: 0.8rem; color: var(--text-mid); line-height: 1.5; }
.ach-photo { margin-top: auto; overflow: hidden; }
.ach-photo img { width: 100%; display: block; object-fit: cover; }

/* ==========================================================
   CURRICULUM
   ========================================================== */
.curriculum-section {
  position: relative; padding: 80px 0; overflow: hidden;
  background: var(--green)
    url("../assets/images/curriculum/curriculum%20bg.webp") no-repeat center / cover;
}
.curriculum-overlay { position: absolute; inset: 0; background: rgba(1,123,133,0.88); }
.curriculum-inner { position: relative; z-index: 2; text-align: center; }
.curriculum-inner h2 { font-size: clamp(1.6rem, 2.8vw, 2.2rem); font-weight: 900; color: #fff; text-transform: uppercase; margin-bottom: 14px; }
.curriculum-inner .sub { font-size: 1rem; color: rgba(255,255,255,0.92); line-height: 1.75; max-width: 660px; margin: 0 auto 48px; }
.curriculum-inner .sub strong { color: #fff; }
.curric-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 760px; margin: 0 auto; }
.curric-card { background: var(--stone); border-radius: var(--r-lg); padding: 36px 24px; text-align: center; transition: var(--trans); }
.curric-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,0.15); }
.curric-icon { width: 72px; height: 72px; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; }
.curric-icon img { width: 56px; height: 56px; object-fit: contain; }
.curric-card p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.65; font-weight: 600; }

/* ==========================================================
   ACADEMIC PROGRAMS
   ========================================================== */
.programs-section { background: #fff; padding: 80px 0; position: relative; }
.programs-section::before {
  content: ''; position: absolute; inset: 0;
  background: url("../assets/images/academic-program/academic-bg.webp") no-repeat center / cover;
  pointer-events: none; opacity: 1;
}
.programs-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 0; align-items: start; position: relative; z-index: 1; }
.programs-left { min-height: 480px; }
.programs-content h2 { font-size: clamp(1.5rem, 2.2vw, 2rem); font-weight: 900; color: #fff; margin-bottom: 24px; }
.acc-list { display: flex; flex-direction: column; gap: 8px; }
.acc-item { border-radius: 10px; overflow: hidden; }
.acc-btn { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 15px 20px; background: var(--acc-title); border: none; cursor: pointer; font-family: var(--font); font-size: 0.92rem; font-weight: 700; color: #fff; text-align: left; border-radius: 10px; transition: var(--trans); }
.acc-btn:hover { background: var(--green); }
.acc-item.open .acc-btn { border-radius: 10px 10px 0 0; }
.acc-icon-btn { font-size: 1.3rem; font-weight: 300; flex-shrink: 0; transition: transform var(--trans); }
.acc-item.open .acc-icon-btn { transform: rotate(45deg); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height 0.42s ease; }
.acc-body.open { max-height: 260px; }
.acc-body-inner { background: var(--acc-body); padding: 14px 20px; font-size: 0.88rem; color: var(--text-mid); line-height: 1.7; border-radius: 0 0 10px 10px; }

/* ==========================================================
   CAMPUS FACILITIES
   ========================================================== */
.campus-section { background: #ffcaca; padding: 80px 0; text-align: center; }
.campus-section h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 900; color: var(--orange); margin-bottom: 12px; }
.campus-section .campus-sub { font-size: 1rem; color: var(--text-mid); margin-bottom: 48px; }
.campus-pills { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; max-width: 900px; margin: 0 auto; }
.campus-pill { background: var(--orange); color: #fff; font-size: 0.88rem; font-weight: 900; letter-spacing: 1px; text-transform: uppercase; padding: 13px 28px; border-radius: var(--r-pill); transition: var(--trans); cursor: default; }
.campus-pill:hover { background: #d93535; transform: scale(1.03); }

/* ==========================================================
   BENCHMARK
   ========================================================== */
.benchmark-section { background: var(--stone); padding: 80px 0; position: relative; overflow: hidden; }
.benchmark-header { text-align: center; margin-bottom: 56px; }
.benchmark-header h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 900; color: var(--green); text-transform: uppercase; margin-bottom: 14px; }
.benchmark-header p { font-size: 0.95rem; color: var(--text-mid); max-width: 560px; margin: 0 auto; }
/* edge bars — clipped by overflow:hidden on section */
.bm-bars-left, .bm-bars-right { position: absolute; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; gap: 10px; }
.bm-bars-left { left: 0; align-items: flex-start; }
.bm-bars-right { right: 0; align-items: flex-end; }
.bm-bars-left span, .bm-bars-right span { display: block; height: 10px; background: var(--orange); }
.bm-bars-left span:nth-child(1)  { width: 140px; border-radius: 0 4px 4px 0; }
.bm-bars-left span:nth-child(2)  { width: 96px;  border-radius: 0 4px 4px 0; }
.bm-bars-left span:nth-child(3)  { width: 60px;  border-radius: 0 4px 4px 0; }
.bm-bars-right span:nth-child(1) { width: 140px; border-radius: 4px 0 0 4px; }
.bm-bars-right span:nth-child(2) { width: 96px;  border-radius: 4px 0 0 4px; }
.bm-bars-right span:nth-child(3) { width: 60px;  border-radius: 4px 0 0 4px; }
.bm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; max-width: 620px; margin: 0 auto; }
.bm-box { background: var(--green); padding: 44px 32px; display: flex; align-items: center; justify-content: center; text-align: center; transition: var(--trans); min-height: 180px; }
.bm-box:hover { background: var(--green2); }
.bm-box h4 { font-size: 1.1rem; font-weight: 900; color: #fff; line-height: 1.4; }

/* ==========================================================
   ADMISSION PROCESS
   ========================================================== */
.admission-section { background: #ffd8c9; padding: 80px 0; }
.admission-section > .container > h2 { text-align: center; font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 900; color: var(--orange); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 64px; }
.adm-timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  margin-top: 40px;
  padding-top: 20px;
}
.adm-timeline::before {
  content: '';
  position: absolute;
  top: 31px;
  left: 0;
  width: 100%;
  height: 2px;
  border-top: 2px dashed var(--green);
  z-index: 1;
}
.adm-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}
.adm-marker {
  width: 24px;
  height: 24px;
  border-radius : 50%;
  background: #fff;
  border: 4px solid var(--green);
  margin-bottom: 20px;
  position: relative;
}
.adm-marker::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
}
.adm-info h4 {
  font-size: 0.85rem;
  font-weight: 900;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.4;
}
.adm-info p {
  font-size: 0.75rem;
  color: var(--text-mid);
  line-height: 1.5;
  margin-top: 8px;
  max-width: 200px;
}

/* ==========================================================
   DOCUMENTS BANNER
   ========================================================== */
.documents-banner { background: var(--orange); padding: 36px 0; }
.docs-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.docs-text h4 { font-size: 0.9rem; font-weight: 900; color: #fff; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.docs-text p { font-size: 0.9rem; color: rgba(255,255,255,0.92); line-height: 1.7; }
.btn-apply-docs { flex-shrink: 0; display: inline-block; background: #fff; color: var(--orange); font-weight: 900; font-size: 0.88rem; letter-spacing: 1.5px; text-transform: uppercase; padding: 13px 36px; border-radius: var(--r-md); white-space: nowrap; transition: var(--trans); }
.btn-apply-docs:hover { background: #f0f0f0; }

/* ==========================================================
   GALLERY
   ========================================================== */
.gallery-section { background: var(--stone); padding: 80px 0; }
.gallery-section h2 { text-align: center; font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 900; color: var(--orange); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 40px; }
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.gallery-item { border-radius: 10px; overflow: hidden; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.05); }

/* ==========================================================
   TESTIMONIALS
   ========================================================== */
.testimonials-section { background: var(--stone); padding: 80px 0; }
.testimonials-section h2 { text-align: center; font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 900; color: var(--green); text-transform: uppercase; margin-bottom: 48px; }
.testi-carousel { position: relative; }
/* Desktop: show all 3 cards side-by-side via CSS grid, no carousel movement */
.testi-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  /* No transform on desktop */
}
.testi-slide {
  /* On desktop each slide is just a grid cell */
  min-width: 0;
}
/* Hide dots on desktop (carousel not needed) */
.testi-dots { display: none; }
.testi-card { background: var(--green); border-radius: var(--r-lg); padding: 32px 26px; display: flex; flex-direction: column; }
.testi-quote { font-size: 3.2rem; color: rgba(255,255,255,0.3); font-family: Georgia,serif; line-height: 0.8; margin-bottom: 14px; }
.testi-card p { font-size: 0.9rem; color: rgba(255,255,255,0.9); line-height: 1.75; flex: 1; margin-bottom: 20px; }
.testi-author { font-size: 0.82rem; color: rgba(255,255,255,0.6); font-weight: 700; border-top: 1px solid rgba(255,255,255,0.15); padding-top: 14px; text-align: center; }
.testi-dots { display: flex; gap: 10px; justify-content: center; margin-top: 28px; }
.testi-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(1,123,133,0.25); border: none; cursor: pointer; transition: background var(--trans); padding: 0; }
.testi-dot.active { background: var(--green); }

/* ==========================================================
   FAQs
   ========================================================== */
.faq-section {
  background: var(--faq-bg)
    url("../assets/images/faq/FAQ-bg.webp") no-repeat center / cover;
  padding: 80px 0; position: relative;
}
.faq-section h2 { text-align: center; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900; font-style: italic; color: var(--green); margin-bottom: 48px; }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { border-radius: var(--r-pill); overflow: hidden; }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 15px 24px; background: var(--acc-title); border: none; cursor: pointer; font-family: var(--font); font-size: 0.93rem; font-weight: 700; color: #fff; text-align: left; border-radius: var(--r-pill); transition: var(--trans); }
.faq-q:hover { background: var(--green); }
.faq-item.open .faq-q { border-radius: var(--r-pill) var(--r-pill) 0 0; }
.faq-chevron { flex-shrink: 0; font-size: 0.8rem; transition: transform var(--trans); }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a.open { max-height: 260px; }
.faq-a-inner { background: rgba(200,232,242,0.7); padding: 14px 24px; font-size: 0.88rem; color: var(--text-mid); line-height: 1.75; border-radius: 0 0 var(--r-pill) var(--r-pill); }

/* ==========================================================
   FOOTER  — equal 3-column, h5 letter-spacing:0
   ========================================================== */
.site-footer { background: #effdff; padding: 56px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  align-items: start;
}
.footer-logo-wrap { margin-bottom: 8px; }
.footer-logo-wrap img { height: 60px; width: auto; object-fit: contain; }
.footer-col h5 {
  font-size: 0.85rem; font-weight: 900; color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0;        /* ← was 1.5px, caused h5 to sit further right than links */
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.875rem; color: var(--text-mid); transition: var(--trans); }
.footer-col ul li a:hover { color: var(--green); }
.footer-col address p { font-size: 0.875rem; color: var(--text-mid); line-height: 1.75; }
.footer-bottom { padding: 18px 0; text-align: center; }
.footer-bottom p { font-size: 0.8rem; color: var(--text-mid); }

/* ==========================================================
   BACK TO TOP
   ========================================================== */
.back-top { position: fixed; bottom: 28px; right: 28px; width: 46px; height: 46px; background: var(--orange); color: #fff; border: none; border-radius: 50%; font-size: 1.2rem; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(255,65,65,0.4); opacity: 0; transform: translateY(12px); transition: var(--trans); z-index: 998; }
.back-top.show { opacity: 1; transform: translateY(0); }
.back-top:hover { background: #d93535; transform: translateY(-2px); }

/* ==========================================================
   ANIMATIONS
   ========================================================== */
.reveal { opacity: 0; transition: all 0.8s cubic-bezier(0.165,0.84,0.44,1); will-change: transform, opacity; }
.reveal.active { opacity: 1; transform: translate(0,0) scale(1) !important; }
.reveal-up    { transform: translateY(30px); }
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-scale { transform: scale(0.92); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
