@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Patrick+Hand&display=swap');

:root {
  --color-coral: #FF6B6B;
  --color-coral-dark: #E85555;
  --color-yellow: #FFE66D;
  --color-yellow-light: #FFF3B0;
  --color-teal: #2D9596;
  --color-teal-dark: #1E7374;
  --color-dark: #1A1A2E;
  --color-light: #FAFAFA;
  --color-gray: #6B7280;
  --color-cream: #FFF9F0;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Space Grotesk', sans-serif;
  background-color: var(--color-light);
  color: var(--color-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.display-font {
  font-family: 'Patrick Hand', cursive;
}

strong, p {
  color: inherit;
}


::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--color-cream);
}

::-webkit-scrollbar-thumb {
  background: var(--color-coral);
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-coral-dark);
}


.nav-container {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 3px solid var(--color-yellow);
}

.nav-link {
  position: relative;
  transition: all 0.3s ease;
  font-weight: 500;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--color-coral);
  transition: width 0.3s ease;
}

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


.hero-gradient {
  background: linear-gradient(135deg, var(--color-coral) 0%, var(--color-yellow) 50%, var(--color-teal) 100%);
  position: relative;
  overflow: hidden;
}

.hero-gradient::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.3) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite;
}

.hero-gradient::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 60%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.2) 0%, transparent 60%);
  animation: float 6s ease-in-out infinite reverse;
}

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

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

.hero-title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  line-height: 1.1;
  text-shadow: 4px 4px 0px var(--color-yellow);
}

.hero-subtitle {
  font-size: clamp(1rem, 3vw, 1.5rem);
  opacity: 0.9;
}


.btn-primary {
  background: var(--color-dark);
  color: var(--color-light);
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 3px solid var(--color-dark);
  box-shadow: 6px 6px 0px var(--color-coral);
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0px var(--color-coral);
}

.btn-secondary {
  background: transparent;
  color: var(--color-dark);
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  border: 3px solid var(--color-dark);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-secondary:hover {
  background: var(--color-dark);
  color: var(--color-light);
}

.btn-secondary.text-white {
  color: var(--color-light) !important;
}
.btn-secondary.text-white:hover {
  border: 3px solid var(--color-light);
}

.btn-cta {
  background: var(--color-coral);
  color: white;
  padding: 18px 36px;
  border-radius: 0;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 8px 8px 0px var(--color-yellow);
  white-space: nowrap;
}

.btn-cta:hover {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0px var(--color-yellow);
  background: var(--color-coral-dark);
}


.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.4s ease;
}

.glass-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.service-card {
  background: white;
  border-radius: 24px;
  padding: 40px 30px;
  transition: all 0.4s ease;
  border: 3px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--color-coral), var(--color-yellow), var(--color-teal));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-yellow);
  box-shadow: 0 20px 40px rgba(45, 149, 150, 0.2);
}

.service-card:hover::before {
  transform: scaleX(1);
}


.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 6px;
  background: var(--color-coral);
  border-radius: 3px;
}

.section-divider {
  height: 4px;
  background: linear-gradient(90deg, var(--color-coral), var(--color-yellow), var(--color-teal));
  border-radius: 2px;
  margin: 20px 0;
}


.feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: all 0.4s ease;
}

.feature-icon:hover {
  transform: scale(1.1) rotate(10deg);
}

.icon-coral {
  background: linear-gradient(135deg, var(--color-coral), var(--color-coral-dark));
  color: white;
}

