/* ===== HOME PAGE CSS - PREMIUM GRADIENT DESIGN ===== */
:root {
  /* Brand Colors - Green & Yellow */
  --primary-green: #10B981;
  --primary-green-dark: #059669;
  --primary-green-light: #34D399;
  --primary-yellow: #F59E0B;
  --primary-yellow-dark: #D97706;
  --primary-yellow-light: #FBBF24;

  /* Extended Brand Palette */
  --emerald-50: #ECFDF5;
  --emerald-100: #D1FAE5;
  --emerald-200: #A7F3D0;
  --emerald-300: #6EE7B7;
  --emerald-400: #34D399;
  --emerald-500: #10B981;
  --emerald-600: #059669;
  --emerald-700: #047857;
  --emerald-800: #065F46;
  --emerald-900: #064E3B;

  --amber-50: #FFFBEB;
  --amber-100: #FEF3C7;
  --amber-200: #FDE68A;
  --amber-300: #FCD34D;
  --amber-400: #FBBF24;
  --amber-500: #F59E0B;
  --amber-600: #D97706;
  --amber-700: #B45309;
  --amber-800: #92400E;
  --amber-900: #78350F;

  /* Neutral Colors */
  --slate-50: #F8FAFC;
  --slate-100: #F1F5F9;
  --slate-200: #E2E8F0;
  --slate-300: #CBD5E1;
  --slate-400: #94A3B8;
  --slate-500: #64748B;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1E293B;
  --slate-900: #0F172A;

  /* Premium Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-yellow) 100%);
  --gradient-emerald: linear-gradient(135deg, var(--emerald-400) 0%, var(--emerald-600) 100%);
  --gradient-amber: linear-gradient(135deg, var(--amber-400) 0%, var(--amber-600) 100%);
  --gradient-hero: linear-gradient(135deg, #059669 0%, #10B981 50%, #F59E0B 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  --gradient-dark: linear-gradient(135deg, var(--slate-900) 0%, var(--slate-800) 100%);

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;

  /* Transitions */
  --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--slate-700);
  overflow-x: hidden;
}

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

/* ===== HEADER - PREMIUM DESIGN ===== */
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-normal);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-xl);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-img {
  height: 40px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(16, 185, 129, 0.3));
}

.logo-text {
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.025em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  color: var(--slate-700);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition-fast);
  position: relative;
  padding: 0.5rem 0;
}

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

.nav-link.active {
  color: var(--primary-green);
  font-weight: 600;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

/* Auth Section */
.auth-section {
  position: relative;
}

.auth-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: var(--gradient-primary);
  color: white;
  border-radius: var(--radius-lg);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-normal);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.auth-text:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}

.auth-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  width: 280px;
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-2xl);
  border: 1px solid var(--slate-200);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
}

.auth-section:hover .auth-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.auth-options {
  padding: 1rem;
}

.auth-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--slate-700);
  transition: var(--transition-fast);
  border: 1px solid transparent;
}

.auth-option:hover {
  background: var(--slate-50);
  border-color: var(--slate-200);
  transform: translateX(4px);
}

.auth-option i {
  width: 20px;
  text-align: center;
  font-size: 1.1rem;
  color: var(--primary-green);
}

.auth-option strong {
  display: block;
  font-weight: 600;
  color: var(--slate-900);
}

.auth-option small {
  color: var(--slate-500);
  font-size: 0.875rem;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  z-index: 1001;
}

.mobile-menu span {
  width: 24px;
  height: 2px;
  background: var(--slate-700);
  transition: var(--transition-normal);
}

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

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

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

/* ===== HERO SECTION - STUNNING GRADIENT ===== */
.hero {
  background: var(--gradient-hero);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 0 4rem;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.1)" points="0,1000 1000,0 1000,1000"/></svg>');
  background-size: cover;
  animation: float 20s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(1deg);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
}

.hero-highlight {
  background: linear-gradient(45deg, #FFD700, #FFFF00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-top: 0.5rem;
}

.hero-description {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  line-height: 1.6;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-normal);
  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.2), transparent);
  transition: left 0.5s;
}

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

.btn-primary {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--slate-700);
  border: 2px solid var(--slate-300);
  font-weight: 500;
}

.btn-outline:hover {
  background: var(--slate-50);
  border-color: var(--primary-green);
  color: var(--primary-green);
  transform: translateY(-2px);
}

.btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 1.1rem;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  background: linear-gradient(45deg, #FFFFFF, #F0FDF4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
  font-weight: 500;
}

/* ===== SERVICES SECTION ===== */
.services {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--slate-50) 0%, white 100%);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-primary);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--slate-600);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

/* 4-column layout for homepage services - Desktop only */
.services-grid.services-grid-four {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  width: 100%;
}

/* Tablet: 2 columns */
@media (max-width: 1024px) {
  .services-grid.services-grid-four {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.5rem;
  }
}

/* Mobile: 1 column (vertical stack) */
@media (max-width: 768px) {
  .services-grid.services-grid-four {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }
}

/* Small mobile: ensure single column */
@media (max-width: 480px) {
  .services-grid.services-grid-four {
    grid-template-columns: 1fr !important;
    gap: 1.25rem;
  }
}

