/* 1. Base styles - Mobile-First Modern Dark Theme */
* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 25%, #16213e 50%, #0f3460 100%);
  background-attachment: scroll;
  color: #e2e8f0;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-size: clamp(14px, 2.5vw, 16px);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  position: relative;
}

@media (min-width: 768px) {
  body {
    background-attachment: fixed;
  }
}

/* Animated background particles - Optimized for mobile */
@media (min-width: 768px) {
  body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
      radial-gradient(circle at 25% 25%, #3b82f6 0%, transparent 50%),
      radial-gradient(circle at 75% 75%, #8b5cf6 0%, transparent 50%),
      radial-gradient(circle at 50% 50%, #06b6d4 0%, transparent 50%);
    opacity: 0.03;
    z-index: -1;
    animation: float 20s ease-in-out infinite;
    will-change: transform;
  }
}

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

/* 2. Navbar - Mobile-First Glassmorphism */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(0.5rem, 2vw, 1rem);
  background: rgba(15, 15, 35, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  border-radius: 0 0 16px 16px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  min-height: clamp(60px, 12vw, 70px);
  width: 100%;
}

/* Desktop navbar adjustments */
@media (min-width: 769px) {
  .navbar {
    padding: 1rem 2rem;
    border-radius: 0 0 24px 24px;
  }
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 1001;
}

.logo img {
  height: clamp(40px, 8vw, 56px);
  width: auto;
  border-radius: clamp(8px, 2vw, 12px);
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

.logo span {
  font-size: clamp(1.2rem, 4vw, 1.6rem);
  font-weight: 700;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6, #06b6d4);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.5px;
  margin-left: clamp(8px, 2vw, 10px);
}
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 44px;
  height: 44px;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.4);
  border-radius: 12px;
  padding: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: #3b82f6;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.menu-toggle:hover, .menu-toggle:active {
  background: rgba(59, 130, 246, 0.3);
  transform: scale(1.05);
}

/* Hide menu toggle on desktop */
@media (min-width: 769px) {
  .menu-toggle {
    display: none;
  }
}
.nav-links {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80vw;
  max-width: 300px;
  height: 100vh;
  background: rgba(15, 15, 35, 0.95);
  backdrop-filter: blur(20px);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 5rem 2rem 2rem 2rem;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  list-style: none;
  margin: 0;
  overflow-y: auto;
  touch-action: pan-y;
}

.nav-links.open {
  right: 0;
}

/* Mobile overlay */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Desktop navigation */
@media (min-width: 769px) {
  .nav-links {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    backdrop-filter: none;
    border: none;
    flex-direction: row;
    gap: 2rem;
    padding: 0;
    box-shadow: none;
    overflow: visible;
  }
  
  .nav-links.open {
    right: auto;
  }
}
.nav-links li a {
  color: #e2e8f0;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
  min-height: 44px;
  display: flex;
  align-items: center;
}

/* Desktop link styling */
@media (min-width: 769px) {
  .nav-links li a {
    font-size: 1.1rem;
    padding: 0.7rem 1.2rem;
    width: auto;
    display: inline-block;
  }
}

/* Navigation payment button */
.nav-payment-btn {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6) !important;
  color: #fff !important;
  border: 2px solid rgba(59, 130, 246, 0.5) !important;
  border-radius: 25px !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3) !important;
  transform: none !important;
}

.nav-payment-btn:hover {
  background: linear-gradient(135deg, #4f46e5, #7c3aed) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5) !important;
}
.nav-links li a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
  transition: left 0.5s ease;
}
.nav-links li a:hover::before {
  left: 100%;
}
.nav-links li a:hover {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.2);
}

