/* Mobile line break - hidden on desktop */
.mobile-break {
  display: none;
}

/* Global CSS Variables */
:root {
  /* Colors */
  --primary: #e6be00;
  --primary-dark: #cc9900;
  --primary-light: #fff3cc;
  --secondary: #00a8cc;
  --secondary-dark: #008fb3;
  --accent: #673ab7;
  --accent-light: #9c7beb;
  --accent-rgb: 103, 58, 183;
  
  /* Neutrals */
  --dark: #0a0a0a;
  --dark-900: #111111;
  --dark-800: #1a1a1a;
  --dark-700: #2a2a2a;
  --dark-600: #404040;
  --light: #ffffff;
  --light-900: #f8f9fa;
  --light-800: #e9ecef;
  --light-700: #dee2e6;
  --light-600: #ced4da;
  --gray: #6c757d;
  --gray-light: #adb5bd;
  
  /* Status Colors */
  --success: #28a745;
  --warning: #ffc107;
  --danger: #dc3545;
  --info: #17a2b8;
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-mono: 'Fira Code', 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
  
  /* Font Sizes - Responsive Typography (Improved minimum sizes) */
  --text-xs: clamp(0.8rem, 0.75rem + 0.25vw, 0.9rem);
  --text-sm: clamp(0.9rem, 0.85rem + 0.375vw, 1.1rem);
  --text-base: clamp(1.1rem, 1rem + 0.5vw, 1.25rem);
  --text-lg: clamp(1.25rem, 1.15rem + 0.625vw, 1.4rem);
  --text-xl: clamp(1.4rem, 1.25rem + 0.75vw, 1.75rem);
  --text-2xl: clamp(1.75rem, 1.5rem + 1vw, 2.25rem);
  --text-3xl: clamp(2.25rem, 1.9rem + 1.375vw, 3rem);
  --text-4xl: clamp(2.75rem, 2.25rem + 1.75vw, 4rem);
  --text-5xl: clamp(3.5rem, 3rem + 2.5vw, 5rem);
  --text-6xl: clamp(4.5rem, 3.5rem + 3.75vw, 7rem);
  --text-7xl: clamp(5.5rem, 4.5rem + 5vw, 9rem);
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;
  --space-6xl: 12rem;
  
  /* Borders */
  --border-radius-sm: 0.375rem;
  --border-radius: 0.5rem;
  --border-radius-lg: 0.75rem;
  --border-radius-xl: 1rem;
  --border-radius-2xl: 1.5rem;
  --border-radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --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);
  --shadow-glow: 0 0 20px rgba(230, 190, 0, 0.3);
  --shadow-glow-lg: 0 0 40px rgba(230, 190, 0, 0.4);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition: 300ms ease;
  --transition-slow: 500ms ease;
  --transition-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  
  /* Layout */
  --container-max: 1600px;
  --container-padding: 2rem;
  --nav-height: 80px;
  --header-height: 100vh;
  
  /* Z-Index Scale */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
  --z-toast: 1080;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px; /* Ensure base font size */
}

body {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--light);
  background: var(--dark);
  overflow-x: hidden;
  min-height: 100vh;
}

/* Full Screen Layout */
.main-content {
  min-height: 100vh;
  width: 100%;
}

/* Container System */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  width: 100%;
}

.container-fluid {
  width: 100%;
  padding: 0 var(--container-padding);
}

.container-full {
  width: 100vw;
  margin: 0;
  padding: 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: var(--space-md);
  color: var(--light);
}

h1 { 
  font-size: var(--text-6xl);
  font-weight: 800;
  letter-spacing: -0.05em;
}

h2 { 
  font-size: var(--text-5xl);
  font-weight: 700;
}

h3 { 
  font-size: var(--text-4xl);
  font-weight: 600;
}

h4 { 
  font-size: var(--text-3xl);
  font-weight: 600;
}

h5 { 
  font-size: var(--text-2xl);
  font-weight: 500;
}

h6 { 
  font-size: var(--text-xl);
  font-weight: 500;
}

p {
  margin-bottom: var(--space-md);
  color: var(--light-700);
  font-size: var(--text-lg);
  line-height: 1.7;
}

.text-large {
  font-size: var(--text-2xl);
  line-height: 1.6;
}

.text-small {
  font-size: var(--text-sm);
}

.text-xs {
  font-size: var(--text-xs);
}

