/* ===== Reset & Base ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #3a3a3a;
  line-height: 1.7;
  background: #faf8f5;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Nunito', 'Poppins', sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ===== Navbar ===== */
.navbar {
  background: linear-gradient(135deg, #2c2c2c, #1a1a1a);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.navbar .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
}

.navbar .logo-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.15rem;
  box-shadow: none;
  flex-shrink: 0;
  overflow: hidden;
}

.navbar .logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.navbar .logo span {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.3px;
}

.navbar .logo span em {
  font-style: normal;
  background: linear-gradient(135deg, #c9a96e, #f0d8a0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar nav ul {
  display: flex;
  gap: 6px;
}

.navbar nav ul li a {
  color: rgba(255, 255, 255, 0.9);
  padding: 10px 22px;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s;
  display: block;
  font-size: 0.95rem;
}

.navbar nav ul li a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
}

.navbar nav ul li a.active {
  color: #2c2c2c;
  background: #fff;
  font-weight: 600;
}

/* ===== Hero ===== */
.hero {
  background: linear-gradient(160deg, #f5f0eb, #e8e0d8, #f0ece6);
  text-align: center;
  padding: 90px 20px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 90, 43, 0.08), transparent 70%);
  animation: float-slow 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(60, 60, 60, 0.06), transparent 70%);
  animation: float-slow 10s ease-in-out infinite reverse;
}

@keyframes float-slow {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -20px); }
}

