﻿/*
  Nueva Era 2253 — Styles
  Theme: Dark with bold yellow accents
*/

:root {
  --bg: #0a0a0a;
  --bg-2: #131313;
  --text: #eaeaea;
  --muted: #a1a1a1;
  --primary-blue: #3b82f6;
  --primary-blue-700: #2563eb;
  --primary-blue-glow: rgba(59, 130, 246, 0.4);
  --secondary-purple: #8b5cf6;
  --secondary-purple-700: #7c3aed;
  --secondary-purple-glow: rgba(139, 92, 246, 0.4);
  --accent-cyan: #06b6d4;
  --accent-cyan-700: #0891b2;
  --accent-cyan-glow: rgba(6, 182, 212, 0.4);
  --nyc-white: #ffffff;
  --nyc-white-glow: rgba(255, 255, 255, 0.3);
  --card: #191919;
  --border: #262626;
  --shadow: 0 10px 30px rgba(0,0,0,.45);
  --shadow-glow: 0 20px 60px rgba(16, 185, 129, 0.2);
  --radius: 14px;
  --gradient-1: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
  --gradient-2: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
  --gradient-3: linear-gradient(135deg, #3b82f6 0%, #ffffff 50%, #06b6d4 100%);
  --gradient-bg: radial-gradient(ellipse at top, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
}

* { box-sizing: border-box; }
html, body { 
  height: 100%; 
  margin: 0;
  padding: 0;
  transform: none !important;
  position: static !important;
}
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  background-image: var(--gradient-bg);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Smooth animations */
* {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* FLOATING DISCOUNT BANNER */
.floating-discount-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
  color: #ffffff;
  padding: 8px 20px;
  z-index: 1001;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 2px 10px rgba(30, 64, 175, 0.3);
  border-bottom: 1px solid #3b82f6;
  opacity: 0.95;
}

.discount-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 1200px;
  margin: 0 auto;
}

.discount-icon {
  font-size: 16px;
}

.discount-text {
  flex: 1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.discount-close {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  padding: 0 8px;
  transition: all 0.3s ease;
  opacity: 0.7;
}

.discount-close:hover {
  transform: scale(1.1);
  opacity: 1;
}

/* Removed annoying animations for subtle banner */

/* FEATURES BANNER */
.features-banner {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  border-top: 1px solid #3b82f6;
  border-bottom: 1px solid #3b82f6;
  padding: 15px 0;
  overflow: hidden;
  position: relative;
}

.features-container {
  display: flex;
  animation: slideFeatures 15s linear infinite;
  gap: 60px;
  align-items: center;
  white-space: nowrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  color: #ffffff;
  font-weight: 500;
  font-size: 14px;
}

.feature-icon {
  font-size: 20px;
  filter: drop-shadow(0 0 6px rgba(59, 130, 246, 0.4));
}

.feature-text {
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

@keyframes slideFeatures {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* LIVE REVIEWS FEED */
.reviews-feed {
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
  border-top: 1px solid #3b82f6;
  border-bottom: 1px solid #3b82f6;
  padding: 25px 0;
  overflow: hidden;
  position: relative;
}

.reviews-container {
  display: flex;
  animation: slideReviews 18s linear infinite;
  gap: 30px;
  align-items: center;
  white-space: nowrap;
}

.review-item {
  background: rgba(26, 26, 42, 0.8);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 12px;
  padding: 20px;
  min-width: 280px;
  flex-shrink: 0;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.review-stars {
  color: #fbbf24;
  font-size: 18px;
  margin-bottom: 10px;
  text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

.review-text {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 12px;
}

.review-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #a1a1a1;
}

.review-date {
  font-weight: 500;
}

.review-verified {
  color: #3b82f6;
  font-weight: 600;
}

@keyframes slideReviews {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* SOCIAL PROOF STYLING */
.hero-social-proof {
  color: #34d399;
  font-size: 18px;
  font-weight: 600;
  margin: 15px 0 0 0;
  text-shadow: 0 0 10px rgba(52, 211, 153, 0.5);
  animation: fadeInUp 1s ease-out 1.5s forwards;
  opacity: 0;
}

/* CLEAN REFERRAL SECTION - NO TRIANGLES */
.referral-content {
  position: relative;
  background: rgba(0, 0, 0, 0.9);
  border-radius: 20px;
  padding: 40px;
  margin: 30px auto;
  max-width: 600px;
  border: 2px solid rgba(16, 185, 129, 0.3);
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.5),
    0 0 20px rgba(16, 185, 129, 0.2);
}


.referral-benefit {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.referral-icon {
  font-size: 3rem;
  flex-shrink: 0;
  animation: gift-bounce 2s ease-in-out infinite;
  filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.5));
}

@keyframes gift-bounce {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-5px) rotate(-5deg);
  }
  50% {
    transform: translateY(-10px) rotate(0deg);
  }
  75% {
    transform: translateY(-5px) rotate(5deg);
  }
}

.referral-text h3 {
  color: #10b981;
  font-size: 1.8rem;
  font-weight: 900;
  margin: 0 0 10px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.referral-text p {
  color: #ffffff;
  font-size: 1.1rem;
  margin: 0 0 20px 0;
  line-height: 1.5;
}

.referral-steps {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.step {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #ffffff;
  font-size: 1rem;
}

.step-number {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #000000;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* SERVICE REQUIREMENTS SECTION - BACKGROUND IMAGE */
#requirements {
  background: 
    linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.9) 100%),
    url('../media/service requirements/service requirements picture.jpg') center/cover;
  background-attachment: fixed;
  position: relative;
}

#requirements::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

#requirements .container {
  position: relative;
  z-index: 2;
}

/* CLEAN SERVICE REQUIREMENTS CARDS */
.requirements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.requirement-card {
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
}

.requirement-card:hover {
  transform: translateY(-5px);
  border-color: #10b981;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
}

.requirement-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: block;
}

.requirement-card h3 {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 15px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.requirement-card p {
  color: #cccccc;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

/* Page Transition Effects REMOVED */

/* Sexy Hover Effects */
.nav-link {
  position: relative;
  overflow: hidden;
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.3), transparent);
  transition: left 0.5s ease;
}

.nav-link:hover::before {
  left: 100%;
}

.nav-link:hover {
  color: #10b981;
  text-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
  transform: translateY(-2px);
}

/* Dropdown Navigation */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropdown:hover .dropdown-content {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  min-width: 180px;
  opacity: 0;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.nav-dropdown:hover .dropdown-content {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.dropdown-content a {
  color: #ffffff;
  padding: 12px 20px;
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.dropdown-content a:last-child {
  border-bottom: none;
}

.dropdown-content a:hover {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  transform: none;
}

.dropdown-content a:hover::before {
  content: '';
  margin-right: 0;
}

/* Subscribe Button Styling */
.subscribe-btn {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
  color: #000000 !important;
  padding: 12px 24px !important;
  border: none !important;
  border-radius: 25px !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3) !important;
  text-decoration: none !important;
  display: inline-block !important;
  margin-left: 15px !important;
  min-width: 180px !important;
  text-align: center !important;
}

.subscribe-btn:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5) !important;
  color: #000000 !important;
  text-decoration: none !important;
  background: linear-gradient(135deg, #059669 0%, #10b981 100%) !important;
}

/* Mobile Subscribe Button */
@media (max-width: 768px) {
  .subscribe-btn {
    margin-left: 0 !important;
    margin-top: 10px !important;
    width: 100% !important;
    text-align: center !important;
  }
}

/* MEMBERSHIP SECTION - BACKGROUND IMAGE */
#memberships {
  background: 
    linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.9) 100%),
    url('../media/membership/membership tiers picture.jpg') center/cover;
  background-attachment: fixed;
  position: relative;
}

#memberships::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

#memberships .container {
  position: relative;
  z-index: 2;
}

/* Preview Cards */
.preview-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.preview-card {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  padding: 40px;
  border-radius: 15px;
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.preview-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.preview-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: #10b981;
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.3);
}

.preview-card:hover::before {
  opacity: 1;
}

.preview-card h3 {
  font-family: 'Anton', Arial, sans-serif;
  font-size: 1.5rem;
  color: #10b981;
  margin: 0 0 15px 0;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}

.preview-card p {
  color: #cccccc;
  margin: 0 0 25px 0;
  font-size: 1.1rem;
  position: relative;
  z-index: 2;
}

.preview-card .btn {
  position: relative;
  z-index: 2;
}

/* Service Cards with Sexy Animations */
.service-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(42, 42, 42, 0.8) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #000000;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 10;
  animation: pulse 2s infinite;
}

.service-badge.popular {
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
  color: #ffffff;
  animation: glow-red 2s ease-in-out infinite alternate;
}

.service-badge.premium {
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
  color: #ffffff;
  animation: glow-purple 2s ease-in-out infinite alternate;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes glow-red {
  from { box-shadow: 0 0 10px rgba(220, 38, 38, 0.5); }
  to { box-shadow: 0 0 20px rgba(220, 38, 38, 0.8); }
}

@keyframes glow-purple {
  from { box-shadow: 0 0 10px rgba(124, 58, 237, 0.5); }
  to { box-shadow: 0 0 20px rgba(124, 58, 237, 0.8); }
}

/* Express Clean - Cool Blue Gradient */
.service-card:not(.popular):not(.premium) {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(26, 26, 26, 0.9) 100%);
  border: 2px solid rgba(59, 130, 246, 0.4);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

.service-card:not(.popular):not(.premium) h3 {
  color: #3b82f6;
  text-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

/* Street Shine - Popular Badass */
.service-card.popular {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(26, 26, 26, 0.8) 50%, rgba(34, 197, 94, 0.1) 100%);
  border: 2px solid #22c55e;
  box-shadow: 0 0 30px rgba(34, 197, 94, 0.3);
}

.service-card.popular h3 {
  color: #22c55e;
  text-shadow: 0 0 15px rgba(34, 197, 94, 0.6);
}

/* Designer Gloss - Premium VIP */
.service-card.premium {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.3) 0%, rgba(26, 26, 26, 0.7) 30%, rgba(236, 72, 153, 0.2) 70%, rgba(236, 72, 153, 0.4) 100%);
  border: 2px solid #ec4899;
  box-shadow: 0 0 40px rgba(236, 72, 153, 0.4);
  position: relative;
}

.service-card.premium h3 {
  color: #ec4899;
  text-shadow: 0 0 20px rgba(236, 72, 153, 0.8);
}