/* Typography Utilities */
.text-xs { font-size: var(--text-xs) !important; }
.text-sm { font-size: var(--text-sm) !important; }
.text-base { font-size: var(--text-base) !important; }
.text-md { font-size: var(--text-base) !important; }
.text-lg { font-size: var(--text-lg) !important; }
.text-large { font-size: var(--text-lg) !important; }
.text-xl { font-size: var(--text-xl) !important; }
.text-2xl { font-size: var(--text-2xl) !important; }
.text-3xl { font-size: var(--text-3xl) !important; }
.text-4xl { font-size: var(--text-4xl) !important; }
.text-5xl { font-size: var(--text-5xl) !important; }
.text-6xl { font-size: var(--text-6xl) !important; }
.text-7xl { font-size: var(--text-7xl) !important; }

/* Font Weight Utilities */
.font-weight-light { font-weight: 300 !important; }
.font-weight-normal { font-weight: 400 !important; }
.font-weight-medium { font-weight: 500 !important; }
.font-weight-semibold { font-weight: 600 !important; }
.font-weight-bold { font-weight: 700 !important; }
.font-weight-extrabold { font-weight: 800 !important; }

/* Color Utilities */
.text-primary { color: var(--primary) !important; }
.text-secondary { color: var(--secondary) !important; }
.text-accent { color: var(--accent) !important; }
.text-light { color: var(--light) !important; }
.text-light-600 { color: var(--light-600) !important; }
.text-light-700 { color: var(--light-700) !important; }
.text-muted { color: var(--light-600) !important; }
.text-dark { color: var(--dark) !important; }
.text-success { color: var(--success) !important; }
.text-warning { color: var(--warning) !important; }
.text-danger { color: var(--danger) !important; }
.text-info { color: var(--info) !important; }

/* Text Alignment */
.text-left { text-align: left !important; }
.text-center { text-align: center !important; }
.text-right { text-align: right !important; }
.text-justify { text-align: justify !important; }

/* Text Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-uppercase { text-transform: uppercase; }
.text-lowercase { text-transform: lowercase; }
.text-capitalize { text-transform: capitalize; }
.font-mono { font-family: var(--font-mono); }
.font-heading { font-family: var(--font-heading); }
.font-weight-bold { font-weight: 700; }
.font-weight-normal { font-weight: 400; }
.font-weight-light { font-weight: 300; }

/* Links */
a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover,
a:focus {
  color: var(--primary-dark);
  text-decoration: none;
}

/* Lists */
ul, ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-xl);
}

li {
  margin-bottom: var(--space-xs);
  color: var(--light-700);
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Buttons Base */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md) var(--space-xl);
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  border-radius: var(--border-radius-lg);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  user-select: none;
  white-space: nowrap;
}

.btn:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Fix button active state issues - prevent stuck active states */
.btn:active {
  transform: translateY(0px) !important;
  transition: all 0.1s ease !important;
}

.btn:not(:active) {
  transition: all 0.3s ease;
}

/* Ensure buttons reset after click */
button:not(:focus):not(:hover),
.btn:not(:focus):not(:hover) {
  background: var(--btn-bg, initial);
  color: var(--btn-color, initial);
  transform: translateY(0);
}

.btn-primary {
  --btn-bg: linear-gradient(135deg, var(--primary), var(--primary-dark));
  --btn-color: var(--dark);
  background: var(--btn-bg);
  color: var(--btn-color);
  box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-lg);
  color: var(--dark);
}

.btn-secondary {
  --btn-bg: transparent;
  --btn-color: var(--light);
  background: var(--btn-bg);
  color: var(--btn-color);
  border: 2px solid var(--light-600);
}

.btn-secondary:hover {
  background: var(--light);
  color: var(--dark);
  border-color: var(--light);
}

.btn-outline {
  --btn-bg: transparent;
  --btn-color: var(--primary);
  background: var(--btn-bg);
  color: var(--btn-color);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--dark);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.btn-outline-light {
  --btn-bg: transparent;
  --btn-color: var(--light);
  background: var(--btn-bg);
  color: var(--btn-color);
  border: 2px solid var(--light);
}

.btn-outline-light:hover {
  background: var(--light);
  color: var(--dark);
  border-color: var(--light);
  box-shadow: var(--shadow-lg);
}

/* Guarantee Promo Banner */
.guarantee-promo-banner {
  background: rgba(230, 190, 0, 0.08);
  border-top: 1px solid rgba(230, 190, 0, 0.2);
  border-bottom: 1px solid rgba(230, 190, 0, 0.2);
  padding: var(--space-md) 0;
}

