/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Space Mono', monospace;
  line-height: 1.6;
  color: #2c1810;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 25%, #ffd23f 50%, #06ffa5 75%, #1cb5e0 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Cookie Notice */
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(44, 24, 16, 0.95);
  color: white;
  padding: 20px;
  z-index: 1001;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-notice.show {
  transform: translateY(0);
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-btn {
  background: #ff6b35;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

.cookie-btn:hover {
  background: #e55a2e;
  transform: scale(1.05);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 15px 0;
  box-shadow: 0 2px 20px rgba(255, 107, 53, 0.3);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  font-family: 'Creepster', cursive;
  font-size: 2.5rem;
  color: #ff6b35;
  text-decoration: none;
  font-weight: bold;
  text-shadow: 3px 3px 0px #1cb5e0;
  transition: all 0.3s ease;
}

.logo:hover {
  transform: rotate(-5deg) scale(1.1);
  color: #e55a2e;
}

.nav-menu {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: #2c1810;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 5px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff6b35, #1cb5e0);
  transition: width 0.3s ease;
}

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

.nav-link:hover {
  color: #ff6b35;
  transform: translateY(-3px);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
}

.bar {
  width: 25px;
  height: 3px;
  background: #ff6b35;
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger.active .bar:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 20px 60px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  font-family: 'Dancing Script', cursive;
  font-size: 4.5rem;
  color: #2c1810;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 0px rgba(255, 255, 255, 0.8);
}

.hero-text p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  color: #2c1810;
  opacity: 0.9;
  max-width: 500px;
}

.hero-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-primary, .cta-secondary {
  padding: 18px 35px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  min-width: 200px;
}

.cta-primary {
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  color: white;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
  transform: perspective(1000px) rotateX(15deg);
}

.cta-primary:hover {
  transform: perspective(1000px) rotateX(0deg) translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
}

.cta-secondary {
  background: transparent;
  color: #2c1810;
  border: 3px solid #1cb5e0;
  transform: skew(-10deg);
}

.cta-secondary:hover {
  background: #1cb5e0;
  color: white;
  transform: skew(0deg) scale(1.05);
}

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

.hero-image {
  width: 100%;
  max-width: 400px;
  height: 300px;
  object-fit: cover;
  border-radius: 30px 0 30px 0;
  box-shadow: 20px 20px 0px #1cb5e0;
  transform: rotate(5deg);
  transition: all 0.3s ease;
}

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

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.float-item {
  position: absolute;
  font-size: 2rem;
  animation: float 3s ease-in-out infinite;
}

.float-item:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.float-item:nth-child(2) {
  top: 60%;
  right: 15%;
  animation-delay: 1s;
}

.float-item:nth-child(3) {
  bottom: 20%;
  left: 20%;
  animation-delay: 2s;
}

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

/* Research Section */
.research {
  padding: 100px 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  position: relative;
}

.research::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="25" r="2" fill="rgba(255,107,53,0.1)"/><circle cx="75" cy="75" r="2" fill="rgba(28,181,224,0.1)"/></svg>');
  animation: backgroundMove 20s linear infinite;
}

@keyframes backgroundMove {
  0% { transform: translateX(0); }
  100% { transform: translateX(100px); }
}

.research-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.research-content h2 {
  font-family: 'Dancing Script', cursive;
  font-size: 3.5rem;
  color: #2c1810;
  margin-bottom: 30px;
  transform: skew(-5deg);
}

.research-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #2c1810;
  opacity: 0.9;
}

.research-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.stat {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  backdrop-filter: blur(5px);
  transform: rotate(2deg);
  transition: all 0.3s ease;
}

.stat:nth-child(2) {
  transform: rotate(-2deg);
}

.stat:nth-child(3) {
  transform: rotate(1deg);
}

.stat:hover {
  transform: rotate(0deg) scale(1.1);
}

.stat h3 {
  font-size: 2.5rem;
  color: #ff6b35;
  font-weight: bold;
  margin-bottom: 5px;
}

.stat p {
  font-size: 0.9rem;
  color: #2c1810;
  margin: 0;
}

.research-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 0 50px 0 50px;
  box-shadow: -20px 20px 0px #ffd23f;
  transform: rotate(-3deg);
}

/* Services Section */
.services {
  padding: 100px 20px;
  background: rgba(28, 181, 224, 0.1);
}