.service-card.premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 30%, rgba(124, 58, 237, 0.1) 50%, transparent 70%);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

.service-card:not(.popular):not(.premium):hover {
  border-color: #3b82f6;
  box-shadow: 0 25px 50px rgba(59, 130, 246, 0.4);
  transform: translateY(-15px) rotateX(5deg);
}

.service-card.popular:hover {
  border-color: #22c55e;
  box-shadow: 0 25px 50px rgba(34, 197, 94, 0.4);
  transform: translateY(-15px) rotateY(5deg);
}

.service-card.premium:hover {
  border-color: #ec4899;
  box-shadow: 0 25px 50px rgba(236, 72, 153, 0.4);
  transform: translateY(-15px) rotateX(5deg);
}

.service-price {
  font-size: 1.3rem;
  color: #ffffff;
  margin: 0 0 20px 0;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
  position: relative;
  z-index: 2;
}

.service-features li {
  color: #cccccc;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  padding-left: 25px;
  transition: all 0.3s ease;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
  font-size: 1.1rem;
}

.service-features li:last-child {
  border-bottom: none;
}

.service-features li:hover {
  color: #10b981;
  transform: translateX(5px);
}

/* Page Transitions REMOVED */

/* MOBILE OPTIMIZATIONS - COMPREHENSIVE */
@media (max-width: 768px) {
  /* Mobile discount banner */
  .floating-discount-banner {
    font-size: 12px;
    padding: 6px 10px;
  }
  
  .discount-content {
    flex-direction: row;
    gap: 5px;
  }
  
  .discount-text {
    font-size: 12px;
    text-align: center;
  }
  
  .discount-close {
    font-size: 16px;
    padding: 2px;
  }
  
  /* Mobile features banner */
  .features-banner {
    padding: 15px 0;
  }
  
  .features-container {
    gap: 40px;
    animation-duration: 12s;
  }
  
  .feature-item {
    font-size: 14px;
    gap: 8px;
  }
  
  .feature-icon {
    font-size: 20px;
  }
  
  /* Mobile reviews feed */
  .reviews-feed {
    padding: 20px 0;
  }
  
  .reviews-container {
    gap: 20px;
    animation-duration: 15s;
  }
  
  .review-item {
    min-width: 250px;
    padding: 15px;
  }
  
  .review-text {
    font-size: 13px;
  }
  
  .review-meta {
    font-size: 11px;
  }
  /* Background images - disable fixed attachment on mobile */
  #requirements,
  #memberships {
    background-attachment: scroll;
  }
  
  /* Typography optimizations */
  .section-title {
    font-size: clamp(24px, 6vw, 32px);
    line-height: 1.2;
    margin-bottom: 20px;
  }
  
  .section-kicker {
    font-size: clamp(14px, 4vw, 18px);
    line-height: 1.4;
    margin-bottom: 20px;
  }
  
  /* Service cards mobile optimization */
  .service-card {
    padding: 20px;
    margin-bottom: 20px;
  }
  
  .service-card h3 {
    font-size: 1.3rem;
  }
  
  .service-features li {
    font-size: 0.9rem;
    padding: 6px 0;
  }
  
  /* Requirements grid mobile */
  .requirements-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 20px 0;
  }
  
  .requirement-card {
    padding: 20px;
  }
  
  .requirement-card h3 {
    font-size: 1.1rem;
  }
  
  .requirement-card p {
    font-size: 0.85rem;
  }
  
  /* Preview cards mobile */
  .preview-cards {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }

  .preview-card {
    padding: 25px;
    margin-bottom: 15px;
  }
  
  .preview-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }
  
  .preview-card .service-price {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }
  
  .preview-card .service-features {
    margin-bottom: 20px;
  }
  
  .preview-card .service-features li {
    font-size: 0.9rem;
    padding: 4px 0;
  }
  
  .preview-card .btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 16px;
    min-height: 48px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }
  
  /* Mobile service badges */
  .service-badge {
    font-size: 0.8rem;
    padding: 6px 12px;
    margin-bottom: 15px;
  }
  
  /* Mobile hero optimizations */
  .hero {
    padding: 60px 0 80px;
  }
  
  .hero-title {
    font-size: clamp(28px, 8vw, 48px);
    line-height: 1.1;
    margin-bottom: 15px;
  }
  
  .hero-subtitle {
    font-size: clamp(16px, 4vw, 20px);
    line-height: 1.3;
    margin-bottom: 25px;
  }
  
  /* Mobile section spacing */
  .section {
    padding: 50px 0;
  }
  
  /* Mobile container padding */
  .container {
    padding: 0 20px;
  }
  
  /* FAQ mobile optimization */
  .faq-item {
    padding: 20px;
    margin-bottom: 15px;
  }
  
  .faq-item summary {
    font-size: 1rem;
  }
  
  .faq-item p {
    font-size: 0.9rem;
    margin: 10px 0 0 15px;
  }
  
  /* Referral section mobile */
  .referral-content {
    padding: 30px;
    margin: 20px auto;
  }
  
  .referral-text h3 {
    font-size: 1.5rem;
  }
  
  .referral-text p {
    font-size: 1rem;
  }
  
  /* Step numbers mobile */
  .step-number {
    width: 25px;
    height: 25px;
    font-size: 1rem;
  }
  
  .step {
    font-size: 0.9rem;
  }

  .service-badge {
    font-size: 0.7rem;
    padding: 6px 12px;
  }

  .service-features li {
    font-size: 0.9rem;
  }

  /* Mobile Navigation */
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.98);
    backdrop-filter: blur(20px);
    border: 1px solid var(--nyc-gold);
    border-radius: 0 0 12px 12px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 1000;
  }

  .nav.open {
    display: block;
  }

  .nav-link {
    display: block;
    padding: 15px 20px;
    margin: 6px 0;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 18px;
    font-weight: 600;
    border-bottom: none;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.2), transparent);
    transition: left 0.5s ease;
  }

  .nav-link:hover::before {
    left: 100%;
  }

  .nav-link:hover,
  .nav-link:focus {
    background: var(--nyc-gold);
    color: #000;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
  }
  
  .nav-link:active {
    transform: translateX(2px) scale(0.98);
  }

  /* Mobile Dropdown */
  .nav-dropdown {
    position: static;
  }

  .dropdown-content {
    position: static;
    display: none;
    background: rgba(0, 0, 0, 0.3);
    border: none;
    box-shadow: none;
    margin-left: 20px;
    border-radius: 0;
    transform: none;
    left: auto;
  }

  .nav-dropdown:hover .dropdown-content,
  .nav-dropdown.active .dropdown-content {
    display: block;
    opacity: 1;
    transform: none;
  }

  .dropdown-content a {
    padding: 10px 20px;
    border-bottom: 1px solid #333;
    text-align: left;
  }
}