.promo-content {
  max-width: 600px;
  margin: 0 auto;
}

.promo-badge {
  display: inline-flex;
  align-items: center;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--light);
  letter-spacing: 0.05em;
}

.promo-text {
  opacity: 0.9;
}

.btn-lg {
  padding: var(--space-lg) var(--space-2xl);
  font-size: var(--text-lg);
}

.btn-sm {
  padding: var(--space-sm) var(--space-lg);
  font-size: var(--text-sm);
}

/* Section Styling */
.section {
  padding: var(--space-3xl) 0;
  position: relative;
}

.section-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-800) 50%, var(--dark-900) 100%);
  min-height: 50vh;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Particles Background for all hero sections */
.section-hero #particles-js {
  position: absolute !important;
  width: 100% !important;
  height: 100% !important;
  top: 0 !important;
  left: 0 !important;
  z-index: 1 !important;
  opacity: 0.7 !important;
  pointer-events: none !important;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
  display: block !important;
  visibility: visible !important;
  overflow: visible !important;
}

.section-hero .container {
  position: relative;
  z-index: 2;
}

.section-padding {
  padding: var(--space-4xl) 0;
}

.section-sm {
  padding: var(--space-3xl) 0;
}

/* Background Utilities */
.bg-dark { background: var(--dark); }
.bg-dark-800 { background: var(--dark-800); }
.bg-dark-700 { background: var(--dark-700); }
.bg-primary { background: var(--primary); }
.bg-secondary { background: var(--secondary); }
.bg-gradient {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-800) 100%);
}

/* Flex Utilities */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1; }

/* Grid Utilities */
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, 1fr); }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.gap-xl { gap: var(--space-xl); }
.gap-2xl { gap: var(--space-2xl); }

/* Spacing Utilities */
.m-0 { margin: 0; }
.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }

/* Position Utilities */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }

/* Width & Height */
.w-full { width: 100%; }
.h-full { height: 100%; }
.h-screen { height: 100vh; }
.w-screen { width: 100vw; }

/* Visibility */
.hidden { display: none; }
.block { display: block; }
.inline { display: inline; }
.inline-block { display: inline-block; }

/* Overflow */
.overflow-hidden { overflow: hidden; }
.overflow-x-hidden { overflow-x: hidden; }
.overflow-y-hidden { overflow-y: hidden; }

/* Selection */
::selection {
  background: var(--primary);
  color: var(--dark);
}

::-moz-selection {
  background: var(--primary);
  color: var(--dark);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--dark-800);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: var(--border-radius);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/* Focus States */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  * {
    background: white !important;
    color: black !important;
  }
} 

/* Icon Size Utilities */
.icon-xs { font-size: 0.75rem !important; }
.icon-sm { font-size: 1rem !important; }
.icon-md { font-size: 1.25rem !important; }
.icon-lg { font-size: 1.5rem !important; }
.icon-xl { font-size: 2rem !important; }
.icon-2xl { font-size: 2.5rem !important; }
.icon-3xl { font-size: 3rem !important; }
.icon-4xl { font-size: 4rem !important; }

/* FontAwesome Icon Improvements */
.fas, .far, .fab, .fal {
  font-size: inherit;
  line-height: 1;
  vertical-align: baseline;
}

/* Icon Spacing Utilities */
.mr-xs { margin-right: var(--space-xs) !important; }
.mr-sm { margin-right: var(--space-sm) !important; }
.mr-md { margin-right: var(--space-md) !important; }
.mr-lg { margin-right: var(--space-lg) !important; }
.ml-xs { margin-left: var(--space-xs) !important; }
.ml-sm { margin-left: var(--space-sm) !important; }
.ml-md { margin-left: var(--space-md) !important; }
.ml-lg { margin-left: var(--space-lg) !important; }
.mb-xs { margin-bottom: var(--space-xs) !important; }
.mb-sm { margin-bottom: var(--space-sm) !important; }
.mb-md { margin-bottom: var(--space-md) !important; }
.mb-lg { margin-bottom: var(--space-lg) !important; }
.mb-xl { margin-bottom: var(--space-xl) !important; }
.mb-2xl { margin-bottom: var(--space-2xl) !important; }
.mb-3xl { margin-bottom: var(--space-3xl) !important; }
.mb-4xl { margin-bottom: var(--space-4xl) !important; }
.mb-5xl { margin-bottom: var(--space-5xl) !important; }