/* 3. Hero section - Mobile-First Glassmorphism */
.hero {
  background: rgba(15, 15, 35, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: clamp(1.5rem, 4vw, 2rem) clamp(1rem, 3vw, 2rem);
  text-align: center;
  border-radius: clamp(12px, 3vw, 16px);
  margin: clamp(80px, 15vw, 100px) clamp(0.5rem, 2vw, 1rem) clamp(0.5rem, 2vw, 1rem) clamp(0.5rem, 2vw, 1rem);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  min-height: auto;
}

/* Desktop hero adjustments */
@media (min-width: 769px) {
  .hero {
    padding: 4rem 2rem;
    border-radius: 24px;
    margin: 2rem auto 1.5rem auto;
    max-width: 1000px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, #3b82f6, transparent, #8b5cf6, transparent);
  animation: rotate 20s linear infinite;
  opacity: 0.1;
  z-index: -1;
}
@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.hero-content h2 {
  font-size: clamp(1.8rem, 6vw, 3.5rem);
  font-weight: 900;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6, #06b6d4);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: clamp(0.8rem, 3vw, 1rem);
  line-height: 1.1;
  word-wrap: break-word;
  hyphens: auto;
}

/* Desktop hero title */
@media (min-width: 769px) {
  .hero-content h2 {
    font-size: 3.5rem;
    text-shadow: 0 0 50px rgba(59, 130, 246, 0.3);
  }
}
@keyframes glow {
  from { filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.3)); }
  to { filter: drop-shadow(0 0 30px rgba(139, 92, 246, 0.5)); }
}
.hero-content p {
  font-size: clamp(1rem, 3.5vw, 1.3rem);
  color: #cbd5e1;
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
  opacity: 0.9;
  line-height: 1.4;
  max-width: 100%;
}

/* Desktop hero text */
@media (min-width: 769px) {
  .hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
  }
}
/* Hero buttons container */
.hero-buttons {
  display: flex;
  gap: clamp(0.8rem, 3vw, 1rem);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: clamp(1rem, 3vw, 1.5rem);
}

.hero-content .btn {
  font-size: clamp(0.9rem, 3.5vw, 1.3rem);
  font-weight: 700;
  padding: clamp(0.8rem, 3vw, 1rem) clamp(1.5rem, 4vw, 3rem);
  border: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
  min-height: 44px;
  min-width: clamp(120px, 30vw, 200px);
  flex: 1;
  max-width: 200px;
  text-align: center;
  touch-action: manipulation;
}

.hero-content .btn-primary {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: #fff;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.hero-content .btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #e2e8f0;
  border: 2px solid rgba(59, 130, 246, 0.3);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Desktop hero buttons */
@media (min-width: 769px) {
  .hero-content .btn {
    font-size: 1.3rem;
    padding: 1rem 3rem;
    flex: none;
  }
  
  .hero-content .btn-primary {
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
  }
}
.hero-content .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}
.hero-content .btn:hover::before {
  left: 100%;
}
.hero-content .btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.6);
}
.hero-content .btn:active {
  transform: translateY(-1px) scale(1.02);
}

/* 4. Section cards - Responsive Glass Cards */
.section {
  background: rgba(15, 15, 35, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: clamp(12px, 3vw, 24px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  margin: clamp(0.5rem, 2vw, 3rem) clamp(0.5rem, 2vw, 1rem);
  padding: clamp(1.5rem, 4vw, 3rem) clamp(1rem, 3vw, 2.5rem);
  overflow: hidden;
  position: relative;
  width: calc(100% - clamp(1rem, 4vw, 2rem));
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  touch-action: pan-y;
}

/* Desktop section styling */
@media (min-width: 769px) {
  .section {
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    margin: 3rem auto;
    padding: 3rem 2.5rem;
    max-width: 1000px;
  }
}
.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.5), transparent);
}
.section h2 {
  color: #e2e8f0;
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: clamp(1rem, 3vw, 2rem);
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  word-wrap: break-word;
}

/* Desktop section headings */
@media (min-width: 769px) {
  .section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }
}
.section p {
  color: #cbd5e1;
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
}

/* Desktop section text */
@media (min-width: 769px) {
  .section p {
    font-size: 1.1rem;
    line-height: 1.7;
  }
}

/* 5. Plan cards - Responsive Grid */
.plan-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

/* Tablet and desktop plan cards */
@media (min-width: 768px) {
  .plan-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
  }
}

@media (min-width: 1024px) {
  .plan-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
.plan-card {
  background: rgba(15, 15, 35, 0.4);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Desktop plan cards */
@media (min-width: 769px) {
  .plan-card {
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    padding: 2.5rem 2rem;
  }
}
.plan-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4);
}
.plan-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(139, 92, 246, 0.6);
  box-shadow: 0 25px 50px rgba(59, 130, 246, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.plan-card h3 {
  color: #e2e8f0;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

/* Desktop plan titles */
@media (min-width: 769px) {
  .plan-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
}
.plan-card .price {
  font-size: 2.2rem;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  margin: 0.8rem 0;
  text-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

/* Desktop plan prices */
@media (min-width: 769px) {
  .plan-card .price {
    font-size: 3rem;
    margin: 1rem 0;
    text-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
  }
}
.plan-card p {
  color: #cbd5e1;
  margin: 0.4rem 0;
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Desktop plan text */
@media (min-width: 769px) {
  .plan-card p {
    margin: 0.5rem 0;
    font-size: 1rem;
  }
}

/* Plan buttons */
.plan-btn {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 25px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  margin-top: 1rem;
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
  min-height: 44px;
  text-align: center;
}

.plan-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
}

/* Desktop plan buttons */
@media (min-width: 769px) {
  .plan-btn {
    font-size: 1.1rem;
    padding: 1rem 2rem;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
  }
  
  .plan-btn:hover {
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.5);
  }
}

/* 6. Features grid - Responsive Cards */
.features-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 2rem 0 0 0;
}

/* Tablet and desktop features */
@media (min-width: 768px) {
  .features-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 3rem 0 0 0;
  }
}