/* Extra Mobile Optimizations */
@media (max-width: 480px) {
  .preview-card {
    padding: 25px;
  }

  .service-badge {
    font-size: 0.6rem;
    padding: 5px 10px;
  }

  .service-price {
    font-size: 1.1rem;
  }

  .service-features li {
    font-size: 0.85rem;
    padding: 6px 0;
  }
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #1a1a1a; }
::-webkit-scrollbar-thumb { background: #3b82f6; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #2563eb; }

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.narrow { max-width: 820px; }

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: 
    linear-gradient(180deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.9) 100%),
    url('https://images.unsplash.com/photo-1568605117036-5fe5e7bab0b7?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover;
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 2px solid var(--nyc-gold);
  box-shadow: 
    0 4px 20px rgba(0,0,0,0.7),
    0 0 30px rgba(220,38,38,0.3);
  transition: top 0.3s ease-in-out;
}

.site-header.scrolled {
  top: 0;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; }
.brand { 
  color: #ffffff; 
  text-decoration: none; 
  font-weight: 900; 
  letter-spacing: .6px; 
  display: inline-grid;
  text-shadow: 
    0 0 10px rgba(255,255,255,0.5),
    0 2px 4px rgba(0,0,0,0.8);
  transition: all 0.3s ease;
}

.brand:hover {
  text-shadow: 
    0 0 15px rgba(255,255,255,0.8),
    0 0 30px rgba(251,191,36,0.4),
    0 2px 4px rgba(0,0,0,0.8);
  transform: scale(1.05);
}
.brand-line { line-height: 1; font-size: 18px; }
.brand-accent { 
  color: #10b981; 
  font-weight: 700; 
  text-shadow: 
    0 0 10px rgba(251,191,36,0.6),
    0 2px 4px rgba(0,0,0,0.8);
}

.nav-toggle { 
  display: none; 
  background: none; 
  border: 2px solid var(--nyc-gold); 
  color: var(--nyc-gold); 
  padding: 8px; 
  border-radius: 8px; 
  cursor: pointer;
  transition: all 0.3s ease;
  width: 48px;
  height: 48px;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.nav-toggle:hover,
.nav-toggle:focus {
  background: var(--nyc-gold);
  color: #000;
  transform: scale(1.05);
}

.hamburger-line {
  width: 24px;
  height: 3px;
  background: currentColor;
  border-radius: 2px;
  transition: all 0.3s ease;
  display: block;
}

.nav-toggle:hover .hamburger-line {
  background: #000;
}

/* Hamburger animation when active */
.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
.nav { display: flex; gap: 22px; }
.nav-link { 
  color: #ffffff; 
  text-decoration: none; 
  opacity: .9; 
  font-weight: 500; 
  position: relative;
  padding: 8px 12px;
  border-radius: 8px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
  transition: all 0.3s ease;
}
.nav-link:hover { 
  color: #10b981; 
  background: rgba(16, 185, 129, 0.1);
  transform: translateY(-1px) scale(1.05);
  text-shadow: 
    0 0 10px rgba(251,191,36,0.6),
    0 2px 4px rgba(0,0,0,0.8);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-1);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}
.nav-link:hover::after {
  width: 80%;
}

@media (max-width: 860px) {
  .nav-toggle { 
    display: flex; 
    background: rgba(0,0,0,0.9);
    border: 2px solid var(--nyc-gold);
    color: var(--nyc-gold);
    padding: 8px;
    border-radius: 8px;
    width: 48px;
    height: 48px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
  }
  
  .nav-toggle:hover,
  .nav-toggle:focus {
    background: var(--nyc-gold);
    color: #000;
    transform: scale(1.05);
  }
  
  .nav { 
    position: absolute; 
    right: 20px; 
    top: 62px; 
    background: rgba(0,0,0,0.98); 
    border: 2px solid var(--nyc-gold); 
    border-radius: 12px; 
    padding: 25px; 
    display: none; 
    flex-direction: column; 
    gap: 10px; 
    box-shadow: 0 15px 40px rgba(0,0,0,0.7);
    z-index: 1000;
    backdrop-filter: blur(20px);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  .nav.open { 
    display: flex; 
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
}

/* Hero - Dominican NYC Theme */
.hero { 
  position: relative; 
  padding: 80px 0 100px;
  background: 
    linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.5) 100%),
    url('https://images.unsplash.com/photo-1577280113761-b47312ca24ff?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  margin-top: 0;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.2) 100%);
  z-index: 1;
}

.hero-inner { 
  text-align: center; 
  padding-top: 0; 
  position: relative;
  z-index: 2;
  width: 100%;
  background: none !important;
  background-image: none !important;
  background-color: transparent !important;
}

.hero-title { 
  font-size: clamp(60px, 10vw, 120px); 
  margin: 0 0 20px; 
  font-weight: 900; 
  font-family: 'Anton', sans-serif;
  letter-spacing: 8px;
  color: #ffffff;
  text-shadow: 
    0 0 30px rgba(255,255,255,0.8),
    0 0 60px rgba(255,255,255,0.6),
    0 0 90px rgba(255,255,255,0.4),
    0 0 120px rgba(255,255,255,0.2),
    0 4px 8px rgba(0,0,0,0.9);
  text-transform: uppercase;
  line-height: 1.1;
  position: relative;
  z-index: 3;
  transition: all 0.3s ease;
  background: none !important;
  background-image: none !important;
  background-color: transparent !important;
  filter: drop-shadow(0 0 20px rgba(255,255,255,0.5));
}

.hero-title:hover {
  color: #ffffff;
  text-shadow: 
    0 0 40px rgba(255,255,255,1),
    0 0 80px rgba(255,255,255,0.8),
    0 0 120px rgba(255,255,255,0.6),
    0 0 160px rgba(255,255,255,0.4),
    0 4px 12px rgba(0,0,0,0.9);
  transform: scale(1.05);
  filter: drop-shadow(0 0 30px rgba(255,255,255,0.8));
  background: none !important;
  background-image: none !important;
  background-color: transparent !important;
}

.hero-title .outline { 
  color: #ffffff;
  text-shadow: 
    0 0 10px rgba(255,255,255,0.3),
    0 0 20px rgba(255,255,255,0.2),
    0 0 30px rgba(255,255,255,0.1),
    0 2px 4px rgba(0,0,0,0.5);
  position: relative;
  z-index: 3;
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 5px rgba(255,255,255,0.3));
  background: none !important;
  background-image: none !important;
  background-color: transparent !important;
}

.hero-title .outline:hover {
  color: #ffffff;
  text-shadow: 
    0 0 15px rgba(255,255,255,0.5),
    0 0 30px rgba(255,255,255,0.3),
    0 0 45px rgba(255,255,255,0.2),
    0 3px 6px rgba(0,0,0,0.7);
  transform: scale(1.05);
  filter: drop-shadow(0 0 10px rgba(255,255,255,0.4));
  background: none !important;
  background-image: none !important;
  background-color: transparent !important;
}
.hero-subtitle { 
  margin: 6px 0; 
  font-size: clamp(24px, 4vw, 32px); 
  font-family: 'Rajdhani', sans-serif;
  color: #ffffff;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.5s forwards;
  text-shadow: 
    0 0 20px rgba(255,255,255,0.8),
    0 0 40px rgba(255,255,255,0.6),
    0 0 60px rgba(255,255,255,0.4),
    0 2px 4px rgba(0,0,0,0.9);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  filter: drop-shadow(0 0 15px rgba(255,255,255,0.5));
  background: none !important;
  background-image: none !important;
  background-color: transparent !important;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Removed dominic-hero-flash animation */

@keyframes dominic-city-lights {
  0%, 100% { 
    opacity: 0.4;
    filter: brightness(1);
  }
  50% { 
    opacity: 0.8;
    filter: brightness(1.3);
  }
}

/* Removed annoying subway-lights animation */

@keyframes premium-glow {
  0%, 100% { 
    opacity: 0.3;
    transform: scale(1);
  }
  50% { 
    opacity: 0.6;
    transform: scale(1.02);
  }
}
.hero-ctas { 
  margin-top: 28px; 
  display: flex; 
  gap: 14px; 
  justify-content: center; 
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 1s ease-out 1s forwards;
}

.btn { 
  --h: 50px; 
  height: var(--h); 
  padding: 0 20px; 
  border-radius: 12px; 
  border: 1px solid var(--border); 
  background: #1a1a1a; 
  color: var(--text); 
  font-weight: 700; 
  cursor: pointer; 
  text-decoration: none; 
  display: inline-flex; 
  align-items: center; 
  justify-content: center; 
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.5s;
}
.btn:hover::before {
  left: 100%;
}
.btn:hover { 
  transform: translateY(-2px) scale(1.02); 
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}
.btn-primary { 
  background: var(--gradient-1); 
  color: #111; 
  border: none;
  box-shadow: 0 8px 25px var(--dominic-red-glow);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.btn-primary:hover { 
  background: var(--gradient-1);
  box-shadow: 0 15px 40px var(--primary-blue-glow);
  transform: translateY(-3px) scale(1.05);
}
.btn-ghost { 
  background: transparent; 
  border: 2px solid var(--nyc-gold);
  color: var(--nyc-gold);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.btn-ghost:hover {
  background: var(--primary-blue);
  color: #ffffff;
  box-shadow: 0 0 20px var(--primary-blue-glow);
}
.btn-wide { width: 100%; }

.callbar { 
  position: fixed; 
  bottom: 0; 
  left: 0;
  right: 0;
  background: var(--gradient-1); 
  color: #111; 
  padding: 12px 0; 
  border-top: 1px solid var(--nyc-gold); 
  box-shadow: 0 -4px 20px var(--dominic-red-glow);
  animation: pulse 2s infinite;
  z-index: 1000;
  text-align: center;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 -4px 20px var(--dominic-red-glow); }
  50% { box-shadow: 0 -4px 30px var(--dominic-red-glow), 0 -4px 50px var(--nyc-gold-glow); }
}
.callbar-link { 
  color: #111; 
  text-decoration: none; 
  font-weight: 800; 
  font-family: 'Roboto Condensed', sans-serif;
  display: block; 
  text-align: center;
  font-size: 18px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* Sections - NYC Progression */
.section { 
  padding: 70px 0; 
  background: var(--bg); 
  position: relative;
}

/* Services - NYC City View */
#services {
  background: 
    linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.8) 100%),
    url('https://images.unsplash.com/photo-1496442226666-8d4d0e62e6e9?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover;
}

/* About - Deeper NYC Look */
#about {
  background: 
    linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.9) 100%),
    url('https://images.unsplash.com/photo-1519501025264-65ba15a82390?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover;
}

/* Booking - Times Square */
#booking {
  background: 
    linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.9) 100%),
    url('https://images.unsplash.com/photo-1496442226666-8d4d0e62e6e9?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover;
}

/* Contact - Cool NYC Picture */
#contact {
  background: 
    linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.9) 100%),
    url('https://images.unsplash.com/photo-1449824913935-59a10b8d2000?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover;
}

/* FAQ - NYC Subway System */
#faq {
  background: 
    linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.9) 100%),
    url('https://i.pinimg.com/1200x/09/79/09/097909186cfe0745a8319882d42b4a37.jpg') center/cover;
  position: relative;
}

.section-dark { 
  background: 
    linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.7) 100%),
    url('https://i.pinimg.com/736x/65/cb/a5/65cba5510f974965049bf3b1437781bf.jpg') center/cover;
  position: relative;
  background-attachment: fixed;
}

.section-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  z-index: 1;
}

.section-dark > * {
  position: relative;
  z-index: 2;
}
.section-title { 
  text-align: center; 
  font-size: clamp(32px, 5.5vw, 48px); 
  margin: 0 0 26px; 
  font-weight: 800; 
  font-family: 'Anton', sans-serif;
  color: #ffffff;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
  animation: title-glow 2s ease-in-out infinite alternate;
  text-transform: uppercase;
  letter-spacing: 2px;
}

@keyframes title-glow {
  from { 
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
  }
  to { 
    text-shadow: 0 0 30px rgba(255, 255, 255, 1);
  }
}
.section-kicker { text-align: center; color: var(--muted); margin-top: -12px; margin-bottom: 26px; }

/* Cards */
.cards { 
  display: grid; 
  grid-template-columns: repeat(4, 1fr); 
  gap: 20px; 
  perspective: 1000px;
}
@media (max-width: 1100px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .cards { grid-template-columns: 1fr; } }

.card { 
  background: var(--card); 
  border: 1px solid var(--border); 
  border-radius: var(--radius); 
  padding: 22px; 
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Express Clean - Clean Blue Gradient */
.card:nth-child(1) {
  background: 
    linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(20,20,20,0.9) 100%),
    url('https://images.unsplash.com/photo-1558618047-3c8c76ca7d13?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80') center/cover;
  border: 2px solid #3b82f6;
  box-shadow: 0 0 25px rgba(59, 130, 246, 0.4);
}

/* Basic Wash - Orange Energy */
.card:nth-child(2) {
  background: 
    linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(30,30,30,0.8) 100%),
    url('https://images.unsplash.com/photo-1563720223185-11003d516935?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80') center/cover;
  border: 2px solid #f97316;
  box-shadow: 0 0 30px rgba(249, 115, 22, 0.5);
}

/* Street Shine - Gold Premium */
.card:nth-child(3) {
  background: 
    linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(40,40,40,0.7) 100%),
    url('https://images.unsplash.com/photo-1558618047-3c8c76ca7d13?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80') center/cover;
  border: 3px solid #10b981;
  box-shadow: 
    0 0 40px rgba(251, 191, 36, 0.6),
    0 0 80px rgba(16, 185, 129, 0.3);
}