.icon-yellow {
  background: linear-gradient(135deg, var(--color-yellow), #FFD93D);
  color: var(--color-dark);
}

.icon-teal {
  background: linear-gradient(135deg, var(--color-teal), var(--color-teal-dark));
  color: white;
}


.testimonial-card {
  background: var(--color-cream);
  border-radius: 24px;
  padding: 30px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 30px;
  font-size: 4rem;
  color: var(--color-coral);
  opacity: 0.3;
  font-family: 'Patrick Hand', cursive;
}


.team-card {
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: 24px;
  transition: all 0.4s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 20px;
  border: 4px solid var(--color-yellow);
  object-fit: cover;
}


.gallery-item {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

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


.form-input {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #E5E7EB;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

.form-input:focus {
  outline: none;
  border-color: var(--color-teal);
  box-shadow: 0 0 0 4px rgba(45, 149, 150, 0.1);
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--color-dark);
}

.form-group {
  margin-bottom: 24px;
}


.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.contact-info-item:hover {
  background: white;
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}


.faq-item {
  background: white;
  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;
  border: 2px solid #E5E7EB;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--color-yellow);
}

.faq-question {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.1rem;
}

.faq-question .faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
  background: var(--color-coral);
  color: white;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 24px 24px;
}


.footer-section {
  background: var(--color-dark);
  color: white;
  padding: 60px 0 30px;
}

.footer-title {
  font-size: 1.5rem;
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}

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

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  margin-top: 40px;
}


.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 500px;
  background: white;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  border: 3px solid var(--color-yellow);
  display: block;
}

.cookie-banner h4 {
  margin-bottom: 12px;
  color: var(--color-dark);
}

.cookie-banner p {
  color: var(--color-gray);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 0.9rem;
}

.cookie-btn-accept {
  background: var(--color-teal);
  color: white;
  flex: 1;
}

.cookie-btn-accept:hover {
  background: var(--color-teal-dark);
}

.cookie-btn-decline {
  background: #F3F4F6;
  color: var(--color-dark);
}

.cookie-btn-decline:hover {
  background: #E5E7EB;
}


.mobile-menu-btn {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--color-cream);
  border: none;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.mobile-menu-btn span {
  width: 24px;
  height: 3px;
  background: var(--color-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 80px;
  right: 0;
  bottom: 0;
  background: white;
  z-index: 9998;
  padding: 100px 24px 24px;
  overflow-y: auto;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9997;
}

.mobile-menu-overlay.active {
  display: block;
}

/* Ensure mobile menu and overlay are visible on mobile devices */
@media (max-width: 1024px) {
  .mobile-menu-btn {
    display: flex !important;
  }
  
  .mobile-menu {
    display: none;
  }
  
  .mobile-menu.active {
    display: block;
  }
  
  .mobile-menu-overlay {
    display: none;
  }
  
  .mobile-menu-overlay.active {
    display: block;
  }
}

.mobile-menu a {
  display: block;
  padding: 16px 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-dark);
  text-decoration: none;
  border-bottom: 1px solid #E5E7EB;
}


.wheel-decoration {
  width: 100px;
  height: 100px;
  border: 4px dashed var(--color-coral);
  border-radius: 50%;
  animation: spin 20s linear infinite;
}

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

.bounce-animation {
  animation: bounce 2s ease-in-out infinite;
}

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


.price-tag {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-coral);
}

.price-note {
  font-size: 0.9rem;
  color: var(--color-gray);
}


@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(2rem, 6vw, 3rem);
  }
  
  .section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
  }
  
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 20px;
  }
  
  .btn-primary, .btn-secondary, .btn-cta {
    padding: 14px 24px;
    font-size: 1rem;
  }
  
  .mobile-menu a {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .service-card, .glass-card, .testimonial-card {
    padding: 24px 20px;
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}


.text-coral { color: var(--color-coral); }
.text-yellow { color: var(--color-yellow); }
.text-teal { color: var(--color-teal); }
.text-dark { color: var(--color-dark); }
.text-light { color: var(--color-light); }
.text-gray { color: var(--color-gray); }

.bg-coral { background-color: var(--color-coral); }
.bg-yellow { background-color: var(--color-yellow); }
.bg-teal { background-color: var(--color-teal); }
.bg-dark { background-color: var(--color-dark); }
.bg-light { background-color: var(--color-light); }
.bg-cream { background-color: var(--color-cream); }

.border-coral { border-color: var(--color-coral); }
.border-yellow { border-color: var(--color-yellow); }
.border-teal { border-color: var(--color-teal); }

.rounded-xl { border-radius: 16px; }
.rounded-2xl { border-radius: 24px; }
.rounded-3xl { border-radius: 32px; }