/* =========================================================
   Детски център Мери Попинз — Styles
   ========================================================= */

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

:root {
  --blue:    #A8D5E8;
  --blue-light: #D6EEF8;
  --green:   #B8E0C0;
  --green-light: #DCF0E2;
  --peach:   #FFCBA4;
  --peach-light: #FFE4CC;
  --beige:   #F7F2EA;
  --beige-dark: #EDE5D7;
  --white:   #FFFFFF;
  --text:    #3D3228;
  --text-light: #6B5B4E;
  --shadow:  0 4px 20px rgba(0,0,0,0.08);
  --radius:  16px;
  --radius-sm: 10px;
  --font-heading: 'Nunito', 'Comfortaa', sans-serif;
  --font-body:    'Poppins', 'Nunito', sans-serif;
  --transition: 0.3s ease;
}

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

ul {
  list-style: none;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

.section-title {
  text-align: center;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 3rem;
}

section {
  scroll-margin-top: 100px;
}

/* ---------- Utility ---------- */
.container {
  width: 92%;
  max-width: 1200px;
  margin-inline: auto;
}

.section-shell {
  border-radius: 28px;
  border: 1px solid rgba(61, 50, 40, 0.06);
  box-shadow: 0 16px 40px rgba(61, 50, 40, 0.07);
  overflow: hidden;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  border: none;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.btn-primary {
  background: linear-gradient(135deg, #FF8C69, #FFB347);
  color: #fff;
}

.btn-secondary {
  background: var(--white);
  color: var(--text);
  border: 2px solid var(--peach);
}

.btn-secondary:hover {
  background: var(--peach-light);
}

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

.btn-outline:hover {
  background: var(--white);
  color: var(--text);
}

/* ===========================
   NAVIGATION
   =========================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 35px rgba(39, 28, 18, 0.1);
  border-bottom: 1px solid rgba(61, 50, 40, 0.08);
  padding: 1rem 0;
  transition: padding var(--transition), background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  padding: 0.68rem 0;
  background: rgba(255,255,255,0.93);
  box-shadow: 0 12px 32px rgba(39, 28, 18, 0.15);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.05rem;
  line-height: 1.15;
  color: var(--text);
}

.navbar__logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--peach), #FF8C69);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  box-shadow: 0 8px 18px rgba(255, 140, 105, 0.35);
}

.navbar__logo-text {
  display: flex;
  flex-direction: column;
}

.navbar__logo-text small {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a796a;
}

.navbar__logo-text strong {
  font-size: 1.08rem;
  letter-spacing: 0.01em;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.navbar__links a {
  font-size: 0.91rem;
  font-weight: 700;
  color: var(--text-light);
  transition: color var(--transition);
  position: relative;
  padding: 0.38rem 0;
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--peach);
  border-radius: 2px;
  transition: width var(--transition);
}

.navbar__links a:hover { color: var(--text); }
.navbar__links a:hover::after { width: 100%; }
.navbar__links a.active { color: var(--text); }
.navbar__links a.active::after { width: 100%; }

.navbar__cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar__cta .btn {
  padding: 0.62rem 1.3rem;
  font-size: 0.86rem;
  border-radius: 14px;
}

.navbar__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.navbar__burger span {
  display: block;
  width: 25px;
  height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.navbar__burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.navbar__burger.open span:nth-child(2) { opacity: 0; }
.navbar__burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.navbar__mobile-menu {
  display: none;
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--blue-light) 0%, var(--beige) 50%, var(--peach-light) 100%);
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--peach-light) 0%, transparent 70%);
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--green-light) 0%, transparent 70%);
  z-index: 0;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--green-light);
  color: #2D7A3A;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero__badge::before {
  content: '✅';
}

.hero__title {
  margin-bottom: 1.2rem;
  color: var(--text);
}

.hero__title span {
  color: #E8742A;
  display: block;
}

.hero__sub {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
}

.hero__trust-item span:first-child {
  font-size: 1.1rem;
}

.hero__visual {
  position: relative;
}

.hero__illustration {
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  padding: 2.5rem;
  position: relative;
}

.hero__kids-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.hero__kid-card {
  border-radius: 16px;
  padding: 1.5rem 1rem;
  text-align: center;
  font-size: 3rem;
  position: relative;
}

.hero__kid-card:nth-child(1) { background: var(--peach-light); }
.hero__kid-card:nth-child(2) { background: var(--blue-light); }
.hero__kid-card:nth-child(3) { background: var(--green-light); }
.hero__kid-card:nth-child(4) { background: var(--beige-dark); }

.hero__kid-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-light);
  margin-top: 0.5rem;
  font-family: var(--font-heading);
}

.hero__floating {
  position: absolute;
  background: var(--white);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero__floating--1 {
  top: -20px;
  right: -20px;
  color: #2D7A3A;
}

.hero__floating--2 {
  bottom: -15px;
  left: -20px;
  color: #E8742A;
}

.why,
.activities,
.philosophy,
.adaptation,
.gallery,
.location,
.contact,
.faq {
  margin: 1.15rem auto 0;
  width: min(96%, 1260px);
}

/* ===========================
   WHY CHOOSE US
   =========================== */
.why {
  padding: 5rem 0;
  background: var(--white);
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.why__grid > :last-child:nth-child(3n+1) {
  grid-column: 2 / -2;
}

.why__card {
  background: var(--beige);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 2px solid transparent;
}

.why__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--peach);
}

.why__icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.8rem;
}

.why__card:nth-child(1) .why__icon { background: var(--peach-light); }
.why__card:nth-child(2) .why__icon { background: var(--blue-light); }
.why__card:nth-child(3) .why__icon { background: var(--green-light); }
.why__card:nth-child(4) .why__icon { background: var(--beige-dark); }
.why__card:nth-child(5) .why__icon { background: var(--peach-light); }
.why__card:nth-child(6) .why__icon { background: var(--blue-light); }

.why__card h3 {
  margin-bottom: 0.7rem;
  color: var(--text);
}

.why__card p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===========================
   ACTIVITIES
   =========================== */
.activities {
  padding: 5rem 0;
  background: linear-gradient(180deg, #fff8ef 0%, #ffffff 100%);
}

.activities__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.activities__grid > :nth-child(7) {
  grid-column: 2 / -2;
}

.activity-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  border: 2px solid transparent;
}

.activity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
  border-color: var(--blue-light);
}

