/*--------------------------------------------------------------
# CARTOON THEME - LITTLE EXPLORERS PRESCHOOL
# A fun, playful, kid-friendly transformation of the Orbit template
--------------------------------------------------------------*/

/* Fonts */
:root {
  --default-font: "Quicksand", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --heading-font: "Fredoka", sans-serif;
  --handwriting-font: "Gochi Hand", cursive;
}

/* Cartoon Color Palette */
:root { 
  --background-color: #fef9e7;  /* Soft cream - like vanilla ice cream */
  --default-color: #5a5a7a;      /* Soft purple-gray for text */
  --heading-color: #2c3e50;      /* Deep blue - like night sky */
  --accent-color: #ff9a9e;       /* Soft coral pink - warm and friendly */
  --accent-secondary: #a8e6cf;    /* Mint green - fresh and playful */
  --accent-tertiary: #ffd3b6;     /* Peach - warm and cozy */
  --surface-color: #ffffff;       /* White - clean backgrounds */
  --contrast-color: #ffffff;      /* White for contrast */
  
  /* New fun colors */
  --sunshine-yellow: #fff9c4;
  --bubblegum-pink: #ffb7b7;
  --sky-blue: #b2ebf2;
  --lavender: #e1bee7;
  --grass-green: #c8e6c9;
}

/* Nav Menu Colors */
:root {
  --nav-color: #5a5a7a;
  --nav-hover-color: #ff9a9e;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #5a5a7a;
  --nav-dropdown-hover-color: #ff9a9e;
}

/* Light Background */
.light-background {
  --background-color: #f8f0fa;
  --surface-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling - CARTOON EDITION
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  overflow-x: hidden;
  position: relative;
}

/* Add cute background pattern */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(255, 211, 182, 0.2) 0%, transparent 20%),
    radial-gradient(circle at 90% 70%, rgba(168, 230, 207, 0.2) 0%, transparent 25%),
    radial-gradient(circle at 30% 80%, rgba(255, 154, 158, 0.15) 0%, transparent 30%),
    radial-gradient(circle at 70% 30%, rgba(255, 249, 196, 0.25) 0%, transparent 35%);
  pointer-events: none;
  z-index: -1;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: #ff6b6b;
  transform: scale(1.05);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight: 600;
  letter-spacing: -0.02em;
}

/*--------------------------------------------------------------
# Global Header - CARTOON STYLE
--------------------------------------------------------------*/
.header {
  --surface-color: #ffffff;
  color: var(--default-color);
  background-color: #ffffff;
  padding: 10px 0;
  border-bottom: 3px solid var(--accent-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  position: sticky !important; /* Forces it to stay put */
  top: 0 !important;
  z-index: 1000 !important;
  transition: none !important; /* Stop the 'jumping' animation */
}


.header .logo h1 {
  font-size: 22px;
  font-weight: 700;
  margin: 0;
  color: var(--heading-color);
  font-family: var(--default-font);
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: var(--heading-color); /* Normal text color */
  display: inline-block;
  vertical-align: middle;
}

.header .logo .dot {
  color: var(--accent-color);
  font-size: 40px;
  line-height: 1;
  -webkit-text-fill-color: var(--accent-color);
  animation: bounce 2s infinite;
}

/* Ensure the image logo isn't fighting with the text */
.header .logo img {
  max-height: 35px !important; /* Shrinks the icon slightly to match text */
  margin-right: 8px;
}

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

.header .btn-getstarted {
  color: #5a5a7a;
  background: var(--accent-secondary);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  border: 2px solid transparent;
  box-shadow: 0 6px 0 #7fb3a0;
  transition: all 0.2s ease;
}

.header .btn-getstarted:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 0 #7fb3a0;
  color: #2c3e50;
}

/*--------------------------------------------------------------
# Navigation Menu - CARTOON STYLE (FIXED)
--------------------------------------------------------------*/
/* 1. Added this to remove bullets and align items */
.navmenu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

.navmenu a {
  color: var(--nav-color);
  font-size: 16px;
  font-weight: 600;
  position: relative;
  display: block;
  padding: 10px 15px;
  text-decoration: none;
}

