@import url('https://fonts.googleapis.com/css2?family=Chewy&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

/* CSS VARIABLES FOR PREMIUM DESIGN */
:root {
  --primary: #ff4b82;          /* Rose Pink from logo */
  --primary-dark: #e03163;     /* Darker Rose Pink */
  --primary-light: #fff0f5;    /* Light Pink tint */
  --secondary: #fed166;        /* Warm Gold from logo */
  --secondary-dark: #e6a719;   /* Darker Gold */
  --secondary-light: #fffbeb;  /* Light Gold tint */
  
  --accent-green: #70af9e;     /* Sage/Mint Green from logo */
  --accent-green-dark: #4d8072;
  --accent-green-light: #f0f8f6;
  --accent-yellow: #fed166;    /* Match secondary */
  --accent-yellow-light: #fffbeb;
  --accent-purple: #8b5cf6;
  --accent-purple-light: #f5f3ff;
  
  --dark: #1e293b;
  --light: #f8fafc;
  --white: #ffffff;
  --gray: #64748b;
  --gray-light: #cbd5e1;
  
  /* Fonts */
  --font-title: 'Chewy', cursive;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 20px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 15px 30px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.12);
  
  /* Borders */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-full: 9999px;
  
  /* Transition */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 700; /* Bold weight to match Fredoka character */
  line-height: 1.3;
}

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

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

ul {
  list-style: none;
}

/* SCROLLBAR */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--light);
}
::-webkit-scrollbar-thumb {
  background: var(--gray-light);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gray);
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fredoka', sans-serif; /* Reverted to original Fredoka font */
  font-size: 1rem;
  font-weight: 500;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  gap: 0.5rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(255, 122, 0, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 122, 0, 0.4);
}

.btn-secondary {
  background-color: var(--white);
  color: var(--dark);
  border: 2px solid var(--gray-light);
}

.btn-secondary:hover {
  background-color: var(--light);
  border-color: var(--gray);
  transform: translateY(-3px);
}

.btn-secondary-hero {
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary-hero:hover {
  background-color: var(--white);
  color: var(--primary-dark);
  transform: translateY(-3px);
  border-color: var(--white);
}

.btn-whatsapp {
  background-color: #25d366;
  color: var(--white);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background-color: #128c7e;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.mobile-only-btn {
  display: none !important;
}

/* HEADER & NAVBAR */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  padding: 1.5rem 0;
}

.header.sticky {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  padding: 0.8rem 0;
  box-shadow: var(--shadow-md);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

/* When header is sticky, links should adapt colors */
.header.sticky .logo-text {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.header.sticky .nav-link {
  color: var(--dark);
}

.header.sticky .menu-toggle {
  color: var(--dark);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.logo-img {
  height: 48px;                 /* Fixed height for header/footer logo */
  width: auto;                  /* Auto width to prevent distortion/cropping */
  object-fit: contain;
  border-radius: var(--radius-sm); /* Keep slightly rounded corners */
}

.logo-icon {
  width: 40px;
  height: 40px;
  background-color: var(--secondary);
  border-radius: var(--radius-sm); /* Square with rounded corners */
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  box-shadow: 0 4px 10px rgba(255, 122, 0, 0.3);
}

.logo-text {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  transition: var(--transition);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--white);
  position: relative;
  transition: var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--secondary);
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--secondary) !important;
}

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

.nav-cta {
  display: flex;
  align-items: center;
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--white);
  transition: var(--transition);
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #ff4b82 0%, #ff6b8b 50%, #fed166 100%);
  padding: 10rem 0 6rem 0;
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.hero-wrapper {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-full);
  color: var(--white);
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.badge-dot {
  width: 10px;
  height: 10px;
  background-color: var(--accent-yellow);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-yellow);
}

.hero-title {
  font-size: 3.8rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.hero-title span {
  color: var(--secondary);
  position: relative;
  display: inline-block;
}

.hero-desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  max-width: 580px;
}

.hero-ctas {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 4rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  max-width: 580px;
}

.stat-item {
  flex: 1;
  text-align: center;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 15%;
  right: 0;
  width: 1px;
  height: 70%;
  background-color: rgba(255, 255, 255, 0.25);
}

.stat-number {
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  display: block;
}

.stat-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* HERO VISUAL */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-frame-container {
  position: relative;
  width: 100%;
  max-width: 440px;
  z-index: 2;
}