/* Designer Gloss - PREMIUM FIRE */
.card:nth-child(4) {
  background: 
    linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(50,50,50,0.6) 100%),
    url('https://images.unsplash.com/photo-1555215695-3004980ad54e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80') center/cover;
  border: 4px solid;
  border-image: linear-gradient(45deg, #dc2626, #10b981, #ffffff, #dc2626) 1;
  box-shadow: 
    0 0 50px rgba(220, 38, 38, 0.7),
    0 0 100px rgba(16, 185, 129, 0.5),
    0 0 150px rgba(255, 255, 255, 0.3);
  position: relative;
}

.card:nth-child(4)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 50% 50%, rgba(220, 38, 38, 0.1) 0%, transparent 70%),
    linear-gradient(45deg, transparent 0%, rgba(251, 191, 36, 0.05) 50%, transparent 100%);
  animation: premium-glow 3s ease-in-out infinite;
  z-index: 1;
}

.card:nth-child(4) > * {
  position: relative;
  z-index: 2;
}
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-1);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.card:hover {
  transform: translateY(-20px) rotateX(10deg) rotateY(8deg) scale(1.05);
  animation: card-shine 1.5s ease-in-out infinite;
}

/* Express Clean Hover */
.card:nth-child(1):hover {
  box-shadow: 
    0 30px 60px rgba(0,0,0,0.5),
    0 0 40px rgba(59, 130, 246, 0.8),
    0 0 80px rgba(59, 130, 246, 0.4);
  border-color: #60a5fa;
}

/* Basic Wash Hover */
.card:nth-child(2):hover {
  box-shadow: 
    0 30px 60px rgba(0,0,0,0.5),
    0 0 50px rgba(249, 115, 22, 0.9),
    0 0 100px rgba(249, 115, 22, 0.5);
  border-color: #fb923c;
}

/* Street Shine Hover */
.card:nth-child(3):hover {
  box-shadow: 
    0 30px 60px rgba(0,0,0,0.5),
    0 0 60px rgba(251, 191, 36, 0.9),
    0 0 120px rgba(251, 191, 36, 0.6),
    0 0 180px rgba(16, 185, 129, 0.3);
  border-color: #fcd34d;
}

/* Designer Gloss Hover - ABSOLUTE FIRE */
.card:nth-child(4):hover {
  box-shadow: 
    0 40px 80px rgba(0,0,0,0.6),
    0 0 80px rgba(220, 38, 38, 0.9),
    0 0 160px rgba(251, 191, 36, 0.7),
    0 0 240px rgba(255, 255, 255, 0.5),
    0 0 320px rgba(220, 38, 38, 0.3);
  border-width: 6px;
}
.card:hover::before {
  opacity: 0.05;
}
.card-title { 
  margin: 0 0 8px; 
  font-size: 24px; 
  font-weight: 800;
  font-family: 'Rajdhani', sans-serif;
  color: var(--nyc-white);
  text-shadow: 
    0 0 15px rgba(255,255,255,0.5),
    0 2px 4px rgba(0,0,0,0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 3;
}

/* Package-specific title colors */
.card:nth-child(1) .card-title {
  color: #60a5fa;
  text-shadow: 0 0 20px rgba(96, 165, 250, 0.8), 0 2px 4px rgba(0,0,0,0.8);
}

.card:nth-child(2) .card-title {
  color: #fb923c;
  text-shadow: 0 0 20px rgba(251, 146, 60, 0.8), 0 2px 4px rgba(0,0,0,0.8);
}

.card:nth-child(3) .card-title {
  color: #fcd34d;
  text-shadow: 0 0 25px rgba(252, 211, 77, 0.9), 0 2px 4px rgba(0,0,0,0.8);
}

.card:nth-child(4) .card-title {
  background: linear-gradient(45deg, #dc2626, #10b981, #ffffff, #dc2626);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(220, 38, 38, 0.8), 0 2px 4px rgba(0,0,0,0.8);
}
.price { 
  color: var(--nyc-gold); 
  font-weight: 700; 
  font-family: 'Exo 2', sans-serif;
  margin: 0 0 10px; 
  font-size: 18px;
  text-shadow: 
    0 0 15px var(--nyc-gold-glow),
    0 2px 4px rgba(0,0,0,0.8);
  letter-spacing: 1px;
  position: relative;
  z-index: 3;
}

/* Package-specific price colors */
.card:nth-child(1) .price {
  color: #60a5fa;
  text-shadow: 0 0 15px rgba(96, 165, 250, 0.8), 0 2px 4px rgba(0,0,0,0.8);
}

.card:nth-child(2) .price {
  color: #fb923c;
  text-shadow: 0 0 15px rgba(251, 146, 60, 0.8), 0 2px 4px rgba(0,0,0,0.8);
}

.card:nth-child(3) .price {
  color: #fcd34d;
  text-shadow: 0 0 20px rgba(252, 211, 77, 0.9), 0 2px 4px rgba(0,0,0,0.8);
}

.card:nth-child(4) .price {
  color: #10b981;
  text-shadow: 0 0 25px rgba(251, 191, 36, 0.9), 0 2px 4px rgba(0,0,0,0.8);
}
.features { 
  margin: 0 0 18px; 
  padding-left: 18px; 
  color: var(--nyc-white);
  line-height: 1.6;
  font-family: 'Exo 2', sans-serif;
  font-weight: 400;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
  position: relative;
  z-index: 3;
}
.features li {
  position: relative;
  margin-bottom: 4px;
}
.features li::marker {
  color: var(--nyc-gold);
}

/* Enhanced button styling for cards */
.card .btn {
  position: relative;
  z-index: 3;
  background: var(--gradient-1) !important;
  color: #111 !important;
  border: none !important;
  box-shadow: 
    0 8px 25px var(--dominic-red-glow),
    0 2px 4px rgba(0,0,0,0.8) !important;
  font-family: 'Rajdhani', sans-serif !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
}
.badge { position: relative; }
.badge-tag { 
  position: absolute; 
  right: 14px; 
  top: 14px; 
  background: var(--gradient-1); 
  color: #111; 
  font-weight: 800; 
  padding: 6px 10px; 
  border-radius: 999px; 
  font-size: 12px; 
  border: none;
  box-shadow: 0 4px 15px rgba(255, 208, 0, 0.3);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-3px); }
  60% { transform: translateY(-2px); }
}

/* Forms */
.form { display: grid; gap: 14px; }
.form-compact { max-width: 520px; margin: 0 auto; }
.grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 700px) { .grid { grid-template-columns: 1fr; } }

input, select, textarea { 
  width: 100%; 
  background: rgba(18, 18, 18, 0.8); 
  border: 1px solid var(--border); 
  border-radius: 12px; 
  color: var(--text); 
  padding: 14px 14px; 
  font-size: 16px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255, 208, 0, 0.1);
  background: rgba(18, 18, 18, 0.9);
}
textarea { resize: vertical; }
select { 
  appearance: none; 
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ffd000"><path d="M7 10l5 5 5-5z"/></svg>'); 
  background-repeat: no-repeat; 
  background-position: right 12px center; 
  background-size: 18px; 
  cursor: pointer;
}

/* Quote */
.quote { 
  color: #ffd86b; 
  font-size: 18px; 
  font-weight: 800; 
  text-align: center; 
  margin: 24px auto;
  padding: 20px;
  background: rgba(255, 208, 0, 0.05);
  border-left: 4px solid var(--yellow);
  border-radius: 8px;
  font-style: italic;
  text-shadow: 0 0 10px rgba(255, 216, 107, 0.3);
}

/* Contact */
.contact-lines { 
  text-align: center; 
  margin-bottom: 18px; 
  font-size: 18px;
  line-height: 1.8;
}
.link { 
  color: #ffd86b; 
  text-decoration: none; 
  font-weight: 600;
  position: relative;
  transition: all 0.3s ease;
}
.link:hover { 
  text-decoration: none;
  color: var(--yellow);
  text-shadow: 0 0 8px rgba(255, 208, 0, 0.5);
}
.link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-1);
  transition: width 0.3s ease;
}
.link:hover::after {
  width: 100%;
}

/* FAQ - Transparent Rectangles */
.faq-item { 
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}
.faq-item:hover {
  background: rgba(0, 0, 0, 0.5);
  border-color: #10b981;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
}
.faq-item summary { 
  cursor: pointer; 
  font-weight: 700;
  color: #ffffff;
  font-size: 1.1rem;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}
.faq-item summary::before {
  content: '▶';
  color: #10b981;
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}
.faq-item[open] summary::before {
  transform: rotate(90deg);
}
.faq-item p {
  color: #cccccc;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 15px 0 0 20px;
}

/* FAQ Show/Hide Functionality */
.faq-hidden {
  display: none;
}
.faq-visible {
  display: block;
}
.faq-controls {
  text-align: center;
  margin-top: 30px;
}

/* Footer - NYC Subway Theme */
.footer { 
  border-top: 1px solid var(--nyc-gold); 
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 50%, #000 100%); 
  padding: 22px 0 40px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-1);
}

.footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(90deg, transparent 0%, rgba(30, 58, 138, 0.03) 2px, transparent 2px),
    linear-gradient(90deg, transparent 0%, rgba(255, 107, 53, 0.03) 1px, transparent 1px);
  background-size: 60px 100%, 30px 100%;
  animation: subway-lights 8s ease-in-out infinite;
  z-index: 1;
}
.footer-inner { 
  text-align: center; 
  color: var(--muted);
  position: relative;
  z-index: 2;
}
.footer-contact { 
  margin: 0 0 8px; 
  font-size: 16px;
  font-family: 'Roboto Condensed', sans-serif;
}
.copyright { 
  margin: 0; 
  opacity: 0.7;
  font-family: 'Roboto Condensed', sans-serif;
}

/* Smooth scroll behavior */
html { scroll-behavior: smooth; }

/* Additional modern effects */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Add floating animation to cards on scroll */
.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }
.card:nth-child(4) { animation-delay: 0.4s; }

/* Intersection Observer will add this class */
.card.animate-in {
  animation: fadeInUp 0.6s ease-out forwards;
}

/* COMPREHENSIVE MOBILE OPTIMIZATIONS */