.navmenu a:hover,
.navmenu .active {
  color: var(--accent-color);
}

.navmenu a::after {
  content: "🦊";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%) scale(0);
  font-size: 14px;
  opacity: 0;
  transition: all 0.3s ease;
}

.navmenu a:hover::after,
.navmenu .active::after {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

/* Dropdown styling - FIXED */
.navmenu .dropdown ul {
  margin: 0;
  padding: 15px;
  background: var(--nav-dropdown-background-color);
  display: block; /* Ensures they show on hover */
  list-style: none; /* Removes bullets from dropdown */
  border-radius: 20px;
  border: 2px dashed var(--accent-secondary);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  /* If you use a template, sometimes these are hidden by default: */
  position: absolute;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
  z-index: 99;
}

/* Show dropdown on hover */
.navmenu .dropdown:hover > ul {
  visibility: visible;
  opacity: 1;
}

.navmenu .dropdown ul a {
  border-radius: 30px;
  padding: 10px 20px;
  color: var(--nav-dropdown-color);
}

.navmenu .dropdown ul a:hover {
  background-color: var(--accent-secondary);
  color: #2c3e50;
  transform: translateX(5px);
}

/*--------------------------------------------------------------
# Navigation Menu - CARTOON STYLE
--------------------------------------------------------------*/
.navmenu a {
  color: var(--nav-color);
  font-size: 16px;
  font-weight: 600;
  position: relative;
}

.navmenu a:hover,
.navmenu .active {
  color: var(--accent-color);
}

.navmenu a::after {
  content: "🦊";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%) scale(0);
  font-size: 14px;
  opacity: 0;
  transition: all 0.3s ease;
}

.navmenu a:hover::after,
.navmenu .active::after {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

/* Dropdown styling */
.navmenu .dropdown ul {
  border-radius: 20px;
  border: 2px dashed var(--accent-secondary);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  padding: 15px;
}

.navmenu .dropdown ul a {
  border-radius: 30px;
  padding: 10px 20px;
}

.navmenu .dropdown ul a:hover {
  background-color: var(--accent-secondary);
  color: #2c3e50;
  transform: translateX(5px);
}


/*--------------------------------------------------------------
# Hero Section - SUPER CARTOON
--------------------------------------------------------------*/
.hero {
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fef9e7 0%, #fff9e6 100%);
  min-height: 80vh;
}

/* Floating cartoon elements */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.floating-cloud {
  position: absolute;
  font-size: 60px;
  opacity: 0.5;
  animation: float 8s ease-in-out infinite;
}

.floating-cloud.cloud-1 {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.floating-cloud.cloud-2 {
  bottom: 15%;
  right: 5%;
  font-size: 80px;
  animation-delay: 2s;
}

.floating-star {
  position: absolute;
  font-size: 30px;
  animation: twinkle 3s ease-in-out infinite;
}

.floating-star.star-1 {
  top: 20%;
  right: 20%;
  animation-delay: 0s;
}

.floating-star.star-2 {
  bottom: 25%;
  left: 15%;
  font-size: 40px;
  animation-delay: 1.5s;
}

.floating-balloon {
  position: absolute;
  font-size: 40px;
  animation: float-side 6s ease-in-out infinite;
}

.floating-balloon.balloon-1 {
  top: 30%;
  right: 10%;
  animation-delay: 0s;
}

.floating-balloon.balloon-2 {
  bottom: 20%;
  left: 10%;
  animation-delay: 3s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}

@keyframes float-side {
  0%, 100% { transform: translateX(0) rotate(0deg); }
  50% { transform: translateX(15px) rotate(5deg); }
}

@keyframes twinkle {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

.hero .hero-content {
  position: relative;
  z-index: 5;
}

.hero .hero-content .hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  background: var(--accent-secondary);
  padding: 12px 25px;
  border-radius: 50px;
  box-shadow: 0 8px 0 #7fb3a0;
}

.hero .hero-content .hero-tag .tag-dot {
  width: 12px;
  height: 12px;
  background: var(--accent-color);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.hero .hero-content .hero-tag .tag-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: #2c3e50;
}

.hero .hero-content .hero-headline {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--heading-color);
}

.hero .hero-content .hero-headline .highlight {
  color: var(--accent-color);
  position: relative;
  display: inline-block;
}

.hero .hero-content .hero-headline .highlight::after {
  content: "🌈";
  position: absolute;
  top: -15px;
  right: -25px;
  font-size: 30px;
  animation: rotate 4s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero .hero-content .hero-text {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #5a5a7a;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero .hero-content .hero-cta .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--accent-color);
  color: #2c3e50;
  padding: 18px 36px;
  border-radius: 60px;
  font-weight: 700;
  font-size: 1.1rem;
  border: 3px solid #fff;
  box-shadow: 0 10px 0 #c47a7a;
  transition: all 0.2s ease;
}

.hero .hero-content .hero-cta .cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 13px 0 #c47a7a;
  color: #2c3e50;
}

.hero .hero-content .hero-cta .cta-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #2c3e50;
  font-weight: 600;
}