.services h2 {
  font-family: 'Dancing Script', cursive;
  font-size: 3.5rem;
  text-align: center;
  margin-bottom: 60px;
  color: #2c1810;
  transform: perspective(500px) rotateY(10deg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.service-card {
  background: rgba(255, 255, 255, 0.9);
  padding: 40px 30px;
  border-radius: 25px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  transform: rotate(1deg);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-card:nth-child(2) {
  transform: rotate(-1deg);
}

.service-card:nth-child(3) {
  transform: rotate(2deg);
}

.service-card:hover {
  transform: rotate(0deg) translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.service-card.featured {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: white;
  transform: scale(1.05) rotate(0deg);
}

.featured-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #ffd23f;
  color: #2c1810;
  padding: 8px 15px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.8rem;
  transform: rotate(15deg);
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: inherit;
}

.service-card p {
  font-size: 1rem;
  margin-bottom: 20px;
  opacity: 0.9;
}

.service-price {
  font-size: 2rem;
  font-weight: bold;
  color: #ff6b35;
  margin-top: 20px;
}

.featured .service-price {
  color: #ffd23f;
}

/* Pricing Section */
.pricing {
  padding: 100px 20px;
  background: rgba(255, 210, 63, 0.1);
}

.pricing h2 {
  font-family: 'Dancing Script', cursive;
  font-size: 3.5rem;
  text-align: center;
  margin-bottom: 60px;
  color: #2c1810;
  text-shadow: 3px 3px 0px rgba(255, 255, 255, 0.5);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.9);
  padding: 40px 30px;
  border-radius: 30px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  border: 3px solid transparent;
}

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

.pricing-card.premium {
  background: linear-gradient(135deg, #1cb5e0, #06ffa5);
  color: white;
  transform: scale(1.1);
  border: 3px solid #ffd23f;
}

.pricing-card h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-family: 'Dancing Script', cursive;
}

.price {
  font-size: 3rem;
  font-weight: bold;
  color: #ff6b35;
  margin-bottom: 30px;
}

.price span {
  font-size: 1rem;
  opacity: 0.7;
}

.premium .price {
  color: #ffd23f;
}

.features {
  list-style: none;
  margin-bottom: 30px;
}

.features li {
  padding: 10px 0;
  font-size: 1rem;
  border-bottom: 1px solid rgba(44, 24, 16, 0.1);
}

.features li:last-child {
  border-bottom: none;
}

.features li::before {
  content: '✓';
  color: #06ffa5;
  font-weight: bold;
  margin-right: 10px;
}

.pricing-cta {
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  color: white;
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  display: inline-block;
  border: none;
  cursor: pointer;
}

.pricing-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

.premium .pricing-cta {
  background: linear-gradient(45deg, #ffd23f, #06ffa5);
  color: #2c1810;
}

.discount {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%) rotate(-5deg);
  background: #ff6b35;
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.9rem;
}

/* Testimonials Section */
.testimonials {
  padding: 100px 20px;
  background: rgba(6, 255, 165, 0.1);
  overflow: hidden;
}

.testimonials h2 {
  font-family: 'Dancing Script', cursive;
  font-size: 3.5rem;
  text-align: center;
  margin-bottom: 60px;
  color: #2c1810;
  transform: perspective(500px) rotateX(20deg);
}

.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.9);
  padding: 40px 30px;
  border-radius: 25px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  transform: rotate(-2deg);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.testimonial-card:nth-child(2) {
  transform: rotate(1deg);
}

.testimonial-card:nth-child(3) {
  transform: rotate(-1deg);
}

.testimonial-card:hover {
  transform: rotate(0deg) translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 4px solid #ff6b35;
  display: block;
}

.testimonial-card blockquote {
  font-size: 1.1rem;
  margin-bottom: 20px;
  font-style: italic;
  color: #2c1810;
  line-height: 1.6;
}

.testimonial-card cite {
  font-weight: bold;
  color: #ff6b35;
  font-style: normal;
  display: block;
  margin-bottom: 10px;
}

.stars {
  font-size: 1.2rem;
  color: #ffd23f;
}

/* FAQ Section */
.faq {
  padding: 100px 20px;
  background: rgba(255, 107, 53, 0.1);
}

.faq h2 {
  font-family: 'Dancing Script', cursive;
  font-size: 3.5rem;
  text-align: center;
  margin-bottom: 60px;
  color: #2c1810;
  transform: skew(5deg);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.9);
  padding: 30px;
  border-radius: 20px;
  transition: all 0.3s ease;
  border-left: 5px solid #1cb5e0;
  transform: perspective(1000px) rotateY(5deg);
}

.faq-item:nth-child(even) {
  transform: perspective(1000px) rotateY(-5deg);
}

.faq-item:hover {
  transform: perspective(1000px) rotateY(0deg) translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.faq-item h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #ff6b35;
  font-family: 'Dancing Script', cursive;
}

.faq-item p {
  font-size: 1rem;
  color: #2c1810;
  line-height: 1.7;
}