/* Base mobile styles */
@media (max-width: 768px) {
  /* Typography optimizations */
  .hero-title {
    font-size: clamp(32px, 10vw, 56px);
    letter-spacing: 1px;
    line-height: 1.1;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .hero-subtitle {
    font-size: clamp(18px, 5vw, 24px);
    margin: 8px 0;
    line-height: 1.4;
    text-align: center;
  }
  
  .section-title {
    font-size: clamp(24px, 6vw, 32px);
    margin-bottom: 20px;
  }
  
  .loading-logo {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
    letter-spacing: 1px;
    line-height: 1.1;
  }
  
  /* Button optimizations */
  .btn {
    font-size: 16px;
    padding: 16px 24px;
    min-height: 48px;
    min-width: 140px;
    touch-action: manipulation;
    border-radius: 8px;
    font-weight: 700;
  }
  
  .hero-ctas {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  
  .hero-ctas .btn {
    width: 100%;
    max-width: 280px;
  }
  
  /* Card optimizations */
  .cards {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }
  
  .card {
    margin-bottom: 20px;
    padding: 25px;
    touch-action: manipulation;
    border-radius: 12px;
  }
  
  .card-title {
    font-size: 20px;
    margin-bottom: 12px;
  }
  
  .price {
    font-size: 16px;
    margin-bottom: 12px;
  }
  
  .features {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 16px;
  }
  
  /* BULLETPROOF MOBILE NAVIGATION */
  .nav-toggle {
    display: flex !important;
    padding: 12px !important;
    font-size: 18px !important;
    min-height: 50px !important;
    min-width: 50px !important;
    touch-action: manipulation !important;
    border: 2px solid var(--nyc-gold) !important;
    background: rgba(0,0,0,0.95) !important;
    color: var(--nyc-gold) !important;
    border-radius: 8px !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 4px !important;
    transition: all 0.2s ease !important;
    cursor: pointer !important;
    z-index: 9999 !important;
    position: relative !important;
  }
  
  .nav-toggle:hover,
  .nav-toggle:focus,
  .nav-toggle:active {
    background: var(--nyc-gold) !important;
    color: #000 !important;
    transform: scale(1.02) !important;
  }
  
  .hamburger-line {
    width: 22px !important;
    height: 3px !important;
    background: currentColor !important;
    border-radius: 2px !important;
    transition: all 0.3s ease !important;
    display: block !important;
  }
  
  .nav-toggle:hover .hamburger-line {
    background: #000 !important;
  }
  
  /* Hamburger animation when active */
  .nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px) !important;
  }
  
  .nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0 !important;
  }
  
  .nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px) !important;
  }
  
  .nav {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(0,0,0,0.98) !important;
    backdrop-filter: blur(20px) !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 80px 20px 20px !important;
    box-shadow: none !important;
    z-index: 9998 !important;
    transform: translateX(-100%) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: center !important;
    overflow-y: auto !important;
  }
  
  .nav.open {
    transform: translateX(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
  }
  
  .nav-link {
    display: block;
    padding: 12px 16px;
    margin: 4px 0;
    font-size: 16px;
    min-height: 44px;
    touch-action: manipulation;
    border-radius: 8px;
  }
  
  /* Header optimizations */
  .header-inner {
    padding: 12px 0;
  }
  
  .brand {
    font-size: 16px;
  }
  
  .brand-line {
    font-size: 16px;
  }
  
  /* Hero section optimizations */
  .hero {
    padding: 60px 0 80px;
    min-height: 100vh;
    background-attachment: scroll;
  }
  
  .hero-inner {
    padding: 0 20px;
  }
  
  /* Callbar optimizations */
  .callbar {
    padding: 16px 0;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
  }
  
  .callbar-link {
    font-size: 16px;
    padding: 12px 20px;
    display: block;
    touch-action: manipulation;
  }
  
  /* Section optimizations */
  .section {
    padding: 50px 0;
  }
  
  .container {
    padding: 0 20px;
  }
  
  /* Form optimizations */
  .form {
    gap: 16px;
  }
  
  input, select, textarea {
    font-size: 16px;
    padding: 16px;
    min-height: 48px;
    border-radius: 8px;
    touch-action: manipulation;
    border: 2px solid var(--border);
    background: rgba(255,255,255,0.9);
    color: #000;
  }
  
  input:focus, select:focus, textarea:focus {
    border-color: var(--nyc-gold);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
    outline: none;
  }
  
  /* Contact section */
  .contact-lines {
    font-size: 16px;
    line-height: 1.6;
  }
  
  /* Reviews optimizations */
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-height: 400px;
  }
  
  .review-card {
    padding: 20px;
  }
  
  .reviewer-name {
    font-size: 16px;
  }
  
  .review-text {
    font-size: 14px;
    line-height: 1.5;
  }
  
  .reviews-controls {
    margin: 20px 0;
  }
  
  .reviews-controls .btn {
    width: 100%;
    max-width: 280px;
    padding: 14px 24px;
    font-size: 14px;
  }
  
  /* Modal optimizations */
  .review-modal-content {
    width: 95%;
    padding: 30px 20px;
    margin: 20px;
    max-height: 90vh;
    overflow-y: auto;
  }
  
  /* Loading screen optimizations */
  .loading-content {
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }
  
  .loading-bar {
    width: 90%;
    max-width: 300px;
  }
  
  /* Remove complex animations on mobile for performance */
  .card:hover {
    transform: translateY(-5px) scale(1.02);
  }
  
  .hero-title:hover {
    transform: scale(1.02);
  }
  
  /* Touch-friendly interactions */
  .btn:active {
    transform: scale(0.98);
  }
  
  .card:active {
    transform: scale(0.98);
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(24px, 10vw, 36px);
    letter-spacing: 0.5px;
  }
  
  .hero-subtitle {
    font-size: clamp(14px, 4vw, 18px);
  }
  
  .section-title {
    font-size: clamp(20px, 6vw, 28px);
  }
  
  .btn {
    font-size: 13px;
    padding: 12px 20px;
    min-height: 44px;
  }
  
  .card {
    padding: 16px;
  }
  
  .card-title {
    font-size: 18px;
  }
  
  .price {
    font-size: 15px;
  }
  
  .features {
    font-size: 13px;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .nav {
    left: 5px;
    right: 5px;
    padding: 15px;
  }
  
  .review-modal-content {
    width: 98%;
    padding: 20px 15px;
    margin: 10px;
  }
}

/* Landscape mobile optimization */
@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    min-height: 100vh;
    padding: 40px 0 60px;
  }
  
  .hero-title {
    font-size: clamp(24px, 6vw, 36px);
  }
  
  .hero-subtitle {
    font-size: clamp(14px, 3vw, 18px);
  }
  
  .section {
    padding: 40px 0;
  }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  /* Remove hover effects on touch devices */
  .card:hover {
    transform: none;
    box-shadow: var(--shadow);
  }
  
  .btn:hover {
    transform: none;
  }
  
  .nav-link:hover {
    transform: none;
  }
  
  /* Add active states for touch feedback */
  .btn:active {
    transform: scale(0.95);
    background: var(--gradient-1);
  }
  
  .card:active {
    transform: scale(0.98);
  }
  
  .nav-link:active {
    background: rgba(16, 185, 129, 0.2);
    transform: scale(0.98);
  }
}

/* High DPI display optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .hero-title,
  .section-title,
  .brand {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

/* Performance optimizations for mobile */
@media (max-width: 768px) {
  /* Reduce complex animations */
  .hero-title {
    animation: none;
  }
  
  .loading-logo {
    animation: none;
  }
  
  /* Optimize background images */
  .hero {
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
  }
  
  .section-dark {
    background-attachment: scroll;
  }
  
  /* Reduce particle effects */
  .city-lights {
    opacity: 0.3;
  }
  
  /* Optimize scroll performance */
  .hero {
    will-change: auto;
  }
  
  .card {
    will-change: auto;
  }
}

/* Low performance device optimizations */
.low-performance * {
  animation-duration: 0.1s !important;
  transition-duration: 0.1s !important;
}

.low-performance .hero-title,
.low-performance .loading-logo,
.low-performance .section-title {
  animation: none !important;
}

.low-performance .card:hover {
  transform: none !important;
}

.low-performance .btn:hover {
  transform: none !important;
}

/* Additional mobile-specific optimizations */
@media (max-width: 768px) and (orientation: portrait) {
  .hero {
    min-height: 100vh;
    padding: 80px 0 100px;
  }
  
  .hero-title {
    font-size: clamp(32px, 10vw, 56px);
  }
  
  .hero-subtitle {
    font-size: clamp(18px, 5vw, 24px);
  }
}

/* Mobile landscape optimizations */
@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    min-height: 100vh;
    padding: 40px 0 60px;
  }
  
  .hero-title {
    font-size: clamp(24px, 8vw, 40px);
  }
  
  .hero-subtitle {
    font-size: clamp(16px, 4vw, 20px);
  }
  
  .section {
    padding: 40px 0;
  }
  
  .nav {
    top: 60px;
  }
}

/* Ultra-wide mobile screens */
@media (max-width: 768px) and (min-width: 600px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .hero-ctas {
    flex-direction: row;
    justify-content: center;
    gap: 16px;
  }
  
  .hero-ctas .btn {
    width: auto;
    max-width: 200px;
  }
}

/* Mobile form improvements */
@media (max-width: 768px) {
  /* MailerLite form mobile optimizations */
  #mlb2-31382249.ml-form-embedContainer .ml-form-embedWrapper {
    margin: 0;
    width: 100%;
  }
  
  #mlb2-31382249.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody {
    padding: 20px;
  }
  
  #mlb2-31382249.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent h4 {
    font-size: 24px;
  }
  
  #mlb2-31382249.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input {
    font-size: 16px !important;
    height: 48px;
    padding: 12px 16px !important;
  }
  
  #mlb2-31382249.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button {
    height: 50px;
    font-size: 16px !important;
    padding: 12px 24px !important;
  }
}

/* Mobile callbar improvements */
@media (max-width: 768px) {
  .callbar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 0;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  }
  
  .callbar-link {
    display: block;
    text-align: center;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    color: #111;
    background: var(--gradient-1);
    border-radius: 0;
    touch-action: manipulation;
  }
  
  .callbar-link:active {
    transform: scale(0.98);
  }
}

/* Mobile scroll indicator */
@media (max-width: 768px) {
  .scroll-indicator {
    height: 3px;
  }
  
  .scroll-progress {
    background: var(--gradient-1);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
  }
}