/* Ensure minimum font sizes for all elements */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: var(--space-lg);
  font-family: var(--font-heading);
}

h1 { font-size: var(--text-5xl) !important; }
h2 { font-size: var(--text-4xl) !important; }
h3 { font-size: var(--text-3xl) !important; }
h4 { font-size: var(--text-2xl) !important; }
h5 { font-size: var(--text-xl) !important; }
h6 { font-size: var(--text-lg) !important; }

p, span, div {
  font-size: inherit;
  line-height: inherit;
}

/* Button text should never be too small */
.btn {
  font-size: var(--text-base) !important;
  min-height: 44px; /* Ensure touch-friendly size */
}

.btn-lg {
  font-size: var(--text-lg) !important;
  min-height: 52px;
}

.btn-sm {
  font-size: var(--text-sm) !important;
  min-height: 36px;
}

/* Ensure icons in buttons are properly sized */
.btn i {
  font-size: 1.1em !important;
}

.btn-lg i {
  font-size: 1.2em !important;
}

/* Form elements should be readable */
input, textarea, select {
  font-size: var(--text-base) !important;
  line-height: 1.5;
}

label {
  font-size: var(--text-sm) !important;
  font-weight: 600;
} 

/* Missing utility classes for FAQ and other pages */
.max-w-3xl { max-width: 48rem; }
.max-w-2xl { max-width: 32rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }
.relative { position: relative; }
.absolute { position: absolute; }
.top-1\/2 { top: 50%; }
.right-4 { right: 1rem; }
.transform { transform: translateY(-50%); }
.-translate-y-1\/2 { transform: translateY(-50%); }
.justify-center { justify-content: center; }
.gap-lg { gap: var(--space-lg); }
.flex { display: flex; }
.py-4xl { padding-top: var(--space-4xl); padding-bottom: var(--space-4xl); } 

/* FAQ Page specific fixes */
.faq-page .section-hero {
  padding: var(--space-4xl) 0;
}

.faq-page .container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
} 

/* Contact Page specific fixes */
.contact-page .container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.contact-page .section-hero {
  padding: var(--space-4xl) 0;
}

/* Fix contact FAQ grid */
.contact-page .faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

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

/* Mobile responsive for contact FAQ */
@media (max-width: 768px) {
  .contact-page .faq-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
} 

/* Services Page Fixes */
.services-page .container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.services-page .section-hero {
  padding: var(--space-4xl) 0;
}

/* Add missing gap utilities */
.gap-3xl { gap: var(--space-3xl); }
.gap-2xl { gap: var(--space-2xl); }
.gap-xl { gap: var(--space-xl); }

/* Services grid improvements */
.services-detailed-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3xl);
  align-items: start; /* Ensure cards align to top */
}

/* Service card styling */
.service-detailed-card {
  display: flex;
  flex-direction: column;
  height: 100%; /* Make all cards same height */
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  transition: all 0.3s ease;
}

.service-detailed-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.service-detailed-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.service-icon-large {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--primary-rgb), 0.1);
  border-radius: var(--border-radius-md);
}

.service-detailed-title h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--light);
  margin-bottom: 0.25rem;
}

.service-detailed-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-features {
  flex: 1;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--light-600);
}

.service-pricing {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.pricing-amount {
  font-size: 2rem;
  font-weight: 700;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .services-detailed-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .service-detailed-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .service-detailed-card {
    padding: 1.5rem;
  }
} 

/* Additional spacing utilities */
.mb-5xl { margin-bottom: var(--space-5xl); }
.mt-2xl { margin-top: var(--space-2xl); }
.p-lg { padding: var(--space-lg); }

/* Process section styling */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-2xl);
  align-items: start;
}

.process-step {
  text-align: center;
  padding: var(--space-xl);
  position: relative;
}

/* Removed unwanted connecting lines */

.process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: var(--dark);
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 2;
}

.process-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--light);
  margin-bottom: var(--space-md);
}

.process-description {
  color: var(--light-600);
  line-height: 1.6;
}

/* Typography utilities */
.text-6xl { font-size: 3.75rem; }
.text-2xl { font-size: 1.5rem; }
.text-lg { font-size: 1.125rem; }
.text-sm { font-size: 0.875rem; }
.font-weight-bold { font-weight: 700; }
.font-weight-600 { font-weight: 600; }

