/* Base Styles */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

@font-face {
  font-family: "Ohno Softie";
  src: url("fonts/Ohno-Softie-Variable.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

:root {
  --primary-color: #0078ff;
  --secondary-color: #005bbd;
  --dark-color: #000000;
  --light-color: #ffffff;
  --gray-color: #f4f4f4;
  --text-color: #333333;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  overflow-x: hidden;
  background-color: var(--light-color);
}

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

ul {
  list-style: none;
}

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

/* Animated Background */
.animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.particles:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(255, 255, 255, 0.9) 100%
  );
  z-index: 1;
}

.particles:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      circle at 25% 25%,
      rgba(0, 120, 255, 0.05) 1%,
      transparent 5%
    ),
    radial-gradient(
      circle at 75% 75%,
      rgba(0, 120, 255, 0.05) 1%,
      transparent 5%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(0, 120, 255, 0.05) 1%,
      transparent 10%
    );
  background-size: 100px 100px;
  animation: particleAnimation 20s linear infinite;
  z-index: 2;
}

@keyframes particleAnimation {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100px 100px;
  }
}

/* Header Styles */
header {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-color: var(--light-color);
  overflow: hidden;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--primary-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.header-content.scrolled {
  padding: 10px 5%;
  background-color: var(--primary-color);
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo {
  height: 80px;
  transition: var(--transition);
}

.header-content.scrolled .logo {
  height: 40px;
}

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

/* Menu Styles - Updated to blue */
.menu {
  display: flex;
  gap: 20px;
}

.menu li a {
  color: white;
  font-weight: 500;
  padding: 0px 12px;
  border-radius: 4px;
  transition: var(--transition);
}

.menu li a:hover,
.menu li a.active {
  color: var(--light-color);
  background-color: var(--primary-color);
}

/* Dropdown styles */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
}

.dropdown-toggle i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1001;
  border: 1px solid rgba(0, 120, 255, 0.1);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  display: block;
  width: 100%;
}

.dropdown-menu li a {
  display: block;
  padding: 8px 15px;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
  background-color: var(--primary-color);
  color: var(--light-color);
}

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--light-color);
}

/* Hero Section - Updated for full-width background with no text borders */
.hero-section {
  padding-top: 80px;
  min-height: calc(100vh - 80px);
  width: 100%;
  position: relative;
}

.hero-background {
  width: 100%;
  height: calc(100vh - 80px);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.hero-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text {
  text-align: center;
  max-width: 800px;
  padding: 0;
  background-color: transparent;
  border-radius: 0;
  box-shadow: none;
  animation: fadeIn 1s ease-in-out;
  color: var(--light-color);
}

.hero-text h1 {
  font-size: 3.5rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
  /* text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5); */
  font-family: "Ohno Softie", sans-serif;
}

.hero-text p {
  font-size: 29px;
  margin-bottom: 30px;
  /* text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5); */
  color: var(--secondary-color);
  font-family: "Ohno Softie", sans-serif;
}

.animated-text {
  display: inline-block;
  position: relative;
}

.animated-text:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  bottom: -5px;
  left: 0;
  background-color: var(--light-color);
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.5s ease-out;
  animation: underlineAnimation 2s ease-in-out infinite;
}

@keyframes underlineAnimation {
  0% {
    transform: scaleX(0);
    transform-origin: bottom right;
  }
  50% {
    transform: scaleX(1);
    transform-origin: bottom left;
  }
  100% {
    transform: scaleX(0);
    transform-origin: bottom right;
  }
}

/* Button Styles */
.btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--light-color);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 120, 255, 0.3);
}

.btn:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 120, 255, 0.4);
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 10px rgba(0, 120, 255, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 120, 255, 0.5);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 4px 10px rgba(0, 120, 255, 0.3);
  }
}

/* Section Styles */
.section {
  padding: 100px 0;
  position: relative;
}

/* Section header styles */
.section-header {
  padding: 60px 0 30px;
}

.section-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #ccc;
}

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

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

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  color: inherit;
}