.hero .hero-content .hero-cta .cta-link i {
  font-size: 2rem;
  color: var(--accent-color);
  transition: 0.3s;
}

.hero .hero-content .hero-cta .cta-link:hover i {
  transform: scale(1.2) rotate(10deg);
}

/* Stats Grid - Cartoon Cards */
.hero .stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  position: relative;
  z-index: 5;
}

.hero .stats-grid .stat-card {
  background: white;
  padding: 25px 20px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
  border: 3px solid #fff;
  box-shadow: 0 10px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hero .stats-grid .stat-card::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: 30px;
  height: 30px;
  background: var(--accent-secondary);
  border-radius: 50%;
  opacity: 0.5;
}

.hero .stats-grid .stat-card:hover {
  transform: translateY(-5px) rotate(1deg);
  box-shadow: 0 15px 0 rgba(0, 0, 0, 0.1);
}

.hero .stats-grid .stat-card .stat-icon-wrap {
  width: 60px;
  height: 60px;
  background: var(--accent-secondary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #fff;
  box-shadow: 0 5px 0 #7fb3a0;
}

.hero .stats-grid .stat-card .stat-icon-wrap i {
  font-size: 2rem;
  color: #2c3e50;
}

.hero .stats-grid .stat-card .stat-info .stat-value {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: #2c3e50;
  line-height: 1;
  font-family: var(--heading-font);
}

.hero .stats-grid .stat-card .stat-info .stat-title {
  font-size: 0.9rem;
  color: #5a5a7a;
  font-weight: 600;
}

/*--------------------------------------------------------------
# About Section - CARTOON
--------------------------------------------------------------*/
.about {
  padding: 80px 0;
  background-color: var(--background-color);
  position: relative;
}

.about .about-images-wrapper {
  position: relative;
  padding-bottom: 60px;
  padding-right: 60px;
  z-index: 1;
}

.about .image-main {
  border-radius: 50px;
  overflow: hidden;
  border: 8px solid white;
  box-shadow: 0 20px 0 rgba(0, 0, 0, 0.1);
  transform: rotate(-2deg);
  transition: transform 0.3s ease;
}

.about .image-main:hover {
  transform: rotate(0deg) scale(1.02);
}

.about .image-offset {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  border-radius: 40px;
  overflow: hidden;
  border: 6px solid white;
  box-shadow: 0 15px 0 rgba(0, 0, 0, 0.1);
  transform: rotate(3deg);
  transition: transform 0.3s ease;
}

.about .image-offset:hover {
  transform: rotate(0deg) scale(1.05);
}

.about .experience-badge {
  position: absolute;
  top: 40px;
  left: -30px;
  background: var(--accent-color);
  color: #2c3e50;
  padding: 20px 25px;
  border-radius: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 4px solid white;
  box-shadow: 0 12px 0 #c47a7a;
  animation: float-badge 3s ease-in-out infinite;
}

.about .experience-badge .years {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  font-family: var(--heading-font);
}

.about .cute-animal {
  position: absolute;
  font-size: 40px;
  animation: bounce 3s ease-in-out infinite;
}

.about .cute-animal.animal-1 {
  bottom: 20px;
  left: -20px;
  animation-delay: 0s;
  transform: rotate(-10deg);
}

.about .cute-animal.animal-2 {
  top: -20px;
  right: 20px;
  animation-delay: 1s;
  transform: rotate(10deg);
}

.about .section-subtitle {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 12px;
  background: var(--accent-secondary);
  padding: 8px 20px;
  border-radius: 40px;
  border: 2px solid white;
  box-shadow: 0 4px 0 #7fb3a0;
}

.about h2 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #2c3e50;
}

