@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@400;700&family=Fredoka:wght@400;600;700&family=Quicksand:wght@500;700&family=Bubblegum+Sans&display=swap');

/* --- DESIGN SYSTEM & VARIABLES --- */
:root {
  --color-red: #f25f5c;
  --color-green: #2ecc71;
  --color-yellow: #f1c40f;
  --color-teal: #1abc9c;
  --color-blue: #3498db;
  --color-purple: #9b59b6;
  --color-pink: #e84393;
  --color-orange: #fb8b24;
  --color-navy: #1d3557;
  --color-dark: #333333;
  --color-text-light: #777777;
  --font-heading: 'Fredoka', sans-serif;
  --font-body: 'Quicksand', sans-serif;
  --font-funky: 'Bubblegum Sans', cursive;
  
  --max-width: 1170px;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* --- RESET & BASIC STYLES --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  color: var(--color-dark);
  background-color: #ffffff;
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

/* --- CONTAINER --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* --- HEADER (TOP PORTION) --- */
.header-top {
  /* Subtle polka dot background */
  background-color: #ffffff;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80" viewBox="0 0 80 80"><circle cx="15" cy="15" r="4.5" fill="%23ffd2d2" opacity="0.45"/><circle cx="55" cy="15" r="4.5" fill="%23d2e3fc" opacity="0.45"/><circle cx="35" cy="35" r="4.5" fill="%23fff3cd" opacity="0.45"/><circle cx="75" cy="35" r="4.5" fill="%23d4edda" opacity="0.45"/><circle cx="15" cy="55" r="4.5" fill="%23f3e5f5" opacity="0.45"/><circle cx="55" cy="55" r="4.5" fill="%23ffe0b2" opacity="0.45"/><circle cx="35" cy="75" r="4.5" fill="%23ffcdd2" opacity="0.45"/><circle cx="75" cy="75" r="4.5" fill="%23b3e5fc" opacity="0.45"/></svg>');
  padding: 25px 0;
  border-bottom: 1px solid #f2f2f2;
}

.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

/* Logo Styling */
.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-img {
  height: 86px;
  width: auto;
  display: block;
  margin-top: -10px;
  margin-bottom: -10px;
}

.logo-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f1c40f, #f39c12);
  color: #fff;
  border-radius: 12px;
  font-size: 24px;
  box-shadow: 0 4px 10px rgba(241, 196, 15, 0.3);
  animation: float 4s ease-in-out infinite;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
}

.logo-text span:nth-child(1) { color: var(--color-red); }
.logo-text span:nth-child(2) { color: var(--color-teal); }
.logo-text span:nth-child(3) { color: var(--color-yellow); }
.logo-text span:nth-child(4) { color: var(--color-navy); }
.logo-text span.logo-life {
  color: #444444;
  margin-left: 8px;
  font-family: 'Comfortaa', sans-serif;
  font-weight: 400;
  font-size: 32px;
}

/* Header Contact details */
.contact-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  font-size: 14px;
  color: var(--color-text-light);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.contact-item:hover {
  color: var(--color-navy);
}

.contact-item i {
  color: #555;
  font-size: 14px;
}

/* --- MULTI-COLOR RIBBON DIVIDER --- */
.ribbon-divider {
  height: 5px;
  width: 100%;
  background: linear-gradient(to right, 
    #f25f5c 0% 12.5%, 
    #2ecc71 12.5% 25%, 
    #f1c40f 25% 37.5%, 
    #1abc9c 37.5% 50%, 
    #3498db 50% 62.5%, 
    #9b59b6 62.5% 75%, 
    #e84393 75% 87.5%, 
    #navy 87.5% 100%
  );
}