.hero-img {
  border-radius: var(--radius-md);
  border: 10px solid var(--white);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* Badges on hero image */
.hero-badge-top-right {
  position: absolute;
  top: -15px;
  right: -15px;
  background-color: var(--white);
  border-radius: var(--radius-sm);
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: var(--shadow-lg);
  color: var(--dark);
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 10;
}

.badge-logo-icon {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.hero-badge-bottom-left {
  position: absolute;
  bottom: -20px;
  left: 20px;
  width: 50px;
  height: 50px;
  background-color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ef4444; /* red heart */
  font-size: 1.4rem;
  box-shadow: var(--shadow-lg);
  z-index: 10;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.floating-shape {
  position: absolute;
  z-index: 1;
  opacity: 0.4;
}

.shape-1 {
  width: 80px;
  height: 80px;
  background-color: #a7f3d0; /* light green */
  border-radius: 50%;
  top: -30px;
  left: -30px;
  animation: float-y 6s ease-in-out infinite;
}

.shape-2 {
  width: 100px;
  height: 100px;
  background-color: #fed7aa; /* light orange */
  border-radius: var(--radius-md);
  bottom: -30px;
  right: -30px;
  transform: rotate(15deg);
  animation: float-x 8s ease-in-out infinite;
}

.shape-3 {
  width: 45px;
  height: 45px;
  background-color: #fef08a; /* light yellow */
  border-radius: 30% 70% 70% 30% / 40% 40% 60% 60%;
  top: 50%;
  left: -50px;
  animation: float-y 5s ease-in-out infinite alternate;
}

@keyframes float-y {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-15px); }
}

@keyframes float-x {
  0% { transform: translateX(0px) rotate(15deg); }
  100% { transform: translateX(-15px) rotate(10deg); }
}

/* SECTION GLOBAL UTILS */
.section {
  padding: 6.5rem 0;
  position: relative;
}

.section-bg-light {
  background-color: var(--light);
}

.section-title-wrapper {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 4rem auto;
}

.section-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 2.8rem;
  color: var(--dark);
  margin-bottom: 1rem;
}

.section-title .highlight {
  color: var(--primary);
}

.section-desc {
  color: var(--gray);
  font-size: 1.05rem;
  font-weight: 400;
}

/* TENTANG MAIN DAYCARE */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
}