/* Mobile loading screen optimizations */
@media (max-width: 768px) {
  .loading-screen {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
  }
  
  .loading-video {
    filter: brightness(0.6) contrast(1.1) saturate(1.0);
    animation: video-pulse-mobile 8s ease-in-out infinite;
  }
  
  .loading-video-overlay {
    background: 
      linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.8) 50%, rgba(0,0,0,0.6) 100%);
  }
  
  .loading-logo {
    font-size: clamp(2rem, 8vw, 3rem);
    text-align: center;
    padding: 0 20px;
  }
  
  .loading-subtitle {
    font-size: 1.2rem;
    margin-top: 10px;
  }
  
  .loading-tagline {
    font-size: 0.9rem;
    margin-top: 8px;
  }
  
  .loading-bar {
    width: 90%;
    max-width: 280px;
    height: 6px;
    margin-top: 30px;
  }
}

@keyframes video-pulse-mobile {
  0%, 100% { 
    filter: brightness(0.6) contrast(1.1) saturate(1.0);
    transform: scale(1);
  }
  50% { 
    filter: brightness(0.8) contrast(1.3) saturate(1.2);
    transform: scale(1.01);
  }
}

/* BULLETPROOF MOBILE NAVIGATION - WORKS 100% OF THE TIME */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex !important;
    background: rgba(0,0,0,0.95) !important;
    border: 2px solid var(--nyc-gold) !important;
    color: var(--nyc-gold) !important;
    padding: 12px !important;
    border-radius: 8px !important;
    width: 50px !important;
    height: 50px !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 4px !important;
    cursor: pointer !important;
    z-index: 9999 !important;
    position: relative !important;
    touch-action: manipulation !important;
    -webkit-tap-highlight-color: transparent !important;
    user-select: none !important;
  }
  
  .nav-toggle:hover,
  .nav-toggle:focus,
  .nav-toggle:active {
    background: var(--nyc-gold) !important;
    color: #000 !important;
    transform: scale(1.02) !important;
  }
  
  .hamburger-line {
    width: 22px !important;
    height: 3px !important;
    background: currentColor !important;
    border-radius: 2px !important;
    display: block !important;
    pointer-events: none !important;
  }
  
  .nav {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(0,0,0,0.98) !important;
    z-index: 9998 !important;
    transform: translateX(-100%) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 20px !important;
    pointer-events: none !important;
  }
  
  .nav.open {
    transform: translateX(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
    pointer-events: auto !important;
  }
  
  .nav-link {
    display: block !important;
    padding: 20px !important;
    margin: 10px 0 !important;
    color: #fff !important;
    text-decoration: none !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    text-align: center !important;
    border-radius: 8px !important;
    min-height: 50px !important;
    line-height: 50px !important;
    touch-action: manipulation !important;
    -webkit-tap-highlight-color: transparent !important;
    user-select: none !important;
  }
  
  .nav-link:hover,
  .nav-link:focus,
  .nav-link:active {
    background: var(--nyc-gold) !important;
    color: #000 !important;
    transform: scale(1.05) !important;
  }
  
  /* Prevent body scroll when navigation is open */
  body {
    overflow-x: hidden !important;
  }
  
  body.nav-open {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
  }
  
  /* Hide call button when navigation is open */
  .nav.open ~ .callbar,
  .nav.open ~ * .callbar,
  body:has(.nav.open) .callbar {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    transform: translateY(100%) !important;
  }
  
  /* Hide any fixed call buttons when navigation is open */
  .nav.open ~ .callbar-link,
  .nav.open ~ * .callbar-link,
  body:has(.nav.open) .callbar-link {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    transform: translateY(100%) !important;
  }
}

/* Mobile accessibility improvements */
@media (max-width: 768px) {
  /* Ensure minimum touch target size */
  .btn, .nav-link, .nav-toggle {
    min-height: 44px;
    min-width: 44px;
  }
  
  /* Improve focus indicators */
  .btn:focus,
  .nav-link:focus,
  .nav-toggle:focus {
    outline: 2px solid var(--nyc-gold);
    outline-offset: 2px;
  }
  
  /* Improve contrast for mobile */
  .hero-title {
    text-shadow: 
      0 0 20px rgba(255,255,255,0.8),
      0 2px 4px rgba(0,0,0,0.9);
  }
  
  .hero-subtitle {
    text-shadow: 
      0 0 15px rgba(255,255,255,0.6),
      0 2px 4px rgba(0,0,0,0.8);
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --border: #444;
    --muted: #ccc;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}


/* CINEMATIC HERO BACKGROUND - REMOVED CONFLICTING RULE */

/* REMOVED THE ANNOYING BOX */

@keyframes epic-background-shift {
  0% { 
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
  25% { 
    opacity: 0.8;
    transform: scale(1.1) rotate(90deg);
  }
  50% { 
    opacity: 1;
    transform: scale(0.9) rotate(180deg);
  }
  75% { 
    opacity: 0.9;
    transform: scale(1.05) rotate(270deg);
  }
  100% { 
    opacity: 1;
    transform: scale(1) rotate(360deg);
  }
}

/* 3D CARD ENHANCEMENTS */
.card {
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
  transform: translateY(-20px) rotateX(12deg) rotateY(8deg) scale(1.05);
  box-shadow: 
    0 35px 70px rgba(0,0,0,0.6),
    0 0 50px rgba(255, 208, 0, 0.4),
    0 0 80px rgba(255, 107, 53, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  animation: card-pulse 1.5s ease-in-out infinite;
}

@keyframes card-shine {
  0%, 100% {
    filter: brightness(1) saturate(1);
    transform: translateY(-20px) rotateX(10deg) rotateY(8deg) scale(1.05);
  }
  50% {
    filter: brightness(1.2) saturate(1.3);
    transform: translateY(-25px) rotateX(12deg) rotateY(10deg) scale(1.08);
  }
}

/* ENHANCED GRADIENT SYSTEM */
:root {
  --gradient-3: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-4: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-5: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --gradient-6: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
  --gradient-7: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
  --gradient-8: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
  --gradient-9: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
  --gradient-10: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

/* SICK COLOR-SWITCHING NEON ANIMATION */
/* Removed annoying neon-flash animation */

/* EPIC VIDEO LOADING SCREEN */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  overflow: hidden;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* EPIC VIDEO BACKGROUND */
.loading-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.7) contrast(1.2) saturate(1.1);
  animation: video-pulse 6s ease-in-out infinite;
}

.loading-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0.5) 100%),
    radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.3) 70%);
  z-index: 2;
  animation: overlay-pulse 4s ease-in-out infinite;
}

/* Removed old photo elements - now using your custom video */

.loading-content {
  position: relative;
  z-index: 5;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(1px);
}

.loading-logo {
  font-size: 5rem;
  font-weight: 900;
  font-family: 'Anton', sans-serif;
  color: var(--nyc-white);
  text-shadow: 
    0 0 20px var(--dominic-red-glow),
    0 0 40px var(--nyc-gold-glow),
    0 2px 8px rgba(0,0,0,0.9),
    0 4px 12px rgba(0,0,0,0.7);
  letter-spacing: 4px;
  text-transform: uppercase;
  line-height: 1.1;
  filter: drop-shadow(0 0 10px rgba(0,0,0,0.8));
}

.loading-subtitle {
  font-size: 1.5rem;
  font-family: 'Rajdhani', sans-serif;
  color: var(--nyc-gold);
  margin-top: 15px;
  font-weight: 600;
  text-shadow: 
    0 0 15px var(--nyc-gold-glow),
    0 2px 6px rgba(0,0,0,0.8);
  letter-spacing: 2px;
  filter: drop-shadow(0 0 8px rgba(0,0,0,0.6));
}

.loading-tagline {
  font-size: 1rem;
  font-family: 'Exo 2', sans-serif;
  color: var(--nyc-white);
  margin-top: 10px;
  font-weight: 300;
  text-shadow: 
    0 0 10px var(--nyc-white-glow),
    0 2px 4px rgba(0,0,0,0.8);
  letter-spacing: 1px;
  filter: drop-shadow(0 0 6px rgba(0,0,0,0.5));
}

.loading-bar {
  width: 400px;
  height: 8px;
  background: rgba(0,0,0,0.5);
  border-radius: 4px;
  margin-top: 40px;
  overflow: hidden;
  border: 1px solid var(--nyc-gold);
  box-shadow: 
    inset 0 2px 4px rgba(0,0,0,0.3),
    0 0 20px var(--nyc-gold-glow);
  align-self: center;
}

.loading-progress {
  height: 100%;
  background: var(--gradient-1);
  border-radius: 4px;
  animation: loading-fill 2.5s ease-out forwards;
  box-shadow: 
    0 0 15px var(--dominic-red-glow),
    0 0 30px var(--nyc-gold-glow);
}

/* EPIC VIDEO ANIMATIONS */
@keyframes video-pulse {
  0%, 100% { 
    filter: brightness(0.7) contrast(1.2) saturate(1.1);
    transform: scale(1);
  }
  50% { 
    filter: brightness(0.9) contrast(1.4) saturate(1.3);
    transform: scale(1.02);
  }
}

@keyframes overlay-pulse {
  0%, 100% { 
    opacity: 0.8;
  }
  50% { 
    opacity: 0.6;
  }
}

@keyframes skyline-pulse {
  0%, 100% { 
    filter: brightness(1.3) contrast(1.4) saturate(1.2);
    transform: scale(1);
  }
  50% { 
    filter: brightness(1.6) contrast(1.6) saturate(1.4);
    transform: scale(1.01);
  }
}

@keyframes car-glow {
  0%, 100% { 
    box-shadow: 
      0 0 30px var(--dominic-red-glow),
      0 0 60px var(--nyc-gold-glow),
      0 10px 30px rgba(0,0,0,0.5);
  }
  50% { 
    box-shadow: 
      0 0 40px var(--dominic-red-glow),
      0 0 80px var(--nyc-gold-glow),
      0 0 120px var(--nyc-white-glow),
      0 10px 40px rgba(0,0,0,0.6);
  }
}

@keyframes city-lights-twinkle {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* Removed dominic-title-flash animation */

@keyframes loading-fill {
  0% { width: 0%; }
  100% { width: 100%; }
}

@keyframes exotic-cars-pulse {
  0%, 100% { 
    filter: brightness(1.2) contrast(1.3) saturate(1.1);
    transform: scale(1);
    box-shadow: 
      0 -20px 40px rgba(0,0,0,0.5),
      0 0 30px var(--dominic-red-glow);
  }
  50% { 
    filter: brightness(1.5) contrast(1.6) saturate(1.3);
    transform: scale(1.02);
    box-shadow: 
      0 -25px 50px rgba(0,0,0,0.6),
      0 0 50px var(--dominic-red-glow),
      0 0 80px var(--nyc-gold-glow);
  }
}

/* SCROLL REVEAL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* PREMIUM BUTTON EFFECTS */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  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;
}

