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

:root {
  --primary-black: #000000;
  --secondary-black: #111111;
  --dark-gray: #1a1a1a;
  --medium-gray: #333333;
  --light-gray: #666666;
  --lighter-gray: #999999;
  --white: #ffffff;
  --off-white: #fafafa;
  --border: #e5e5e5;
  --shadow: rgba(0, 0, 0, 0.05);
  --shadow-dark: rgba(0, 0, 0, 0.1);
  --gradient: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  
  /* Creative Color Palette */
  --accent-blue: #3b82f6;
  --accent-purple: #8b5cf6;
  --accent-teal: #06b6d4;
  --accent-orange: #f59e0b;
  --accent-green: #10b981;
  --accent-pink: #ec4899;
  
  /* Creative Gradients */
  --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --gradient-warm: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
  
  /* Navigation Specific Colors */
  --nav-bg: rgba(10, 10, 10, 0.95);
  --nav-border: rgba(255, 255, 255, 0.1);
  --nav-accent: #3b82f6;
  --nav-hover: #1d4ed8;
  --accent-blue: #00a8ff;
  --text-muted: rgba(255, 255, 255, 0.7);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: var(--primary-black);
  background: var(--white);
  overflow-x: hidden;
  font-weight: 400;
}

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

/* Navigation - Minimalistic & Clean */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: black;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--nav-border);
  z-index: 1000;
  transition: all 0.3s ease;
}

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

/* Logo - Clean and Simple */
.nav-logo {
  display: flex;
  align-items: center;
  font-size: 1.3rem;
  font-weight: bold;
  color: white;
  letter-spacing: -0.2px;
}

.nav-logo i {
  margin-right: 0.5rem;
  color: white;
  font-size: 1.2rem;
}

/* Menu - Minimalistic Links */
.nav-menu {
  display: flex;
  gap: 2rem;
}

.nav-menu a {
  text-decoration: none;
  color: white;
  font-weight: 400;
  font-size: 0.875rem;
  transition: color 0.2s ease;
  position: relative;
  padding: 0.5rem 0;
}

.nav-menu a:hover {
  color: var(--accent-blue);
}

/* Subtle hover indicator */
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-blue);
  transition: width 0.2s ease;
}

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

/* Mobile toggle - Hidden by default */
.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.25rem;
}

.nav-toggle span {
  width: 16px;
  height: 1.5px;
  background: white;
  margin: 1.5px 0;
  transition: all 0.2s ease;
}

.nav-toggle:hover span {
  background: white;
}

/* Hero Section - Creative & Engaging */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background: var(--dark-gray);
  overflow: hidden;
  padding-top: 80px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 60% 60%, rgba(236, 72, 153, 0.12) 0%, transparent 50%),
    linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
}

/* Darker theme adjustments */

/* Mobile Responsive */
@media (max-width: 768px) {
  .nav-container {
    padding: 0 1rem;
    height: 55px;
  }
  
  .nav-logo {
    font-size: 1.2rem;
  }
  
  .nav-logo i {
    font-size: 1.1rem;
    margin-right: 0.4rem;
  }
  
  .nav-menu {
    position: fixed;
    top: 55px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 55px);
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--nav-border);
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
    transition: right 0.3s ease;
    z-index: 1001;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-menu a {
    font-size: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-weight: 500;
  }
  
  .nav-menu a::after {
    display: none;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  /* Enhanced Hamburger animation */
  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  .nav-container {
    padding: 0 0.8rem;
    height: 50px;
  }
  
  .nav-logo {
    font-size: 1.1rem;
  }
  
  .nav-menu {
    top: 50px;
    padding: 1.5rem 1rem;
  }
  
  .nav-menu a {
    font-size: 0.95rem;
    padding: 0.8rem 0;
  }
}

/* Extra minimalistic touch - fade in on scroll */
@media (min-width: 769px) {
  .navbar.scrolled {
    background: rgba(5, 5, 5, 0.98);
    border-bottom-color: rgba(255, 255, 255, 0.05);
  }
}