.activity-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}

.activity-card:nth-child(1) .activity-card__icon { background: var(--blue-light); }
.activity-card:nth-child(2) .activity-card__icon { background: var(--green-light); }
.activity-card:nth-child(3) .activity-card__icon { background: var(--peach-light); }
.activity-card:nth-child(4) .activity-card__icon { background: var(--beige-dark); }
.activity-card:nth-child(5) .activity-card__icon { background: var(--blue-light); }
.activity-card:nth-child(6) .activity-card__icon { background: var(--peach-light); }
.activity-card:nth-child(7) .activity-card__icon { background: var(--green-light); }

.activity-card__content h3 {
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
  color: var(--text);
}

.activity-card__content p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ===========================
   PHILOSOPHY
   =========================== */
.philosophy {
  padding: 6rem 0;
  background: linear-gradient(135deg, #dff4ff 0%, #fff5e8 100%);
  position: relative;
  overflow: hidden;
}

.philosophy::before {
  content: '🌱';
  position: absolute;
  font-size: 15rem;
  right: -3rem;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.06;
  pointer-events: none;
}

.philosophy__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.philosophy__quotes {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.philosophy__quote {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem 1.8rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--peach);
  position: relative;
}

.philosophy__quote::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 15px;
  font-size: 3rem;
  color: var(--peach);
  font-family: Georgia, serif;
  line-height: 1;
}

.philosophy__quote p {
  font-style: italic;
  font-size: 0.98rem;
  color: var(--text);
  line-height: 1.6;
  padding-top: 0.5rem;
}

.philosophy__pillars {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.philosophy__pillar {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 1.2rem 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.philosophy__pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.philosophy__pillar h4 {
  font-size: 0.98rem;
  margin-bottom: 0.2rem;
}

.philosophy__pillar p {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ===========================
   ADAPTATION
   =========================== */
.adaptation {
  padding: 5rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #f4fbf7 100%);
}

.adaptation__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.adaptation__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.adaptation__step {
  display: flex;
  gap: 1.2rem;
  position: relative;
  padding-bottom: 2rem;
}

.adaptation__step:last-child {
  padding-bottom: 0;
}

.adaptation__step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 22px;
  top: 46px;
  width: 2px;
  height: calc(100% - 46px);
  background: linear-gradient(180deg, var(--peach), var(--blue-light));
}

.adaptation__step-num {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--peach), #FF8C69);
  color: white;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(255,140,105,0.4);
  position: relative;
  z-index: 1;
}

.adaptation__step-content h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
  padding-top: 0.6rem;
}