/* Color utilities */
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-light { color: var(--light); }
.text-muted { color: var(--light-600); }

/* Layout utilities */
.inline-flex { display: inline-flex; }
.items-center { align-items: center; }
.rounded-full { border-radius: 9999px; } 

/* Guarantee badge styling */
.guarantee-badge {
  background: var(--dark-700) !important;
  border: 1px solid rgba(var(--primary-rgb), 0.2) !important;
  padding: var(--space-lg);
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: var(--space-md);
}

.cta-guarantee {
  margin-top: var(--space-2xl);
}

/* Fix border utilities */
.border { border: 1px solid; }
.border-primary\/20 { border-color: rgba(var(--primary-rgb), 0.2); }

/* Background utilities */
.bg-dark-700 { background-color: var(--dark-700); }
.bg-gradient { background: linear-gradient(135deg, var(--dark-800) 0%, var(--dark-900) 100%); }

/* Spacing utilities */
.gap-md { gap: var(--space-md); }
.mr-sm { margin-right: var(--space-sm); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

/* Text accent color */
.text-accent { color: var(--accent); }

/* Fixed btn-accent styling */
.btn-accent {
  background-color: var(--accent) !important;
  color: var(--light) !important;
  border-color: var(--accent) !important;
}

.btn-accent:hover {
  background-color: rgba(var(--accent-rgb), 0.8) !important;
  color: var(--light) !important;
  border-color: rgba(var(--accent-rgb), 0.9) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(var(--accent-rgb), 0.4);
} 

/* Fix Development Process Section - Clean Layout */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-2xl);
  margin-top: var(--space-3xl);
}

.process-step {
  text-align: center;
  padding: var(--space-xl);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-lg);
  transition: all 0.3s ease;
  position: relative;
}

.process-step:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

/* Remove any pseudo-elements that might create lines */
.process-step::before,
.process-step::after {
  display: none !important;
}

/* Step Number Styling - properly aligned */
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light, var(--primary)) 100%);
  color: var(--dark);
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto var(--space-lg) auto; /* Center horizontally */
  box-shadow: 0 4px 20px rgba(var(--primary-rgb), 0.3);
  position: relative;
  z-index: 10;
}

/* Step Content Container */
.step-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

/* Step Title - matches HTML */
.step-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--light);
  margin-bottom: var(--space-md);
  line-height: 1.4;
}

/* Step Description - matches HTML */
.step-description {
  color: var(--light-600);
  line-height: 1.6;
  font-size: 0.9rem;
}

/* Mobile responsive for process steps */
@media (max-width: 1024px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }
}

@media (max-width: 768px) {
  .process-steps {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .process-step {
    padding: var(--space-lg);
  }
} 

/* Additional typography utilities */
.text-xl { font-size: 1.25rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }

/* Layout utilities */
.w-full { width: 100%; }
.text-left { text-align: left; }

/* Additional color utilities - btn-accent moved to line 920 */

/* Hosting plans grid */
.hosting-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2xl);
  margin-top: var(--space-3xl);
}

.hosting-plan {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
}

.hosting-plan:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.hosting-plan.featured {
  border-color: var(--primary);
  background: rgba(var(--primary-rgb), 0.05);
}

.plan-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.plan-header,
.plan-features,
.plan-cta {
  margin-bottom: 1.5rem;
}

.plan-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.plan-features li {
  display: flex;
  align-items: center;
  padding: 0.5rem 0;
  font-size: 0.9rem;
}

.plan-price {
  margin: 1rem 0;
}

.price-amount {
  display: inline-block;
  margin-right: 0.25rem;
}

.price-period {
  font-size: 0.875rem;
}

/* Mobile responsive for hosting plans */
@media (max-width: 1024px) {
  .hosting-plans {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
}

/* Ensure sections have proper scroll offset for anchor links */
#hosting-plans,
#features,
#testimonials,
#contact-form,
#faq-search,
section[id] {
  scroll-margin-top: 120px; /* Account for fixed navbar + extra space */
} 

/* Ensure no unwanted lines or pseudo-elements in process section */
.process-section *::before,
.process-section *::after {
  background: none !important;
  border: none !important;
  content: none !important;
}

.process-step *::before,
.process-step *::after {
  display: none !important;
}

/* Reset any potential connecting lines */
.step-content::before,
.step-content::after,
.step-title::before,
.step-title::after,
.step-description::before,
.step-description::after {
  display: none !important;
} 