@media (max-width: 768px) {
  .hero-graphic {
    width: 300px;
    height: 300px;
  }
  
  .qr-code {
    width: 120px;
    height: 120px;
  }
  
  .qr-code i {
    font-size: 3rem;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
    padding: 0 1.5rem;
  }
  
  .hero-features {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .hero-graphic {
    width: 280px;
    height: 280px;
  }
  
  .qr-code {
    width: 120px;
    height: 120px;
  }
  
  .qr-code i {
    font-size: 3rem;
  }
}

@media (max-width: 640px) {
  .hero-content {
    padding: 0 1rem;
    gap: 2rem;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1rem !important;
  }
  
  .hero-features {
    gap: 0.6rem;
  }
  
  .feature-tag {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
  
  .hero-graphic {
    width: 240px;
    height: 240px;
  }
  
  .qr-code {
    width: 100px;
    height: 100px;
  }
  
  .qr-code i {
    font-size: 2.5rem;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(59, 130, 246, 0.1);
  color: var(--accent-blue);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 2rem;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.hero-badge i {
  color: #fbbf24;
}

.hero-text h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--white);
  letter-spacing: -1px;
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

.hero-text p {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  color: var(--light-gray);
  margin-bottom: 3rem;
  line-height: 1.6;
  font-weight: 400;
  max-width: 500px;
}

.hero-description {
  font-size: clamp(1.1rem, 2.5vw, 1.2rem) !important;
  color: var(--lighter-gray) !important;
  margin-bottom: 2rem !important;
  max-width: 600px !important;
}

.hero-features {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.feature-tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(16, 185, 129, 0.1);
  color: var(--accent-green);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.feature-tag i {
  color: var(--accent-green);
  font-size: 0.9rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.stat {
  text-align: left;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.stat:hover::before {
  transform: scaleX(1);
}

.stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-blue);
}

.stat-number {
  display: block;
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--primary-black);
  margin-bottom: 0.3rem;
  letter-spacing: -0.5px;
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--light-gray);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  font-size: 0.9rem;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.2px;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-black);
  border-color: var(--accent-blue);
}

.btn-secondary:hover {
  background: var(--accent-blue);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

/* Hero Visual - Creative & Animated */
.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-graphic {
  position: relative;
  width: 400px;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.qr-code-animation {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.qr-code {
  width: 150px;
  height: 150px;
  background: var(--gradient-primary);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 20px 60px rgba(59, 130, 246, 0.3);
  animation: pulse 3s ease-in-out infinite;
}

.qr-code i {
  font-size: 4rem;
  color: white;
}

.scan-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00f2fe, transparent);
  animation: scan 2s linear infinite;
}

@keyframes scan {
  0% { transform: translateY(0); }
  100% { transform: translateY(150px); }
}

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

/* Removed data flow and success indicators for cleaner design */

/* Sample QR Code Section - Interactive Demo */
.sample-qr {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.sample-qr::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: 
    radial-gradient(circle at 30% 20%, rgba(16, 185, 129, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.sample-qr-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.sample-qr-text h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 1.5rem;
  color: var(--primary-black);
  font-weight: 300;
  letter-spacing: -0.5px;
}

.sample-qr-text p {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  color: var(--light-gray);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  font-weight: 400;
}

.sample-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sample-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(16, 185, 129, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(16, 185, 129, 0.1);
  transition: all 0.3s ease;
}

.sample-feature:hover {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.2);
  transform: translateX(5px);
}

.sample-feature i {
  color: var(--accent-green);
  font-size: 1.2rem;
  width: 20px;
}

.sample-feature span {
  color: var(--primary-black);
  font-weight: 500;
  font-size: 0.95rem;
}

.sample-qr-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.qr-code-container {
  position: relative;
  display: inline-block;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
}

.qr-code-container:hover {
  transform: scale(1.05);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
}

.sample-qr-image {
  width: 250px;
  height: 250px;
  display: block;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.qr-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  border-radius: 20px;
}

.qr-code-container:hover .qr-overlay {
  opacity: 1;
}

.scan-instruction {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  text-align: center;
}

.scan-instruction i {
  font-size: 2rem;
  color: var(--accent-green);
}

.scan-instruction span {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.qr-description {
  text-align: center;
  max-width: 300px;
}

.qr-description p {
  margin: 0 0 0.5rem 0;
  color: var(--primary-black);
  font-size: 1.1rem;
  font-weight: 600;
}

.qr-description small {
  color: var(--light-gray);
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Mobile Responsive for Sample QR Section */
@media (max-width: 768px) {
  .sample-qr-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .sample-features {
    align-items: center;
  }
  
  .sample-feature {
    max-width: 300px;
    margin: 0 auto;
  }
  
  .sample-qr-image {
    width: 200px;
    height: 200px;
  }
  
  .qr-description {
    max-width: 250px;
  }
}

@media (max-width: 480px) {
  .sample-qr {
    padding: 3rem 0;
  }
  
  .sample-qr-content {
    gap: 2rem;
  }
  
  .sample-feature {
    padding: 0.8rem 1rem;
    max-width: 280px;
  }
  
  .sample-feature span {
    font-size: 0.9rem;
  }
  
  .sample-qr-image {
    width: 180px;
    height: 180px;
  }
  
  .scan-instruction i {
    font-size: 1.5rem;
  }
  
  .scan-instruction span {
    font-size: 0.9rem;
  }
}

/* Features Section - Creative & Engaging */
.features {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: 
    radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(139, 92, 246, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.features h2 {
  text-align: center;
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 4rem;
  color: var(--primary-black);
  font-weight: 300;
  letter-spacing: -0.5px;
}

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

.feature-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 16px;
  text-align: left;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--accent-blue);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 1.5rem 0;
  color: var(--white);
  font-size: 1.4rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.feature-card:hover .feature-icon::before {
  left: 100%;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--primary-black);
  font-weight: 600;
  letter-spacing: -0.2px;
}

.feature-card p {
  color: var(--light-gray);
  line-height: 1.7;
  font-size: 0.95rem;
  font-weight: 400;
}

/* Add creative color variations for different feature cards */
.feature-card:nth-child(1) .feature-icon {
  background: var(--gradient-primary);
}

.feature-card:nth-child(2) .feature-icon {
  background: var(--gradient-secondary);
}

.feature-card:nth-child(3) .feature-icon {
  background: var(--gradient-accent);
}

.feature-card:nth-child(4) .feature-icon {
  background: var(--gradient-warm);
}

.feature-card:nth-child(5) .feature-icon {
  background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-teal) 100%);
}

.feature-card:nth-child(6) .feature-icon {
  background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-pink) 100%);
}

/* Packages Section - Creative & Professional */
.packages {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.packages::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: 
    radial-gradient(circle at 80% 10%, rgba(6, 182, 212, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 20% 90%, rgba(245, 158, 11, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.packages h2 {
  text-align: center;
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 1.5rem;
  color: var(--primary-black);
  font-weight: 300;
  letter-spacing: -0.5px;
}

.section-subtitle {
  text-align: center;
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  color: var(--light-gray);
  margin-bottom: 4rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.package-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: left;
  position: relative;
  transition: all 0.4s ease;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.package-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.02) 0%, rgba(139, 92, 246, 0.02) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.package-card:hover::before {
  opacity: 1;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border-color: var(--accent-blue);
}

.package-card.featured {
  border-color: var(--accent-blue);
  background: linear-gradient(135deg, var(--white) 0%, rgba(59, 130, 246, 0.05) 100%);
  position: relative;
}

.package-card.featured::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 2rem;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 0.6rem 1.2rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.package-header h3 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  color: var(--primary-black);
  font-weight: 600;
  letter-spacing: -0.2px;
}

.package-price {
  margin-bottom: 1rem;
}

.currency {
  font-size: 1.1rem;
  color: var(--light-gray);
  font-weight: 400;
}

.amount {
  font-size: 3rem;
  font-weight: 300;
  color: var(--primary-black);
  letter-spacing: -1px;
}

.period {
  font-size: 1rem;
  color: var(--light-gray);
  margin-left: 0.5rem;
  font-weight: 400;
}

.maintenance-price {
  color: var(--light-gray);
  font-size: 0.9rem;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.package-features {
  text-align: left;
  margin-bottom: 2.5rem;
}

.feature {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.5rem 0;
}

.feature i {
  color: var(--accent-green);
  margin-right: 1rem;
  width: 20px;
  font-size: 1rem;
}

.package-btn {
  display: inline-block;
  width: 100%;
  padding: 1rem 2rem;
  background: var(--gradient-primary);
  color: var(--white);
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  letter-spacing: 0.2px;
  position: relative;
  overflow: hidden;
}

.package-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;
}

.package-btn:hover::before {
  left: 100%;
}

.package-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4);
}

/* Add-ons Section - Clean Grid */
.addons {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--off-white);
}

.addons h2 {
  text-align: center;
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 1.5rem;
  color: var(--primary-black);
  font-weight: 300;
  letter-spacing: -0.5px;
}

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

.addon-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 8px;
  text-align: left;
  box-shadow: none;
  transition: all 0.2s ease;
  border: 1px solid var(--border);
  position: relative;
}