.about .features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}

.about .feature-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  padding: 15px;
  border-radius: 30px;
  border: 3px solid #fff;
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.about .feature-card i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.about .feature-card:hover {
  transform: translateX(5px) scale(1.02);
}

.about .stats-row {
  display: flex;
  gap: 30px;
  margin-bottom: 35px;
  padding: 20px 0;
}

.about .stat-box .number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-color);
  font-family: var(--heading-font);
}

.about .btn-primary-custom {
  background: var(--accent-color);
  color: #2c3e50;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 700;
  border: 3px solid white;
  box-shadow: 0 8px 0 #c47a7a;
}

.about .btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 11px 0 #c47a7a;
}

/*--------------------------------------------------------------
# Services / Programs Section
--------------------------------------------------------------*/
.services {
  padding: 80px 0;
  background: linear-gradient(135deg, #fff9e6 0%, #fef9e7 100%);
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
  padding: 0 20px;
  background: var(--accent-secondary);
  border-radius: 60px;
  padding: 15px 40px;
  border: 4px solid white;
  box-shadow: 0 10px 0 #7fb3a0;
}

.section-title h2:after {
  display: none;
}

.services .service-card {
  position: relative;
  padding: 40px 30px;
  border-radius: 40px;
  background: white;
  border: 4px solid #fff;
  box-shadow: 0 15px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  overflow: hidden;
}

.services .service-card::before {
  content: "🧸";
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 50px;
  opacity: 0.2;
  transform: rotate(15deg);
}

.services .service-card:hover {
  transform: translateY(-12px) rotate(-1deg);
  box-shadow: 0 20px 0 rgba(0, 0, 0, 0.1);
}

.services .service-card.featured {
  background: linear-gradient(135deg, #fff9c4 0%, #ffe0b2 100%);
  transform: scale(1.02);
}

.services .service-card .icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 30px;
  background: var(--accent-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  border: 4px solid white;
  box-shadow: 0 8px 0 #7fb3a0;
  transition: 0.3s;
}

.services .service-card:hover .icon-wrapper {
  transform: rotate(10deg) scale(1.1);
}

.services .service-card .icon-wrapper i {
  font-size: 3rem;
  color: #2c3e50;
}

.services .service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.services .service-card .service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--accent-color);
  background: #f0f0f0;
  padding: 10px 20px;
  border-radius: 40px;
  border: 2px solid white;
  box-shadow: 0 4px 0 #b0b0b0;
  transition: 0.2s;
}

.services .service-card .service-link:hover {
  background: var(--accent-color);
  color: #2c3e50;
  transform: translateX(5px);
}

.services .stats-row {
  margin-top: 60px;
  padding: 40px;
  background: white;
  border-radius: 60px;
  border: 4px solid #fff;
  box-shadow: 0 15px 0 rgba(0, 0, 0, 0.1);
}

.services .stats-row .stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-color);
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Portfolio / Gallery Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  background: white;
  border-radius: 60px;
  padding: 15px 25px;
  border: 3px solid #fff;
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.1);
}

.portfolio .portfolio-filters li {
  padding: 10px 25px;
  border-radius: 40px;
  font-weight: 600;
  color: #5a5a7a;
  transition: 0.3s;
}

.portfolio .portfolio-filters li:hover {
  background: var(--accent-secondary);
  transform: scale(1.05);
}

.portfolio .portfolio-filters li.filter-active {
  background: var(--accent-color);
  color: #2c3e50;
  box-shadow: 0 4px 0 #c47a7a;
}

.portfolio .project-card {
  background: white;
  border-radius: 40px;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 15px 0 rgba(0, 0, 0, 0.1);
  transition: 0.4s;
}

.portfolio .project-card:hover {
  transform: translateY(-10px) rotate(1deg);
  box-shadow: 0 20px 0 rgba(0, 0, 0, 0.1);
}

