:root {
  --primary: #feebc3;
  --secondary: #afdfc9;
  --accent: #eb385b;
  --highlight: #41cfed;
  --dark: #2A2D34;
  --light: #ffffff;
  --text: #333333;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Fredoka', sans-serif;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--light);
}

/* Section scrolling container */
.scroll-container {
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
}

section {
  height: 100vh;
  scroll-snap-align: start;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  overflow: hidden;
}

.section-content {
  max-width: 1200px;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 2;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--dark);
}

/* Background Animations */
.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.shape {
  position: absolute;
  opacity: 0.15;
  animation: float 15s infinite linear;
  font-size: 2rem;
}

/* Animations */
@keyframes float {
  0% {
    transform: translateY(0) translateX(0) rotate(0deg);
  }
  25% {
    transform: translateY(-20px) translateX(10px) rotate(90deg);
  }
  50% {
    transform: translateY(-40px) translateX(-10px) rotate(180deg);
  }
  75% {
    transform: translateY(-20px) translateX(10px) rotate(270deg);
  }
  100% {
    transform: translateY(0) translateX(0) rotate(360deg);
  }
}

@keyframes bubble {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Position the shapes */
.shape-1 {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
  color: var(--accent);
}

.shape-2 {
  top: 60%;
  left: 80%;
  animation-delay: -5s;
  color: var(--highlight);
  animation: float 18s infinite ease-in-out, bubble 3s infinite ease-in-out;
}

.shape-3 {
  top: 80%;
  left: 10%;
  animation-delay: -10s;
  color: var(--secondary);
}

.shape-4 {
  top: 20%;
  left: 70%;
  animation-delay: -3s;
  color: var(--accent);
  animation: float 22s infinite ease-in-out, spin 10s infinite linear;
}

.shape-5 {
  top: 40%;
  left: 20%;
  animation-delay: -7s;
  color: var(--primary);
  animation: float 17s infinite ease-in-out, bounce 2s infinite ease-in-out;
}

.shape-6 {
  top: 70%;
  left: 60%;
  animation-delay: -12s;
  color: var(--accent);
}

.shape-7 {
  top: 30%;
  left: 85%;
  animation-delay: -8s;
  color: var(--highlight);
  animation: float 25s infinite ease-in-out, bubble 4s infinite ease-in-out;
}

.shape-8 {
  top: 85%;
  left: 30%;
  animation-delay: -15s;
  color: var(--secondary);
  animation: float 20s infinite ease-in-out, spin 8s infinite linear;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1554456854-55a089fd4cb2?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
}

.hero-content {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.logo-container {
  margin-bottom: 2rem;
}

.logo {
  max-width: 50%;
  height: auto;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

/* Services Section */
.services {
  background-color: var(--primary);
  position: relative;
  overflow: hidden;
}

/* Desktop Grid View */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.service-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.2);
  color: var(--highlight);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.service-card p {
  transition: all 0.3s ease;
}

.service-card:hover p {
  color: var(--dark);
}

/* Mobile Services Carousel */
.services-carousel {
  display: none;
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.services-carousel-container {
  overflow: hidden;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 1rem;
}

.services-carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  gap: 0;
}

.services-carousel-item {
  flex: 0 0 100%;
  background: white;
  border-radius: 20px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.services-carousel-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--accent), var(--highlight));
}

.services-carousel-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--accent);
  display: inline-block;
  animation: bounce 2s infinite;
}

.services-carousel-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.services-carousel-item p {
  color: var(--text);
  line-height: 1.6;
}

.services-carousel-nav {
  margin-top: 2rem;
}

.services-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
}

.services-carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.services-carousel-dot.active {
  background-color: var(--accent);
  transform: scale(1.3);
  border-color: white;
}

.services-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: var(--accent);
}

.services-carousel-arrow:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.services-carousel-arrow.prev {
  left: -25px;
}

.services-carousel-arrow.next {
  right: -25px;
}

/* Experience Section */
.experience {
  background-color: var(--secondary);
  position: relative;
}

.experience-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
}

.experience-text {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.experience-image {
  flex: 1;
  min-width: 300px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.experience-image img {
  width: 100%;
  height: auto;
  display: block;
}

.experience-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.7);
  padding: 10px 15px;
  border-radius: 50px;
  font-weight: 600;
  color: var(--dark);
}

.feature i {
  color: var(--accent);
}

/* Gallery Section */
.gallery {
  background-color: var(--primary);
  position: relative;
}