.adaptation__step-content p {
  font-size: 0.88rem;
  color: var(--text-light);
}

.adaptation__info {
  background: linear-gradient(135deg, var(--green-light), var(--blue-light));
  border-radius: var(--radius);
  padding: 3rem 2.5rem;
  text-align: center;
}

.adaptation__info-icon {
  font-size: 4rem;
  margin-bottom: 1.2rem;
}

.adaptation__info h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.adaptation__info p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.adaptation__features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: left;
}

.adaptation__feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255,255,255,0.6);
  border-radius: 8px;
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.adaptation__feature span:first-child {
  font-size: 1.1rem;
}

/* ===========================
   GALLERY
   =========================== */
.gallery {
  padding: 5rem 0;
  background: linear-gradient(180deg, #fdf6eb 0%, #ffffff 100%);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 0.75rem;
}

.gallery__item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  background: var(--white);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.07);
  transition: transform var(--transition);
  cursor: pointer;
}

.gallery__item:hover {
  transform: scale(1.02);
}

.gallery__item:nth-child(1) { background: var(--blue-light); }
.gallery__item:nth-child(2) { background: var(--peach-light); }
.gallery__item:nth-child(3) { background: var(--green-light); }
.gallery__item:nth-child(4) { background: var(--beige-dark); }
.gallery__item:nth-child(5) { background: var(--peach-light); }
.gallery__item:nth-child(6) { background: var(--blue-light); }

.gallery__item-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.45));
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 2rem 0.8rem 0.6rem;
  text-align: center;
}

/* ===========================
   AVAILABILITY BANNER
   =========================== */
.availability {
  padding: 4rem 0;
  background: linear-gradient(135deg, #FF8C69, #FFB347);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.availability::before {
  content: '🎉';
  position: absolute;
  font-size: 12rem;
  left: -2rem;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.08;
  pointer-events: none;
}

.availability::after {
  content: '🎉';
  position: absolute;
  font-size: 12rem;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.08;
  pointer-events: none;
}

.availability__inner {
  position: relative;
  z-index: 1;
}

.availability__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.25);
  color: white;
  font-weight: 800;
  font-size: 1.1rem;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 1.2rem;
  backdrop-filter: blur(4px);
}

.availability h2 {
  color: white;
  margin-bottom: 0.7rem;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.availability p {
  color: rgba(255,255,255,0.9);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.availability__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* ===========================
   LOCATION
   =========================== */
.location {
  padding: 5rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.location__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.location__info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.location__detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--beige);
  border-radius: var(--radius-sm);
  padding: 1.2rem 1.5rem;
}

.location__detail-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.location__detail h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-light);
  margin-bottom: 0.3rem;
}

.location__detail p, .location__detail a {
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--text);
}

.location__detail a:hover { color: #E8742A; }

.location__hours table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.location__hours td {
  padding: 0.3rem 0;
  color: var(--text-light);
}

.location__hours td:first-child {
  font-weight: 600;
  color: var(--text);
  padding-right: 1rem;
}

.location__map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 380px;
}

.location__map-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--blue-light), var(--green-light));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  padding: 2rem;
}

.map-placeholder__icon { font-size: 4rem; }
.map-placeholder__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
}

.map-placeholder__address {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.5;
}

.map-placeholder .btn {
  margin-top: 0.5rem;
}

/* ===========================
   CONTACT
   =========================== */