.addon-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--shadow);
  border-color: var(--accent-blue);
}

.addon-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 1.5rem 0;
  color: var(--white);
  font-size: 1.2rem;
}

.addon-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: var(--primary-black);
  font-weight: 500;
  letter-spacing: -0.2px;
}

.addon-price {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-black);
  margin-bottom: 1rem;
}

.addon-card p {
  color: var(--light-gray);
  line-height: 1.6;
  font-size: 0.9rem;
  font-weight: 400;
}

/* Testimonials Section - Clean Cards */
.testimonials {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--white);
}

.testimonials h2 {
  text-align: center;
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 4rem;
  color: var(--primary-black);
  font-weight: 300;
  letter-spacing: -0.5px;
}

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

.testimonial-card {
  background: var(--off-white);
  padding: 2.5rem 2rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: all 0.2s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--shadow);
  border-color: var(--accent-blue);
}

.stars {
  color: #fbbf24;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.testimonial-card p {
  font-style: normal;
  margin-bottom: 1.5rem;
  color: var(--medium-gray);
  line-height: 1.6;
  font-size: 1rem;
  font-weight: 400;
}

.testimonial-author strong {
  color: var(--primary-black);
  display: block;
  margin-bottom: 0.2rem;
  font-weight: 500;
}

.testimonial-author span {
  color: var(--light-gray);
  font-size: 0.85rem;
  font-weight: 400;
}

