/* =========================================
   KAYLA HOLISTIC LEARNING & DEVELOPMENT CENTRE
   Custom Styles
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --blue-primary: #1a4fa0;
  --blue-dark: #0d2d6b;
  --blue-light: #3b82f6;
  --cyan-accent: #00b4d8;
  --teal: #0aa3a3;
  --orange-star: #f59e0b;
  --red-accent: #e63946;
  --green-accent: #22c55e;
  --white: #ffffff;
  --off-white: #f8faff;
  --light-blue-bg: #e8f0fe;
  --text-dark: #1e2d50;
  --text-gray: #4b5563;
  --shadow-soft: 0 4px 24px rgba(26, 79, 160, 0.12);
  --shadow-card: 0 8px 32px rgba(26, 79, 160, 0.15);
  --radius: 16px;
  --radius-sm: 8px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid rgba(26, 79, 160, 0.1);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(26, 79, 160, 0.15);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--blue-primary);
}

.nav-brand {
  display: flex;
  flex-direction: column;
}

.nav-brand .brand-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--blue-primary);
  line-height: 1.2;
}

.nav-brand .brand-sub {
  font-size: 0.65rem;
  color: var(--teal);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.4rem 0.85rem;
  border-radius: 8px;
  transition: all 0.25s ease;
}

.nav-links a:hover {
  color: var(--blue-primary);
  background: var(--light-blue-bg);
}

.nav-cta {
  background: var(--blue-primary) !important;
  color: white !important;
  border-radius: 10px !important;
  padding: 0.5rem 1.1rem !important;
}

.nav-cta:hover {
  background: var(--blue-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(26, 79, 160, 0.3);
}

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

.hamburger span {
  width: 24px;
  height: 2.5px;
  background: var(--blue-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0d2d6b 0%, #1a4fa0 40%, #2563eb 70%, #00b4d8 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text .tagline {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #90e0ef;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero-text h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: white;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-text h1 span {
  color: var(--orange-star);
}

.hero-text p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--orange-star);
  color: #1e2d50;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 0.85rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(245, 158, 11, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.85rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
}

.hero-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-logo-circle {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 20px rgba(255,255,255,0.1), 0 0 0 40px rgba(255,255,255,0.05);
  animation: float 4s ease-in-out infinite;
}

.hero-logo-circle img {
  width: 280px;
  height: 280px;
  object-fit: contain;
  border-radius: 50%;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-16px); }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.stat-item {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  backdrop-filter: blur(8px);
}

.stat-item .stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--orange-star);
  display: block;
}

.stat-item .stat-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* =========================================
   SECTION SHARED STYLES
   ========================================= */
section {
  padding: 5rem 1.5rem;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-tag {
  display: inline-block;
  background: var(--light-blue-bg);
  color: var(--blue-primary);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.section-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-header h2 span {
  color: var(--blue-primary);
}

.section-header p {
  font-size: 1rem;
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* =========================================
   ABOUT SECTION
   ========================================= */
.about {
  background: var(--off-white);
}

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

.about-image-side {
  position: relative;
}

.about-logo-display {
  background: linear-gradient(135deg, var(--blue-primary), var(--cyan-accent));
  border-radius: 24px;
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
}

.about-logo-display img {
  width: 240px;
  height: 240px;
  object-fit: contain;
  border-radius: 50%;
  background: white;
  padding: 1rem;
}

.about-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: var(--orange-star);
  color: #1e2d50;
  border-radius: 16px;
  padding: 1rem 1.5rem;
  font-weight: 800;
  font-size: 0.85rem;
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.4);
  text-align: center;
}

.about-badge span {
  display: block;
  font-size: 1.6rem;
  font-family: 'Poppins', sans-serif;
}

.about-text h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.25;
}

.about-text h2 span {
  color: var(--blue-primary);
}

.about-text p {
  color: var(--text-gray);
  line-height: 1.85;
  font-size: 0.97rem;
  margin-bottom: 1.2rem;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.value-card {
  background: white;
  border-radius: var(--radius-sm);
  padding: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  box-shadow: var(--shadow-soft);
  border-left: 3px solid var(--blue-primary);
}

.value-card .icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.value-card p {
  font-size: 0.82rem;
  color: var(--text-dark);
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}

/* =========================================
   SERVICES SECTION
   ========================================= */
.services {
  background: white;
}

.services-image-section {
  margin-bottom: 3rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.services-image-section img {
  width: 100%;
  height: auto;
  display: block;
}

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

.service-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 1.8rem;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-primary), var(--cyan-accent));
}

.service-card:hover {
  border-color: var(--blue-light);
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.85rem;
  color: var(--text-gray);
  line-height: 1.7;
}

/* =========================================
   CONDITIONS
   ========================================= */
.conditions {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-primary) 100%);
  color: white;
}