/* Ensure service cards in 4-column layout are properly sized */
.services-grid-four .service-card {
  padding: 2rem 1.5rem;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.services-grid-four .service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.services-grid-four .service-card p {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.services-grid-four .service-features {
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

/* Tablet adjustments */
@media (max-width: 1024px) {
  .services-grid-four .service-card {
    padding: 2rem 1.5rem;
    min-height: auto;
  }

  .services-grid-four .service-card h3 {
    font-size: 1.3rem;
  }

  .services-grid-four .service-card p {
    font-size: 0.95rem;
  }

  .services-grid-four .service-features {
    font-size: 0.9rem;
  }
}

/* Mobile adjustments - Full width cards */
@media (max-width: 768px) {
  .services-grid-four .service-card {
    padding: 1.75rem 1.5rem;
    min-height: auto;
    width: 100%;
    max-width: 100%;
  }

  .services-grid-four .service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
  }

  .services-grid-four .service-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
  }

  .services-grid-four .service-features {
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
  }

  .services-grid-four .service-features li {
    padding: 0.25rem 0;
  }

  .services-grid-four .service-action {
    margin-top: 1rem;
  }
}

/* Small mobile - Compact layout */
@media (max-width: 480px) {
  .services-grid-four .service-card {
    padding: 1.5rem 1.25rem;
  }

  .services-grid-four .service-card h3 {
    font-size: 1.25rem;
  }

  .services-grid-four .service-card p {
    font-size: 0.9rem;
  }

  .services-grid-four .service-features {
    font-size: 0.85rem;
  }
}

.service-card {
  background: white;
  padding: 3rem 2rem;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--slate-200);
  text-align: center;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

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

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

.service-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--slate-600);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}

.service-features li {
  padding: 0.5rem 0;
  color: var(--slate-700);
  font-weight: 500;
  position: relative;
  padding-left: 1.5rem;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-green);
  font-weight: bold;
}

.service-action {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin-top: auto;
}

.service-action .price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-green);
  background: var(--emerald-50);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-lg);
  border: 2px solid var(--emerald-200);
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-choose {
  padding: 6rem 0;
  background: var(--gradient-dark);
  color: white;
  position: relative;
}

.why-choose .section-title {
  background: linear-gradient(45deg, var(--emerald-300), var(--amber-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-choose .section-subtitle {
  color: var(--slate-300);
}

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

.feature {
  text-align: center;
  padding: 2rem;
  background: var(--gradient-glass);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-normal);
}

.feature:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.1);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.feature h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}

.feature p {
  color: var(--slate-300);
  line-height: 1.6;
}

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--emerald-50) 0%, var(--amber-50) 100%);
  position: relative;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(90deg, var(--emerald-500) 0%, var(--amber-500) 100%);
  border-radius: 2px;
  z-index: 1;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--emerald-500) 0%, var(--amber-500) 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 800;
  margin: 0 auto 2rem;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
  position: relative;
  z-index: 3;
  border: 4px solid white;
  transition: all 0.3s ease;
}

.step-number:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
}

.step-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.step-content p {
  color: var(--slate-600);
  line-height: 1.7;
  font-size: 1rem;
  margin: 0;
  padding: 0 1rem;
}

/* ===== CTA SECTION ===== */
.cta {
  padding: 6rem 0;
  background: var(--gradient-hero);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.1)" points="0,0 1000,1000 0,1000"/></svg>');
  background-size: cover;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.cta h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FOOTER - COMPACT LAYOUT ===== */
.footer {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: white;
  padding: 2.5rem 0 1.5rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.5), transparent);
}

/* Compact Header */
.footer-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-header .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.footer-header .logo-img {
  width: 35px;
  height: 35px;
}

.footer-header .logo-text {
  font-size: 1.1rem;
  font-weight: 700;
}

.footer-header .footer-description {
  max-width: 500px;
  margin: 0 auto;
  font-size: 0.95rem;
  color: var(--slate-300);
  line-height: 1.6;
}

/* Compact 2-Column Layout: Contact Left, Payment Right */
.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
  align-items: start;
}

.contact-section,
.payment-section {
  position: relative;
}

.contact-section h4,
.payment-section h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
  font-weight: 600;
  position: relative;
  padding-bottom: 0.5rem;
}

.contact-section h4::after,
.payment-section h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background: var(--primary-green);
  border-radius: 2px;
}

.payment-section {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding-left: 2rem;
}

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--slate-200);
  padding: 0.75rem;
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-item:hover {
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.3);
  transform: translateX(5px);
}

