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

:root {
  --primary-color: #0e9bed;
  --secondary-red: #ed5a5a;
  --secondary-green: #7ccb58;
  --secondary-yellow: #ecb35a;
  --dark-color: #1a1a1a;
  --light-color: #ffffff;
  --gray-color: #666666;
  --light-gray: #f8f9fa;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease;
}

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

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

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: var(--transition);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.nav-logo h2 {
  color: var(--primary-color);
  font-weight: 800;
  font-size: 1.8rem;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: var(--dark-color);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
}

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

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background: var(--dark-color);
  margin: 3px 0;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(135deg, var(--primary-color) 0%, #0a7bc4 100%),
              url('https://images.pexels.com/photos/5716001/pexels-photo-5716001.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940') center/cover;
  background-blend-mode: overlay;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--light-color);
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(14, 155, 237, 0.4);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
  animation: fadeInUp 1s ease;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  opacity: 0.9;
  animation: fadeInUp 1s ease 0.4s both;
}

.hero-text {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.8;
  animation: fadeInUp 1s ease 0.6s both;
}

.cta-button {
  background: var(--light-color);
  color: var(--primary-color);
  border: none;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow);
  animation: fadeInUp 1s ease 0.8s both;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  background: var(--light-gray);
}

.cta-button i {
  margin-right: 10px;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-indicator i {
  font-size: 1.5rem;
  opacity: 0.7;
}

/* Section Styles */
.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: var(--dark-color);
  position: relative;
}

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

/* Target Audience Section */
.target-section {
  padding: 100px 0;
  background: var(--light-gray);
}

.target-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.target-card {
  background: var(--light-color);
  padding: 2.5rem 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 4px solid var(--primary-color);
}

.target-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.target-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), #0a7bc4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--light-color);
  font-size: 2rem;
}

.target-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.target-card p {
  color: var(--gray-color);
  line-height: 1.6;
}

/* Services Section */
.services-section {
  padding: 100px 0;
  background: var(--light-color);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.service-card {
  background: var(--light-color);
  padding: 3rem 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid #f0f0f0;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-green));
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.service-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--primary-color), #0a7bc4);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  color: var(--light-color);
  font-size: 2.5rem;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--dark-color);
}

.service-list {
  list-style: none;
}

.service-list li {
  padding: 0.5rem 0;
  color: var(--gray-color);
  display: flex;
  align-items: center;
}

.service-list li i {
  color: var(--secondary-green);
  margin-right: 10px;
  font-size: 0.9rem;
}

/* Packs Section */
.packs-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.packs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.pack-card {
  background: var(--light-color);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.pack-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.pack-card.popular {
  transform: scale(1.05);
  border: 3px solid var(--primary-color);
}

.pack-badge {
  position: absolute;
  top: 20px;
  right: -30px;
  background: var(--secondary-red);
  color: var(--light-color);
  padding: 5px 40px;
  font-size: 0.9rem;
  font-weight: 600;
  transform: rotate(45deg);
}

.pack-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.pack-duration {
  background: var(--primary-color);
  color: var(--light-color);
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 2rem;
}

.pack-stats {
  margin-bottom: 2rem;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--gray-color);
  font-weight: 500;
}

.pack-button {
  background: linear-gradient(135deg, var(--primary-color), #0a7bc4);
  color: var(--light-color);
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
}

.pack-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(14, 155, 237, 0.4);
}

.bronze .pack-duration { background: #cd7f32; }
.silver .pack-duration { background: #c0c0c0; }
.gold .pack-duration { background: #ffd700; color: var(--dark-color); }
.platinum .pack-duration { background: #e5e4e2; color: var(--dark-color); }
.diamond .pack-duration { background: #b9f2ff; color: var(--dark-color); }

.packs-note {
  text-align: center;
  color: var(--gray-color);
  font-style: italic;
  margin-top: 2rem;
}

.packs-note i {
  color: var(--primary-color);
  margin-right: 8px;
}

/* Other Services Section */
.other-services-section {
  padding: 80px 0;
  background: var(--light-color);
}

.other-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.other-service-item {
  background: var(--light-gray);
  padding: 2rem 1.5rem;
  border-radius: 15px;
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
}

.other-service-item:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
  background: var(--light-color);
  box-shadow: var(--shadow);
}

.other-service-item i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  display: block;
}

.other-service-item span {
  font-weight: 600;
  color: var(--dark-color);
}

/* Promotion Banner */
.promotion-banner {
  background: linear-gradient(135deg, var(--secondary-red), #d14545);
  color: var(--light-color);
  padding: 20px 0;
  text-align: center;
}

.promotion-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.promotion-content i {
  font-size: 1.5rem;
  animation: pulse 2s infinite;
}

/* Why Choose Section */
.why-choose-section {
  padding: 100px 0;
  background: var(--light-gray);
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.why-choose-item {
  background: var(--light-color);
  padding: 2.5rem 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.why-choose-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.why-choose-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--secondary-green), #6bb649);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--light-color);
  font-size: 2rem;
}

.why-choose-item h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.why-choose-item p {
  color: var(--gray-color);
  line-height: 1.6;
}

/* Contact Section */
.contact-section {
  padding: 100px 0;
  background: var(--light-color);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), #0a7bc4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-color);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-details h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--dark-color);
}

.contact-details p {
  color: var(--gray-color);
  font-size: 1.1rem;
}

.contact-form {
  background: var(--light-gray);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1.5rem;
}

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

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(14, 155, 237, 0.1);
}

.submit-button {
  background: linear-gradient(135deg, var(--primary-color), #0a7bc4);
  color: var(--light-color);
  border: none;
  padding: 15px 30px;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(14, 155, 237, 0.4);
}

.submit-button i {
  margin-right: 10px;
}

.whatsapp-button-container {
  text-align: center;
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-color), #0a7bc4);
  color: var(--light-color);
  text-decoration: none;
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.whatsapp-button:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.whatsapp-button i {
  margin-right: 10px;
  font-size: 1.3rem;
}

/* Footer */
.footer {
  background: var(--dark-color);
  color: var(--light-color);
  text-align: center;
  padding: 30px 0;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.floating-whatsapp a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: var(--light-color);
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.floating-whatsapp a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: var(--light-color);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 1rem 0;
  }

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

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

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

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

  .target-grid,
  .services-grid,
  .packs-grid,
  .other-services-grid,
  .why-choose-grid {
    grid-template-columns: 1fr;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pack-card.popular {
    transform: none;
  }

  .floating-whatsapp {
    bottom: 20px;
    right: 20px;
  }

  .floating-whatsapp a {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

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

  .target-card,
  .service-card,
  .pack-card,
  .why-choose-item {
    padding: 2rem 1.5rem;
  }

  .contact-form {
    padding: 2rem 1.5rem;
  }

  .promotion-content {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading animation for images */
img {
  transition: opacity 0.3s ease;
}

img:not([src]) {
  opacity: 0;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

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

::-webkit-scrollbar-thumb:hover {
  background: #0a7bc4;
}