@media (min-width: 1024px) {
  .features-list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}
.features-list li {
  background: rgba(15, 15, 35, 0.4);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  padding: 1rem 0.8rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: #e2e8f0;
  opacity: 0;
  transform: translateY(30px) scale(0.9);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
  position: relative;
  overflow: hidden;
}

/* Desktop features */
@media (min-width: 769px) {
  .features-list li {
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    padding: 1.5rem 1.2rem;
    gap: 1.2rem;
    font-size: 1.1rem;
  }
}
.features-list li::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
  transition: left 0.6s ease;
}
.features-list li:hover::before {
  left: 100%;
}
.features-list li.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.features-list li:hover {
  border-color: rgba(139, 92, 246, 0.5);
  box-shadow: 0 15px 35px rgba(59, 130, 246, 0.3);
  transform: translateY(-5px) scale(1.02);
  background: rgba(15, 15, 35, 0.6);
}
.features-list .icon {
  font-size: 2rem;
  filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.5));
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

/* Desktop feature icons */
@media (min-width: 769px) {
  .features-list .icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.5));
  }
}
.features-list li:hover .icon {
  transform: scale(1.2) rotate(10deg);
  filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.8));
}
.motivation-line {
  margin-top: 3rem;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6, #06b6d4);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

/* 7. Gallery slider - Responsive Glass */
.gallery-slider {
  position: relative;
  margin: 0 auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(15, 15, 35, 0.3);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Desktop gallery */
@media (min-width: 769px) {
  .gallery-slider {
    max-width: 1000px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  }
}
.gallery-images {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  align-items: center;
}
.gallery-images img {
  width: 100%;
  max-width: 100%;
  height: clamp(200px, 40vw, 400px);
  object-fit: cover;
  object-position: center;
  background: rgba(15, 15, 35, 0.5);
  border-radius: clamp(8px, 2vw, 20px);
  margin: 0 auto;
  display: block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  user-select: none;
  pointer-events: none;
  filter: brightness(0.9) contrast(1.1);
  transition: filter 0.3s ease;
}

/* Desktop gallery images */
@media (min-width: 769px) {
  .gallery-images img {
    height: 400px;
    max-height: 60vw;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  }
}
.gallery-images img:hover {
  filter: brightness(1) contrast(1.2);
}
.gallery-prev, .gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15, 15, 35, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(59, 130, 246, 0.3);
  font-size: 1.2rem;
  color: #3b82f6;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  touch-action: manipulation;
}

/* Desktop gallery controls */
@media (min-width: 769px) {
  .gallery-prev, .gallery-next {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  }
}
.gallery-prev:hover, .gallery-next:hover {
  background: rgba(59, 130, 246, 0.2);
  border-color: rgba(139, 92, 246, 0.5);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}
.gallery-prev { left: 10px; }
.gallery-next { right: 10px; }

/* Desktop gallery button positioning */
@media (min-width: 769px) {
  .gallery-prev { left: 15px; }
  .gallery-next { right: 15px; }
}

/* 8. Contact & social - Responsive Glass */
.contact {
  background: rgba(15, 15, 35, 0.3);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  margin: 1rem;
  padding: 2rem 1rem;
  font-size: 1rem;
  color: #e2e8f0;
}

/* Desktop contact */
@media (min-width: 769px) {
  .contact {
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    margin: 3rem auto;
    padding: 3rem 2.5rem;
    font-size: 1.1rem;
    max-width: 1000px;
  }
}
.contact a {
  color: #3b82f6;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.contact a:hover {
  color: #8b5cf6;
  text-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}
.social-icons {
  margin: 1.5rem 0 1rem 0;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Desktop social icons */
@media (min-width: 769px) {
  .social-icons {
    margin: 2rem 0 1rem 0;
    gap: 1.5rem;
  }
}
.social-icons a {
  font-size: 2rem;
  color: #cbd5e1;
  transition: all 0.3s ease;
  padding: 0.8rem;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Desktop social icons */
@media (min-width: 769px) {
  .social-icons a {
    font-size: 2.5rem;
    padding: 1rem;
  }
}
.social-icons a:hover {
  color: #3b82f6;
  background: rgba(59, 130, 246, 0.2);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}
.map-container iframe {
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  height: 250px;
}

/* Desktop map */
@media (min-width: 769px) {
  .map-container iframe {
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    height: 300px;
  }
}

/* 9. Footer - Modern Dark */
footer {
  text-align: center;
  padding: 2rem 0;
  background: rgba(15, 15, 35, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
  font-size: 1rem;
  margin-top: 3rem;
  border-radius: 24px 24px 0 0;
  letter-spacing: 1px;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
}

/* 10. Offer poster section */
.offer-poster-section {
  max-width: 900px;
  margin: 1.2rem auto 1.5rem auto;
  padding: 0 1rem;
}
.offer-poster {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(120deg, #fffbe6 60%, #e0ffe6 100%);
  border-radius: 18px;
  
  box-shadow: 0 8px 32px rgba(19,136,8,0.10);
  padding: 1.5rem 2rem;
  margin-bottom: 1.2rem;
  position: relative;
  overflow: hidden;
  border: 2px solid #ff9933;
}
.offer-poster-content {
  flex: 1;
}
.offer-poster-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #138808;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.offer-poster-main {
  font-size: 2rem;
  font-weight: 800;
  color: #ff9933;
  margin-bottom: 0.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.offer-highlight {
  background: #fff3cd;
  padding: 0.2em 0.7em;
  border-radius: 8px;
  box-shadow: 0 2px 8px #fff7;
}
.offer-dates {
  color: #138808;
  font-size: 1.2rem;
  font-weight: 600;
}
.offer-poster-desc {
  font-size: 1.1rem;
  color: #444;
  margin-top: 0.5rem;
}
.offer-poster-side {
  margin-left: 2rem;
  display: flex;
  align-items: center;
}
@media (max-width: 700px) {
  .offer-poster {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 0.7rem;
  }
  .offer-poster-side {
    margin-left: 0;
    margin-top: 1rem;
  }
  .offer-poster-main {
    font-size: 1.2rem;
    gap: 0.5rem;
  }
}

/* 11. Responsive for tablet and mobile */
@media (max-width: 1000px) {
  .navbar, .section, .contact, .hero {
    max-width: 98vw;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .gallery-slider {
    max-width: 98vw;
  }
}
@media (max-width: 700px) {
  .navbar {
    flex-direction: row;
    padding: 0.7rem 0.7rem;
  }
  .logo img {
    height: 44px;
  }
  .logo span {
    font-size: 1.1rem;
  }
  .menu-toggle {
    display: block;
    position: absolute;
    right: 1.2rem;
    top: 1.2rem;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100vw;
    width: 70vw;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    gap: 2rem;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 5rem 2rem 2rem 2rem;
    box-shadow: -2px 0 12px rgba(0,0,0,0.15);
    transition: right 0.3s cubic-bezier(.77,0,.18,1);
    z-index: 10000;
    display: flex;
  }
  .nav-links.open {
    right: 0;
  }
  .hero-content h2 {
    font-size: 1.3rem;
  }
  .hero-content {
    padding: 1rem 0.5rem;
  }
  .plan-cards {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  .plan-card {
    min-width: 180px;
    padding: 1.2rem 0.7rem;
    font-size: 1rem;
  }
  .gallery-slider {
    max-width: 100vw;
  }
  .gallery-images img {
    width: 100vw;
    height: 55vw;
    max-width: 100vw;
    min-width: 100vw;
    border-radius: 0;
  }
  .features-list {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .features-list li {
    font-size: 1rem;
    padding: 1.1rem 0.8rem;
  }
  .motivation-line {
    font-size: 1.1rem;
  }
  .contact {
    font-size: 0.98rem;
    padding: 1.2rem 0.5rem;
  }
  footer {
    font-size: 0.9rem;
    padding: 1rem 0;
  }
}

/* Modal styles - Modern Glass */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  justify-content: center;
  align-items: center;
}
.modal-content {
  background: rgba(15, 15, 35, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 2.5rem 2rem 2rem 2rem;
  max-width: 95vw;
  width: 400px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  position: relative;
  text-align: center;
  animation: modalIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: #e2e8f0;
}

/* FAQ Section */
.faq {
  padding: 4rem 2rem;
  background: rgba(15, 15, 35, 0.8);
}

.faq h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: clamp(2rem, 4vw, 2.5rem);
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.1);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 600;
  color: #e2e8f0;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(59, 130, 246, 0.1);
}

.faq-question i {
  color: #3b82f6;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
}

/* Form Styles */
#enquiryForm {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

#enquiryForm input,
#enquiryForm textarea,
#enquiryForm select {
  padding: 1rem;
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #e2e8f0;
  font-size: 1rem;
  transition: all 0.3s ease;
}

#enquiryForm input:focus,
#enquiryForm textarea:focus,
#enquiryForm select:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

#enquiryForm input::placeholder,
#enquiryForm textarea::placeholder {
  color: #94a3b8;
}

#enquiryForm select {
  cursor: pointer;
}

#enquiryForm select option {
  background: #1e293b;
  color: #e2e8f0;
}

#enquiryForm button {
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

#enquiryForm button:hover {
  background: linear-gradient(135deg, #059669, #047857);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}
@keyframes modalIn { 
  from { transform: scale(0.8) translateY(50px); opacity: 0; } 
  to { transform: scale(1) translateY(0); opacity: 1; } 
}
.close-modal {
  position: absolute;
  right: 1.5rem; top: 1.5rem;
  font-size: 2rem;
  color: #3b82f6;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0.5rem;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.1);
}
.close-modal:hover {
  color: #8b5cf6;
  background: rgba(59, 130, 246, 0.2);
  transform: scale(1.1);
}
#enquiryForm input, #enquiryForm select {
  width: 100%;
  margin: 0.8rem 0;
  padding: 1rem 1.2rem;
  border-radius: 12px;
  border: 1px solid rgba(59, 130, 246, 0.3);
  font-size: 1rem;
  outline: none;
  background: rgba(15, 15, 35, 0.5);
  backdrop-filter: blur(10px);
  color: #e2e8f0;
  transition: all 0.3s ease;
}
#enquiryForm input:focus, #enquiryForm select:focus {
  border-color: rgba(139, 92, 246, 0.6);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}
#enquiryForm input::placeholder {
  color: #94a3b8;
}
#enquiryForm button.btn {
  width: 100%;
  margin-top: 1.5rem;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 1rem 0;
  border: none;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
  transition: all 0.3s ease;
  cursor: pointer;
}
#enquiryForm button.btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.6);
}
#enquiryForm button.btn:active {
  transform: translateY(0) scale(0.98);
}