.contact-item svg {
  color: var(--primary-green);
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.contact-item span {
  font-weight: 500;
}

.payment-info {
  background: rgba(255, 255, 255, 0.05);
  padding: 0;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}



.till-label {
  display: block;
  font-size: 0.9rem;
  color: var(--slate-400);
  margin-bottom: 0.5rem;
}

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

.till-name {
  display: block;
  font-size: 0.9rem;
  color: var(--slate-400);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: var(--slate-400);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-links a {
  color: var(--slate-300);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--primary-green);
}

.footer-links span {
  color: var(--slate-500);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .footer {
    padding: 2rem 0 1.5rem;
  }

  .footer-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
  }

  .footer-header .footer-description {
    font-size: 0.9rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .payment-section {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
  }

  .contact-section h4::after,
  .payment-section h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .contact-item {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .till-number {
    font-size: 1.8rem;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
    padding: 0.5rem 0;
  }

  .nav-link {
    display: block;
    padding: 1rem;
    font-size: 1.1rem;
  }

  .mobile-menu {
    display: flex;
  }

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

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .hero-stats {
    gap: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .process-steps::before {
    display: none;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-item {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

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

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

  .stat-number {
    font-size: 2rem;
  }

  .service-card {
    padding: 2rem 1.5rem;
  }
}

.services-grid {
  grid-template-columns: 1fr;
}

.features-grid {
  grid-template-columns: 1fr;
}

.process-steps::before {
  display: none;
}

.cta-buttons {
  flex-direction: column;
  align-items: center;
}

.footer-content {
  grid-template-columns: 1fr;
  text-align: center;
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

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

  .container {
    padding: 0 1rem;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* ===== SMOOTH SCROLLING ===== */
html {
  scroll-behavior: smooth;
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus styles */
.btn:focus-visible,
.nav-link:focus-visible {
  outline: 2px solid var(--primary-green);
  outline-offset: 2px;
}

/* ===== UPDATED BUTTON STYLES ===== */
.btn-primary {
  background: var(--gradient-amber);
  backdrop-filter: blur(10px);
  color: var(--slate-900);
  border: 1px solid rgba(245, 158, 11, 0.3);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
  font-weight: 700;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--amber-500) 0%, var(--amber-600) 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(245, 158, 11, 0.4);
  color: white;
}

/* ===== IMPROVED WHY CHOOSE US SECTION ===== */
.why-choose {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--emerald-50) 0%, var(--amber-50) 100%);
  color: var(--slate-800);
  position: relative;
  overflow: hidden;
}

.why-choose::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.05"><polygon fill="%23059669" points="0,0 1000,1000 0,1000"/><polygon fill="%23F59E0B" points="1000,0 0,1000 1000,1000"/></svg>');
  background-size: cover;
}

.why-choose .section-title {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-choose .section-subtitle {
  color: var(--slate-600);
}

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

.feature {
  text-align: center;
  padding: 2.5rem 2rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: var(--transition-normal);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.feature:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
  background: rgba(255, 255, 255, 0.95);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.feature h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--slate-900);
}

.feature p {
  color: var(--slate-600);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ===== ENHANCED CTA BUTTON IN HERO ===== */
.hero-buttons .btn-primary {
  background: var(--gradient-amber);
  color: var(--slate-900);
  border: 2px solid rgba(255, 255, 255, 0.5);
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.hero-buttons .btn-primary:hover {
  background: linear-gradient(135deg, var(--amber-400) 0%, var(--amber-500) 100%);
  color: var(--slate-900);
  border-color: white;
  box-shadow: 0 12px 35px rgba(245, 158, 11, 0.5);
}

/* ===== ADDITIONAL ENHANCEMENTS ===== */
/* Add subtle animation to feature icons */
.feature-icon {
  transition: var(--transition-normal);
}

.feature:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

/* Add gradient background pattern to features */
.feature::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(16, 185, 129, 0.05),
      transparent);
  transition: left 0.6s ease;
}

.feature:hover::after {
  left: 100%;
}

/* ==
=== PAGE-SPECIFIC STYLES ===== */

/* Page Hero for Internal Pages */
.page-hero {
  background: var(--gradient-hero);
  color: white;
  padding: 12rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.page-hero .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.page-hero .hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.page-hero .hero-highlight {
  color: var(--primary-yellow);
  display: inline-block;
}

.page-hero .hero-description {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Service Categories */
.service-category {
  background: white;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--slate-200);
  margin-bottom: 2rem;
  transition: var(--transition-normal);
}

.service-category:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-2xl);
}

.category-header {
  background: var(--gradient-emerald);
  color: white;
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.category-icon {
  font-size: 2.5rem;
}

.category-header h3 {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 700;
}

.service-items {
  padding: 0;
}

.service-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  border-bottom: 1px solid var(--slate-200);
  transition: var(--transition-fast);
}

.service-item:last-child {
  border-bottom: none;
}

.service-item:hover {
  background: var(--slate-50);
}

.service-info h4 {
  font-size: 1.3rem;
  color: var(--primary-green);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.service-info p {
  color: var(--slate-600);
  margin: 0;
  max-width: 500px;
  line-height: 1.6;
}

.service-action {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-green);
  white-space: nowrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: var(--transition-fast);
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: var(--gradient-amber);
  color: var(--slate-900);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.btn-secondary {
  background: white;
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
}

.btn-secondary:hover {
  background: var(--primary-green);
  color: white;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  background: white;
  color: var(--primary-green);
  border-color: white;
}

.btn-small {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

.btn-large {
  padding: 1.125rem 2.25rem;
  font-size: 1.1rem;
}

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

.form-label {
  display: block;
  font-weight: 600;
  color: var(--slate-700);
  margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--slate-300);
  border-radius: var(--radius-lg);
  font-size: 1rem;
  transition: var(--transition-fast);
  background: white;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

/* Upload Area */
.upload-area {
  border: 2px dashed var(--slate-300);
  border-radius: var(--radius-xl);
  padding: 3rem;
  text-align: center;
  background: var(--slate-50);
  transition: var(--transition-fast);
  cursor: pointer;
}

.upload-area:hover {
  border-color: var(--primary-green);
  background: var(--emerald-50);
}

.upload-area.dragover {
  border-color: var(--primary-green);
  background: var(--emerald-100);
}

.upload-icon {
  font-size: 3rem;
  color: var(--slate-400);
  margin-bottom: 1rem;
}

.upload-area:hover .upload-icon {
  color: var(--primary-green);
}

/* Payment Cards */
.payment-method {
  background: white;
  border: 2px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 2rem;
  margin-bottom: 1.5rem;
  transition: var(--transition-fast);
  cursor: pointer;
}

.payment-method:hover {
  border-color: var(--primary-green);
  box-shadow: var(--shadow-md);
}

.payment-method.selected {
  border-color: var(--primary-green);
  background: var(--emerald-50);
}

.payment-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.payment-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-emerald);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
}

.payment-info h3 {
  margin: 0 0 0.25rem 0;
  color: var(--slate-900);
  font-size: 1.3rem;
}

.payment-info p {
  margin: 0;
  color: var(--slate-600);
}

/* Compact Till Badge */
.till-badge {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: white;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.25);
}

.till-badge::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: pulse 3s ease-in-out infinite;
}

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

.till-label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white;
  opacity: 0.9;
  margin-bottom: 0.75rem;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.till-number {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 0.75rem;
  letter-spacing: 1px;
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
  font-family: 'Poppins', sans-serif;
}

.till-name {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
  opacity: 0.95;
  position: relative;
  z-index: 1;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Progress Steps */
.progress-steps {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
  padding: 0 1rem;
}

.progress-step {
  display: flex;
  align-items: center;
  position: relative;
}

.progress-step:not(:last-child)::after {
  content: '';
  width: 60px;
  height: 2px;
  background: var(--slate-300);
  margin: 0 1rem;
}

.progress-step.completed:not(:last-child)::after {
  background: var(--primary-green);
}

.step-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--slate-300);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  position: relative;
  z-index: 2;
}