.conditions .section-header h2 {
  color: white;
}

.conditions .section-tag {
  background: rgba(255,255,255,0.15);
  color: #90e0ef;
}

.conditions .section-header p {
  color: rgba(255,255,255,0.8);
}

.conditions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.condition-pill {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 1.2rem;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.condition-pill:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.4);
}

.condition-pill .cond-icon {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  display: block;
}

.condition-pill p {
  font-size: 0.82rem;
  font-weight: 700;
  color: white;
  line-height: 1.3;
}

/* =========================================
   ACTIVITIES
   ========================================= */
.activities {
  background: var(--off-white);
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.activity-card {
  background: white;
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.activity-card:hover {
  border-color: var(--cyan-accent);
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}

.activity-card .act-icon {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
  display: block;
}

.activity-card h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
}

/* =========================================
   TEAM
   ========================================= */
.team {
  background: white;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.team-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.team-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-primary), var(--cyan-accent));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.team-card:hover::after {
  transform: scaleX(1);
}

.team-card:hover {
  border-color: var(--light-blue-bg);
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  color: white;
}

.team-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.team-card .role {
  font-size: 0.8rem;
  color: var(--teal);
  font-weight: 600;
}

/* =========================================
   TIMING SECTION
   ========================================= */
.timing {
  background: linear-gradient(135deg, #f0f7ff 0%, #e8f4fd 100%);
}

.timing-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.timing-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 3px solid var(--blue-primary);
}

.timing-card .clock-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.timing-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.timing-display {
  background: linear-gradient(135deg, var(--blue-primary), var(--cyan-accent));
  border-radius: 16px;
  padding: 1.5rem;
  color: white;
}

.timing-display .time {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  display: block;
}

.timing-display .days {
  font-size: 0.85rem;
  opacity: 0.9;
  margin-top: 0.25rem;
}

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

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: white;
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  box-shadow: var(--shadow-soft);
}

.contact-item .ci-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-item .ci-content h4 {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--blue-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.2rem;
}

.contact-item .ci-content a,
.contact-item .ci-content p {
  color: var(--text-gray);
  font-size: 0.95rem;
  text-decoration: none;
  font-weight: 600;
}

.contact-item .ci-content a:hover {
  color: var(--blue-primary);
}

/* =========================================
   INSTAGRAM SECTION
   ========================================= */
.instagram {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  padding: 4rem 1.5rem;
  text-align: center;
  color: white;
}

.instagram h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.instagram p {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.instagram-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.insta-qr {
  background: white;
  border-radius: 20px;
  padding: 1.2rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.insta-qr img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  display: block;
}

.insta-follow {
  text-align: left;
  max-width: 280px;
}

.insta-follow .insta-handle {
  font-size: 1.3rem;
  font-weight: 800;
  display: block;
  margin-bottom: 0.75rem;
}

.insta-follow p {
  font-size: 0.9rem;
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.btn-insta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: #833ab4;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.btn-insta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

/* =========================================
   FOOTER
   ========================================= */
footer {
  background: var(--blue-dark);
  color: white;
  padding: 3rem 1.5rem 1.5rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 2px solid rgba(255,255,255,0.3);
}

.footer-brand h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.footer-brand p {
  font-size: 0.85rem;
  opacity: 0.7;
  line-height: 1.7;
  margin-top: 0.75rem;
}

.footer-links h4,
.footer-contact h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  color: var(--cyan-accent);
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: white;
}

.footer-contact p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
}

.footer-contact a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}

.footer-contact a:hover {
  color: white;
}

.footer-bottom {
  max-width: 1200px;
  margin: 1.5rem auto 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

/* =========================================
   SCROLL TO TOP
   ========================================= */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--blue-primary);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(26, 79, 160, 0.4);
  transition: all 0.3s ease;
  opacity: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

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

.scroll-top:hover {
  background: var(--blue-dark);
  transform: translateY(-3px);
}

/* =========================================
   ANIMATIONS
   ========================================= */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .conditions-grid { grid-template-columns: repeat(3, 1fr); }
  .activities-grid { grid-template-columns: repeat(3, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero-text p { margin: 0 auto 2rem; }
  .hero-buttons { justify-content: center; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .hero-logo-circle { width: 220px; height: 220px; }
  .hero-logo-circle img { width: 190px; height: 190px; }

  .about-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .conditions-grid { grid-template-columns: repeat(2, 1fr); }
  .activities-grid { grid-template-columns: repeat(3, 1fr); }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .timing-content { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr; gap: 2rem; }
  .instagram-content { flex-direction: column; text-align: center; }
  .insta-follow { text-align: center; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .conditions-grid { grid-template-columns: repeat(2, 1fr); }
  .activities-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
}

/* Mobile nav open state */
.nav-links.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: white;
  padding: 1.5rem;
  gap: 0.25rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  z-index: 999;
}