/* --- NAVIGATION BAR --- */
.nav-bar {
  background-color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-bar .container {
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Navigation Links */
.nav-menu {
  display: flex;
  gap: 20px;
  height: 100%;
  align-items: center;
}

.nav-item {
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-link {
  font-size: 13.5px;
  font-weight: 700;
  color: #555555;
  text-transform: uppercase;
  padding: 0 4px;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: 0.5px;
}

/* Indicator strip underneath menu on hover */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--color-red);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-item.active .nav-link::after {
  width: 100%;
}

/* Individual hover colors for menu items */
.nav-item:nth-child(1) .nav-link:hover, .nav-item:nth-child(1).active .nav-link { color: var(--color-red); }
.nav-item:nth-child(2) .nav-link::after { background-color: var(--color-green); }
.nav-item:nth-child(2) .nav-link:hover { color: var(--color-green); }
.nav-item:nth-child(3) .nav-link::after { background-color: var(--color-yellow); }
.nav-item:nth-child(3) .nav-link:hover { color: var(--color-yellow); }
.nav-item:nth-child(4) .nav-link::after { background-color: var(--color-teal); }
.nav-item:nth-child(4) .nav-link:hover { color: var(--color-teal); }
.nav-item:nth-child(5) .nav-link::after { background-color: var(--color-blue); }
.nav-item:nth-child(5) .nav-link:hover { color: var(--color-blue); }
.nav-item:nth-child(6) .nav-link::after { background-color: var(--color-purple); }
.nav-item:nth-child(6) .nav-link:hover { color: var(--color-purple); }
.nav-item:nth-child(7) .nav-link::after { background-color: var(--color-pink); }
.nav-item:nth-child(7) .nav-link:hover { color: var(--color-pink); }
.nav-item:nth-child(8) .nav-link::after { background-color: var(--color-orange); }
.nav-item:nth-child(8) .nav-link:hover { color: var(--color-orange); }
.nav-item:nth-child(9) .nav-link::after { background-color: var(--color-navy); }
.nav-item:nth-child(9) .nav-link:hover { color: var(--color-navy); }
.nav-item:nth-child(10) .nav-link::after { background-color: var(--color-red); }
.nav-item:nth-child(10) .nav-link:hover { color: var(--color-red); }

.nav-item.active .nav-link {
  color: var(--color-red);
}

/* Social Media Icons */
.social-icons {
  display: flex;
  gap: 18px;
  align-items: center;
}

.social-icon {
  font-size: 16px;
  color: #555555;
  transition: var(--transition);
}

.social-icon:hover {
  transform: translateY(-3px) scale(1.15);
}

.social-icon.facebook:hover { color: #3b5998; }
.social-icon.dribbble:hover { color: #ea4c89; }
.social-icon.flickr:hover { color: #ff0084; }
.social-icon.pinterest:hover { color: #bd081c; }

/* Mobile Menu Toggle Button */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--color-dark);
}

/* --- HERO SLIDER --- */
.hero-slider {
  position: relative;
  height: 520px;
  width: 100%;
  overflow: hidden;
  background-color: #f6f9fc;
}

.slider-container {
  height: 100%;
  width: 100%;
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

/* Slide background image representation */
.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.95);
  z-index: 1;
}

/* Slider Typography Overlay */
.slide-content {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 800px;
  padding: 20px;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* "bring FUN 2 Life" Container */
.badge-typography {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

/* Line 1: bring */
.bring-text {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: -15px;
}

.bring-text span:nth-child(1) { color: #00aeef; }
.bring-text span:nth-child(2) { color: #f25f5c; }
.bring-text span:nth-child(3) { color: #2ecc71; }
.bring-text span:nth-child(4) { color: #f1c40f; }
.bring-text span:nth-child(5) { color: #fb8b24; }

/* Line 2: FUN */
.fun-container {
  display: flex;
  gap: 15px;
  margin: 10px 0;
}

.letter-block {
  width: 90px;
  height: 90px;
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  border: 4px solid #ffffff;
  transition: transform 0.3s ease;
}

.letter-block:hover {
  transform: scale(1.1) rotate(0deg) !important;
}

.letter-block.f-block {
  background-color: var(--color-red);
  transform: rotate(-6deg);
}

.letter-block.u-block {
  background-color: var(--color-yellow);
  transform: rotate(4deg);
}

.letter-block.n-block {
  background-color: var(--color-orange);
  transform: rotate(-3deg);
}

/* Line 3: 2 Life */
.life-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

.two-text {
  font-family: var(--font-funky);
  font-size: 90px;
  color: #f1c40f;
  transform: rotate(-10deg);
  text-shadow: 2px 2px 0 #fff, -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff, 0 4px 15px rgba(0,0,0,0.25);
  line-height: 1;
}

.life-text {
  font-family: var(--font-heading);
  font-size: 80px;
  font-weight: 700;
  display: flex;
  align-items: center;
  line-height: 1;
}

.life-text span {
  display: inline-block;
}

.life-text .l-let { color: #333333; text-shadow: 2px 2px 0 #fff, -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff; }
.life-text .i-let { color: var(--color-green); text-shadow: 2px 2px 0 #fff, -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff; }
.life-text .f-let { color: #ffffff; text-shadow: 3px 3px 0 #333, -3px -3px 0 #333, 3px -3px 0 #333, -3px 3px 0 #333; }
.life-text .e-let { color: #333333; text-shadow: 2px 2px 0 #fff, -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff; }

/* Trophy & Divider Line */
.trophy-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 250px;
  margin: 15px 0;
}

.trophy-line::before,
.trophy-line::after {
  content: '';
  flex: 1;
  height: 3px;
  background-color: #f1c40f;
  border-radius: 2px;
}

.trophy-line i {
  color: #f1c40f;
  font-size: 24px;
  text-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Subtitle */
.subtitle {
  font-family: 'Comfortaa', sans-serif;
  font-size: 24px;
  color: #333333;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 6px 20px;
  border-radius: 25px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* --- SLIDER CONTROLS --- */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.85);
  border: none;
  border-radius: 50%;
  color: var(--color-navy);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.slider-arrow:hover {
  background-color: var(--color-navy);
  color: #ffffff;
  transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev { left: 30px; }
.slider-arrow.next { right: 30px; }

/* Slide Indicators (Dots) */
.slider-dots {
  position: absolute;
  bottom: 65px; /* Stay above the grass overlay */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: 2px solid #ffffff;
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background-color: var(--color-yellow);
  transform: scale(1.2);
}

/* --- BOTTOM GRASS OVERLAY --- */
.grass-overlay {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 9;
  background-repeat: repeat-x;
  background-position: bottom center;
  background-size: 600px 60px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="600" height="60" viewBox="0 0 600 60"><path d="M 0,60 L 600,60 L 600,20 Q 590,30 580,10 Q 570,40 560,25 Q 550,15 540,35 Q 530,20 520,5 Q 510,35 500,20 Q 490,10 480,30 Q 470,25 460,5 Q 450,30 440,15 Q 430,20 420,35 Q 410,15 400,0 Q 390,30 380,15 Q 370,10 360,25 Q 350,20 340,5 Q 330,35 320,20 Q 310,10 300,30 Q 290,20 280,5 Q 270,30 260,15 Q 250,20 240,35 Q 230,15 220,0 Q 210,30 200,15 Q 190,10 180,25 Q 170,20 160,5 Q 150,35 140,20 Q 130,10 120,30 Q 110,20 100,5 Q 90,30 80,15 Q 70,20 60,35 Q 50,15 40,0 Q 30,30 20,15 Q 10,10 0,25 Z" fill="%232ecc71"/></svg>');
}

/* --- CONTENT PLACEHOLDER (TO INTEGRATE OTHER SECTIONS LATER) --- */
.content-placeholder {
  padding: 100px 0;
  text-align: center;
  background-color: #ffffff;
}

.content-placeholder h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  color: var(--color-navy);
  margin-bottom: 20px;
}

.content-placeholder p {
  color: var(--color-text-light);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

/* --- ANIMATIONS --- */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

/* --- ABOUT US SECTION --- */
.about-banner {
  background-color: #09798a;
  padding: 30px 0;
  border-bottom: 3px solid rgba(0, 0, 0, 0.05);
}

.about-banner .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.about-title {
  font-family: var(--font-funky);
  font-size: 36px;
  color: #ffffff;
  letter-spacing: 1px;
}

.breadcrumbs {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

.breadcrumbs a {
  color: #ffffff;
  transition: var(--transition);
}

.breadcrumbs a:hover {
  color: var(--color-yellow);
}

.breadcrumbs .separator {
  margin: 0 8px;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumbs .current {
  color: #ffffff;
}

.about-content {
  background-color: #f4f6f8;
  padding: 80px 0;
}

.about-container {
  display: flex;
  gap: 50px;
  align-items: center;
}

.about-image-wrapper {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.about-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.about-image-wrapper:hover .about-img {
  transform: scale(1.04);
}

.about-details {
  flex: 1.2;
}

.about-subtitle {
  font-family: var(--font-heading);
  font-size: 34px;
  color: var(--color-navy);
  margin-bottom: 20px;
  font-weight: 700;
}

.about-text {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: 30px;
}

.leisure-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.leisure-card {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: #ffffff;
  padding: 15px 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  cursor: pointer;
}

.leisure-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.leisure-badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.leisure-card-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

/* Card Themes */
.pink-theme .leisure-badge {
  background-color: var(--color-pink);
}
.pink-theme .leisure-card-title {
  color: var(--color-pink);
}
.pink-theme:hover {
  border-color: rgba(232, 67, 147, 0.2);
}

.yellow-theme .leisure-badge {
  background-color: var(--color-yellow);
}
.yellow-theme .leisure-card-title {
  color: #e59b02; /* legibility gold instead of bright yellow */
}
.yellow-theme:hover {
  border-color: rgba(241, 196, 15, 0.2);
}

.green-theme .leisure-badge {
  background-color: var(--color-green);
}
.green-theme .leisure-card-title {
  color: var(--color-green);
}
.green-theme:hover {
  border-color: rgba(46, 204, 113, 0.2);
}

.blue-theme .leisure-badge {
  background-color: var(--color-blue);
}
.blue-theme .leisure-card-title {
  color: var(--color-blue);
}
.blue-theme:hover {
  border-color: rgba(52, 152, 219, 0.2);
}

/* --- PLAY AS YOU LEARN SECTION --- */
.play-learn-section {
  background-color: #087d8c;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

/* Semi-transparent background clouds */
.play-learn-cloud {
  position: absolute;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 100px;
  pointer-events: none;
  z-index: 1;
}

.play-learn-cloud::before,
.play-learn-cloud::after {
  content: '';
  position: absolute;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.cloud-1 {
  width: 220px;
  height: 70px;
  top: 10%;
  left: 3%;
}
.cloud-1::before {
  width: 90px;
  height: 90px;
  top: -45px;
  left: 25px;
}
.cloud-1::after {
  width: 110px;
  height: 110px;
  top: -60px;
  right: 35px;
}

.cloud-2 {
  width: 180px;
  height: 60px;
  bottom: 15%;
  left: 10%;
  opacity: 0.8;
}
.cloud-2::before {
  width: 75px;
  height: 75px;
  top: -35px;
  left: 20px;
}
.cloud-2::after {
  width: 95px;
  height: 95px;
  top: -50px;
  right: 25px;
}

.cloud-3 {
  width: 260px;
  height: 80px;
  top: 15%;
  right: 20%;
}
.cloud-3::before {
  width: 100px;
  height: 100px;
  top: -50px;
  left: 35px;
}
.cloud-3::after {
  width: 130px;
  height: 130px;
  top: -70px;
  right: 40px;
}

.cloud-4 {
  width: 200px;
  height: 65px;
  bottom: 10%;
  right: 5%;
  opacity: 0.9;
}
.cloud-4::before {
  width: 80px;
  height: 80px;
  top: -40px;
  left: 25px;
}
.cloud-4::after {
  width: 100px;
  height: 100px;
  top: -50px;
  right: 30px;
}

/* Layout container */
.play-learn-container {
  display: flex;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.play-learn-left {
  flex: 1.3;
}

.play-learn-right {
  flex: 0.9;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Typography */
.play-learn-title {
  font-family: var(--font-funky);
  font-size: 42px;
  color: #ffffff;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

/* Items Grid */
.play-learn-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 40px;
}

.play-learn-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.play-learn-icon {
  width: 60px;
  height: 60px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #087d8c;
  font-size: 22px;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
}

.play-learn-item:hover .play-learn-icon {
  transform: scale(1.1) rotate(10deg);
  background-color: var(--color-yellow);
  color: #ffffff;
}

.play-learn-text {
  flex: 1;
}

.play-learn-item-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
  letter-spacing: 0.2px;
}

.play-learn-item-desc {
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

/* --- 3D BROCHURE CARD --- */
.brochure-3d-wrapper {
  position: relative;
  perspective: 1200px;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Reflection / Backplate glass plane */
.brochure-glass-back {
  position: absolute;
  width: 320px;
  height: 450px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transform: rotateY(-22deg) rotateX(12deg) rotateZ(-3deg) translate3d(-20px, 20px, -30px);
  pointer-events: none;
  z-index: 1;
}

.brochure-card {
  position: relative;
  width: 320px;
  height: 450px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  box-shadow: -22px 22px 35px rgba(0, 0, 0, 0.3);
  transform-style: preserve-3d;
  transform: rotateY(-22deg) rotateX(12deg) rotateZ(-3deg);
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.5s ease;
  z-index: 2;
  overflow: hidden;
}

.brochure-3d-wrapper:hover .brochure-card {
  transform: rotateY(-16deg) rotateX(8deg) rotateZ(-2deg) translate3d(5px, -5px, 20px);
  box-shadow: -32px 32px 45px rgba(0, 0, 0, 0.35);
}

/* Brochure Header */
.brochure-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.brochure-logo {
  display: flex;
  align-items: center;
  gap: 6px;
}

.brochure-logo-icon {
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, #f1c40f, #f39c12);
  color: #fff;
  border-radius: 5px;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brochure-logo-text {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
}

.brochure-logo-text span:nth-child(1) {
  color: var(--color-red);
}

.brochure-logo-text span.brochure-life {
  color: #555555;
  font-family: 'Comfortaa', sans-serif;
  font-weight: 400;
  font-size: 13px;
  margin-left: 3px;
}

.brochure-phone {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 9px;
  color: #888888;
  font-weight: 700;
}

.brochure-phone i {
  font-size: 8px;
}

/* Menu Mockup */
.brochure-menu-bar {
  background-color: var(--color-teal);
  height: 26px;
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
  color: #ffffff;
  margin-bottom: 15px;
}

.brochure-menu-btn {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.brochure-menu-socials {
  display: flex;
  gap: 8px;
  font-size: 8px;
  opacity: 0.8;
}

/* Brochure Body */
.brochure-body {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex: 1;
  position: relative;
  z-index: 3;
}

.brochure-words-column {
  width: 55%;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.brochure-can-be {
  font-family: var(--font-heading);
  font-size: 14px;
  color: #555555;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.2;
}

.brochure-word {
  font-family: var(--font-funky);
  font-size: 26px;
  font-weight: bold;
  letter-spacing: 0.5px;
  line-height: 1.1;
  background-size: 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.school-word {
  background-image: linear-gradient(45deg, var(--color-red), var(--color-pink));
}

.shop-word {
  background-image: linear-gradient(45deg, var(--color-yellow), var(--color-orange));
}

.training-word {
  background-image: linear-gradient(45deg, var(--color-blue), var(--color-teal));
}

/* Brochure Kid Cutout Overlay */
.brochure-child-overlay {
  position: absolute;
  right: -25px;
  top: -5px;
  width: 175px;
  height: 310px;
  z-index: 4;
}

.brochure-girl-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(-8px 8px 12px rgba(0, 0, 0, 0.2));
  transform: translateZ(20px); /* 3D layer pop */
}

/* Watercolor splatters at bottom */
.brochure-splashes {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 130px;
  overflow: hidden;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  pointer-events: none;
  z-index: 2;
}

.splash {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.75;
  mix-blend-mode: multiply;
}

.yellow-splash {
  width: 110px;
  height: 110px;
  background: radial-gradient(circle, #f1c40f 0%, rgba(241, 196, 15, 0) 70%);
  bottom: -40px;
  right: 10px;
}

.pink-splash {
  width: 130px;
  height: 130px;
  background: radial-gradient(circle, #e84393 0%, rgba(232, 67, 147, 0) 70%);
  bottom: -50px;
  left: 10px;
}

.blue-splash {
  width: 90px;
  height: 90px;
  background: radial-gradient(circle, #3498db 0%, rgba(52, 152, 219, 0) 70%);
  bottom: -20px;
  right: -20px;
}

.orange-splash {
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, #fb8b24 0%, rgba(251, 139, 36, 0) 70%);
  bottom: -30px;
  right: 70px;
}

/* --- PORTFOLIO SECTION --- */
/* --- ENHANCED PORTFOLIO SECTION --- */
.portfolio-section {
  /* Soft gradient background */
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 100px 0 80px;
  /* Subtle textured overlay */
  position: relative;
  overflow: hidden;
}
.portfolio-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.3), transparent 70%);
  opacity: 0.6;
  pointer-events: none;
}

/* Header */
.portfolio-header {
  text-align: center;
  margin-bottom: 60px;
}
.portfolio-title {
  font-family: var(--font-funky);
  font-size: 48px;
  color: #2c3e50;
  margin-bottom: 12px;
  letter-spacing: 1.5px;
}

/* Decorative divider */
.portfolio-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.div-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #087d8c;
  opacity: 0.7;
}
.div-dot.large-dot {
  width: 14px;
  height: 14px;
  opacity: 0.9;
}
.div-star {
  color: #087d8c;
  font-size: 20px;
}

/* Honeycomb grid */
.portfolio-honeycomb {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  perspective: 800px; /* slight 3D feel */
}
.honeycomb-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: -45px; /* overlap rows */
}
.honeycomb-row:nth-child(even) {
  transform: translateX(115px);
}

/* Hexagon – glassmorphism */
.hexagon {
  position: relative;
  width: 220px;
  height: 255px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.hexagon:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}
.hexagon-inner {
  position: absolute;
  inset: 4px;
  clip-path: inherit;
  overflow: hidden;
}
.hexagon-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.hexagon:hover .hexagon-inner img {
  transform: scale(1.1);
}

/* Overlay label */
.hex-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,125,140,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.hexagon:hover .hex-overlay {
  opacity: 1;
}

/* CTA Button */
.portfolio-btn-wrap {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
.portfolio-btn {
  background: #e07334;
  color: #fff;
  padding: 14px 36px;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(224,115,52,0.35);
  transition: background 0.3s ease, transform 0.3s ease;
}
.portfolio-btn:hover {
  background: #c9611c;
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(224,115,52,0.45);
}
  background-color: #eef2f5;
  padding: 80px 0 60px;
  overflow: hidden;
}

/* Header */
.portfolio-header {
  text-align: center;
  margin-bottom: 50px;
}

.portfolio-title {
  font-family: var(--font-funky);
  font-size: 40px;
  color: #2c3e50;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

/* Decorative dot-star divider */
.portfolio-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.div-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #087d8c;
  opacity: 0.5;
}

.div-dot.large-dot {
  width: 10px;
  height: 10px;
  opacity: 0.75;
}

.div-star {
  color: #087d8c;
  font-size: 14px;
  line-height: 1;
  display: flex;
  align-items: center;
}

/* Honeycomb layout */
.portfolio-honeycomb {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding-bottom: 20px;
}

.honeycomb-row {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: -42px; /* pull rows together for honeycomb overlap */
}

.honeycomb-row:first-child {
  margin-top: 0;
}

.honeycomb-row.row-offset {
  /* No extra offset needed — natural overlap achieved via negative margin */
}

/* Stagger alternate row horizontally */
.honeycomb-row:nth-child(even) {
  transform: translateX(125px);
}

.hex-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Outer hexagon — acts as white border frame */
.hexagon {
  position: relative;
  width: 230px;
  height: 265px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background-color: #ffffff;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.hexagon:hover {
  transform: scale(1.04);
  z-index: 5;
}

/* Inner hexagon — inset for the white border effect */
.hexagon-inner {
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  overflow: hidden;
  background: #cccccc;
}

.hexagon-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.hexagon:hover .hexagon-inner img {
  transform: scale(1.12);
}

/* Label overlay on hover */
.hex-overlay {
  position: absolute;
  inset: 4px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: rgba(8, 125, 140, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
}

.hexagon:hover .hex-overlay {
  opacity: 1;
}

.hex-overlay span {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* CTA Button */
.portfolio-btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.portfolio-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #e07334;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  padding: 14px 36px;
  border-radius: 4px;
  letter-spacing: 0.3px;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(224, 115, 52, 0.35);
}

.portfolio-btn:hover {
  background-color: #c9611c;
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(224, 115, 52, 0.45);
  color: #ffffff;
}

.portfolio-btn i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.portfolio-btn:hover i {
  transform: translateX(5px);
}

/* --- RESPONSIVE DESIGN (MEDIA QUERIES) --- */

@media (max-width: 1024px) {
  .nav-menu {
    gap: 10px;
  }
  
  .nav-link {
    font-size: 12px;
  }
  
  .social-icons {
    gap: 10px;
  }
  
  .bring-text {
    font-size: 40px;
  }
  
  .letter-block {
    width: 75px;
    height: 75px;
    font-size: 50px;
    border-radius: 12px;
  }
  
  .two-text {
    font-size: 75px;
  }
  
  .life-text {
    font-size: 65px;
  }

  .about-container {
    gap: 30px;
  }
  
  .about-subtitle {
    font-size: 30px;
  }

  /* Portfolio responsive 1024px */
  .hexagon {
    width: 185px;
    height: 214px;
  }

  .honeycomb-row:nth-child(even) {
    transform: translateX(100px);
  }

  .honeycomb-row {
    margin-top: -33px;
  }
}

@media (max-width: 768px) {
  /* Header Top Layout */
  .header-top {
    padding: 15px 0;
  }
  
  .header-top .container {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .contact-info {
    align-items: center;
  }
  
  /* Mobile Navigation Hamburger Menu */
  .menu-toggle {
    display: block;
    z-index: 101;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: #ffffff;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 30px;
    gap: 25px;
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 100;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-item {
    width: 100%;
    height: auto;
  }
  
  .nav-link {
    font-size: 16px;
    width: 100%;
    padding: 10px 0;
  }
  
  .nav-link::after {
    bottom: -2px;
    height: 2px;
  }
  
  .social-icons {
    margin-right: 40px; /* Leave space for hamburger */
  }
  
  /* Hero Slider scaling */
  .hero-slider {
    height: 460px;
  }
  
  .bring-text {
    font-size: 32px;
  }
  
  .letter-block {
    width: 60px;
    height: 60px;
    font-size: 40px;
    border-radius: 10px;
    border-width: 3px;
  }
  
  .two-text {
    font-size: 60px;
  }
  
  .life-text {
    font-size: 50px;
  }
  
  .subtitle {
    font-size: 18px;
    padding: 4px 15px;
  }
  
  .slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .slider-arrow.prev { left: 15px; }
  .slider-arrow.next { right: 15px; }

  .about-container {
    flex-direction: column;
    gap: 40px;
  }

  .about-image-wrapper,
  .about-details {
    width: 100%;
  }

  .about-content {
    padding: 60px 0;
  }

  .about-banner {
    padding: 20px 0;
  }

  .about-banner .container {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  /* Play As You Learn Section Mobile */
  .play-learn-container {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }
  
  .play-learn-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
  }

  .play-learn-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .play-learn-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }

  .play-learn-icon {
    width: 55px;
    height: 55px;
    font-size: 20px;
  }

  .brochure-3d-wrapper {
    transform: scale(0.9);
    height: 440px;
  }

  /* Portfolio responsive 768px */
  .portfolio-title {
    font-size: 30px;
  }

  .portfolio-honeycomb {
    transform: scale(0.75);
    transform-origin: top center;
    margin-bottom: -120px;
  }

  .portfolio-btn-wrap {
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .logo-text {
    font-size: 26px;
  }
  
  .logo-text span.logo-life {
    font-size: 24px;
  }
  
  .social-icons {
    display: none; /* Hide social icons on small screens to save space */
  }
  
  .hero-slider {
    height: 380px;
  }
  
  .bring-text {
    font-size: 24px;
    margin-bottom: -5px;
  }
  
  .letter-block {
    width: 45px;
    height: 45px;
    font-size: 30px;
    border-radius: 8px;
    border-width: 2px;
  }
  
  .fun-container {
    gap: 8px;
  }
  
  .two-text {
    font-size: 45px;
  }
  
  .life-text {
    font-size: 38px;
  }
  
  .subtitle {
    font-size: 14px;
    padding: 3px 12px;
  }
  
  .trophy-line {
    width: 150px;
    margin: 8px 0;
  }
  
  .trophy-line i {
    font-size: 18px;
  }

  .about-title {
    font-size: 28px;
  }

  .about-subtitle {
    font-size: 26px;
  }

  .about-text {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .leisure-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .leisure-card {
    padding: 12px 20px;
  }

  .play-learn-title {
    font-size: 28px;
  }

  .brochure-3d-wrapper {
    transform: scale(0.78);
    height: 380px;
  }

  /* Portfolio responsive 480px */
  .portfolio-title {
    font-size: 26px;
  }

  .portfolio-honeycomb {
    transform: scale(0.52);
    transform-origin: top center;
    margin-bottom: -240px;
  }

  .portfolio-section {
    padding-bottom: 40px;
  }
}

/* ===================================================
   OUR STAFFS SECTION
   =================================================== */
.staffs-section {
  background: linear-gradient(160deg, #f0f4f8 0%, #dce8ee 100%);
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}

/* Decorative background blobs */
.staffs-section::before,
.staffs-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.staffs-section::before {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(8,125,140,0.07) 0%, transparent 70%);
  top: -150px;
  left: -150px;
}
.staffs-section::after {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(224,115,52,0.06) 0%, transparent 70%);
  bottom: -100px;
  right: -100px;
}

/* --- Header --- */
.staffs-header {
  text-align: center;
  margin-bottom: 60px;
}

.staffs-title {
  font-family: var(--font-funky);
  font-size: 46px;
  color: #2c3e50;
  margin-bottom: 14px;
  letter-spacing: 1.5px;
}

.staffs-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

/* --- Staff Grid --- */
.staffs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: start;
}

/* --- Individual Staff Card --- */
.staff-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.35s ease;
}

.staff-card:hover {
  transform: translateY(-8px);
}

/* --- Hexagon Portrait --- */
.staff-hex-wrap {
  margin-bottom: 22px;
  position: relative;
}

.staff-hex {
  position: relative;
  width: 200px;
  height: 230px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: #ffffff;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  transition: box-shadow 0.35s ease;
  cursor: pointer;
}

.staff-card:hover .staff-hex {
  box-shadow: 0 16px 40px rgba(8,125,140,0.22);
}

/* White border effect via inset inner hex */
.staff-hex-inner {
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  overflow: hidden;
  background: #ccc;
}

.staff-hex-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.45s ease;
}

.staff-card:hover .staff-hex-inner img {
  transform: scale(1.08);
}

/* Social icon overlay on hover */
.staff-hex-overlay {
  position: absolute;
  inset: 0;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: rgba(8, 125, 140, 0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 4;
}

.staff-card:hover .staff-hex-overlay {
  opacity: 1;
}

.staff-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 1.5px solid rgba(255,255,255,0.6);
  color: #ffffff;
  font-size: 13px;
  transition: background 0.25s ease, transform 0.25s ease;
  text-decoration: none;
}

.staff-social:hover {
  background: rgba(255,255,255,0.45);
  transform: scale(1.15);
  color: #ffffff;
}

/* --- Staff Info --- */
.staff-info {
  padding: 0 10px;
}

.staff-name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 4px;
}

.staff-role {
  font-family: var(--font-body);
  font-size: 14px;
  font-style: italic;
  color: #087d8c;
  margin-bottom: 10px;
  font-weight: 500;
}

.staff-desc {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: #6b7e8f;
  line-height: 1.6;
  margin: 0;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .staffs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }

  .staffs-title {
    font-size: 36px;
  }
}

@media (max-width: 600px) {
  .staffs-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .staffs-title {
    font-size: 30px;
  }

  .staff-hex {
    width: 170px;
    height: 196px;
  }
}

/* --- ACCESSIBILITY UTIL --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- FOOTER (Premium) --- */
.footer-section {
  background: #ffffff;
  color: #2c3e50;
}

/* Fix global .container flex for the footer only */
.footer-section .footer-container,
.footer-section .footer-bar-container {
  display: block;
}

.footer-top-area {
  position: relative;
  padding: 56px 0 30px;
  overflow: hidden;
}

/* Soft doodle-ish background using very light gradients (no new images) */
.footer-top-area::before,
.footer-top-area::after {
  content: '';
  position: absolute;
  pointer-events: none;
  opacity: 0.9;
}

.footer-top-area::before {
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(52, 152, 219, 0.08) 0%, transparent 70%);
  left: -240px;
  top: -260px;
}

.footer-top-area::after {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 204, 113, 0.08) 0%, transparent 72%);
  right: -220px;
  bottom: -220px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 44px;
  align-items: start;
}

.footer-col {
  position: relative;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 18px;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 170px;
  height: 6px;
  border-radius: 999px;
  background: rgba(242, 95, 92, 0.85);
}

.footer-title-red::after { background: rgba(242, 95, 92, 0.85); }
.footer-title-green::after { background: rgba(46, 204, 113, 0.85); }
.footer-title-yellow::after { background: rgba(241, 196, 15, 0.90); }
.footer-title-navy::after { background: rgba(29, 53, 87, 0.75); }

.footer-brand {
  margin: 4px 0 14px;
}

.footer-logo-img {
  height: 82px;
  width: auto;
}

.footer-text {
  font-size: 14.5px;
  color: rgba(44, 62, 80, 0.78);
  margin-bottom: 18px;
  line-height: 1.7;
}

.footer-checklist {
  display: grid;
  gap: 12px;
  font-size: 14.5px;
  color: rgba(44, 62, 80, 0.92);
}

.footer-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-checklist i {
  color: #0b8893;
}

.footer-links {
  display: grid;
  gap: 12px;
  font-size: 14.5px;
}

.footer-links a {
  color: rgba(44, 62, 80, 0.84);
}

.footer-links a:hover {
  color: #0b8893;
}

.footer-contact-list {
  display: grid;
  gap: 14px;
  font-size: 14.5px;
  color: rgba(44, 62, 80, 0.86);
  margin-bottom: 18px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-contact-list i {
  color: #0b8893;
  margin-top: 2px;
}

.footer-contact-list a {
  color: rgba(44, 62, 80, 0.84);
}

.footer-contact-list a:hover {
  color: #0b8893;
}

.footer-social-title {
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: 0.6px;
  font-size: 13px;
  color: rgba(44, 62, 80, 0.76);
  margin: 12px 0 12px;
}

.footer-social {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(44, 62, 80, 0.12);
  color: rgba(44, 62, 80, 0.78);
  transition: var(--transition);
}

.footer-social a:hover {
  background: rgba(11, 136, 147, 0.10);
  border-color: rgba(11, 136, 147, 0.28);
  color: #0b8893;
  transform: translateY(-2px);
}

.footer-newsletter {
  width: 100%;
}

.footer-newsletter-row {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  border: 1px solid rgba(44, 62, 80, 0.14);
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
}

.footer-input-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  color: rgba(44, 62, 80, 0.55);
}

.footer-newsletter input {
  height: 44px;
  border: 0;
  outline: none;
  padding: 0 12px;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: rgba(44, 62, 80, 0.88);
}

.footer-newsletter input::placeholder {
  color: rgba(44, 62, 80, 0.45);
}

.footer-newsletter button {
  height: 44px;
  border: 0;
  padding: 0 18px;
  background: #0b8893;
  color: #ffffff;
  font-weight: 800;
  cursor: pointer;
}

.footer-newsletter button:hover {
  filter: brightness(1.05);
}

.footer-newsletter-hint {
  margin-top: 10px;
  min-height: 16px;
  font-size: 13px;
  color: rgba(44, 62, 80, 0.72);
}

/* Teal bottom bar like reference */
.footer-bar {
  background: #0b8893;
  color: rgba(255, 255, 255, 0.92);
  padding: 18px 0;
}

.footer-bar .footer-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.footer-bar p {
  margin: 0;
  font-size: 14px;
}

.footer-bar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-follow {
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.3px;
}

.footer-bar-right a {
  color: rgba(255, 255, 255, 0.92);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-bar-right a:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }

  .footer-title::after {
    width: 160px;
  }
}

@media (max-width: 650px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bar .footer-bar-container {
    flex-direction: column;
    text-align: center;
  }
}