.progress-step.completed .step-circle {
  background: var(--primary-green);
}

.progress-step.active .step-circle {
  background: var(--primary-yellow);
  color: var(--slate-900);
}

/* Alerts */
.alert {
  padding: 1rem 1.5rem;
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
  border-left: 4px solid;
}

.alert-success {
  background: var(--emerald-50);
  border-color: var(--primary-green);
  color: var(--emerald-800);
}

.alert-warning {
  background: var(--amber-50);
  border-color: var(--primary-yellow);
  color: var(--amber-800);
}

.alert-error {
  background: #fef2f2;
  border-color: #ef4444;
  color: #dc2626;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .page-hero {
    padding: 10rem 0 4rem;
  }

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

  .service-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    text-align: left;
  }

  .service-action {
    width: 100%;
    justify-content: space-between;
  }

  .category-header {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .progress-steps {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .progress-step:not(:last-child)::after {
    width: 2px;
    height: 30px;
    margin: 0.5rem 0;
  }
}

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

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

  .service-action {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

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

/* Loading States */
.loading {
  opacity: 0.6;
  pointer-events: none;
  position: relative;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid transparent;
  border-top: 2px solid var(--primary-green);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

  100% {
    transform: rotate(360deg);
  }
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mb-0 {
  margin-bottom: 0;
}

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

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

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

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

.mt-0 {
  margin-top: 0;
}

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

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

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

.mt-4 {
  margin-top: 3rem;
}

.hidden {
  display: none;
}

.visible {
  display: block;
}

/* Print Styles */
@media print {

  .header,
  .mobile-menu,
  .btn {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.4;
  }

  .page-hero {
    background: none !important;
    color: black !important;
    padding: 2rem 0 !important;
  }
}

/* ===
== WEBSITE DEVELOPMENT SAMPLES SECTION ===== */
.website-samples {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--slate-50) 0%, var(--emerald-50) 50%, var(--amber-50) 100%);
  position: relative;
  overflow: hidden;
}

.website-samples::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.03"><path fill="%23059669" d="M500,100C229,100,100,229,100,500s129,400,400,400s400-129,400-400S771,100,500,100z"/><path fill="%23F59E0B" d="M200,300c0-55,45-100,100-100s100,45,100,100s-45,100-100,100S200,355,200,300z"/><path fill="%2310B981" d="M700,700c0-55,45-100,100-100s100,45,100,100s-45,100-100,100S700,755,700,700z"/></svg>');
  background-size: cover;
  animation: floatBackground 20s ease-in-out infinite;
}

@keyframes floatBackground {

  0%,
  100% {
    transform: translateY(0px) scale(1);
  }

  50% {
    transform: translateY(-20px) scale(1.05);
  }
}

.samples-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.samples-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.025em;
}

.samples-subtitle {
  font-size: 1.2rem;
  color: var(--slate-600);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Samples Grid */
.samples-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.sample-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-2xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-align: center;
}

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