/* Contact Section - Clean Design */
.contact {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--off-white);
  color: var(--primary-black);
}

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

.contact-info h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 1.5rem;
  color: var(--primary-black);
  font-weight: 300;
  letter-spacing: -0.5px;
}

.contact-info p {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  margin-bottom: 3rem;
  color: var(--light-gray);
  line-height: 1.6;
  font-weight: 400;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}

.contact-method:hover {
  border-color: var(--accent-blue);
  transform: translateX(5px);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
}

.contact-details h4 {
  margin-bottom: 0.3rem;
  color: var(--primary-black);
  font-weight: 500;
}

.contact-details p {
  margin: 0;
  color: var(--light-gray);
  font-size: 0.9rem;
  font-weight: 400;
}

/* Contact Form - Minimalistic */
.contact-form {
  background: var(--white);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--white);
  color: var(--primary-black);
  font-size: 0.9rem;
  transition: all 0.2s ease;
  font-family: inherit;
  font-weight: 400;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--lighter-gray);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group select option {
  background: var(--white);
  color: var(--primary-black);
}

.full-width {
  width: 100%;
  justify-content: center;
}

/* Form Submission Effects */
.form-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  animation: fadeIn 0.3s ease;
}

.form-loading {
  text-align: center;
  color: var(--primary-black);
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border);
  border-top: 3px solid var(--accent-blue);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1rem;
}

.form-loading p {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--light-gray);
}

/* Form Success Animation */
.form-success {
  animation: formSuccess 0.6s ease;
}

.form-success::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
  z-index: 1;
}

.form-success .form-group input,
.form-success .form-group select,
.form-success .form-group textarea {
  border-color: var(--accent-green);
  background: rgba(16, 185, 129, 0.05);
}

/* Enhanced Button States */
.btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: scale(0.95);
}

.btn:disabled:hover {
  transform: scale(0.95);
  box-shadow: none;
}

/* Form Field Focus States */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
  transform: translateY(-1px);
}