/* Modern Card Carousel */
.card-carousel-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  padding: 0 50px;
}

.card-carousel {
  display: flex;
  transition: transform 0.5s ease;
  gap: 2rem;
  padding: 1rem 0;
  touch-action: pan-y;
}

.card-carousel-item {
  flex: 0 0 calc(33.333% - 1.5rem);
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.card-carousel-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.card-carousel-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.card-carousel-caption {
  padding: 1.5rem;
  text-align: center;
}

.card-carousel-caption h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.card-carousel-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.card-carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.card-carousel-dot.active {
  background-color: var(--accent);
  transform: scale(1.2);
}

.card-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  color: var(--accent);
}

.card-carousel-arrow:hover {
  background-color: var(--accent);
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.card-carousel-arrow.prev {
  left: 0;
}

.card-carousel-arrow.next {
  right: 0;
}

/* About Section */
.about {
  background-color: var(--light);
  position: relative;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-image {
  flex: 1;
  min-width: 300px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Location Section */
.location {
  background-color: var(--primary);
  text-align: center;
}

.location p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.map-container {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* Pricing Section */
.pricing {
  background-color: var(--secondary);
}

.pricing-info {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.2rem;
}

.pricing-highlight {
  background-color: var(--highlight);
  color: white;
  padding: 2rem;
  border-radius: 15px;
  margin-top: 2rem;
  font-weight: 600;
}

/* Contact Section */
.contact {
  background-color: var(--light);
  text-align: center;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
}

/* Buttons */
.btn {
  display: inline-block;
  background-color: var(--accent);
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  border: none;
  font-family: 'Fredoka', sans-serif;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  background-color: var(--highlight);
}

.btn-secondary {
  background-color: var(--highlight);
}

.btn-secondary:hover {
  background-color: var(--accent);
}

/* Social Icons */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--accent);
  color: white;
  border-radius: 50%;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  transform: translateY(-5px);
  background-color: var(--highlight);
}

/* WhatsApp FAB */
.whatsapp-fab {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 70px;
  height: 70px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: all 0.3s ease;
}

.whatsapp-fab:hover {
  transform: scale(1.1);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar h1 {
  color: var(--accent);
  font-size: 1.8rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--accent);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 2000;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu-content {
  background: white;
  width: 100%;
  height: 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--primary);
}

.mobile-menu-header h2 {
  color: var(--accent);
  font-size: 1.5rem;
}

.close-mobile-menu {
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav-link {
  text-decoration: none;
  color: var(--dark);
  font-size: 1.2rem;
  font-weight: 600;
  padding: 1rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  background: var(--primary);
}

.mobile-nav-link:hover {
  background: var(--accent);
  color: white;
  transform: translateX(10px);
}

/* Scroll indicator */
.scroll-indicator {
  position: fixed;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.scroll-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.scroll-dot.active {
  background-color: var(--accent);
  transform: scale(1.3);
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: white;
  padding: 2rem;
  border-radius: 15px;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: 'Fredoka', sans-serif;
}

.file-upload {
  border: 2px dashed #ddd;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.file-upload:hover {
  border-color: var(--accent);
}

.file-upload i {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 10px;
}

#file-name {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #666;
}

footer {
  background-color: var(--dark);
  color: white;
  text-align: center;
  padding: 2rem;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .card-carousel-item {
    flex: 0 0 calc(50% - 1rem);
  }
}

@media (max-width: 1080px) {
  .services-desktop {
    display: none;
  }
  
  .services-mobile {
    display: block;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .navbar {
    padding: 1rem;
  }
  
  .nav-links {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .card-carousel-item {
    flex: 0 0 calc(100% - 1rem);
  }
  
  .card-carousel-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .card-carousel-arrow.prev {
    left: 5px;
  }
  
  .card-carousel-arrow.next {
    right: 5px;
  }
  
  .services-carousel-arrow {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .services-carousel-arrow.prev {
    left: -20px;
  }
  
  .services-carousel-arrow.next {
    right: -20px;
  }
  
  .services-carousel-item {
    padding: 2rem 1rem;
  }
  
  .card-carousel-container {
    padding: 0 40px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .card-carousel-container {
    padding: 0 30px;
  }
  
  .card-carousel-arrow {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  
  .services-carousel-arrow {
    width: 35px;
    height: 35px;
  }
  
  .services-carousel-arrow.prev {
    left: -15px;
  }
  
  .services-carousel-arrow.next {
    right: -15px;
  }
}