.sample-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: var(--shadow-2xl);
  background: rgba(255, 255, 255, 0.95);
}

.sample-card:hover::before {
  height: 6px;
}

.sample-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.05), transparent);
  transition: left 0.6s ease;
}

.sample-card:hover::after {
  left: 100%;
}

.sample-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-primary);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.sample-card:hover .sample-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
}

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

.sample-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.sample-description {
  color: var(--slate-600);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-size: 0.95rem;
}

.sample-price {
  display: inline-block;
  background: var(--gradient-amber);
  color: var(--slate-900);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-lg);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 2rem;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
  transition: all 0.3s ease;
}

.sample-card:hover .sample-price {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

/* CTA Section */
.samples-cta {
  text-align: center;
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  padding: 3rem;
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow-lg);
  max-width: 600px;
  margin: 0 auto;
}

.samples-cta h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.samples-cta p {
  color: var(--slate-600);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 3rem;
  background: var(--gradient-amber);
  color: var(--slate-900);
  text-decoration: none;
  border-radius: var(--radius-xl);
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.cta-button::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 ease;
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(245, 158, 11, 0.5);
  color: var(--slate-900);
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.cta-button:hover i {
  transform: translateX(4px);
}

/* Website Types Tags */
.website-types {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
  justify-content: center;
}

.website-tag {
  background: var(--emerald-100);
  color: var(--primary-green);
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-lg);
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid var(--emerald-200);
  transition: all 0.3s ease;
}

.website-tag:hover {
  background: var(--primary-green);
  color: white;
  transform: translateY(-2px);
}

/* Modal Styles for Website Samples */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.modal-content {
  background: white;
  margin: 2% auto;
  padding: 0;
  border-radius: var(--radius-2xl);
  width: 95%;
  max-width: 1000px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-2xl);
}

.modal-header {
  background: var(--gradient-primary);
  color: white;
  padding: 2rem;
  border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
  position: relative;
}

.close-modal {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  color: white;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.close-modal:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.modal-body {
  padding: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .samples-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .sample-card {
    padding: 2rem;
  }

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

  .samples-cta {
    padding: 2rem;
    margin: 0 1rem;
  }

  .samples-cta h3 {
    font-size: 1.75rem;
  }

  .cta-button {
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  .website-types {
    justify-content: flex-start;
  }

  .modal-content {
    width: 98%;
    margin: 1% auto;
  }

  .modal-header {
    padding: 1.5rem;
  }

  .modal-body {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .website-samples {
    padding: 4rem 0;
  }

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

  .sample-card {
    padding: 1.5rem;
  }

  .sample-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .website-types {
    gap: 0.25rem;
  }

  .website-tag {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
  }
}

/* Animation on scroll */
.sample-card {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
}

.sample-card:nth-child(1) {
  animation-delay: 0.1s;
}

.sample-card:nth-child(2) {
  animation-delay: 0.2s;
}

.sample-card:nth-child(3) {
  animation-delay: 0.3s;
}

.sample-card:nth-child(4) {
  animation-delay: 0.4s;
}

.sample-card:nth-child(5) {
  animation-delay: 0.5s;
}

.sample-card:nth-child(6) {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Additional Business Page Enhancements */
.business-category .website-types {
  justify-content: flex-start;
  margin-top: 1rem;
}

.service-item .website-types .website-tag {
  background: var(--amber-100);
  color: var(--primary-yellow-dark);
  border-color: var(--amber-200);
}

.service-item .website-types .website-tag:hover {
  background: var(--primary-yellow);
  color: var(--slate-900);
}

/* Enhanced Button Styles for Website Development */
.btn[data-show-samples] {
  background: var(--gradient-amber);
  color: var(--slate-900);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn[data-show-samples]::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[data-show-samples]:hover::before {
  left: 100%;
}

.btn[data-show-samples]:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

/* ===== B
USINESS BENEFITS SECTION - PROFESSIONAL DESIGN ===== */
.business-benefits {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--slate-50) 0%, var(--emerald-50) 100%);
  position: relative;
  overflow: hidden;
}

.business-benefits::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.02"><circle cx="200" cy="200" r="100" fill="%2310B981"/><circle cx="800" cy="300" r="80" fill="%23F59E0B"/><circle cx="300" cy="700" r="120" fill="%2310B981"/><circle cx="700" cy="800" r="90" fill="%23F59E0B"/></svg>');
  background-size: cover;
  animation: floatElements 25s ease-in-out infinite;
}

@keyframes floatElements {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  33% {
    transform: translateY(-15px) rotate(1deg);
  }

  66% {
    transform: translateY(10px) rotate(-1deg);
  }
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border-radius: var(--radius-2xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-align: center;
}

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

.benefit-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-2xl);
  background: rgba(255, 255, 255, 0.98);
}

.benefit-card:hover::before {
  height: 6px;
}

.benefit-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.03), transparent);
  transition: left 0.6s ease;
}

.benefit-card:hover::after {
  left: 100%;
}

.benefit-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-primary);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.benefit-icon::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 ease;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
}

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

.benefit-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.benefit-card p {
  color: var(--slate-600);
  line-height: 1.7;
  font-size: 1rem;
  margin: 0;
}