/* Form Validation States */
.form-group input:invalid:not(:placeholder-shown),
.form-group select:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-group input:valid:not(:placeholder-shown),
.form-group select:valid:not(:placeholder-shown),
.form-group textarea:valid:not(:placeholder-shown) {
  border-color: var(--accent-green);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes formSuccess {
  0% { 
    transform: scale(1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }
  50% { 
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.2);
  }
  100% { 
    transform: scale(1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }
}

/* Footer - Dark and Modern */
.footer {
  background: #000000;
  color: var(--white);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-brand p {
  margin: 1.5rem 0;
  opacity: 0.6;
  line-height: 1.6;
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
}

.footer-logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.footer-logo i {
  margin-right: 0.5rem;
  color: var(--white);
  font-size: 1.3rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
  background: var(--accent-blue);
  color: var(--white);
  border-color: var(--accent-blue);
  transform: translateY(-2px);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.footer-column h4 {
  margin-bottom: 1.5rem;
  color: var(--white);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  margin-bottom: 0.8rem;
  transition: color 0.2s ease;
  font-size: 0.9rem;
  font-weight: 400;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  text-align: center;
  opacity: 0.5;
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    gap: 4rem;
  }
  
  .phone-mockup {
    width: 260px;
    height: 520px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
  
  .nav-container {
    padding: 0 1.5rem;
    height: 60px;
  }
  
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    justify-content: flex-start;
    align-items: center;
    gap: 1.5rem;
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .nav-links a {
    font-size: 1.1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border);
    width: 100%;
    text-align: center;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
    padding: 0 1rem;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
  
  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .phone-mockup {
    width: 240px;
    height: 480px;
    padding: 18px;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    gap: 2rem;
  }
  
  .addons-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .features,
  .packages,
  .addons,
  .testimonials,
  .contact {
    padding: 4rem 0;
  }
  
  .hero {
    padding-top: 60px;
  }
  
  .hero-text h1 {
    font-size: 2.8rem;
  }
  
  .hero-description {
    font-size: 1.1rem !important;
  }
  
  .hero-features {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
  }
  
  .feature-tag {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
  }
}

/* Tablet breakpoint */
@media (max-width: 1024px) and (min-width: 769px) {
  .hero-content {
    gap: 4rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: none;
  }
  
  .addons-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .contact-content {
    gap: 3rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  
  .nav-container {
    padding: 0 1rem;
  }
  
  .hero-content {
    padding: 0 1rem;
    gap: 2rem;
  }
  
  .hero-text h1 {
    font-size: 2.2rem;
  }
  
  .hero-text p {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 0.8rem;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
    padding: 0.8rem 1.5rem;
  }
  
  .phone-mockup {
    width: 200px;
    height: 400px;
    padding: 15px;
  }
  
  .feature-card,
  .package-card,
  .addon-card,
  .testimonial-card {
    padding: 2rem 1.5rem;
  }
  
  .contact-form {
    padding: 2rem 1.5rem;
  }
  
  .form {
    gap: 1.5rem;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.8rem;
  }
  
  .hero-graphic {
    width: 200px;
    height: 200px;
  }
  
  .qr-code {
    width: 80px;
    height: 80px;
  }
  
  .qr-code i {
    font-size: 2rem;
  }
  
  .hero-features {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  
  .feature-tag {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 360px) {
  .hero-text h1 {
    font-size: 2rem;
  }
  
  .phone-mockup {
    width: 180px;
    height: 360px;
    padding: 12px;
  }
  
  .feature-card,
  .package-card,
  .addon-card,
  .testimonial-card {
    padding: 1.5rem 1rem;
  }
  
  .hero-graphic {
    width: 160px;
    height: 160px;
  }
  
  .qr-code {
    width: 60px;
    height: 60px;
  }
  
  .qr-code i {
    font-size: 1.5rem;
  }
  
  .container {
    padding: 0 0.8rem;
  }
  
  .nav-container {
    padding: 0 0.8rem;
  }
}

/* Landscape orientation support */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: 100vh;
    padding-top: 60px;
  }
  
  .hero-content {
    gap: 2rem;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .hero-description {
    margin-bottom: 1.5rem !important;
  }
  
  .hero-features {
    margin-bottom: 1.5rem;
  }
  
  .hero-stats {
    margin-bottom: 1.5rem;
  }
  
  .features,
  .packages,
  .addons,
  .testimonials,
  .contact {
    padding: 3rem 0;
  }
}

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

/* Loading Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-card,
.package-card,
.addon-card,
.testimonial-card {
  animation: fadeInUp 0.4s ease-out;
}

/* Utilities */
.text-center {
  text-align: center;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

/* Enhanced hover effects */
.btn,
.feature-card,
.package-card,
.addon-card,
.testimonial-card,
.contact-method {
  transition: all 0.2s ease;
}

/* Focus states for accessibility */
.btn:focus,
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 2px solid var(--accent-blue);
  outline-offset: 2px;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  :root {
    --white: #000000;
    --off-white: #111111;
    --primary-black: #ffffff;
    --secondary-black: #f0f0f0;
    --dark-gray: #e0e0e0;
    --medium-gray: #cccccc;
    --light-gray: #999999;
    --lighter-gray: #666666;
    --border: #333333;
    --shadow: rgba(255, 255, 255, 0.05);
    --shadow-dark: rgba(255, 255, 255, 0.1);
  }
}

/* Additional responsive improvements */
@media (max-width: 640px) {
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .stat {
    padding: 1rem;
  }
  
  .stat-number {
    font-size: 1.6rem;
  }
  
  .stat-label {
    font-size: 0.75rem;
  }
  
  .hero-badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
  
  .hero-badge i {
    font-size: 0.8rem;
  }
  
  .section-subtitle {
    font-size: 0.95rem;
  }
}

@media (max-width: 400px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }
  
  .hero-buttons {
    gap: 0.8rem;
  }
  
  .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.85rem;
  }
  
  .phone-mockup {
    transform: rotate(-2deg);
  }
}

/* Enhanced mobile navigation */
@media (max-width: 768px) {
  .nav-toggle {
    position: relative;
    z-index: 1002;
  }
  
  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  .nav-links {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
  }
  
  .nav-links a {
    position: relative;
    overflow: hidden;
    background: transparent;
    border-radius: 8px;
    margin: 0.5rem 0;
  }
  
  .nav-links a::before {
    background: var(--gradient-accent);
    border-radius: 8px;
  }
  
  .nav-links a:hover {
    background: var(--gradient-accent);
    color: var(--white);
    transform: translateX(5px);
  }
  
  .nav-links a::after {
    display: none;
  }
  
  /* Prevent body scroll when mobile menu is open */
  body.menu-open {
    overflow: hidden;
  }
  
  /* Enhanced mobile menu animations */
  .nav-menu {
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .nav-menu.active {
    transform: translateX(0);
  }
}

/* Improved form responsiveness */
@media (max-width: 480px) {
  .contact-method {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .contact-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px; /* Prevents zoom on iOS */
  }
  
  .contact-methods {
    gap: 1rem;
  }
  
  .contact-method {
    padding: 1rem;
  }
  
  .contact-details h4 {
    font-size: 1rem;
  }
  
  .contact-details p {
    font-size: 0.85rem;
  }
}

/* Enhanced mobile form experience */
@media (max-width: 768px) {
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 1rem;
    font-size: 16px;
  }
  
  .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
  
  .contact-form {
    padding: 2rem 1.5rem;
  }
  
  .form {
    gap: 1.5rem;
  }
}

/* Enhanced animations for mobile */
@media (max-width: 768px) {
  .feature-card,
  .package-card,
  .addon-card,
  .testimonial-card {
    animation: fadeInUp 0.3s ease-out;
  }
  
  .hero-text h1,
  .hero-text p {
    animation: fadeInUp 0.5s ease-out;
  }
  
  .hero-stats {
    animation: fadeInUp 0.7s ease-out;
  }
  
  .hero-buttons {
    animation: fadeInUp 0.9s ease-out;
  }
}

/* Touch-friendly improvements for mobile */
@media (max-width: 768px) {
  .btn {
    min-height: 44px; /* Minimum touch target size */
  }
  
  .nav-menu a {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .nav-toggle {
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .feature-card,
  .package-card,
  .addon-card,
  .testimonial-card {
    cursor: pointer;
  }
  
  .contact-method {
    cursor: pointer;
  }
}

/* High DPI display support */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .hero-background {
    background-size: cover;
  }
  
  .feature-icon,
  .addon-icon,
  .contact-icon {
    background-size: cover;
  }
}

/* Print styles */
@media print {
  .navbar,
  .nav-toggle,
  .hero-buttons,
  .contact-form,
  .footer {
    display: none;
  }
  
  .hero,
  .features,
  .packages,
  .addons,
  .testimonials,
  .contact {
    padding: 1rem 0;
    page-break-inside: avoid;
  }
  
  .hero {
    min-height: auto;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .features-grid,
  .packages-grid,
  .addons-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}