.portfolio .project-card .image-wrapper {
  position: relative;
  overflow: hidden;
}

.portfolio .project-card .image-wrapper img {
  transition: transform 0.5s;
}

.portfolio .project-card:hover .image-wrapper img {
  transform: scale(1.1);
}

.portfolio .project-card .category-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 8px 20px;
  background: var(--accent-secondary);
  border-radius: 40px;
  font-weight: 600;
  border: 2px solid white;
  box-shadow: 0 4px 0 #7fb3a0;
}

.portfolio .project-card .hover-overlay .action-btn {
  width: 60px;
  height: 60px;
  border-radius: 30px;
  background: white;
  color: var(--accent-color);
  font-size: 2rem;
  border: 3px solid #fff;
  box-shadow: 0 6px 0 #c47a7a;
}

.portfolio .cta-section {
  margin-top: 60px;
  padding: 60px;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-secondary) 100%);
  border-radius: 60px;
  border: 4px solid white;
  box-shadow: 0 20px 0 #7fb3a0;
}

.portfolio .cta-section .floating-shape {
  font-size: 40px;
  position: absolute;
  animation: float 4s ease-in-out infinite;
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-card {
  background: white;
  border-radius: 40px;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 15px 0 rgba(0, 0, 0, 0.1);
  transition: 0.4s;
}

.team .team-card:hover {
  transform: translateY(-10px);
}

.team .team-card.featured {
  background: linear-gradient(135deg, #fff9c4 0%, #ffe0b2 100%);
  transform: scale(1.02);
}

.team .team-card .member-img {
  position: relative;
}

.team .team-card .member-img img {
  aspect-ratio: 1/1;
  object-fit: cover;
}

.team .team-card .member-info {
  padding: 25px;
  text-align: center;
}

.team .team-card .member-info .member-badge {
  display: inline-block;
  padding: 6px 20px;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 600;
  background: var(--accent-secondary);
  color: #2c3e50;
  border: 2px solid white;
  box-shadow: 0 3px 0 #7fb3a0;
}

.team .team-card .member-info h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 10px 0 5px;
}

.team .team-stats .stats-wrapper {
  background: white;
  border-radius: 60px;
  padding: 30px;
  border: 4px solid #fff;
  box-shadow: 0 15px 0 rgba(0, 0, 0, 0.1);
}

.team .team-stats .stat-item .stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-color);
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  background: linear-gradient(135deg, #f0e6f5 0%, #f8f0fa 100%);
  position: relative;
  overflow: hidden;
}

.testimonials .testimonials-sidebar .avatar-stack .avatar,
.testimonials .testimonials-sidebar .avatar-stack .avatar-count {
  width: 60px;
  height: 60px;
  border: 4px solid white;
  box-shadow: 0 6px 0 #7fb3a0;
}

.testimonials .testimonials-sidebar .sidebar-content .satisfied-badge {
  background: var(--accent-secondary);
  padding: 8px 20px;
  border-radius: 40px;
  border: 2px solid white;
  box-shadow: 0 4px 0 #7fb3a0;
}