/* ===== BUSINESS PROCESS SECTION - PROFESSIONAL DESIGN ===== */
.business-process {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--slate-900) 0%, var(--slate-800) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.business-process::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="process-grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(16,185,129,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23process-grid)"/></svg>');
  opacity: 0.3;
}

.process-steps-business {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.process-step-business {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-2xl);
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.process-step-business::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-amber);
  transition: height 0.3s ease;
}

.process-step-business:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(245, 158, 11, 0.3);
}

.process-step-business:hover::before {
  height: 5px;
}

.step-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-amber);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--slate-900);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.step-icon::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 ease;
}

.process-step-business:hover .step-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 12px 35px rgba(245, 158, 11, 0.5);
}

.process-step-business:hover .step-icon::before {
  left: 100%;
}

.process-step-business h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
  line-height: 1.3;
}

.process-step-business p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
}

/* ===== BUSINESS CTA SECTION - PROFESSIONAL DESIGN ===== */
.business-cta {
  padding: 6rem 0;
  background: var(--gradient-primary);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.business-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.1"><path fill="white" d="M0,300 Q250,200 500,300 T1000,300 L1000,0 L0,0 Z"/><path fill="white" d="M0,700 Q250,600 500,700 T1000,700 L1000,1000 L0,1000 Z"/></svg>');
  background-size: cover;
  animation: waveFloat 15s ease-in-out infinite;
}

@keyframes waveFloat {

  0%,
  100% {
    transform: translateX(0px);
  }

  50% {
    transform: translateX(-20px);
  }
}

.business-cta .cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.business-cta .cta-content h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: white;
  line-height: 1.2;
}

.business-cta .cta-content p {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  opacity: 0.95;
  color: white;
  line-height: 1.6;
}

.business-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 3.5rem;
  background: var(--gradient-amber);
  color: var(--slate-900);
  text-decoration: none;
  border-radius: var(--radius-xl);
  font-size: 1.2rem;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 3px solid transparent;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.business-cta-button:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 50px rgba(245, 158, 11, 0.6);
  color: var(--slate-900);
}

.business-cta-button:hover::before {
  left: 100%;
}