.btn:hover::after {
  left: 100%;
}

/* ENHANCED FORM FOCUS */
input:focus, select:focus, textarea:focus {
  transform: scale(1.02);
  box-shadow: 
    0 0 0 3px rgba(255, 208, 0, 0.2),
    0 0 20px rgba(255, 208, 0, 0.1);
}

/* DIVINE TYPOGRAPHY ENHANCEMENTS */
.hero-subtitle {
  position: relative;
  overflow: hidden;
}

.hero-subtitle::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 208, 0, 0.2), transparent);
  animation: text-shimmer 3s ease-in-out infinite;
}

@keyframes text-shimmer {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: 100%; }
}

/* REMOVED OLD TITLE EFFECTS */

/* FLOATING TEXT ANIMATION */
.section-title {
  position: relative;
  animation: float-text 6s ease-in-out infinite;
}

@keyframes float-text {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-5px); }
}

/* TYPEWRITER EFFECT */
.typewriter {
  overflow: hidden;
  border-right: 2px solid var(--yellow);
  white-space: nowrap;
  animation: typewriter 3s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typewriter {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes blink-caret {
  from, to { border-color: transparent; }
  50% { border-color: var(--yellow); }
}

/* MAGNETIC BUTTONS */
.btn {
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover {
  transform: translateY(-3px) scale(1.05);
}

/* NEON GLOW EFFECTS */
.neon-glow {
  text-shadow: 
    0 0 5px var(--yellow),
    0 0 10px var(--yellow),
    0 0 15px var(--yellow),
    0 0 20px var(--yellow);
  /* Removed neon-flicker animation */
}

/* Removed neon-flicker animation */

/* MORPHING SHAPES REMOVED - NO MORE BOX */

@keyframes morph {
  0%, 100% { 
    transform: scale(1) rotate(0deg);
    border-radius: 50%;
  }
  25% { 
    transform: scale(1.2) rotate(90deg);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
  50% { 
    transform: scale(0.8) rotate(180deg);
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
  }
  75% { 
    transform: scale(1.1) rotate(270deg);
    border-radius: 40% 60% 60% 40% / 60% 40% 40% 60%;
  }
}

/* LIQUID TEXT EFFECT */
.liquid-text {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: liquid-flow 4s ease-in-out infinite;
}

@keyframes liquid-flow {
  0%, 100% { 
    background-position: 0% 50%;
  }
  50% { 
    background-position: 100% 50%;
  }
}

/* REMOVED HOLOGRAPHIC BOX EFFECT */

/* ENHANCED CARD HOVER EFFECTS */
.card {
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, var(--yellow), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  animation: rotate 2s linear infinite;
}

.card:hover::before {
  opacity: 0.1;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* PREMIUM SCROLL INDICATORS */
.scroll-indicator {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--border);
  z-index: 1000;
}

.scroll-progress {
  height: 100%;
  background: var(--gradient-1);
  width: 0%;
  transition: width 0.1s ease;
}

/* SICK DROPDOWN EFFECTS */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  z-index: 1000;
  min-width: 200px;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(20px);
  background: rgba(25, 25, 25, 0.9);
}

.dropdown-content.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
  animation: dropdownSlide 0.3s ease-out;
}

@keyframes dropdownSlide {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.dropdown-item {
  display: block;
  padding: 12px 16px;
  color: var(--text);
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-1);
  opacity: 0.1;
  transition: left 0.3s ease;
}

.dropdown-item:hover::before {
  left: 0;
}

.dropdown-item:hover {
  color: var(--yellow);
  background: rgba(255, 208, 0, 0.05);
  transform: translateX(5px);
}

/* GRADIENT BUTTON ENHANCEMENTS */
.btn-gradient {
  background: var(--gradient-1);
  color: #111;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-gradient::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 ease;
}

.btn-gradient:hover::before {
  left: 100%;
}

.btn-gradient:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 
    0 15px 30px rgba(255, 208, 0, 0.4),
    0 0 0 1px rgba(255, 208, 0, 0.5);
}

/* GRADIENT CARD OVERLAYS */
.card-gradient {
  position: relative;
  overflow: hidden;
  background: var(--card) !important;
}

.card-gradient::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-1);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.card-gradient:hover::after {
  opacity: 0.05;
}

/* SICK SUPREME-STYLE GRADIENTS */
.card-gradient .price {
  background: linear-gradient(45deg, #ff6b35, #f7931e, #ffd700, #ff6b35);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
  font-size: 1.2em;
  text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
  animation: supreme-glow 3s ease-in-out infinite;
  padding: 4px 8px;
  border-radius: 6px;
  display: inline-block;
}

.card-gradient .features {
  color: #ffffff !important;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(20, 20, 20, 0.9));
  padding: 12px;
  border-radius: 8px;
  margin: 8px 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.card-gradient .features li {
  color: #ffffff !important;
  margin-bottom: 8px;
  font-weight: 500;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

/* SICK CARD TITLES */
.card-gradient .card-title {
  background: linear-gradient(45deg, #ff0000, #ffffff, #1e3a8a, #ff0000);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: supreme-glow 3s ease-in-out infinite;
  padding: 8px 12px;
  border-radius: 8px;
  margin-bottom: 12px;
  display: inline-block;
  font-weight: 900;
  font-size: 1.3em;
}

@keyframes supreme-glow {
  0% { 
    background-position: 0% 50%;
    filter: brightness(1);
  }
  50% { 
    background-position: 100% 50%;
    filter: brightness(1.2);
  }
  100% { 
    background-position: 0% 50%;
    filter: brightness(1);
  }
}

/* GRADIENT TEXT WITH BETTER CONTRAST */
.gradient-text-1 {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px rgba(255, 208, 0, 0.3);
}

.gradient-text-2 {
  background: var(--gradient-3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
}

.gradient-text-3 {
  background: var(--gradient-4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px rgba(240, 147, 251, 0.3);
}

.gradient-text-4 {
  background: var(--gradient-5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px rgba(79, 172, 254, 0.3);
}

/* REMOVED DUPLICATE GRADIENT TEXT EFFECTS */

/* ANIMATED GRADIENT BACKGROUNDS */
.gradient-bg-1 {
  background: var(--gradient-1);
  background-size: 400% 400%;
  animation: gradientShift 8s ease infinite;
}

.gradient-bg-2 {
  background: var(--gradient-3);
  background-size: 400% 400%;
  animation: gradientShift 6s ease infinite;
}

.gradient-bg-3 {
  background: var(--gradient-4);
  background-size: 400% 400%;
  animation: gradientShift 10s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* PREMIUM GRADIENT BORDERS */
.gradient-border-1 {
  border: 2px solid;
  border-image: var(--gradient-1) 1;
}

.gradient-border-2 {
  border: 2px solid;
  border-image: var(--gradient-3) 1;
}

.gradient-border-3 {
  border: 2px solid;
  border-image: var(--gradient-4) 1;
}

/* ENHANCED MOBILE EXPERIENCE */
@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(32px, 10vw, 56px);
    line-height: 1.1;
  }
  
  .particle {
    display: none; /* Hide particles on mobile for performance */
  }
}

/* FINAL DIVINE TOUCHES */
/* Matrix-style rain effect */
.matrix-rain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.1;
}

/* Premium glassmorphism */
.glassmorphism {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Cyberpunk grid background */
.cyber-grid {
  background-image: 
    linear-gradient(rgba(255, 208, 0, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 208, 0, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
  0% { background-position: 0 0; }
  100% { background-position: 50px 50px; }
}

/* Premium gradient borders */
.gradient-border {
  position: relative;
  background: var(--bg);
  border-radius: var(--radius);
}

.gradient-border::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 2px;
  background: var(--gradient-1);
  border-radius: inherit;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: xor;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
}

/* Ultimate button hover effects */
.btn-ultimate {
  position: relative;
  overflow: hidden;
  background: var(--gradient-1);
  color: #111;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-ultimate::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.5s;
}

.btn-ultimate:hover::before {
  left: 100%;
}

.btn-ultimate:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 
    0 20px 40px rgba(255, 208, 0, 0.4),
    0 0 0 1px rgba(255, 208, 0, 0.5);
}

/* Premium card glow */
.card-premium {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.card-premium::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-1);
  border-radius: var(--radius);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card-premium:hover::before {
  opacity: 1;
}

/* Ultimate text effects */
.text-ultimate {
  background: linear-gradient(45deg, #ffd000, #ff6b35, #667eea, #764ba2, #ffd000);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: ultimate-gradient 3s ease-in-out infinite;
}

@keyframes ultimate-gradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Premium scrollbar */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--bg-2);
  border-radius: 6px;
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-1);
  border-radius: 6px;
  border: 2px solid var(--bg-2);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gradient-2);
}

/* Ultimate loading animation */
@keyframes ultimate-loading {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.1); }
  100% { transform: rotate(360deg) scale(1); }
}

.loading-ultimate {
  animation: ultimate-loading 2s ease-in-out infinite;
}

/* Premium focus states */
*:focus {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Ultimate performance optimizations */
.will-change-transform {
  will-change: transform;
}

.will-change-opacity {
  will-change: opacity;
}

/* Image optimization */
.nyc-skyline-image,
.luxury-car {
  will-change: transform, filter;
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* Smooth scrolling optimization */
html {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

/* GPU acceleration for animations */
.hero-title,
.loading-logo,
.card {
  transform: translateZ(0);
  backface-visibility: hidden;
  perspective: 1000px;
}

/* Premium accessibility */
@media (prefers-reduced-motion: reduce) {
  .particle,
  .hero-title,
  .section-title,
  .btn,
  .card {
    animation: none !important;
    transition: none !important;
  }
}

/* Ultimate mobile optimizations */
@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(28px, 12vw, 48px);
  }
  
  .btn {
    padding: 12px 20px;
    font-size: 14px;
  }
  
  .card {
    margin-bottom: 16px;
  }
}

/* MailerLite Form Styling - NYC Theme */
@import url("https://assets.mlcdn.com/fonts.css?version=1758718");

/* LOADER */
.ml-form-embedSubmitLoad {
  display: inline-block;
  width: 20px;
  height: 20px;
}

.ml-form-embedSubmitLoad:after {
  content: " ";
  display: block;
  width: 11px;
  height: 11px;
  margin: 1px;
  border-radius: 50%;
  border: 4px solid #fff;
  border-color: #ffffff #ffffff #ffffff transparent;
  animation: ml-form-embedSubmitLoad 1.2s linear infinite;
}

@keyframes ml-form-embedSubmitLoad {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

#mlb2-31382249.ml-form-embedContainer {
  box-sizing: border-box;
  display: table;
  margin: 0 auto;
  position: static;
  width: 100% !important;
}

#mlb2-31382249.ml-form-embedContainer h4,
#mlb2-31382249.ml-form-embedContainer p,
#mlb2-31382249.ml-form-embedContainer span,
#mlb2-31382249.ml-form-embedContainer button {
  text-transform: none !important;
  letter-spacing: normal !important;
}

#mlb2-31382249.ml-form-embedContainer .ml-form-embedWrapper {
  background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.9) 100%);
  border: 2px solid var(--nyc-gold);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  box-sizing: border-box;
  display: inline-block !important;
  margin: 0;
  padding: 0;
  position: relative;
}