.testimonials .testimonial-card {
  background: white;
  border-radius: 40px;
  padding: 30px;
  border: 4px solid #fff;
  box-shadow: 0 15px 0 rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

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

.testimonials .testimonial-card .stars i {
  color: #ffb700;
  font-size: 1.3rem;
}

.testimonials .testimonial-card .quote-mark {
  width: 50px;
  height: 50px;
  background: var(--accent-secondary);
  border-radius: 20px;
  border: 3px solid white;
  box-shadow: 0 5px 0 #7fb3a0;
}

.testimonials .testimonial-card .quote-mark i {
  font-size: 1.5rem;
  color: #2c3e50;
}

.testimonials .testimonial-card .author-img {
  width: 60px;
  height: 60px;
  border: 4px solid white;
  box-shadow: 0 5px 0 #7fb3a0;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-panel {
  background: linear-gradient(135deg, var(--accent-color) 0%, #ffb7b7 100%);
  border-radius: 50px;
  padding: 40px;
  border: 5px solid white;
  box-shadow: 0 20px 0 #c47a7a;
}

.contact .info-panel .section-badge {
  background: rgba(255, 255, 255, 0.3);
  padding: 8px 20px;
  border-radius: 40px;
  border: 2px solid white;
  font-weight: 600;
}

.contact .info-panel .method-item {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  padding: 20px;
  border: 2px solid white;
  transition: 0.3s;
}

.contact .info-panel .method-item:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: translateX(10px);
}

.contact .info-panel .method-icon {
  background: white;
  width: 50px;
  height: 50px;
  border-radius: 20px;
}

.contact .info-panel .method-icon i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.contact .info-panel .stats-strip {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  padding: 20px;
  border: 2px solid white;
}

.contact .social-connect .social-icons a {
  background: white;
  width: 45px;
  height: 45px;
  border-radius: 20px;
  color: var(--accent-color);
  border: 2px solid #fff;
  box-shadow: 0 4px 0 #c47a7a;
  transition: 0.3s;
}

.contact .social-connect .social-icons a:hover {
  transform: translateY(-4px) rotate(10deg);
  background: var(--accent-color);
  color: white;
}

.contact .form-card {
  background: white;
  border-radius: 50px;
  padding: 40px;
  border: 5px solid #fff;
  box-shadow: 0 20px 0 rgba(0, 0, 0, 0.1);
}

.contact .form-card .header-icon {
  width: 70px;
  height: 70px;
  background: var(--accent-secondary);
  border-radius: 30px;
  border: 3px solid white;
  box-shadow: 0 6px 0 #7fb3a0;
}

.contact .form-card .header-icon i {
  font-size: 2rem;
  color: #2c3e50;
}

.contact .form-card .input-wrapper {
  position: relative;
}

.contact .form-card .input-wrapper input,
.contact .form-card .input-wrapper textarea {
  width: 100%;
  padding: 15px 15px 15px 50px;
  border: 3px solid #e0e0e0;
  border-radius: 30px;
  font-size: 1rem;
  transition: 0.3s;
  background: #f9f9f9;
}

.contact .form-card .input-wrapper input:focus,
.contact .form-card .input-wrapper textarea:focus {
  border-color: var(--accent-color);
  outline: none;
  box-shadow: 0 0 0 5px rgba(255, 154, 158, 0.2);
  transform: scale(1.02);
}

.contact .form-card .input-wrapper i {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  color: var(--accent-color);
}

.contact .form-card .input-wrapper.textarea-wrapper i {
  top: 25px;
  transform: none;
}

.contact .form-card .btn-submit {
  width: 100%;
  padding: 18px;
  background: var(--accent-color);
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.2rem;
  color: #2c3e50;
  border: 3px solid white;
  box-shadow: 0 8px 0 #c47a7a;
  transition: 0.2s;
}

.contact .form-card .btn-submit:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 0 #c47a7a;
}

.contact .form-card .btn-submit i {
  font-size: 1.5rem;
  margin-left: 10px;
}

.contact .form-card .secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  color: #5a5a7a;
}

/*--------------------------------------------------------------
# Footer - CARTOON
--------------------------------------------------------------*/
.footer {
  background: #f0e6f5;
  padding: 60px 0 30px;
  position: relative;
  overflow: hidden;
}