.contact {
  padding: 5rem 0;
  background: linear-gradient(180deg, #fffaf2 0%, #ffffff 100%);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}

.contact__channels {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact__channel {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 1.2rem 1.5rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
  color: var(--text);
}

.contact__channel:hover {
  transform: translateX(5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.contact__channel-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.contact__channel:nth-child(1) .contact__channel-icon { background: var(--green-light); }
.contact__channel:nth-child(2) .contact__channel-icon { background: var(--blue-light); }
.contact__channel:nth-child(3) .contact__channel-icon { background: var(--peach-light); }

.contact__channel h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-light);
  margin-bottom: 0.2rem;
}

.contact__channel p {
  font-weight: 700;
  font-size: 1rem;
}

/* Contact Form */
.contact__form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.contact__form-wrap h3 {
  margin-bottom: 0.4rem;
}

.contact__form-wrap > p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1.8rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid var(--beige-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--beige);
  transition: border-color var(--transition), background var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--peach);
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-success {
  display: none;
  background: var(--green-light);
  border-radius: var(--radius-sm);
  padding: 1rem 1.5rem;
  color: #2D7A3A;
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 1rem;
  align-items: center;
  gap: 0.5rem;
}

/* ===========================
   FAQ
   =========================== */
.faq {
  padding: 5rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
}

.faq__list {
  max-width: 760px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.faq__item {
  border: 2px solid var(--beige-dark);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq__item[open] {
  border-color: var(--peach);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  gap: 1rem;
  transition: background var(--transition);
  list-style: none;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question:hover { background: var(--beige); }

.faq__item[open] .faq__question { background: var(--beige); }

.faq__chevron {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--beige-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
  font-size: 0.7rem;
}

.faq__item[open] .faq__chevron {
  transform: rotate(180deg);
  background: var(--peach);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq__answer-inner {
  padding: 0 1.5rem 1.2rem;
  font-size: 0.93rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.85);
  padding: 3.5rem 0 1.5rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer__brand-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: white;
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer__brand-desc {
  font-size: 0.87rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
}

.footer__social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background var(--transition);
  text-decoration: none;
}

.footer__social-link:hover { background: rgba(255,255,255,0.25); }

.footer__col-title {
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__links a {
  font-size: 0.87rem;
  transition: color var(--transition);
}

.footer__links a:hover { color: var(--peach); }

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.87rem;
  margin-bottom: 0.6rem;
}

.footer__contact-item span:first-child { margin-top: 0.1rem; flex-shrink: 0; }

.footer__contact-item a:hover { color: var(--peach); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.82rem;
}

/* ===========================
   FLOATING CALL BUTTON (Mobile)
   =========================== */
.floating-call {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #FF8C69, #FFB347);
  color: white;
  border-radius: 50%;
  font-size: 1.6rem;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(255,140,105,0.5);
  text-decoration: none;
  animation: pulse 2s infinite;
  transition: transform var(--transition);
}

.floating-call:hover { transform: scale(1.1); }

@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(255,140,105,0.5); }
  50%       { box-shadow: 0 6px 30px rgba(255,140,105,0.8); }
}

/* ===========================
   SCROLL TO TOP
   =========================== */
.scroll-top {
  position: fixed;
  bottom: 5rem;
  right: 1.5rem;
  z-index: 998;
  width: 42px;
  height: 42px;
  background: var(--white);
  border: 2px solid var(--beige-dark);
  border-radius: 50%;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  transition: opacity var(--transition), transform var(--transition);
  opacity: 0;
  pointer-events: none;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: all;
}

.scroll-top:hover { transform: translateY(-3px); }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .navbar__links,
  .navbar__cta {
    display: none;
  }

  .navbar__burger {
    display: flex;
  }

  .navbar__mobile-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: white;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transform: translateY(-120%);
    transition: transform var(--transition);
    z-index: 999;
  }

  .navbar__mobile-menu.open {
    transform: translateY(0);
  }

  .navbar__mobile-menu a {
    font-weight: 600;
    font-size: 1.05rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--beige-dark);
    color: var(--text);
  }

  .navbar__mobile-menu .btn {
    width: 100%;
    justify-content: center;
  }

  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    display: none;
  }

  .hero {
    padding: 7rem 0 3rem;
  }

  .why,
  .activities,
  .philosophy,
  .adaptation,
  .gallery,
  .location,
  .contact,
  .faq {
    width: 100%;
    border-radius: 0;
    box-shadow: none;
    border-inline: none;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .philosophy__grid,
  .adaptation__grid,
  .location__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery__item:nth-child(1),
  .gallery__item:nth-child(4) {
    grid-column: span 1;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .floating-call {
    display: flex;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .activities__grid {
    grid-template-columns: 1fr;
  }

  .why__grid {
    grid-template-columns: 1fr;
  }

  .activities__grid > :nth-child(7) {
    grid-column: auto;
  }

  .why__grid > :last-child:nth-child(3n+1) {
    grid-column: auto;
  }

  .gallery__grid {
    grid-template-columns: 1fr;
  }

  .gallery__item:nth-child(1),
  .gallery__item:nth-child(4) {
    grid-column: span 1;
  }

  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }
}
