/* Advanced Landing Page Styles */

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #e6f3ff;
  background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2a 50%, #0a0a1a 100%);
  overflow-x: hidden;
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Particle Background */
.particle-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.particles {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(135, 206, 235, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(70, 130, 180, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

/* Glassmorphism Navigation */
.glass-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(20px);
  background: rgba(10, 10, 26, 0.8);
  border-bottom: 1px solid rgba(135, 206, 235, 0.2);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.logo-icon {
  font-size: 2rem;
}

.logo-text {
  background: linear-gradient(90deg, #87ceeb, #e6f3ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: #b0d4ff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #87ceeb;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #87ceeb, #e6f3ff);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.cta-nav-btn {
  background: linear-gradient(135deg, #87ceeb, #4a90e2);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(135, 206, 235, 0.3);
}

.cta-nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(135, 206, 235, 0.4);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.text-gradient {
  background: linear-gradient(135deg, #87ceeb, #e6f3ff, #87ceeb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-subtitle {
  color: #b0d4ff;
  font-weight: 300;
}

.hero-description {
  font-size: 1.2rem;
  color: #b0d4ff;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.primary-btn,
.secondary-btn {
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.primary-btn {
  background: linear-gradient(135deg, #87ceeb, #4a90e2);
  color: white;
  border: none;
  box-shadow: 0 4px 15px rgba(135, 206, 235, 0.3);
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(135, 206, 235, 0.4);
}

.secondary-btn {
  background: transparent;
  color: #87ceeb;
  border: 2px solid #87ceeb;
}

.secondary-btn:hover {
  background: rgba(135, 206, 235, 0.1);
  transform: translateY(-2px);
}

/* Hero Visual */
.hero-visual {
  position: relative;
}

.floating-cards {
  display: flex;
  gap: 2rem;
}

.card-3d {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.card-3d:hover {
  transform: translateY(-10px) rotateY(10deg);
  box-shadow: 0 20px 40px rgba(135, 206, 235, 0.3);
}

.card-3d i {
  font-size: 3rem;
  color: #87ceeb;
  margin-bottom: 1rem;
}

.card-3d span {
  color: #e6f3ff;
  font-weight: 600;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #87ceeb, #e6f3ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #b0d4ff;
  max-width: 600px;
  margin: 0 auto;
}

/* Features Section */
.features-section {
  padding: 8rem 0;
  background: rgba(10, 10, 26, 0.5);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(135, 206, 235, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.feature-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #87ceeb, #4a90e2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #e6f3ff;
}

.feature-card p {
  color: #b0d4ff;
  line-height: 1.6;
}

/* Services Section */
.services-section {
  padding: 8rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(135, 206, 235, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.service-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.service-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.service-header i {
  font-size: 2.5rem;
  color: #87ceeb;
}

.service-header h3 {
  font-size: 1.5rem;
  color: #e6f3ff;
}

.service-card p {
  color: #b0d4ff;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-card ul {
  list-style: none;
  padding: 0;
}

.service-card li {
  color: #87ceeb;
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.service-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #87ceeb;
}

/* Testimonials Section */
.testimonials-section {
  padding: 8rem 0;
  background: rgba(10, 10, 26, 0.5);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(135, 206, 235, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.testimonial-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-content p {
  font-size: 1.1rem;
  color: #e6f3ff;
  font-style: italic;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid #87ceeb;
}

.author-avatar-placeholder {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #87ceeb, #4a90e2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
}

.author-info h4 {
  color: #e6f3ff;
  margin-bottom: 0.25rem;
}

.author-info span {
  color: #b0d4ff;
  font-size: 0.9rem;
}

.rating {
  color: #87ceeb;
  font-size: 1.2rem;
}

/* Stats Section */
.stats-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #87ceeb, #4a90e2);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 2rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.stat-label {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* CTA Section */
.cta-section {
  padding: 8rem 0;
  background: rgba(10, 10, 26, 0.8);
}

.cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  color: #e6f3ff;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  color: #b0d4ff;
  margin-bottom: 2rem;
}

.cta-main-btn {
  background: linear-gradient(135deg, #87ceeb, #4a90e2);
  color: white;
  border: none;
  padding: 1.25rem 3rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(135, 206, 235, 0.3);
}

.cta-main-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(135, 206, 235, 0.4);
}

/* Footer */
.advanced-footer {
  background: rgba(10, 10, 26, 0.9);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(135, 206, 235, 0.2);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 4rem;
  margin-bottom: 2rem;
}

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-brand p {
  color: #b0d4ff;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(135, 206, 235, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #87ceeb;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #87ceeb;
  color: white;
  transform: translateY(-2px);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.link-group h4 {
  color: #e6f3ff;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.link-group a {
  color: #b0d4ff;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.link-group a:hover {
  color: #87ceeb;
}

.footer-bottom {
  border-top: 1px solid rgba(135, 206, 235, 0.2);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: #b0d4ff;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  color: #87ceeb;
  text-decoration: none;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .nav-links {
    display: none;
  }

  .features-grid,
  .services-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp 0.6s ease-out forwards;
}

/* Professional Store Page Styles */

/* Ultra-Advanced Store Hero */
.store-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  background:
    linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 30%, #16213e 70%, #0a0a1a 100%),
    radial-gradient(circle at 25% 25%, rgba(135, 206, 235, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(70, 130, 180, 0.1) 0%, transparent 50%);
  overflow: hidden;
}

.store-hero::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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(135,206,235,0.03)"/><circle cx="75" cy="75" r="1" fill="rgba(70,130,180,0.02)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.04)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.6;
  animation: grainMove 30s ease-in-out infinite;
}

@keyframes grainMove {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(-5px, -5px) scale(1.05); }
  50% { transform: translate(5px, 5px) scale(0.95); }
  75% { transform: translate(-2px, 2px) scale(1.02); }
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
  33% { transform: translateY(-15px) rotate(0.5deg) scale(1.02); }
  66% { transform: translateY(10px) rotate(-0.3deg) scale(0.98); }
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-10px) rotate(1deg); }
  66% { transform: translateY(5px) rotate(-0.5deg); }
}

.store-hero .hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.store-hero .hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.store-hero .hero-description {
  font-size: 1.3rem;
  color: #b0d4ff;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.hero-stats .stat {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  border: 1px solid rgba(135, 206, 235, 0.2);
}

.hero-stats .stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: #87ceeb;
  margin-bottom: 0.5rem;
}

.hero-stats .stat-label {
  color: #e6f3ff;
  font-weight: 500;
}

/* Professional Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2.5rem;
  margin-top: 5rem;
}

.services-cta {
  text-align: center;
  margin-top: 4rem;
}

.request-services-btn {
  background: linear-gradient(135deg, #87ceeb, #4a90e2);
  color: white;
  border: none;
  padding: 1.5rem 3rem;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 8px 25px rgba(135, 206, 235, 0.3);
  position: relative;
  overflow: hidden;
}

.request-services-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.6s ease;
}

.request-services-btn:hover::before {
  left: 100%;
}

.request-services-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(135, 206, 235, 0.5);
}

.request-services-btn i {
  transition: transform 0.3s ease;
}

.request-services-btn:hover i {
  transform: translateX(5px);
}

.service-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(20px);
  border: 1px solid rgba(135, 206, 235, 0.3);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
    rgba(135, 206, 235, 0.08),
    rgba(70, 130, 180, 0.06),
    rgba(100, 149, 237, 0.04));
  opacity: 0;
  transition: all 0.4s ease;
  border-radius: 24px;
}

.service-card::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #87ceeb, #4a90e2, #87ceeb);
  border-radius: 26px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover {
  transform: translateY(-15px) scale(1.03) rotateX(5deg) rotateY(-2deg);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.2),
    0 0 0 2px rgba(135, 206, 235, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    0 0 40px rgba(135, 206, 235, 0.2);
  perspective: 1000px;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover::after {
  opacity: 0.3;
}

.service-card.featured {
  border-color: #87ceeb;
  box-shadow: 0 10px 30px rgba(135, 206, 235, 0.3);
}

.service-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #87ceeb, #4a90e2);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #87ceeb, #4a90e2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
  box-shadow: 0 8px 25px rgba(135, 206, 235, 0.3);
}

.service-card h3 {
  font-size: 1.5rem;
  color: #e6f3ff;
  margin-bottom: 1rem;
}

.service-card p {
  color: #b0d4ff;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.service-features li {
  color: #87ceeb;
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #87ceeb;
}

.service-price {
  margin-bottom: 2rem;
}

.service-price .price {
  font-size: 2rem;
  font-weight: 800;
  color: #87ceeb;
  display: block;
}

.service-price .period {
  color: #b0d4ff;
  font-size: 0.9rem;
}

.service-btn {
  background: linear-gradient(135deg, #87ceeb, #4a90e2);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(135, 206, 235, 0.3);
}

.service-btn {
  position: relative;
  overflow: hidden;
}

.service-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;
}

.service-btn:hover::before {
  left: 100%;
}

.service-btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 30px rgba(135, 206, 235, 0.5);
}

.service-btn.primary {
  width: 100%;
}

/* Trust Indicators Section */
.trust-section {
  padding: 4rem 0;
  background: rgba(10, 10, 26, 0.3);
  border-top: 1px solid rgba(135, 206, 235, 0.1);
  border-bottom: 1px solid rgba(135, 206, 235, 0.1);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  border: 1px solid rgba(135, 206, 235, 0.1);
}

.trust-item i {
  font-size: 2rem;
  color: #87ceeb;
}

.trust-item span {
  color: #b0d4ff;
  font-weight: 500;
  font-size: 0.9rem;
}

/* Testimonials Section */
.testimonials-section {
  padding: 8rem 0;
  background: rgba(10, 10, 26, 0.5);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.testimonial-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(20px);
  border: 1px solid rgba(135, 206, 235, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(135, 206, 235, 0.2);
}

.testimonial-rating {
  color: #87ceeb;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  color: #e6f3ff;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #87ceeb, #4a90e2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1rem;
}

.author-info h4 {
  color: #e6f3ff;
  margin: 0 0 0.25rem 0;
  font-size: 1rem;
}

.author-info span {
  color: #b0d4ff;
  font-size: 0.85rem;
}

/* FAQ Section */
.faq-section {
  padding: 8rem 0;
  background: rgba(10, 10, 26, 0.3);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.faq-item {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  backdrop-filter: blur(15px);
  border: 1px solid rgba(135, 206, 235, 0.15);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(135, 206, 235, 0.3);
  box-shadow: 0 8px 25px rgba(135, 206, 235, 0.1);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(135, 206, 235, 0.05);
}

.faq-question h4 {
  color: #e6f3ff;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.faq-toggle {
  color: #87ceeb;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 2rem;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 2rem 1.5rem;
}

.faq-answer p {
  color: #b0d4ff;
  line-height: 1.6;
  margin: 0;
}

/* Professional Pricing Section */
.pricing-section {
  padding: 10rem 0;
  background: linear-gradient(135deg, rgba(15, 25, 45, 0.8), rgba(10, 10, 26, 0.9));
  position: relative;
}

.pricing-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(135, 206, 235, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(70, 130, 180, 0.05) 0%, transparent 50%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  margin-top: 5rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.pricing-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(25px);
  border: 1px solid rgba(135, 206, 235, 0.25);
  border-radius: 24px;
  padding: 3.5rem 2.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(135, 206, 235, 0.3);
}

.pricing-card.featured {
  border-color: #87ceeb;
  box-shadow: 0 10px 30px rgba(135, 206, 235, 0.3);
  transform: scale(1.05);
}

.pricing-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #87ceeb, #4a90e2);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-header h3 {
  font-size: 1.8rem;
  color: #e6f3ff;
  margin-bottom: 1rem;
}

.pricing-header .price {
  margin-bottom: 2rem;
}

.pricing-header .amount {
  font-size: 3.5rem;
  font-weight: 900;
  color: transparent;
  background: linear-gradient(135deg, #87ceeb, #e6f3ff, #87ceeb);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-stroke: 1px rgba(135, 206, 235, 0.3);
  display: block;
  text-shadow: 0 0 20px rgba(135, 206, 235, 0.5);
  position: relative;
}

.pricing-header .amount::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #87ceeb, #4a90e2, #87ceeb);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-stroke: none;
  animation: priceGlow 2s ease-in-out infinite alternate;
}

@keyframes priceGlow {
  0% { filter: brightness(1) drop-shadow(0 0 5px rgba(135, 206, 235, 0.3)); }
  100% { filter: brightness(1.2) drop-shadow(0 0 15px rgba(135, 206, 235, 0.8)); }
}

.pricing-header .period {
  color: #b0d4ff;
  font-size: 1rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.pricing-features li {
  color: #b0d4ff;
  margin-bottom: 0.75rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(135, 206, 235, 0.1);
}

.pricing-btn {
  background: linear-gradient(135deg, #87ceeb, #4a90e2);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  box-shadow: 0 4px 15px rgba(135, 206, 235, 0.3);
}

.pricing-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(135, 206, 235, 0.4);
}

.pricing-btn.featured {
  background: linear-gradient(135deg, #4a90e2, #87ceeb);
}

/* Professional Modal Enhancements */
.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  animation: fadeIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.modal-content {
  background: linear-gradient(145deg, rgba(26, 26, 42, 0.95), rgba(42, 42, 58, 0.9));
  border: 1px solid rgba(135, 206, 235, 0.3);
  border-radius: 24px;
  max-width: 650px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  animation: slideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(135, 206, 235, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideIn {
  from { transform: translateY(-50px) scale(0.9); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

/* Premium CTA Section */
.premium-cta {
  padding: 8rem 0;
  background: linear-gradient(135deg, #87ceeb 0%, #4a90e2 50%, #87ceeb 100%);
  position: relative;
  overflow: hidden;
  transform: perspective(1000px) rotateX(2deg) rotateY(-1deg);
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.premium-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  animation: ctaPulse 8s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.05); }
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 3rem;
  color: white;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-content p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  line-height: 1.6;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-weight: 600;
}

.cta-feature i {
  color: #e6f3ff;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-primary,
.cta-secondary {
  padding: 1.25rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-primary {
  background: white;
  color: #4a90e2;
  border: 2px solid white;
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.cta-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}


/* Request Services Page Styles */

/* Ultra-Advanced Request Hero */
.request-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  position: relative;
  background:
    linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 30%, #16213e 70%, #0a0a1a 100%),
    radial-gradient(circle at 25% 25%, rgba(135, 206, 235, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(70, 130, 180, 0.1) 0%, transparent 50%);
  overflow: hidden;
}

.request-hero::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"><defs><pattern id="heroGrain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(135,206,235,0.03)"/><circle cx="75" cy="75" r="1" fill="rgba(70,130,180,0.02)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.04)"/></pattern></defs><rect width="100" height="100" fill="url(%23heroGrain)"/></svg>');
  opacity: 0.6;
  animation: heroGrainMove 40s ease-in-out infinite;
}

@keyframes heroGrainMove {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(-10px, -10px) scale(1.1); }
  50% { transform: translate(10px, 10px) scale(0.9); }
  75% { transform: translate(-5px, 5px) scale(1.05); }
}

.request-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 25% 25%, rgba(135, 206, 235, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(70, 130, 180, 0.1) 0%, transparent 50%);
  animation: heroFloat 20s ease-in-out infinite;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(135, 206, 235, 0.2);
  min-width: 120px;
}

.feature-item i {
  font-size: 2rem;
  color: #87ceeb;
}

.feature-item span {
  color: #b0d4ff;
  font-weight: 500;
}

/* Wizard Section */
.wizard-section {
  padding: 6rem 0;
  background: rgba(10, 10, 26, 0.5);
}


.wizard-container {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
    linear-gradient(135deg, rgba(135, 206, 235, 0.05), rgba(70, 130, 180, 0.03));
  backdrop-filter: blur(25px);
  border: 1px solid rgba(135, 206, 235, 0.3);
  border-radius: 28px;
  padding: 3.5rem;
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(135, 206, 235, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.price-calculator {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    linear-gradient(135deg, rgba(135, 206, 235, 0.08), rgba(70, 130, 180, 0.05));
  backdrop-filter: blur(20px);
  border: 1px solid rgba(135, 206, 235, 0.25);
  border-radius: 20px;
  padding: 2rem;
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  height: fit-content;
  position: sticky;
  top: 2rem;
}

.wizard-container:hover {
  transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateY(-5px);
}


.calculator-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.calculator-header h3 {
  color: #87ceeb;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.calculator-header p {
  color: #b0d4ff;
  font-size: 0.9rem;
}

.price-breakdown {
  margin-bottom: 2rem;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(135, 206, 235, 0.1);
}

.price-item:last-child {
  border-bottom: none;
}

.price-label {
  color: #b0d4ff;
  font-size: 0.9rem;
}

.price-value {
  color: #87ceeb;
  font-weight: 600;
  font-size: 0.9rem;
}

.total-price {
  background: linear-gradient(135deg, rgba(135, 206, 235, 0.1), rgba(70, 130, 180, 0.05));
  border: 1px solid rgba(135, 206, 235, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  margin-bottom: 1rem;
}

.total-label {
  color: #b0d4ff;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.total-amount {
  color: #87ceeb;
  font-size: 2rem;
  font-weight: 800;
  text-shadow: 0 0 10px rgba(135, 206, 235, 0.5);
}

.price-notice {
  text-align: center;
}

.price-notice small {
  color: #87ceeb;
  font-size: 0.75rem;
  opacity: 0.8;
}

.wizard-container::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent,
    rgba(135, 206, 235, 0.1),
    transparent 60deg,
    transparent 120deg,
    rgba(70, 130, 180, 0.1),
    transparent 180deg,
    transparent 240deg,
    rgba(135, 206, 235, 0.1),
    transparent 300deg,
    transparent
  );
  animation: rotateGlow 20s linear infinite;
  pointer-events: none;
}

@keyframes rotateGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Progress Bar */
.wizard-progress {
  margin-bottom: 3rem;
}

.progress-bar {
  width: 100%;
  height: 4px;
  background: rgba(135, 206, 235, 0.2);
  border-radius: 2px;
  margin-bottom: 2rem;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #87ceeb, #4a90e2);
  width: 0%;
  transition: width 0.4s ease;
  border-radius: 2px;
}

.progress-steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.step.active {
  opacity: 1;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(135, 206, 235, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b0d4ff;
  font-weight: 600;
  transition: all 0.3s ease;
}

.step.active .step-number {
  background: linear-gradient(135deg, #87ceeb, #4a90e2);
  color: white;
}

.step-label {
  font-size: 0.85rem;
  color: #b0d4ff;
  font-weight: 500;
}

/* Wizard Steps */
.wizard-step {
  display: none;
  animation: fadeInUp 0.5s ease-out;
}

.wizard-step.active {
  display: block;
}

.step-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.step-header h2 {
  font-size: 2rem;
  color: #e6f3ff;
  margin-bottom: 0.5rem;
}

.step-header p {
  color: #b0d4ff;
  font-size: 1.1rem;
}

/* Service Options */
.service-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.service-option {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(135, 206, 235, 0.2);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-option::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(135, 206, 235, 0.1), rgba(70, 130, 180, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-option:hover,
.service-option.selected {
  border-color: #87ceeb;
  transform: translateY(-8px) scale(1.02) rotateX(5deg) rotateY(-2deg);
  box-shadow:
    0 20px 40px rgba(135, 206, 235, 0.3),
    0 0 30px rgba(135, 206, 235, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  perspective: 1000px;
}

.service-option:hover .service-icon,
.service-option.selected .service-icon {
  transform: scale(1.1) rotateY(10deg);
  box-shadow: 0 10px 25px rgba(135, 206, 235, 0.4);
}

.service-option:hover::before,
.service-option.selected::before {
  opacity: 1;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #87ceeb, #4a90e2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: white;
}

.service-option h3 {
  color: #e6f3ff;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.service-option p {
  color: #b0d4ff;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features li {
  color: #87ceeb;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.2rem;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #87ceeb;
}

/* Form Styles */
.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  color: #e6f3ff;
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.875rem 1rem;
  border: 2px solid rgba(135, 206, 235, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #e6f3ff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #87ceeb;
  box-shadow:
    0 0 0 3px rgba(135, 206, 235, 0.15),
    0 0 20px rgba(135, 206, 235, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  background: rgba(135, 206, 235, 0.02);
}

.form-group select {
  color: #e6f3ff;
  background: rgba(255, 255, 255, 0.05);
}

.form-group select option {
  color: #000;
  background: #fff;
}

.form-group input:focus + label,
.form-group select:focus + label,
.form-group textarea:focus + label {
  color: #87ceeb;
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* Contact Preferences */
.contact-preferences {
  margin-top: 2rem;
}

.contact-preferences h3 {
  color: #e6f3ff;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.preference-options {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.preference-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.preference-option input[type="radio"] {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(135, 206, 235, 0.3);
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.preference-option input[type="radio"]:checked {
  border-color: #87ceeb;
  background: #87ceeb;
}

.preference-option input[type="radio"]:checked::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
}

.preference-option span {
  color: #b0d4ff;
  font-weight: 500;
}

/* Review Section */
.review-container {
  display: grid;
  gap: 2rem;
}

.review-section {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(135, 206, 235, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
}

.review-section h3 {
  color: #87ceeb;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.review-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(135, 206, 235, 0.1);
}

.review-item:last-child {
  border-bottom: none;
}

.review-label {
  color: #b0d4ff;
  font-weight: 500;
}

.review-value {
  color: #e6f3ff;
  font-weight: 600;
}

.review-description {
  color: #b0d4ff;
  line-height: 1.6;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  border: 1px solid rgba(135, 206, 235, 0.1);
}

/* Terms Agreement */
.terms-agreement {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(135, 206, 235, 0.2);
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.5;
}

.checkbox-container input[type="checkbox"] {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(135, 206, 235, 0.3);
  border-radius: 4px;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.3s ease;
}

.checkbox-container input[type="checkbox"]:checked {
  border-color: #87ceeb;
  background: #87ceeb;
}

.checkbox-container input[type="checkbox"]:checked::before {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
  font-weight: bold;
}

.checkbox-container a {
  color: #87ceeb;
  text-decoration: none;
}

.checkbox-container a:hover {
  text-decoration: underline;
}

/* Wizard Navigation */
.wizard-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(135, 206, 235, 0.2);
}

.nav-btn {
  padding: 0.875rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
}

.nav-btn.secondary {
  background: rgba(135, 206, 235, 0.1);
  color: #87ceeb;
  border: 2px solid rgba(135, 206, 235, 0.3);
}

.nav-btn.secondary:hover:not(:disabled) {
  background: rgba(135, 206, 235, 0.2);
  transform: translateY(-2px);
}

.nav-btn.primary {
  background: linear-gradient(135deg, #87ceeb, #4a90e2);
  color: white;
  box-shadow: 0 4px 15px rgba(135, 206, 235, 0.3);
}

.nav-btn.primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 30px rgba(135, 206, 235, 0.5);
}

.nav-btn.primary:active {
  transform: translateY(-2px) scale(0.98);
  transition: all 0.1s ease;
}

.nav-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

.step-indicator {
  color: #b0d4ff;
  font-weight: 500;
}

/* Success Modal */
.success-modal {
  text-align: center;
  max-width: 500px;
}

.success-icon {
  font-size: 4rem;
  color: #87ceeb;
  margin-bottom: 1rem;
}

.success-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(135, 206, 235, 0.1);
  border-radius: 8px;
}

.detail-item i {
  color: #87ceeb;
}

.detail-item span {
  color: #b0d4ff;
  font-weight: 500;
}

.modal-footer {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.modal-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.modal-btn.primary {
  background: linear-gradient(135deg, #87ceeb, #4a90e2);
  color: white;
  box-shadow: 0 4px 15px rgba(135, 206, 235, 0.3);
}

.modal-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(135, 206, 235, 0.4);
}

.modal-btn.secondary {
  background: rgba(135, 206, 235, 0.1);
  color: #87ceeb;
  border: 2px solid rgba(135, 206, 235, 0.3);
}

.modal-btn.secondary:hover {
  background: rgba(135, 206, 235, 0.2);
}

/* Advanced Particle Animations */
.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: radial-gradient(circle, rgba(135, 206, 235, 0.8), rgba(70, 130, 180, 0.4));
  border-radius: 50%;
  animation: advancedFloat 25s infinite linear;
  box-shadow: 0 0 6px rgba(135, 206, 235, 0.3);
}

.snow-particle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="rgba(255,255,255,0.6)" stroke-width="2"><path d="M12 2L13.09 8.26L20 9L13.09 9.74L12 16L10.91 9.74L4 9L10.91 8.26L12 2Z"/></svg>') center/contain no-repeat;
  animation: snowFall 20s infinite linear;
  opacity: 0.7;
}

.floating-shape {
  position: absolute;
  opacity: 0.1;
  animation: shapeFloat 30s infinite ease-in-out;
}

.floating-shape.triangle {
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 14px solid rgba(135, 206, 235, 0.4);
}

.floating-shape.square {
  width: 12px;
  height: 12px;
  background: rgba(70, 130, 180, 0.3);
  border-radius: 2px;
}

.floating-shape.circle {
  width: 10px;
  height: 10px;
  background: radial-gradient(circle, rgba(135, 206, 235, 0.4), rgba(70, 130, 180, 0.2));
  border-radius: 50%;
}

.floating-shape.diamond {
  width: 12px;
  height: 12px;
  background: rgba(135, 206, 235, 0.3);
  transform: rotate(45deg);
  border-radius: 2px;
}

@keyframes advancedFloat {
  0% {
    transform: translateY(100vh) rotate(0deg) scale(1);
    opacity: 0;
  }
  10% {
    opacity: 0.8;
    transform: translateY(90vh) rotate(36deg) scale(1.1);
  }
  50% {
    transform: translateY(50vh) rotate(180deg) scale(0.9);
  }
  90% {
    opacity: 0.8;
    transform: translateY(10vh) rotate(324deg) scale(1.05);
  }
  100% {
    transform: translateY(-10vh) rotate(360deg) scale(1);
    opacity: 0;
  }
}

@keyframes snowFall {
  0% {
    transform: translateY(-10vh) rotate(0deg) scale(1);
    opacity: 0;
  }
  10% {
    opacity: 0.7;
    transform: translateY(0vh) rotate(45deg) scale(1.1);
  }
  90% {
    opacity: 0.7;
    transform: translateY(90vh) rotate(315deg) scale(0.9);
  }
  100% {
    transform: translateY(100vh) rotate(360deg) scale(1);
    opacity: 0;
  }
}

@keyframes shapeFloat {
  0%, 100% {
    transform: translateY(0px) rotate(0deg) scale(1);
    opacity: 0.1;
  }
  25% {
    transform: translateY(-20px) rotate(90deg) scale(1.1);
    opacity: 0.15;
  }
  50% {
    transform: translateY(-10px) rotate(180deg) scale(0.9);
    opacity: 0.08;
  }
  75% {
    transform: translateY(-30px) rotate(270deg) scale(1.05);
    opacity: 0.12;
  }
}

/* Responsive Design for Request Services */
@media (max-width: 1024px) {
  .wizard-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .price-calculator {
    position: static;
    order: -1;
  }
}

@media (max-width: 768px) {
  .wizard-container {
    padding: 2rem;
    transform: none;
  }

  .wizard-layout {
    gap: 1.5rem;
  }

  .price-calculator {
    padding: 1.5rem;
  }

  .total-amount {
    font-size: 1.5rem;
  }
}

/* Comprehensive Responsive Design for All Devices */

/* Extra Small Devices (320px - 480px) */
@media (max-width: 480px) {
  body {
    font-size: 14px;
  }

  .container {
    padding: 0 15px;
  }

  /* Navigation */
  .glass-nav {
    padding: 0.75rem 1rem;
  }

  .nav-container {
    padding: 0.5rem 1rem;
  }

  .logo {
    font-size: 1.2rem;
  }

  .logo-icon {
    font-size: 1.5rem;
  }

  .nav-links {
    display: none;
  }

  .cta-nav-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  /* Hero Section */
  .hero-section {
    min-height: 70vh;
    padding: 2rem 0;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }

  .hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .primary-btn,
  .secondary-btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }

  .floating-cards {
    flex-direction: column;
    gap: 1rem;
  }

  .card-3d {
    padding: 1.5rem;
  }

  /* Section Headers */
  .section-header {
    margin-bottom: 3rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  /* Features Section */
  .features-section {
    padding: 4rem 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .feature-card h3 {
    font-size: 1.2rem;
  }

  /* Services Section */
  .services-section {
    padding: 4rem 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-card {
    padding: 2rem 1.5rem;
  }

  .service-header {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .service-header i {
    font-size: 2rem;
  }

  .service-header h3 {
    font-size: 1.2rem;
  }

  /* Testimonials */
  .testimonials-section {
    padding: 4rem 0;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .testimonial-author {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  /* Stats Section */
  .stats-section {
    padding: 3rem 0;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .stat-item {
    padding: 1.5rem;
    text-align: center;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  /* CTA Section */
  .cta-section {
    padding: 4rem 0;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .cta-content p {
    font-size: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .cta-main-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  /* Footer */
  .advanced-footer {
    padding: 3rem 0 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  /* Store Specific */
  .store-hero {
    min-height: 60vh;
  }

  .store-hero .hero-title {
    font-size: 2.2rem;
  }

  .store-hero .hero-description {
    font-size: 1rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .request-services-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .service-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .service-card h3 {
    font-size: 1.1rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .pricing-card {
    padding: 2rem 1.5rem;
  }

  .pricing-header .amount {
    font-size: 2.5rem;
  }

  .pricing-features li {
    font-size: 0.85rem;
  }

  .pricing-btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }

  /* Request Services */
  .request-hero {
    min-height: 50vh;
  }

  .wizard-section {
    padding: 3rem 0;
  }

  .wizard-container {
    padding: 2rem 1.5rem;
  }

  .price-calculator {
    padding: 1.5rem;
  }

  .service-options {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .service-option {
    padding: 1.5rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .wizard-navigation {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-btn {
    width: 100%;
    justify-content: center;
  }

  .modal-content {
    margin: 1rem;
    padding: 1.5rem;
  }

  .modal-footer {
    flex-direction: column;
  }

  .modal-btn {
    width: 100%;
  }
}

/* Small Devices (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }

  .hero-content {
    gap: 3rem;
  }

  .features-grid,
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }

  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }

  .pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .wizard-layout {
    grid-template-columns: 300px 1fr;
    gap: 2rem;
  }

  .service-options {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .form-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

/* Medium Devices (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }

  .hero-content {
    gap: 4rem;
  }

  .features-grid,
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }

  .testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  }

  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }

  .pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .wizard-layout {
    grid-template-columns: 320px 1fr;
    gap: 2.5rem;
  }

  .service-options {
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  }

  .form-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}

/* Large Devices (1025px - 1200px) */
@media (min-width: 1025px) and (max-width: 1200px) {
  .hero-title {
    font-size: 3.8rem;
  }

  .features-grid,
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  }

  .testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  }

  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  }

  .pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }

  .wizard-layout {
    grid-template-columns: 350px 1fr;
    gap: 3rem;
  }
}

/* Extra Large Devices (1201px+) */
@media (min-width: 1201px) {
  .hero-title {
    font-size: 4.2rem;
  }

  .container {
    max-width: 1400px;
  }

  .features-grid,
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  }

  .testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  }

  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  }

  .pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }

  .wizard-layout {
    grid-template-columns: 380px 1fr;
    gap: 3.5rem;
  }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .feature-icon,
  .service-icon {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Print Styles */
@media print {
  .glass-nav,
  .cta-nav-btn,
  .modal,
  .particle-container {
    display: none !important;
  }

  body {
    background: white !important;
    color: black !important;
  }

  .hero-section,
  .features-section,
  .services-section,
  .testimonials-section,
  .stats-section,
  .cta-section {
    page-break-inside: avoid;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  /* Already optimized for dark theme */
}

/* Orientation Changes */
@media (orientation: landscape) and (max-height: 500px) {
  .hero-section {
    min-height: 50vh;
  }

  .hero-title {
    font-size: 2.5rem;
  }
}

/* Touch Devices */
@media (hover: none) and (pointer: coarse) {
  .nav-link:hover,
  .feature-card:hover,
  .service-card:hover,
  .testimonial-card:hover,
  .pricing-card:hover {
    transform: none;
  }

  .primary-btn:hover,
  .secondary-btn:hover,
  .cta-main-btn:hover,
  .pricing-btn:hover {
    transform: none;
  }
}

/* Focus Styles for Accessibility */
@media (prefers-reduced-motion: no-preference) {
  .nav-link:focus,
  .primary-btn:focus,
  .secondary-btn:focus,
  .cta-main-btn:focus,
  .pricing-btn:focus {
    outline: 2px solid #87ceeb;
    outline-offset: 2px;
  }
}