.footer-fun {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.footer-fun .floating-emoji {
  position: absolute;
  font-size: 40px;
  opacity: 0.3;
  animation: float 6s ease-in-out infinite;
}

.footer-fun .emoji-1 {
  top: 20%;
  left: 5%;
  animation-delay: 0s;
}

.footer-fun .emoji-2 {
  bottom: 30%;
  right: 5%;
  animation-delay: 2s;
}

.footer-fun .emoji-3 {
  top: 40%;
  right: 15%;
  animation-delay: 4s;
}

.footer .footer-info .logo span {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer .social-links a {
  width: 45px;
  height: 45px;
  border-radius: 20px;
  background: white;
  color: var(--accent-color);
  border: 2px solid #fff;
  box-shadow: 0 5px 0 #7fb3a0;
  transition: 0.3s;
}

.footer .social-links a:hover {
  transform: translateY(-5px) rotate(10deg);
  background: var(--accent-color);
  color: white;
}

.footer h4:after {
  display: none;
}

.footer h4 {
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.footer h4::before {
  content: "🧸";
  position: absolute;
  right: -25px;
  top: 0;
  font-size: 20px;
  animation: bounce 2s infinite;
}

.footer .footer-links ul a {
  color: #5a5a7a;
  font-weight: 500;
  padding: 5px 0;
  display: inline-block;
  transition: 0.3s;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
  transform: translateX(8px);
}

.footer .footer-newsletter form input[type=email] {
  border-radius: 40px;
  padding: 15px 20px;
  border: 3px solid #e0e0e0;
  background: white;
}

.footer .footer-newsletter form .btn-subscribe {
  background: var(--accent-color);
  border: none;
  border-radius: 40px;
  right: 5px;
  top: 5px;
  bottom: 5px;
  width: 45px;
  border: 2px solid white;
  box-shadow: 0 4px 0 #c47a7a;
}

.footer .footer-newsletter form .btn-subscribe i {
  color: #2c3e50;
  font-size: 1.3rem;
}

.footer .footer-bottom {
  border-top: 3px dashed var(--accent-secondary);
  padding-top: 25px;
}

.footer .copyright p {
  font-size: 0.9rem;
}

.footer .credits {
  font-size: 0.85rem;
}

.footer .credits i {
  color: #ff6b6b;
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  background: var(--accent-color);
  width: 50px;
  height: 50px;
  border-radius: 30px;
  border: 3px solid white;
  box-shadow: 0 6px 0 #c47a7a;
  transition: 0.3s;
}

.scroll-top i {
  font-size: 1.8rem;
  color: #2c3e50;
}

.scroll-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 11px 0 #c47a7a;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader:before {
  border: 6px solid #f0f0f0;
  border-color: var(--accent-color) transparent var(--accent-secondary) transparent;
  width: 80px;
  height: 80px;
}

/*--------------------------------------------------------------
# Responsive Adjustments
--------------------------------------------------------------*/
@media (max-width: 992px) {
  .hero .hero-content .hero-headline {
    font-size: 2.8rem;
  }
  
  .section-title h2 {
    font-size: 2rem;
    padding: 12px 30px;
  }
}

@media (max-width: 768px) {
  .hero .hero-content .hero-headline {
    font-size: 2.2rem;
  }
  
  .hero .stats-grid {
    margin-top: 40px;
  }
  
  .about h2 {
    font-size: 2rem;
  }
  
  .services .service-card {
    padding: 30px 20px;
  }
  
  .portfolio .cta-section {
    padding: 40px 20px;
  }
  
  .contact .info-panel,
  .contact .form-card {
    padding: 30px 20px;
  }
}

@media (max-width: 576px) {
  .hero .hero-content .hero-headline {
    font-size: 1.8rem;
  }
  
  .hero .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .section-title h2 {
    font-size: 1.5rem;
    padding: 10px 20px;
  }
  
  .about .features-grid {
    grid-template-columns: 1fr;
  }
  
  .services .service-card .icon-wrapper {
    width: 60px;
    height: 60px;
  }
  
  .services .service-card .icon-wrapper i {
    font-size: 2rem;
  }
  
  .services .service-card h3 {
    font-size: 1.3rem;
  }
  
  .team .team-stats .stats-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  
  .team .team-stats .stat-divider {
    display: none;
  }
}

/*--------------------------------------------------------------
# Cursor Fun - Optional Extra
--------------------------------------------------------------*/
/* * {
  cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'><circle cx='12' cy='12' r='10' fill='%23ff9a9e' stroke='white' stroke-width='2'/></svg>") 12 12, auto;
}

a, button, .btn, .navmenu a, .service-card, .project-card {
  cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'><circle cx='12' cy='12' r='12' fill='%23a8e6cf' stroke='white' stroke-width='2'/><path d='M8 12 L16 12 M12 8 L12 16' stroke='white' stroke-width='2'/></svg>") 12 12, pointer;
} */

/*--------------------------------------------------------------
# Animation Delays
--------------------------------------------------------------*/
[data-aos-delay] {
  transition-delay: 0s !important;
}

[data-aos].aos-animate {
  transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
}

[data-aos] {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

#preloader {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}