/* Trainers Showcase - Unique Professional Design */
.trainers-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.trainer-profile {
  position: relative;
}

.trainer-card-unique {
  background: rgba(15, 15, 35, 0.4);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.trainer-card-unique::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4);
}

.trainer-card-unique:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(139, 92, 246, 0.6);
  box-shadow: 0 30px 60px rgba(59, 130, 246, 0.4);
}

.trainer-image-container {
  position: relative;
  flex-shrink: 0;
}

.trainer-photo {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 20px;
  border: 3px solid rgba(59, 130, 246, 0.5);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
  transition: all 0.3s ease;
}

.trainer-card-unique:hover .trainer-photo {
  border-color: rgba(139, 92, 246, 0.8);
  box-shadow: 0 15px 35px rgba(139, 92, 246, 0.5);
  transform: scale(1.05);
}

.trainer-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
  animation: pulse 2s ease-in-out infinite;
}

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

.trainer-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.trainer-name-title {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.2rem;
}

.trainer-specialization {
  font-size: 1.1rem;
  color: #cbd5e1;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.trainer-credentials {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.credential-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #e2e8f0;
  font-size: 0.95rem;
}

.credential-item i {
  color: #3b82f6;
  width: 16px;
  text-align: center;
}

.trainer-expertise {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.expertise-tag {
  background: rgba(59, 130, 246, 0.2);
  border: 1px solid rgba(59, 130, 246, 0.4);
  color: #3b82f6;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.expertise-tag:hover {
  background: rgba(139, 92, 246, 0.3);
  border-color: rgba(139, 92, 246, 0.6);
  color: #8b5cf6;
  transform: scale(1.05);
}
@media (max-width: 800px) {
  .trainers-showcase {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .trainer-card-unique {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
  
  .trainer-image-container {
    align-self: center;
  }
  
  .trainer-credentials {
    align-items: center;
  }
  
  .credential-item {
    justify-content: center;
  }
}

/* Reviews Section - Modern Glassmorphism */
.reviews-container {
  position: relative;
  overflow: hidden;
}

.reviews-slider {
  position: relative;
  height: auto;
  min-height: 300px;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(15, 15, 35, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 2rem;
}

.reviews-track {
  display: flex;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes autoSlideWithPause {
  0% { transform: translateX(0); }
  7% { transform: translateX(0); }
  10% { transform: translateX(-100%); }
  17% { transform: translateX(-100%); }
  20% { transform: translateX(-200%); }
  27% { transform: translateX(-200%); }
  30% { transform: translateX(-300%); }
  37% { transform: translateX(-300%); }
  40% { transform: translateX(-400%); }
  47% { transform: translateX(-400%); }
  50% { transform: translateX(-500%); }
  57% { transform: translateX(-500%); }
  60% { transform: translateX(-600%); }
  67% { transform: translateX(-600%); }
  70% { transform: translateX(-700%); }
  77% { transform: translateX(-700%); }
  80% { transform: translateX(-800%); }
  87% { transform: translateX(-800%); }
  90% { transform: translateX(-900%); }
  97% { transform: translateX(-900%); }
  100% { transform: translateX(0); }
}

.review-card {
  min-width: 100%;
  width: 100%;
  flex: 0 0 100%;
  padding: clamp(1.5rem, 4vw, 2rem);
  background: rgba(15, 15, 35, 0.4);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 250px;
  box-sizing: border-box;
}

.review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.5), transparent);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.reviewer-info {
  display: flex;
  flex-direction: column;
}

.reviewer-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 0.2rem;
}

.review-date {
  font-size: 0.9rem;
  color: #94a3b8;
}

.review-stars {
  display: flex;
  gap: 0.2rem;
}

.review-stars .star {
  color: #fbbf24;
  font-size: 1.2rem;
  text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

.review-text {
  color: #cbd5e1;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-style: italic;
}

.review-source {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #94a3b8;
  font-size: 0.9rem;
}

.review-source i {
  color: #4285f4;
  font-size: 1rem;
}

.google-rating-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(15, 15, 35, 0.4);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.rating-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.overall-rating {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(251, 191, 36, 0.5);
}

.stars-large {
  display: flex;
  gap: 0.3rem;
  margin-bottom: 0.5rem;
}

.stars-large .star {
  color: #fbbf24;
  font-size: 1.5rem;
  text-shadow: 0 0 15px rgba(251, 191, 36, 0.6);
}

.review-count {
  color: #cbd5e1;
  font-size: 1rem;
}

.google-logo {
  font-size: 3rem;
  color: #4285f4;
  filter: drop-shadow(0 0 20px rgba(66, 133, 244, 0.5));
}

/* Mobile responsive for reviews */
@media (max-width: 700px) {
  .reviews-slider {
    height: 320px;
  }
  
  .review-card {
    padding: 1.5rem;
    margin: 0.5rem;
  }
  
  .google-rating-summary {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  
  .rating-info {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Modal for trainer details - Updated */
.modal-content.trainer-modal-content {
  background: rgba(15, 15, 35, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  max-width: 95vw;
  width: 400px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  position: relative;
  text-align: center;
  animation: modalIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: #e2e8f0;
}

/* FAQ Section */
.faq {
  padding: 4rem 2rem;
  background: rgba(15, 15, 35, 0.8);
}

.faq h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: clamp(2rem, 4vw, 2.5rem);
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.1);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 600;
  color: #e2e8f0;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(59, 130, 246, 0.1);
}

.faq-question i {
  color: #3b82f6;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
}

/* Form Styles */
#enquiryForm {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

#enquiryForm input,
#enquiryForm textarea,
#enquiryForm select {
  padding: 1rem;
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #e2e8f0;
  font-size: 1rem;
  transition: all 0.3s ease;
}

#enquiryForm input:focus,
#enquiryForm textarea:focus,
#enquiryForm select:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

#enquiryForm input::placeholder,
#enquiryForm textarea::placeholder {
  color: #94a3b8;
}

#enquiryForm select {
  cursor: pointer;
}

#enquiryForm select option {
  background: #1e293b;
  color: #e2e8f0;
}

#enquiryForm button {
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

#enquiryForm button:hover {
  background: linear-gradient(135deg, #059669, #047857);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}