.about-cards-vm {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.vm-card {
  border-radius: var(--radius-md);
  padding: 2.5rem;
  color: var(--white);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.vm-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.vm-card::before {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  top: -50px;
  right: -50px;
}

.vm-card-visi {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.vm-card-misi {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
}

.vm-title {
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.vm-desc {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.95;
}

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

.pillar-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: var(--transition);
}

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

.pillar-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1.2rem auto;
}

.pillar-1 .pillar-icon { background-color: var(--secondary-light); color: var(--secondary); }
.pillar-2 .pillar-icon { background-color: var(--primary-light); color: var(--primary); }
.pillar-3 .pillar-icon { background-color: var(--accent-green-light); color: var(--accent-green); }
.pillar-4 .pillar-icon { background-color: var(--accent-purple-light); color: var(--accent-purple); }

.pillar-title {
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 0.6rem;
}

.pillar-desc {
  font-size: 0.9rem;
  color: var(--gray);
}

.about-cta-bar {
  text-align: center;
  margin-top: 1rem;
}

/* LAYANAN SECTION */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  border-radius: var(--radius-md);
  padding: 2.2rem 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(226, 232, 240, 0.5);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.service-icon-box {
  width: 45px;
  height: 45px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.service-title {
  font-size: 1.35rem;
  color: var(--dark);
}

.service-desc {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.service-features {
  margin-top: auto;
  border-top: 1px solid rgba(226, 232, 240, 0.6);
  padding-top: 1.2rem;
}

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 0.6rem;
}

.service-features li i {
  color: var(--accent-green);
  margin-top: 4px;
  font-size: 0.9rem;
}

/* Layanan Card Pastel Colors */
.service-card:nth-child(1) { background-color: var(--accent-green-light); border-color: rgba(16, 185, 129, 0.15); }
.service-card:nth-child(1) .service-icon-box { background-color: var(--white); color: var(--accent-green); }

.service-card:nth-child(2) { background-color: var(--secondary-light); border-color: rgba(255, 122, 0, 0.15); }
.service-card:nth-child(2) .service-icon-box { background-color: var(--white); color: var(--secondary); }

.service-card:nth-child(3) { background-color: var(--primary-light); border-color: rgba(59, 130, 246, 0.15); }
.service-card:nth-child(3) .service-icon-box { background-color: var(--white); color: var(--primary); }

.service-card:nth-child(4) { background-color: var(--accent-yellow-light); border-color: rgba(255, 183, 3, 0.15); }
.service-card:nth-child(4) .service-icon-box { background-color: var(--white); color: var(--accent-yellow); }

.service-card:nth-child(5) { background-color: var(--accent-purple-light); border-color: rgba(139, 92, 246, 0.15); }
.service-child(5) .service-icon-box { background-color: var(--white); color: var(--accent-purple); }

.service-card:nth-child(6) { background-color: #f0fdfa; border-color: rgba(13, 148, 136, 0.15); }
.service-card:nth-child(6) .service-icon-box { background-color: var(--white); color: #0d9488; }

.service-card:nth-child(7) { background-color: #fdf2f8; border-color: rgba(219, 39, 119, 0.15); }
.service-card:nth-child(7) .service-icon-box { background-color: var(--white); color: #db2777; }

/* Floating Decorative Blobs for Layanan Section */
.service-bg-shape-left {
  position: absolute;
  left: -60px;
  top: 15%;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: #a7f3d0;
  opacity: 0.3;
  z-index: 1;
}

.service-bg-shape-right {
  position: absolute;
  right: -60px;
  bottom: 15%;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: #fed7aa;
  opacity: 0.3;
  z-index: 1;
}

/* WHY CHOOSE US SECTION */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.why-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 2.2rem 1.8rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: var(--transition);
}

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

.why-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}

.why-title {
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: 0.8rem;
}

.why-desc {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.5;
}

/* TESTIMONI SECTION (Cerita Ayah Bunda) */
.testi-carousel-wrapper {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.testi-viewport {
  overflow: hidden;
  position: relative;
  padding: 1rem 0;
}

.testi-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testi-card {
  min-width: 100%;
  padding: 0.5rem 1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testi-inner-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(226, 232, 240, 0.8);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.testi-inner-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.testi-quote-icon {
  font-size: 3rem;
  color: var(--primary-light);
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  z-index: 1;
}

.testi-rating {
  color: var(--accent-yellow);
  font-size: 1rem;
  margin-bottom: 1.2rem;
  z-index: 2;
  position: relative;
}

.testi-text {
  font-size: 0.95rem;
  color: var(--dark);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  z-index: 2;
  position: relative;
  flex-grow: 1;
}

.testi-profile {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid rgba(226, 232, 240, 0.6);
  padding-top: 1.2rem;
}

.testi-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-light);
}

.testi-name {
  font-family: var(--font-title);
  font-size: 1rem;
  color: var(--dark);
  font-weight: 600;
  display: block;
}

.testi-role {
  font-size: 0.8rem;
  color: var(--gray);
}

/* Carousel controls */
.testi-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  border: none;
  font-size: 1.2rem;
}

.testi-control:hover {
  background-color: var(--primary-dark);
  transform: translateY(-50%) scale(1.05);
}

.testi-prev {
  left: -25px;
}

.testi-next {
  right: -25px;
}

.testi-indicators {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2.5rem;
}

.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--gray-light);
  cursor: pointer;
  transition: var(--transition);
}

.indicator.active {
  background-color: var(--primary);
  width: 25px;
  border-radius: 5px;
}

/* GALERI SECTION */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 80%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: var(--transition);
}

.gallery-info h4 {
  color: var(--white);
  font-size: 1.15rem;
  transform: translateY(10px);
  transition: var(--transition);
}

.gallery-info p {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  transform: translateY(10px);
  transition: var(--transition);
  transition-delay: 0.05s;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-info h4,
.gallery-item:hover .gallery-info p {
  transform: translateY(0);
}

/* CTA REGISTRATION BANNER */
.cta-banner {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius-lg);
  padding: 5rem 3rem;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.cta-banner::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background-color: rgba(255,255,255,0.05);
  border-radius: 50%;
  top: -100px;
  left: -100px;
}

.cta-banner::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background-color: rgba(255,255,255,0.05);
  border-radius: 50%;
  bottom: -200px;
  right: -150px;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-desc {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 2.5rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

/* FOOTER */
.footer {
  background-color: #0b0f19;
  color: rgba(255, 255, 255, 0.65);
  padding: 5rem 0 2rem 0;
  border-top: 4px solid var(--secondary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-about-desc {
  font-size: 0.95rem;
  margin: 1.5rem 0;
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
}

.social-icon.social-instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: var(--white);
}

.social-icon.social-facebook {
  background-color: #1877f2;
  color: var(--white);
}

.social-icon.social-youtube {
  background-color: #ff0000;
  color: var(--white);
}

.social-icon.social-tiktok {
  background-color: #010101;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.social-icon:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
  filter: brightness(1.1);
}

.footer-title {
  font-family: var(--font-title);
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--secondary);
  border-radius: var(--radius-full);
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
}

.footer-contact i {
  color: var(--secondary);
  font-size: 1.2rem;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

/* MODAL REGISTRATION FORM */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.modal.active {
  opacity: 1;
  pointer-events: all;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
}

.modal-container {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  width: 90%;
  max-width: 640px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  z-index: 10;
  box-shadow: var(--shadow-xl);
  transform: scale(0.9);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  padding: 3rem;
}

.modal.active .modal-container {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--gray);
  transition: var(--transition);
}

.modal-close:hover {
  background-color: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  transform: rotate(90deg);
}

.modal-header {
  margin-bottom: 2rem;
  text-align: center;
}

.modal-title {
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.modal-desc {
  color: var(--gray);
  font-size: 0.95rem;
}

/* FORM STYLING */
.form-group-title {
  font-family: var(--font-title);
  font-size: 1.15rem;
  color: var(--primary-dark);
  border-bottom: 2px solid var(--primary-light);
  padding-bottom: 0.5rem;
  margin-bottom: 1.2rem;
  margin-top: 1.5rem;
}

.form-group-title:first-of-type {
  margin-top: 0;
}

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

.form-col-full {
  grid-column: span 2;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.form-label {
  font-family: var(--font-title);
  font-size: 0.95rem;
  color: var(--dark);
  font-weight: 500;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.8rem 1.2rem;
  border-radius: var(--radius-sm);
  border: 2px solid var(--gray-light);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark);
  transition: var(--transition);
  background-color: var(--light);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  background-color: var(--white);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
}

.form-radio-group {
  display: flex;
  gap: 1.5rem;
  padding: 0.6rem 0;
}

.form-radio-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.95rem;
}

.form-radio-label input {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
}

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

.form-submit-btn {
  width: 100%;
  margin-top: 1.5rem;
  padding: 1rem;
  font-size: 1.1rem;
}

/* SUCCESS TOAST / RESPONSE */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: var(--white);
  border-left: 6px solid var(--accent-green);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 3000;
  transform: translateY(150%);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast.active {
  transform: translateY(0);
}

.toast-icon {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: var(--accent-green-light);
  color: var(--accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.toast-message h5 {
  font-family: var(--font-title);
  color: var(--dark);
  font-size: 1rem;
  margin-bottom: 0.1rem;
}

.toast-message p {
  font-size: 0.85rem;
  color: var(--gray);
}

/* RESPONSIVE DESIGN - MEDIA QUERIES */

@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.8rem;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testi-card {
    grid-template-columns: repeat(2, 1fr);
  }
  .testi-card .testi-inner-card:nth-child(3) {
    display: none; /* Hide 3rd card on smaller screens */
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    z-index: 1001;
  }
  .header.menu-open .menu-toggle {
    color: var(--dark) !important;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background-color: var(--white);
    box-shadow: var(--shadow-xl);
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
    padding: 3rem;
    z-index: 1000;
    transition: right 0.4s ease;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-menu .nav-link {
    color: var(--dark) !important;
  }
  
  .nav-cta {
    display: none; /* Hide top CTA on mobile navbar */
  }
  .nav-menu .btn {
    width: 100%;
  }
  .mobile-only-btn {
    display: inline-flex !important;
    margin-top: 1rem;
  }
  
  .hero {
    padding: 8rem 0 4rem 0;
  }
  
  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-ctas {
    justify-content: center;
  }
  
  .hero-stats {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .about-cards-vm {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .about-pillars {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
  }
  
  .testi-card {
    grid-template-columns: 1fr;
  }
  .testi-card .testi-inner-card:nth-child(2) {
    display: none; /* Hide 2nd card too, show 1 card on mobile */
  }
  .testi-control {
    display: none; /* Hide arrow navigation on mobile to prevent layout overflow */
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cta-banner {
    padding: 3.5rem 1.5rem;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .modal-container {
    padding: 2rem 1.5rem;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .form-col-full {
    grid-column: span 1;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-ctas {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .about-pillars {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