#mlb2-31382249.ml-form-embedContainer .ml-form-embedWrapper.embedForm { 
  max-width: 500px; 
  width: 100%; 
}

#mlb2-31382249.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody,
#mlb2-31382249.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody {
  padding: 30px;
}

#mlb2-31382249.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent,
#mlb2-31382249.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent {
  text-align: center;
  margin: 0 0 20px 0;
}

#mlb2-31382249.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent h4,
#mlb2-31382249.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent h4 {
  color: #ffffff;
  font-family: 'Anton', sans-serif;
  font-size: 28px;
  font-weight: 900;
  margin: 0 0 10px 0;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 20px rgba(255,255,255,0.5);
}

#mlb2-31382249.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent p,
#mlb2-31382249.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent p {
  color: #ffffff;
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  margin: 0 0 20px 0;
  text-align: center;
  text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

#mlb2-31382249.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow {
  margin: 0 0 15px 0;
  width: 100%;
}

#mlb2-31382249.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow.ml-last-item {
  margin: 0;
}

#mlb2-31382249.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input {
  background-color: rgba(255,255,255,0.9) !important;
  color: #000000 !important;
  border: 2px solid var(--nyc-gold) !important;
  border-radius: 8px !important;
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px !important;
  font-weight: 500;
  height: 50px;
  line-height: 21px !important;
  margin-bottom: 0;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  padding: 15px 20px !important;
  width: 100% !important;
  box-sizing: border-box !important;
  max-width: 100% !important;
  transition: all 0.3s ease;
}

#mlb2-31382249.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input:focus {
  border-color: #ffffff !important;
  box-shadow: 0 0 20px rgba(255,255,255,0.5) !important;
  outline: none !important;
}

#mlb2-31382249.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input::-webkit-input-placeholder {
  color: #666666; 
  font-weight: 400;
}

#mlb2-31382249.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit {
  margin: 20px 0 0 0;
  float: left;
  width: 100%;
}

#mlb2-31382249.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button {
  background: linear-gradient(135deg, var(--nyc-gold) 0%, #059669 50%, #d97706 100%) !important;
  border: none !important;
  border-radius: 8px !important;
  box-shadow: 0 4px 20px rgba(251,191,36,0.4) !important;
  color: #000000 !important;
  cursor: pointer;
  font-family: 'Anton', sans-serif !important;
  font-size: 18px !important;
  font-weight: 900 !important;
  letter-spacing: 2px;
  line-height: 21px !important;
  height: 60px;
  padding: 15px 30px !important;
  width: 100% !important;
  box-sizing: border-box !important;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

#mlb2-31382249.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button:hover {
  background: linear-gradient(135deg, #ffffff 0%, var(--nyc-gold) 50%, #059669 100%) !important;
  box-shadow: 0 6px 30px rgba(251,191,36,0.6) !important;
  transform: translateY(-2px);
}

#mlb2-31382249.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button.loading {
  display: none;
}

.ml-error input, .ml-error textarea, .ml-error select {
  border-color: #ff0000!important;
  box-shadow: 0 0 10px rgba(255,0,0,0.3) !important;
}

/* Reviews & Ratings Section */
.rating-summary {
  text-align: center;
  margin: 40px 0;
  padding: 30px;
  background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.9) 100%);
  border: 2px solid var(--nyc-gold);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

/* Reviews Grid with Show More Functionality */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin: 30px 0;
  max-height: 450px;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.reviews-grid.expanded {
  max-height: none;
  overflow: visible;
}

/* Show only 3 rows (6 reviews) with animation */
.reviews-grid .review-card:nth-child(n+7) {
  display: none;
}

.reviews-grid.expanded .review-card:nth-child(n+5) {
  display: block;
}

/* Reviews Controls */
.reviews-controls {
  text-align: center;
  margin: 30px 0;
}

.reviews-controls .btn {
  background: transparent;
  border: 2px solid var(--nyc-gold);
  color: var(--nyc-gold);
  padding: 12px 24px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.reviews-controls .btn:hover {
  background: var(--nyc-gold);
  color: #111;
  transform: translateY(-2px);
}

.reviews-controls .btn:active {
  transform: translateY(0);
}

/* Dynamic Reviews Styling */
.review-card.dynamic {
  background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.9) 100%);
  border: 2px solid var(--nyc-gold);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  animation: slideInFromTop 0.5s ease-out;
}

.review-card.dynamic:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(251,191,36,0.2);
  border-color: #ffffff;
}

@keyframes slideInFromTop {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.overall-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.rating-stars {
  display: flex;
  gap: 5px;
  font-size: 32px;
}

.rating-stars .star {
  color: #10b981;
  text-shadow: 0 0 10px rgba(251,191,36,0.5);
}

.rating-score {
  font-family: 'Anton', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: #ffffff;
  text-shadow: 0 0 20px rgba(255,255,255,0.5);
}

.rating-count {
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  color: #10b981;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin: 30px 0;
}

.review-card {
  background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.9) 100%);
  border: 2px solid var(--nyc-gold);
  border-radius: 10px;
  padding: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateX(-100%);
  animation: slideInFromLeft 1s ease-out forwards;
  margin: 6px 0;
}

/* SHOW ONLY 3 ROWS - HIDE THE REST */
.review-card:nth-child(n+7) {
  display: none;
}

/* FIRST ROW MOVES LEFT */
.review-card:nth-child(1),
.review-card:nth-child(2) {
  animation: slideInFromLeft 1s ease-out forwards;
  animation-delay: 0.2s;
}

/* SECOND ROW MOVES RIGHT */
.review-card:nth-child(3),
.review-card:nth-child(4) {
  animation: slideInFromRight 1s ease-out forwards;
  animation-delay: 0.6s;
}

/* THIRD ROW MOVES LEFT */
.review-card:nth-child(5),
.review-card:nth-child(6) {
  animation: slideInFromLeft 1s ease-out forwards;
  animation-delay: 1.0s;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(251,191,36,0.2);
  border-color: #ffffff;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.reviewer-info {
  display: flex;
  flex-direction: column;
}

.reviewer-name {
  font-family: 'Anton', sans-serif;
  font-size: 14px;
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.review-date {
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  color: #10b981;
  font-weight: 500;
}
.review-rating {
  display: flex;
  gap: 3px;
  font-size: 14px;
}

.review-rating .star {
  color: #10b981;
  text-shadow: 0 0 5px rgba(251,191,36,0.5);
}

/* Star rating display in review cards */
.review-card .review-rating {
  display: flex;
  gap: 2px;
  font-size: 12px;
  align-items: center;
}

.review-card .review-rating .star {
  color: #10b981;
  text-shadow: 0 0 3px rgba(251,191,36,0.5);
  font-size: 12px;
}

.review-text {
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  line-height: 18px;
  color: #ffffff;
  font-weight: 500;
}

/* EXTRA SMALL MOBILE OPTIMIZATIONS */
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .section-title {
    font-size: 1.8rem;
    line-height: 1.1;
  }
  
  .section-kicker {
    font-size: 0.9rem;
  }

  .service-features li {
    font-size: 0.85rem;
    padding: 6px 0;
  }
  
  /* Service cards extra small mobile */
  .service-card {
    padding: 15px;
  }
  
  .service-card h3 {
    font-size: 1.2rem;
  }
  
  /* Requirements extra small mobile */
  .requirement-card {
    padding: 15px;
  }
  
  .requirement-card h3 {
    font-size: 1rem;
  }
  
  .requirement-card p {
    font-size: 0.8rem;
  }
  
  /* FAQ extra small mobile */
  .faq-item {
    padding: 15px;
  }
  
  .faq-item summary {
    font-size: 0.95rem;
  }
  
  .faq-item p {
    font-size: 0.85rem;
  }
  
  /* Referral extra small mobile */
  .referral-content {
    padding: 20px;
  }
  
  .referral-text h3 {
    font-size: 1.3rem;
  }
  
  .referral-text p {
    font-size: 0.9rem;
  }
  
  /* Step numbers extra small */
  .step-number {
    width: 22px;
    height: 22px;
    font-size: 0.9rem;
  }
  
  .step {
    font-size: 0.85rem;
  }
}

/* Desktop optimizations */
@media (min-width: 769px) {
  .nav-toggle {
    display: none;
  }
  
  .nav {
    display: flex;
    position: static;
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
    gap: 22px;
  }
  
  .nav-link {
    display: inline-block;
    padding: 8px 12px;
    margin: 0;
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    opacity: 0.9;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
  }
  
  .nav-link:hover {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    transform: translateY(-1px) scale(1.05);
    text-shadow: 0 0 10px rgba(251,191,36,0.6);
  }
  
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transform: translateX(-50%);
    transition: width 0.3s ease;
  }
  
  .nav-link:hover::after {
    width: 80%;
  }
  
  /* Desktop hero optimizations */
  .hero-title {
    font-size: clamp(60px, 10vw, 120px);
    letter-spacing: 8px;
  }
  
  .hero-subtitle {
    font-size: clamp(24px, 4vw, 32px);
    letter-spacing: 3px;
  }
  
  /* Desktop card optimizations */
  .cards {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  
  .card:hover {
    transform: translateY(-20px) rotateX(10deg) rotateY(8deg) scale(1.05);
    box-shadow: 0 35px 70px rgba(0,0,0,0.6);
  }
} 
 
 