.section-title:after {
  content: "";
  position: absolute;
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.section-image {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.dark-section .section-image {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Boost Your Hype Section */
.boost-content {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.boost-text {
  flex: 1;
  min-width: 300px;
}

.boost-text h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.meter-container {
  display: flex;
  justify-content: space-between;
  margin: 30px 0;
}

.meter {
  position: relative;
  width: 150px;
  height: 150px;
  background-color: #f0f0f0;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.meter:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 50%;
  bottom: 0;
  left: 0;
  background: conic-gradient(
    from 180deg,
    #ff4d4d 0deg,
    #ffad4d 60deg,
    #ffff4d 120deg,
    #4dff4d 180deg
  );
  clip-path: polygon(0% 100%, 100% 100%, 100% 0%, 0% 0%);
}

.meter-label {
  position: absolute;
  top: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 1;
}

.meter-needle {
  position: absolute;
  bottom: 50%;
  left: 50%;
  width: 4px;
  height: 60px;
  background-color: #333;
  transform-origin: bottom center;
  z-index: 2;
  transition: transform 1s ease-in-out;
}

#meter-before {
  transform: translateX(-50%) rotate(-60deg);
}

#meter-after {
  transform: translateX(-50%) rotate(60deg);
}

.meter-grade {
  position: absolute;
  bottom: 20px;
  font-weight: 700;
  font-size: 1.5rem;
  z-index: 1;
}

/* Swiper Styles */
.swiper {
  width: 100%;
  height: 400px;
  margin-top: 20px;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
}

.swiper-slide img {
  max-height: 100%;
  object-fit: contain;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-color);
}

.swiper-pagination-bullet-active {
  background-color: var(--primary-color);
}

.content-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  max-width: 80%;
  text-align: center;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.content-card h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.content-card ul {
  text-align: left;
  margin-top: 15px;
  padding-left: 20px;
}

.content-card ul li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 15px;
}

.content-card ul li:before {
  content: "•";
  color: var(--primary-color);
  position: absolute;
  left: 0;
}

/* Packages Section */
.packages-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.packages-image {
  max-width: 100%;
  margin-bottom: 50px;
}

.packages-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  width: 100%;
}

.package-card {
  background-color: var(--primary-color);
  color: var(--text-color);
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: var(--transition);
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  font-family: "Ohno Softie", sans-serif;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.package-card.featured {
  border-color: var(--primary-color);
  transform: scale(1.05);
}

.package-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.package-card h3 {
  color: white;
  font-size: 1.8rem;
  margin-bottom: 10px;
  font-family: Arial, Helvetica, sans-serif;
}

.package-duration {
  font-size: 1rem;
  color: white;
  margin-bottom: 20px;
  font-weight: 500;
}

.package-card ul {
  margin: 20px 0 30px;
  text-align: left;
}

.package-card ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.package-card ul li:before {
  content: "✓";
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.package-card h5 {
  font-size: 1.4em;
  color: white;
  font-weight: bold;
}

.package-card p {
  font-size: 1.2em;
  color: white;
  font-weight: lighter;
  margin-bottom: 30px;
}

/* Contact Section */
.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.contact-info,
.contact-form {
  flex: 1;
  min-width: 300px;
}

.contact-image {
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-item i {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-top: 5px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 0;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background-color: var(--primary-color);
  color: var(--light-color);
  border-radius: 50%;
  transition: var(--transition);
  font-size: 50px;
}

.social-icon:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
}

.contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 120, 255, 0.2);
}

.form-group textarea {
  height: 150px;
  resize: vertical;
}

/* Footer */
footer {
  background-color: #f8f8f8;
  padding: 50px 0 20px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-logo {
  flex: 1;
  min-width: 200px;
}

.footer-links {
  flex: 2;
  min-width: 300px;
}

.footer-links ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 30px auto 0;
  padding: 20px 20px 0;
  text-align: center;
  border-top: 1px solid #eee;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  z-index: 999;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--secondary-color);
  transform: translateY(-5px);
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .menu {
    position: fixed;
    top: 80px;
    left: -100%;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.98);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    z-index: 999;
  }

  .menu.active {
    left: 0;
  }

  .menu-toggle {
    display: block;
  }

  /* Mobile dropdown adjustments */
  .dropdown-menu {
    position: static;
    background-color: rgba(0, 120, 255, 0.05);
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    padding: 0;
    margin-top: 10px;
  }

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

  .dropdown-toggle {
    justify-content: center;
  }

  .boost-content {
    flex-direction: column;
    text-align: center;
  }

  .boost-text {
    order: -1;
  }

  .meter-container {
    justify-content: center;
    gap: 50px;
  }

  .package-card.featured {
    transform: scale(1);
  }

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

  .hero-text h1 {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 2.2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .contact-container {
    flex-direction: column;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links ul {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero-text h1 {
    font-size: 1.8rem;
  }

  .hero-text {
    padding: 0 15px;
  }

  .header-content {
    padding: 15px 4%;
  }

  .section {
    padding: 70px 0;
  }

  .section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .meter-container {
    flex-direction: column;
    align-items: center;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}