/* Contact Section */
.contact {
  padding: 100px 20px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(28, 181, 224, 0.2));
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-family: 'Dancing Script', cursive;
  font-size: 3.5rem;
  margin-bottom: 30px;
  color: #2c1810;
  transform: rotate(-2deg);
}

.contact-info p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #2c1810;
  opacity: 0.9;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  background: rgba(255, 255, 255, 0.8);
  padding: 15px 20px;
  border-radius: 15px;
  font-size: 1rem;
  border-left: 4px solid #ff6b35;
  transform: skew(-2deg);
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: skew(0deg) translateX(10px);
  background: rgba(255, 255, 255, 1);
}

.contact-form {
  background: rgba(255, 255, 255, 0.9);
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  transform: rotate(1deg);
  transition: all 0.3s ease;
}

.contact-form:hover {
  transform: rotate(0deg);
}

.contact-form h3 {
  font-family: 'Dancing Script', cursive;
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #ff6b35;
  text-align: center;
}

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

.form-group input {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 15px;
  font-size: 1rem;
  font-family: 'Space Mono', monospace;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.8);
}

.form-group input:focus {
  outline: none;
  border-color: #ff6b35;
  background: rgba(255, 255, 255, 1);
  transform: scale(1.02);
}

.submit-btn {
  width: 100%;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  color: white;
  padding: 18px;
  border: none;
  border-radius: 25px;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Space Mono', monospace;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
}

/* Popup Styles */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.popup-overlay.show {
  opacity: 1;
  visibility: visible;
}

.popup-content {
  background: white;
  padding: 40px;
  border-radius: 25px;
  text-align: center;
  max-width: 500px;
  width: 90%;
  transform: scale(0.8) rotate(5deg);
  transition: all 0.3s ease;
}

.popup-overlay.show .popup-content {
  transform: scale(1) rotate(0deg);
}

.popup-content h3 {
  font-family: 'Dancing Script', cursive;
  font-size: 2.5rem;
  color: #ff6b35;
  margin-bottom: 20px;
}

.popup-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #2c1810;
}

.popup-close {
  background: linear-gradient(45deg, #1cb5e0, #06ffa5);
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.popup-close:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(28, 181, 224, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
      display: flex;
  }
  
  .nav-menu {
      position: fixed;
      left: -100%;
      top: 80px;
      flex-direction: column;
      background: rgba(255, 255, 255, 0.98);
      width: 100%;
      text-align: center;
      transition: 0.3s;
      box-shadow: 0 10px 27px rgba(0,0,0,0.05);
      padding: 40px 0;
      backdrop-filter: blur(10px);
  }
  
  .nav-menu.active {
      left: 0;
  }
  
  .nav-menu a {
      display: block;
      margin: 20px 0;
      font-size: 1.2rem;
  }
  
  .logo {
      font-size: 2rem;
  }
  
  .hero-content {
      grid-template-columns: 1fr;
      gap: 40px;
      text-align: center;
  }
  
  .hero-text h1 {
      font-size: 3rem;
  }
  
  .hero-cta {
      justify-content: center;
  }
  
  .research-grid,
  .contact-content {
      grid-template-columns: 1fr;
      gap: 40px;
  }
  
  .services-grid,
  .pricing-grid,
  .testimonials-slider {
      grid-template-columns: 1fr;
  }
  
  .faq-grid {
      grid-template-columns: 1fr;
  }
  
  .research-stats {
      grid-template-columns: 1fr;
      gap: 20px;
  }
  
  .hero-text h1 {
      font-size: 2.5rem;
  }
  
  .services h2,
  .pricing h2,
  .testimonials h2,
  .faq h2,
  .contact-info h2 {
      font-size: 2.5rem;
  }
  
  .research-content h2 {
      font-size: 2.8rem;
  }
}

@media (max-width: 480px) {
  .hero {
      padding: 100px 15px 40px;
  }
  
  .container {
      padding: 0 15px;
  }
  
  .hero-text h1 {
      font-size: 2.2rem;
  }
  
  .hero-text p {
      font-size: 1.1rem;
  }
  
  .cta-primary,
  .cta-secondary {
      padding: 15px 25px;
      font-size: 1rem;
      min-width: 180px;
  }
  
  .services,
  .pricing,
  .testimonials,
  .faq,
  .contact,
  .research {
      padding: 60px 15px;
  }
  
  .pricing-card.premium {
      transform: scale(1);
  }
  
  .service-card,
  .pricing-card,
  .testimonial-card,
  .faq-item {
      transform: rotate(0deg);
      padding: 25px 20px;
  }
  
  .contact-form {
      padding: 25px;
      transform: rotate(0deg);
  }
}