.hero h1 {
  font-size: 2.8rem;
  background: linear-gradient(135deg, #8B5A2B, #3c3c3c, #6B4226);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 14px;
  font-weight: 800;
  position: relative;
  z-index: 1;
}

.hero p {
  font-size: 1.12rem;
  color: #666;
  max-width: 580px;
  margin: 0 auto 30px;
  position: relative;
  z-index: 1;
}

.hero .logo-large {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 0 auto 30px;
  border: none;
  box-shadow: none;
  background: transparent;
  position: relative;
  z-index: 1;
  animation: none;
  object-fit: cover;
  object-position: center;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 8px 30px rgba(255, 107, 157, 0.25); }
  50% { box-shadow: 0 8px 50px rgba(255, 107, 157, 0.45); }
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ===== Floating Shapes ===== */
.hero-floating-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-floating-shapes .shape {
  position: absolute;
  font-size: 1.5rem;
  opacity: 0.12;
  animation: float-shape 6s ease-in-out infinite;
}

.shape-1 { top: 15%; left: 8%; color: #8B5A2B; animation-delay: 0s; }
.shape-2 { top: 25%; right: 12%; color: #555; animation-delay: 1s; }
.shape-3 { bottom: 30%; left: 15%; color: #a0785a; animation-delay: 2s; }
.shape-4 { top: 10%; right: 25%; color: #c9a96e; animation-delay: 0.5s; }
.shape-5 { bottom: 25%; right: 8%; color: #6B4226; animation-delay: 1.5s; }

@keyframes float-shape {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-12px) rotate(5deg); }
  50% { transform: translateY(-6px) rotate(-3deg); }
  75% { transform: translateY(-15px) rotate(4deg); }
}

/* ===== Wave Divider ===== */
.wave-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 2;
}

.wave-divider svg {
  width: 100%;
  height: 60px;
  display: block;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #8B5A2B, #5a3a1a);
  color: #fff;
  padding: 14px 36px;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(139, 90, 43, 0.3);
  letter-spacing: 0.3px;
  position: relative;
  z-index: 1;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(90, 58, 26, 0.4);
}

/* ===== Section Styles ===== */
.section {
  padding: 70px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  color: #3a3a3a;
  margin-bottom: 10px;
  font-weight: 700;
}

.section-subtitle {
  text-align: center;
  color: #999;
  margin-bottom: 50px;
  font-size: 1rem;
}

/* ===== Services Grid ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 0;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
  border: 2px solid transparent;
  overflow: hidden;
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(139, 90, 43, 0.2);
}

.service-card .card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.service-card .card-body {
  padding: 24px 22px 28px;
}

.service-card .icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -42px auto 14px;
  font-size: 1.2rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.service-card:nth-child(1) .icon { background: #8B5A2B; color: #fff; }
.service-card:nth-child(2) .icon { background: #3c3c3c; color: #fff; }
.service-card:nth-child(3) .icon { background: #c9a96e; color: #fff; }
.service-card:nth-child(4) .icon { background: #6B4226; color: #fff; }
.service-card:nth-child(5) .icon { background: #555; color: #fff; }
.service-card:nth-child(6) .icon { background: #a0785a; color: #fff; }
.service-card:nth-child(7) .icon { background: #d4700a; color: #fff; }

/* Pick-Up Service Highlight */
.service-card.pickup-highlight {
  border: 3px solid #d4700a;
  background: linear-gradient(135deg, #fff7ed, #fff);
  box-shadow: 0 8px 30px rgba(212, 112, 10, 0.18);
  position: relative;
}

.service-card.pickup-highlight h3 {
  color: #d4700a;
  font-size: 1.2rem;
  font-weight: 800;
}

.service-card.pickup-highlight p strong {
  color: #c25500;
}

.service-card h3 {
  font-size: 1.1rem;
  color: #3a3a3a;
  margin-bottom: 8px;
  font-weight: 600;
}

.service-card p {
  color: #888;
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ===== Hero Kids Strip ===== */
.hero-kids-strip {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
  position: relative;
  z-index: 1;
}

.hero-kids-strip img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-kids-strip img:hover {
  transform: scale(1.15) translateY(-4px);
  box-shadow: 0 8px 25px rgba(139, 90, 43, 0.3);
}

/* ===== Image Banner ===== */
.image-banner {
  position: relative;
  width: 100%;
  height: 340px;
  overflow: hidden;
}

.image-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.65);
  transition: transform 6s ease;
}

.image-banner:hover img {
  transform: scale(1.05);
}

.image-banner-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  z-index: 2;
}

.image-banner-overlay h3 {
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 10px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.5px;
}

.image-banner-overlay p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  max-width: 600px;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

/* ===== Kids Faces Strip ===== */
.kids-faces-strip {
  background: linear-gradient(135deg, #f5f0eb, #e8e0d8);
  padding: 50px 40px;
}

.faces-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.face-item {
  text-align: center;
  transition: transform 0.3s ease;
}

.face-item:hover {
  transform: translateY(-6px);
}

.face-item img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  margin-bottom: 10px;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.face-item:hover img {
  border-color: #8B5A2B;
  box-shadow: 0 10px 30px rgba(139, 90, 43, 0.25);
}

.face-item span {
  display: block;
  color: #8B5A2B;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ===== CTA With Image ===== */
.cta-with-image {
  display: flex;
  align-items: center;
  gap: 50px;
  text-align: left;
  padding: 70px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.cta-with-image .cta-image {
  flex: 0 0 320px;
  position: relative;
  z-index: 1;
}

.cta-with-image .cta-image img {
  width: 320px;
  height: 380px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border: 4px solid rgba(255, 255, 255, 0.8);
}

.cta-with-image .cta-content {
  flex: 1;
  text-align: left;
}

.cta-with-image .cta-buttons {
  justify-content: flex-start;
}

/* ===== Mission/Vision Image ===== */
.mv-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 14px 14px 0 0;
  margin: -36px -30px 20px -30px;
  width: calc(100% + 60px);
}

/* ===== Gallery Strip ===== */
.gallery-strip {
  padding: 50px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.gallery-strip h2 {
  text-align: center;
  font-size: 2rem;
  color: #3a3a3a;
  margin-bottom: 30px;
  font-weight: 700;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  transition: transform 0.4s ease, filter 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: scale(1.06);
  filter: brightness(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* ===== About Page ===== */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text h2 {
  font-size: 1.8rem;
  color: #3a3a3a;
  margin-bottom: 18px;
  font-weight: 700;
}

.about-text h2 span {
  background: linear-gradient(135deg, #8B5A2B, #3c3c3c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-text p {
  color: #666;
  margin-bottom: 16px;
  font-size: 0.97rem;
}

.about-image img {
  border-radius: 18px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
  border: 3px solid #e0d5c8;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-image img:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.18);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  margin-top: 20px;
}

.value-card {
  background: #fff;
  padding: 28px 22px;
  border-radius: 16px;
  text-align: center;
  border: none;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.value-card .icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 1.2rem;
}

.value-card:nth-child(1) .icon { background: #f0e0d4; color: #8B5A2B; }
.value-card:nth-child(2) .icon { background: #e0e0e0; color: #3c3c3c; }
.value-card:nth-child(3) .icon { background: #e8f0e0; color: #4caf50; }
.value-card:nth-child(4) .icon { background: #e8ddd4; color: #6B4226; }
.value-card:nth-child(5) .icon { background: #f0ead8; color: #c9a96e; }
.value-card:nth-child(6) .icon { background: #d8e8e8; color: #607d8b; }

.value-card h4 {
  color: #3a3a3a;
  margin-bottom: 8px;
  font-weight: 600;
}

.value-card p {
  color: #888;
  font-size: 0.9rem;
}

/* ===== Photo Collage ===== */
.photo-collage {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.photo-collage img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease, filter 0.4s ease;
  cursor: pointer;
}

.photo-collage img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  filter: brightness(1.05);
}

/* ===== Owner Info ===== */
.owner-section {
  background: linear-gradient(135deg, #f5f0eb, #e8e0d8);
  border-radius: 20px;
  padding: 44px;
  text-align: center;
  margin-top: 50px;
  border: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.owner-section .founder-photo {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 4px solid #fff;
  box-shadow: 0 6px 25px rgba(139, 90, 43, 0.25);
}

.owner-section .owner-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, #8B5A2B, #3c3c3c);
  color: #fff;
  font-size: 1.4rem;
}

.owner-section h3 {
  font-size: 1.5rem;
  color: #3a3a3a;
  margin-bottom: 4px;
  font-weight: 700;
}

.owner-section .owner-title {
  color: #8B5A2B;
  font-weight: 600;
  margin-bottom: 14px;
}

.owner-section .owner-desc {
  color: #777;
  max-width: 500px;
  margin: 0 auto;
  font-size: 0.95rem;
}

/* ===== Contact Page ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-item .icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item:nth-child(1) .icon { background: #f0e0d4; color: #8B5A2B; }
.contact-item:nth-child(2) .icon { background: #e0e0e0; color: #3c3c3c; }
.contact-item:nth-child(3) .icon { background: #f0ead8; color: #c9a96e; }
.contact-item:nth-child(4) .icon { background: #e8f0e0; color: #4caf50; }

.contact-item h4 {
  color: #3a3a3a;
  margin-bottom: 4px;
  font-size: 0.95rem;
  font-weight: 600;
}

.contact-item p {
  color: #777;
  font-size: 0.93rem;
}

.contact-form {
  background: #fff;
  padding: 34px;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: none;
}

.contact-form h3 {
  color: #3a3a3a;
  margin-bottom: 24px;
  font-size: 1.2rem;
  font-weight: 600;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: #555;
  font-size: 0.88rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #eee;
  border-radius: 10px;
  font-size: 0.93rem;
  font-family: inherit;
  transition: border-color 0.3s, box-shadow 0.3s;
  background: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #8B5A2B;
  box-shadow: 0 0 0 3px rgba(139, 90, 43, 0.1);
  background: #fff;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn-primary {
  border: none;
  cursor: pointer;
  width: 100%;
}

/* ===== Map ===== */
.map-section {
  margin-top: 50px;
}

.map-section iframe {
  width: 100%;
  height: 350px;
  border: none;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

/* ===== Footer ===== */
.footer {
  background: linear-gradient(135deg, #1a1a1a, #2c2c2c, #1a1a1a);
  color: #bbb;
  padding: 0;
  margin-top: 0;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px 40px;
}

.footer-col h4 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(135deg, #8B5A2B, #c9a96e);
  border-radius: 3px;
}

.footer-col h4 i {
  margin-right: 8px;
  color: #c9a96e;
}

.footer-about p {
  color: #999;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.3s;
}

.footer-social a:hover {
  background: linear-gradient(135deg, #8B5A2B, #c9a96e);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(139, 90, 43, 0.3);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #999;
  font-size: 0.9rem;
  transition: all 0.3s;
  display: inline-block;
}

.footer-col ul li a i {
  font-size: 0.7rem;
  margin-right: 6px;
  color: #c9a96e;
  transition: transform 0.3s;
}

.footer-col ul li a:hover {
  color: #d4b896;
  transform: translateX(4px);
}

.footer-col ul li a:hover i {
  transform: translateX(3px);
}

.footer-contact-list li {
  color: #999;
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact-list li i {
  color: #c9a96e;
  margin-top: 4px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  padding: 20px 40px;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: #777;
}

/* ===== Why Choose Us Grid ===== */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.why-card {
  background: #fff;
  padding: 30px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.why-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.3rem;
  background: linear-gradient(135deg, #f5f0eb, #e8e0d8);
  color: #8B5A2B;
}

.why-card h4 {
  color: #3a3a3a;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 1.05rem;
}

.why-card p {
  color: #777;
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ===== Stats Section ===== */
.stats-section {
  background: linear-gradient(135deg, #2c2c2c, #3c3c3c, #8B5A2B);
  background-size: 200% 200%;
  animation: gradient-shift 6s ease infinite;
  padding: 70px 40px;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='2' fill='rgba(255,255,255,0.05)'/%3E%3C/svg%3E");
}

@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.stat-item {
  color: #fff;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.stat-item p {
  font-size: 1rem;
  opacity: 0.9;
  font-weight: 500;
}

/* ===== Daily Schedule Timeline ===== */
.schedule-timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding-left: 40px;
}

.schedule-timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #8B5A2B, #3c3c3c);
  border-radius: 3px;
}

.schedule-item {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  position: relative;
}

.schedule-item::before {
  content: '';
  position: absolute;
  left: -29px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #8B5A2B;
  border: 3px solid #fff;
  box-shadow: 0 0 0 3px rgba(139, 90, 43, 0.2);
}

.schedule-time {
  min-width: 80px;
  font-weight: 700;
  color: #8B5A2B;
  font-size: 0.9rem;
  padding-top: 2px;
}

.schedule-content {
  background: #fff;
  padding: 18px 22px;
  border-radius: 14px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
  flex: 1;
}

.schedule-content h4 {
  color: #3a3a3a;
  margin-bottom: 6px;
  font-size: 1rem;
  font-weight: 600;
}

.schedule-content h4 i {
  color: #8B5A2B;
  margin-right: 8px;
}

.schedule-content p {
  color: #777;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===== Testimonials ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px;
}

.testimonial-card {
  background: #fff;
  padding: 30px 26px;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 4rem;
  color: rgba(139, 90, 43, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-4px);
}

.testimonial-stars {
  color: #ffc107;
  margin-bottom: 14px;
  font-size: 0.9rem;
  display: flex;
  gap: 3px;
}

.testimonial-text {
  color: #555;
  font-size: 0.93rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8B5A2B, #3c3c3c);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.testimonial-author h5 {
  color: #3a3a3a;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.testimonial-author span {
  color: #999;
  font-size: 0.82rem;
}

/* ===== CTA Banner ===== */
.cta-banner {
  background: linear-gradient(160deg, #f5f0eb, #e8e0d8, #f0ece6);
  padding: 90px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 90, 43, 0.06), transparent 70%);
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(60, 60, 60, 0.04), transparent 70%);
}

.cta-content {
  max-width: 650px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2rem;
  color: #3a3a3a;
  margin-bottom: 16px;
  font-weight: 700;
}

.cta-content p {
  color: #666;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-secondary {
  display: inline-block;
  background: #fff;
  color: #8B5A2B;
  padding: 14px 36px;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 2px solid #8B5A2B;
}

.btn-secondary:hover {
  background: #8B5A2B;
  color: #fff;
  transform: translateY(-2px);
}

/* ===== Mission & Vision ===== */
.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.mv-card {
  padding: 36px 30px;
  border-radius: 18px;
  text-align: center;
}

.mission-card {
  background: linear-gradient(135deg, #f5f0eb, #ebe0d4);
}

.vision-card {
  background: linear-gradient(135deg, #e8e0d8, #ddd5cc);
}

.mv-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.4rem;
  background: #fff;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}

.mission-card .mv-icon { color: #8B5A2B; }
.vision-card .mv-icon { color: #3c3c3c; }

.mv-card h3 {
  font-size: 1.3rem;
  color: #3a3a3a;
  margin-bottom: 14px;
  font-weight: 700;
}

.mv-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== Approach Grid ===== */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.approach-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s;
}

.approach-card:hover {
  transform: translateY(-5px);
}

.approach-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.approach-body {
  padding: 22px 24px 28px;
}

.approach-body h4 {
  color: #3a3a3a;
  margin-bottom: 10px;
  font-size: 1.05rem;
  font-weight: 600;
}

.approach-body h4 i {
  color: #8B5A2B;
  margin-right: 8px;
}

.approach-body p {
  color: #777;
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ===== Team Grid ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}

.team-card {
  background: #fff;
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.team-card:hover {
  transform: translateY(-4px);
}

.team-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8B5A2B, #3c3c3c);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.6rem;
}

.team-card h4 {
  color: #3a3a3a;
  margin-bottom: 10px;
  font-weight: 600;
}

.team-card p {
  color: #777;
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ===== Milestones Grid ===== */
.milestones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.milestone-card {
  background: #fff;
  padding: 28px 24px;
  border-radius: 16px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
  border-left: 4px solid;
  border-image: linear-gradient(to bottom, #8B5A2B, #3c3c3c) 1;
}

.milestone-card:hover {
  transform: translateY(-4px);
}

.milestone-year {
  display: inline-block;
  background: linear-gradient(135deg, #8B5A2B, #3c3c3c);
  color: #fff;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.milestone-card h4 {
  color: #3a3a3a;
  margin-bottom: 8px;
  font-weight: 600;
}

.milestone-card p {
  color: #777;
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ===== FAQ Section ===== */
.faq-container {
  max-width: 750px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 12px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.faq-question {
  width: 100%;
  padding: 18px 24px;
  background: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
  font-size: 0.97rem;
  font-weight: 600;
  color: #3a3a3a;
  transition: all 0.3s;
}

.faq-question:hover {
  background: #f5f0eb;
}

.faq-question i {
  color: #8B5A2B;
  transition: transform 0.3s;
  font-size: 0.85rem;
}

.faq-item.active .faq-question {
  background: linear-gradient(135deg, #f5f0eb, #e8e0d8);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  background: #fff;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 18px;
}

.faq-answer p {
  color: #666;
  font-size: 0.93rem;
  line-height: 1.7;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    padding: 12px 20px;
    gap: 8px;
  }

  .navbar nav ul {
    gap: 4px;
  }

  .navbar nav ul li a {
    padding: 8px 14px;
    font-size: 0.88rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .section {
    padding: 50px 20px;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero .logo-large {
    width: 140px;
    height: 140px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .photo-collage {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-strip {
    padding: 40px 20px;
  }

  .schedule-timeline {
    padding-left: 30px;
  }

  .schedule-time {
    min-width: 65px;
    font-size: 0.82rem;
  }

  .stats-section {
    padding: 40px 20px;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .cta-banner {
    padding: 50px 20px;
  }

  .cta-content h2 {
    font-size: 1.5rem;
  }

  .testimonials-grid,
  .approach-grid,
  .milestones-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .mission-vision-grid {
    grid-template-columns: 1fr;
  }

  .image-banner {
    height: 240px;
  }

  .image-banner-overlay h3 {
    font-size: 1.4rem;
  }

  .image-banner-overlay p {
    font-size: 0.9rem;
  }

  .faces-grid {
    gap: 18px;
  }

  .face-item img {
    width: 90px;
    height: 90px;
  }

  .face-item span {
    font-size: 0.78rem;
  }

  .kids-faces-strip {
    padding: 35px 20px;
  }

  .hero-kids-strip img {
    width: 55px;
    height: 55px;
  }

  .hero-kids-strip {
    gap: 10px;
  }

  .cta-with-image {
    flex-direction: column;
    text-align: center;
    padding: 50px 20px;
    gap: 30px;
  }

  .cta-with-image .cta-image {
    flex: none;
  }

  .cta-with-image .cta-image img {
    width: 250px;
    height: 280px;
  }

  .cta-with-image .cta-content {
    text-align: center;
  }

  .cta-with-image .cta-buttons {
    justify-content: center;
  }

  .mv-image {
    height: 130px;
  }
}

/* ===== Mobile Menu Toggle ===== */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: #fff;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: background 0.2s;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    position: absolute;
    right: 20px;
    top: 18px;
  }

  .navbar {
    position: sticky;
    top: 0;
    align-items: flex-start;
  }

  .navbar nav ul {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 2px;
    padding-bottom: 8px;
  }

  .navbar nav ul.nav-open {
    display: flex;
  }

  .navbar nav {
    width: 100%;
  }
}

/* ===== Navbar Scroll Effect ===== */
.navbar.scrolled {
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.35);
  background: linear-gradient(135deg, rgba(44, 44, 44, 0.95), rgba(26, 26, 26, 0.95));
}

/* ===== Scroll Reveal Animations ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation for grid children */
.services-grid .fade-in:nth-child(2) { transition-delay: 0.1s; }
.services-grid .fade-in:nth-child(3) { transition-delay: 0.2s; }
.services-grid .fade-in:nth-child(4) { transition-delay: 0.3s; }
.services-grid .fade-in:nth-child(5) { transition-delay: 0.4s; }
.services-grid .fade-in:nth-child(6) { transition-delay: 0.5s; }
.values-grid .fade-in:nth-child(2) { transition-delay: 0.1s; }
.values-grid .fade-in:nth-child(3) { transition-delay: 0.15s; }
.values-grid .fade-in:nth-child(4) { transition-delay: 0.2s; }
.values-grid .fade-in:nth-child(5) { transition-delay: 0.25s; }
.values-grid .fade-in:nth-child(6) { transition-delay: 0.3s; }

/* ===== Gallery Lightbox ===== */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  cursor: zoom-out;
  backdrop-filter: blur(8px);
}

.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-overlay img {
  max-width: 85%;
  max-height: 85vh;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lightbox-overlay.active img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  border: none;
}

.lightbox-close:hover {
  background: rgba(139, 90, 43, 0.4);
  transform: rotate(90deg);
}

/* ===== Page Load Animation ===== */
.page-loader {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #f5f0eb, #e8e0d8);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 4px solid rgba(139, 90, 43, 0.15);
  border-top-color: #8B5A2B;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ===== Responsive Footer ===== */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 20px 30px;
  }
  
  .footer-col h4::after {
    left: 0;
  }
  
  .hero-floating-shapes .shape {
    font-size: 1.1rem;
    opacity: 0.08;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .footer-social {
    justify-content: flex-start;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .gallery-grid img {
    height: 160px;
  }
}

/* ===== Back to Top Button ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8B5A2B, #3c3c3c);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(139, 90, 43, 0.3);
  z-index: 99;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 90, 43, 0.4);
}

/* ===== Toast Notification ===== */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  padding: 14px 24px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.93rem;
  font-family: inherit;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 200;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
  max-width: 90%;
}

.toast-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.toast-success {
  background: linear-gradient(135deg, #e8fbe8, #f0fff0);
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}

.toast-error {
  background: linear-gradient(135deg, #ffeaea, #fff0f0);
  color: #c62828;
  border: 1px solid #ef9a9a;
}

/* ===== Floating WhatsApp & Phone Widgets ===== */
.floating-widgets {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 999;
}

.floating-widget {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.floating-widget:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

.floating-widget.whatsapp {
  background: #25D366;
}

.floating-widget.phone {
  background: linear-gradient(135deg, #8B5A2B, #c9a96e);
}

@media (max-width: 600px) {
  .floating-widgets {
    bottom: 16px;
    right: 16px;
    gap: 12px;
  }

  .floating-widget {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
}