.business-cta-button i {
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.business-cta-button:hover i {
  transform: translateX(6px) scale(1.2);
}

/* ===== ENHANCED SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.section-header .section-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.section-header .section-subtitle {
  font-size: 1.2rem;
  color: var(--slate-600);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 500;
}

.business-process .section-header .section-title {
  color: white;
  background: var(--gradient-amber);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.business-process .section-header .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {

  .benefits-grid,
  .process-steps-business {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .benefit-card,
  .process-step-business {
    padding: 2rem;
  }

  .section-header .section-title {
    font-size: 2.5rem;
  }

  .business-cta .cta-content h2 {
    font-size: 2.5rem;
  }

  .business-cta .cta-content p {
    font-size: 1.1rem;
  }

  .business-cta-button {
    padding: 1.25rem 2.5rem;
    font-size: 1rem;
  }

  .benefit-icon,
  .step-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {

  .business-benefits,
  .business-process,
  .business-cta {
    padding: 4rem 0;
  }

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

  .benefit-card,
  .process-step-business {
    padding: 1.5rem;
  }

  .business-cta .cta-content h2 {
    font-size: 2rem;
  }

  .business-cta-button {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

/* ===== SCROLL ANIMATIONS ===== */
.benefit-card,
.process-step-business {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.benefit-card:nth-child(1) {
  animation-delay: 0.1s;
}

.benefit-card:nth-child(2) {
  animation-delay: 0.2s;
}

.benefit-card:nth-child(3) {
  animation-delay: 0.3s;
}

.benefit-card:nth-child(4) {
  animation-delay: 0.4s;
}

.benefit-card:nth-child(5) {
  animation-delay: 0.5s;
}

.benefit-card:nth-child(6) {
  animation-delay: 0.6s;
}

.process-step-business:nth-child(1) {
  animation-delay: 0.2s;
}

.process-step-business:nth-child(2) {
  animation-delay: 0.4s;
}

.process-step-business:nth-child(3) {
  animation-delay: 0.6s;
}

.process-step-business:nth-child(4) {
  animation-delay: 0.8s;
}

.process-step-business:nth-child(5) {
  animation-delay: 1.0s;
}

/* ===== ENHANCED HOVER EFFECTS ===== */
.benefit-card:hover h4 {
  color: var(--primary-green);
  transition: color 0.3s ease;
}

.process-step-business:hover h3 {
  color: var(--primary-yellow);
  transition: color 0.3s ease;
}

/* ===== GLASSMORPHISM ENHANCEMENTS ===== */
.benefit-card,
.process-step-business {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.benefit-card:hover,
.process-step-business:hover {
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
}

/* ===
================================
   PAYMENT PAGE STYLES
   =================================== */

.payment-section {
  min-height: 100vh;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #f8faf9 0%, #ffffff 100%);
}

.payment-header {
  text-align: center;
  margin-bottom: 3rem;
}

.payment-header h1 {
  font-size: 2.5rem;
  color: var(--slate-900);
  margin-bottom: 1rem;
  font-weight: 700;
}

.payment-header p {
  font-size: 1.1rem;
  color: var(--slate-600);
}

.payment-progress {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 3rem;
  gap: 2rem;
}

.payment-progress .progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.payment-progress .progress-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 100%;
  width: 100px;
  height: 2px;
  background: #e2e8f0;
}

.payment-progress .progress-step.completed:not(:last-child)::after {
  background: var(--primary-green);
}

.payment-progress .progress-step.active:not(:last-child)::after {
  background: linear-gradient(to right, var(--primary-green) 50%, #e2e8f0 50%);
}

.payment-progress .step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e2e8f0;
  color: var(--slate-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.payment-progress .progress-step.completed .step-number {
  background: var(--primary-green);
  color: white;
}

.payment-progress .progress-step.active .step-number {
  background: var(--primary-yellow);
  color: var(--slate-900);
  box-shadow: 0 0 0 4px rgba(255, 193, 7, 0.2);
}

.payment-progress .step-label {
  font-size: 0.9rem;
  color: var(--slate-600);
  font-weight: 500;
}

.payment-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1.2fr;
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
  align-items: start;
}

.order-summary {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  height: fit-content;
  position: sticky;
  top: 100px;
}

.order-summary h3 {
  font-size: 1.3rem;
  color: var(--slate-900);
  margin-bottom: 1rem;
  font-weight: 600;
}

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

.summary-item {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f1f5f9;
}

.summary-item span:first-child {
  color: var(--slate-600);
  font-weight: 500;
}

.summary-item span:last-child {
  color: var(--slate-900);
  font-weight: 600;
}

.summary-item.total {
  border-top: 2px solid var(--primary-green);
  border-bottom: none;
  padding-top: 1.5rem;
  margin-top: 1rem;
  font-size: 1.2rem;
}

.summary-item.total span {
  color: var(--primary-green);
  font-weight: 700;
}

.payment-instructions {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.payment-confirmation {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 100px;
}

.payment-instructions h3 {
  font-size: 1.3rem;
  color: var(--slate-900);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

/* Payment Method Cards */
.payment-method-card {
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.payment-method-card:hover {
  border-color: var(--primary-green);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
}

.method-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.method-header i {
  color: var(--primary-green);
  font-size: 1.2rem;
}

.method-header h4 {
  color: var(--slate-900);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  flex: 1;
}

.method-badge {
  background: var(--primary-green);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.method-badge.recommended {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.8;
  }
}

.payment-method-card>p {
  color: var(--slate-600);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.method-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--slate-700);
}

.detail-item strong {
  color: var(--slate-900);
  min-width: 120px;
}

.instruction-step .step-content h5 {
  font-size: 0.95rem;
  color: var(--slate-900);
  margin: 0;
  font-weight: 600;
  line-height: 1.4;
}

.till-display {
  margin-top: 1.5rem;
}

.till-card {
  background: linear-gradient(135deg, var(--primary-green) 0%, #0d5e46 100%);
  color: white;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
}

.till-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  opacity: 0.9;
}

.till-number-large {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.till-name {
  font-size: 0.9rem;
  opacity: 0.9;
}

.instructions-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.instruction-step {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 1rem;
  align-items: start;
}

.instruction-step .step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary-green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  flex-shrink: 0;
  font-size: 0.95rem;
  margin-top: 2px;
}

.instruction-step .step-content {
  display: flex;
  flex-direction: column;
}

.instruction-step .step-content h4 {
  font-size: 1rem;
  color: var(--slate-900);
  margin: 0 0 0.3rem 0;
  font-weight: 600;
  line-height: 1.4;
}

.instruction-step .step-content p {
  color: var(--slate-600);
  line-height: 1.5;
  font-size: 0.9rem;
  margin: 0;
}

.instruction-step .step-content strong {
  color: var(--primary-green);
  font-weight: 700;
}

.till-highlight {
  color: var(--primary-green);
  font-weight: 700;
  font-size: 1.1rem;
}

.payment-form {
  background: #f8faf9;
  padding: 1.5rem;
  border-radius: 8px;
}

.payment-confirmation h3 {
  font-size: 1.3rem;
  color: var(--slate-900);
  margin-bottom: 1rem;
  font-weight: 600;
}

.payment-confirmation p {
  color: var(--slate-600);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

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

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--slate-900);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(15, 76, 58, 0.1);
}

.form-group small {
  display: block;
  color: var(--slate-500);
  font-size: 0.8rem;
  margin-top: 0.25rem;
}

.upload-area {
  border: 2px dashed #cbd5e0;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #f8faf9;
}

.upload-area:hover {
  border-color: var(--primary-green);
  background: rgba(15, 76, 58, 0.02);
}

.upload-placeholder svg {
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

.upload-placeholder p {
  color: var(--slate-700);
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.upload-hint {
  color: var(--slate-500);
  font-size: 0.85rem;
}

.file-upload-area {
  border: 2px dashed #cbd5e0;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.file-upload-area:hover {
  border-color: var(--primary-green);
  background: rgba(15, 76, 58, 0.02);
}

.file-upload-area i {
  font-size: 2rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.file-upload-area p {
  color: var(--slate-600);
  margin-bottom: 0.5rem;
}

.file-upload-area small {
  color: var(--slate-500);
  font-size: 0.875rem;
}

.btn-submit-payment,
.btn-primary.btn-large {
  width: 100%;
  padding: 0.875rem 1.5rem;
  background: var(--primary-green);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-submit-payment:hover,
.btn-primary.btn-large:hover {
  background: #0d5e46;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(15, 76, 58, 0.3);
}

.btn-submit-payment:disabled,
.btn-primary.btn-large:disabled {
  background: #cbd5e0;
  cursor: not-allowed;
  transform: none;
}

.confirmation-upload {
  margin-bottom: 1rem;
}

.payment-support {
  max-width: 1400px;
  margin: 3rem auto 0;
  padding: 0 1rem;
}

.support-card {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border: 2px solid #bae6fd;
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.support-icon {
  font-size: 3rem;
  flex-shrink: 0;
}

.support-content {
  flex: 1;
}

.support-content h4 {
  font-size: 1.3rem;
  color: var(--slate-900);
  margin: 0 0 0.5rem 0;
  font-weight: 600;
}

.support-content p {
  color: var(--slate-600);
  margin: 0 0 1rem 0;
  line-height: 1.5;
}

.btn-secondary {
  background: white;
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--primary-green);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(15, 76, 58, 0.2);
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .payment-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .order-summary,
  .payment-confirmation {
    position: static;
  }

  .support-card {
    flex-direction: column;
    text-align: center;
  }
}

.payment-progress {
  gap: 1rem;
}

.payment-progress .progress-step:not(:last-child)::after {
  width: 60px;
}

@media (max-width: 640px) {
  .payment-header h1 {
    font-size: 2rem;
  }

  .payment-progress {
    flex-direction: column;
    gap: 1.5rem;
  }

  .payment-progress .progress-step:not(:last-child)::after {
    width: 2px;
    height: 40px;
    top: 100%;
    left: 20px;
  }

  .payment-section {
    padding: 100px 1rem 60px;
  }
}

/* Payment Options Styles */
.payment-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 0.5rem 0;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e2e8f0;
}

.divider span {
  padding: 0 1rem;
  color: #64748b;
  font-size: 0.875rem;
  font-weight: 500;
}

.btn-success {
  background: #10b981;
  border-color: #10b981;
}

.btn-success:hover {
  background: #059669;
  border-color: #059669;
}

.btn-success:disabled {
  background: #6b7280;
  border-color: #6b7280;
  cursor: not-allowed;
  opacity: 0.7;
}

.btn-secondary {
  background: #6b7280;
  border-color: #6b7280;
  color: white;
}

.btn-secondary:hover {
  background: #4b5563;
  border-color: #4b5563;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.message {
  padding: 1rem;
  border-radius: 8px;
  margin: 1rem 0;
  font-weight: 500;
}

.message.success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.message.error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

.message.info {
  background: #dbeafe;
  color: #1e40af;
  border: 1px solid #93c5fd;
}

.message.warning {
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fcd34d;
}

/* Payment Amount Display */
.payment-amount-display {
  margin: 1.5rem 0;
}

.amount-card {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  padding: 1.5rem;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.amount-label {
  color: white;
  font-size: 1rem;
  font-weight: 500;
}

.amount-value {
  color: white;
  font-size: 1.75rem;
  font-weight: 700;
}

/* Payment Status */
.payment-status {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: #f0f9ff;
  border: 2px solid #3b82f6;
  border-radius: 12px;
  text-align: center;
}

.payment-status .status-icon {
  font-size: 2.5rem;
  color: #3b82f6;
  margin-bottom: 1rem;
}

.payment-status .status-message {
  font-size: 1rem;
  color: #1e40af;
  font-weight: 500;
  margin: 0;
}

/* Success Popup */
.payment-success-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}

.popup-content {
  position: relative;
  background: white;
  padding: 3rem;
  border-radius: 16px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: popupSlideIn 0.3s ease-out;
}

@keyframes popupSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.success-icon-large {
  font-size: 4rem;
  color: #10b981;
  margin-bottom: 1rem;
  animation: successPulse 0.6s ease-out;
}

@keyframes successPulse {
  0% {
    transform: scale(0);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.popup-content h2 {
  color: #1e293b;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.popup-content>p {
  color: #64748b;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.popup-details {
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  text-align: left;
}

.popup-details p {
  margin: 0.5rem 0;
  color: #475569;
  font-size: 0.95rem;
}

.popup-details strong {
  color: #1e293b;
}

/* Form Select Styling */
select {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  color: #1e293b;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

select:focus {
  outline: none;
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

select option {
  padding: 0.5rem;
}

/* Responsive design for How It Works section */
@media (max-width: 1024px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .process-steps::before {
    display: none;
    /* Hide connecting line on smaller screens */
  }
}

@media (max-width: 768px) {
  .process-steps {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .step-content h3 {
    font-size: 1.3rem;
  }

  .step-content p {
    padding: 0;
    font-size: 0.95rem;
  }

  .how-it-works {
    padding: 4rem 0;
  }
}

@media (max-width: 480px) {
  .step-number {
    width: 70px;
    height: 70px;
    font-size: 1.5rem;
  }

  .step-content h3 {
    font-size: 1.2rem;
  }
}