/* Import Inter font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Global Reset & Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #4f46e5;
  --primary-dark: #3730a3;
  --primary-light: #6366f1;
  --secondary: #f59e0b;
  --success: #10b981;
  --error: #ef4444;
  --warning: #f59e0b;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --white: #ffffff;
  --black: #000000;
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: linear-gradient(135deg, var(--gray-50) 0%, #ffffff 100%);
  color: var(--gray-800);
  line-height: 1.6;
  font-weight: 400;
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.5em;
  color: var(--gray-900);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1em;
  color: var(--gray-600);
}

/* Links */
a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
  text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
  text-decoration: none;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--white);
  color: var(--gray-700);
  border: 2px solid var(--gray-300);
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-secondary:hover {
  background: var(--gray-50);
  border-color: var(--primary);
  color: var(--primary);
  text-decoration: none;
}

/* Header Styles */
header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  position: relative;
  z-index: 10;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 700;
}

.logo i {
  font-size: 1.8rem;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
  text-decoration: none;
}

/* Hero Section */
.hero-header {
  padding-bottom: 40px;
}

.hero-content {
  text-align: center;
  padding: 40px 0;
  position: relative;
  z-index: 10;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Search - moved from separate section */
.hero-search {
  max-width: 800px;
  margin: 0 auto;
}

.hero-search .search-input-wrapper {
  display: flex;
  align-items: center;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 8px;
  box-shadow: var(--shadow-xl);
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.hero-search .search-input-wrapper:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1), var(--shadow-xl);
  transform: translateY(-2px);
}

.hero-search .search-icon {
  color: var(--gray-400);
  font-size: 1.2rem;
  margin: 0 16px;
  flex-shrink: 0;
}

.hero-search #search {
  flex: 1;
  border: none;
  outline: none;
  padding: 16px 8px;
  font-size: 1.1rem;
  font-family: inherit;
  background: transparent;
}

.hero-search #search::placeholder {
  color: var(--gray-500);
}

.hero-search .search-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
  min-width: 120px;
  justify-content: center;
}

.hero-search .search-btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.hero-search .search-filters {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

.hero-search .premium-filter-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 2px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  min-width: 220px;
}

.hero-search .premium-filter-wrapper:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.hero-search .filter-icon {
  color: var(--gray-500);
  font-size: 1rem;
  margin-left: 12px;
  flex-shrink: 0;
}

.hero-search .premium-filter-select {
  flex: 1;
  border: none;
  outline: none;
  padding: 12px 8px;
  font-size: 0.95rem;
  font-family: inherit;
  background: transparent;
  cursor: pointer;
  appearance: none;
  color: var(--gray-700);
  font-weight: 500;
}

.hero-search .premium-filter-select option {
  padding: 12px;
  font-weight: 500;
}

.hero-search .select-arrow {
  color: var(--gray-400);
  font-size: 0.8rem;
  margin-right: 12px;
  pointer-events: none;
  flex-shrink: 0;
}

.hero-search .premium-filter-wrapper:hover {
  border-color: var(--primary-light);
  transform: translateY(-1px);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 60px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stat i {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.8);
}

.stat .number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
}

.stat .label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 60px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,60 C200,120 400,0 600,60 C800,120 1000,0 1200,60 L1200,120 L0,120 Z' fill='%23f9fafb'/%3E%3C/svg%3E") no-repeat center bottom;
  background-size: cover;
}

/* Registration Page */
.register-page {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
}

.main-content {
  padding: 60px 0;
}

.registration-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Form Column */
.form-column {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-100);
}

.form-header {
  text-align: center;
  margin-bottom: 40px;
}

.form-header h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 2rem;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.form-header p {
  color: var(--gray-600);
  font-size: 1.1rem;
}

/* Form Sections */
.form-section {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--gray-100);
}

.form-section:last-child {
  border-bottom: none;
  margin-bottom: 20px;
}

.section-header h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gray-800);
  margin-bottom: 20px;
  font-size: 1.25rem;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  border-radius: 50%;
  font-weight: 600;
  font-size: 0.875rem;
}

/* Form Grid */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

/* Form Inputs */
.form-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--gray-700);
  font-size: 0.875rem;
}

.premium-input,
.premium-textarea {
  width: 100%;
  padding: 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: var(--white);
}

.premium-input:focus,
.premium-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
  transform: translateY(-1px);
}

.premium-textarea {
  resize: vertical;
  min-height: 120px;
}

/* Select Wrapper */
.select-wrapper {
  position: relative;
}

.premium-select {
  width: 100%;
  padding: 16px;
  padding-right: 45px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  background: var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
  appearance: none;
}

.premium-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.select-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
  pointer-events: none;
}

/* Character Counter */
.char-counter {
  margin-top: 8px;
  text-align: right;
  font-size: 0.75rem;
  color: var(--gray-500);
}

/* File Upload */
.file-upload-area {
  border: 2px dashed var(--gray-300);
  border-radius: var(--radius);
  padding: 40px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: var(--gray-50);
}

.file-upload-area:hover {
  border-color: var(--primary);
  background: rgba(79, 70, 229, 0.05);
}

.file-input {
  display: none;
}

.upload-content i {
  font-size: 3rem;
  color: var(--gray-400);
  margin-bottom: 16px;
}

.upload-content p {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--gray-700);
}

.upload-content strong {
  color: var(--primary);
}

.file-info small {
  color: var(--gray-500);
  font-size: 0.875rem;
}

/* Image Preview */
.image-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.preview-image {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.remove-image {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.9);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  transition: all 0.2s ease;
}

.remove-image:hover {
  background: var(--error);
  transform: scale(1.1);
}

/* Submit Button */
.premium-submit-btn {
  width: 100%;
  padding: 20px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.premium-submit-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.premium-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Info Column */
.info-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--gray-100);
  position: sticky;
  top: 20px;
}

.pricing-header {
  text-align: center;
  margin-bottom: 32px;
}

.price-badge {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 16px;
}

.currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-600);
}

.amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
}

.period {
  font-size: 1rem;
  color: var(--gray-500);
}

.pricing-header h3 {
  font-size: 1.5rem;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--gray-700);
}

.feature i {
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Main Content - Results Section */
.main-content {
  padding: 20px 0;
}

.results-section {
  padding: 0;
}

.results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.results-meta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.view-toggle {
  display: flex;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--gray-200);
}

.view-btn {
  padding: 8px 12px;
  border: none;
  background: var(--white);
  color: var(--gray-600);
  cursor: pointer;
  transition: all 0.3s ease;
}

.view-btn.active {
  background: var(--primary);
  color: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.service-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 280px;
}

.service-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transition: left 0.5s ease;
}

.service-box:hover::before {
  left: 0;
}

.service-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

/* Fixed service header to handle logos properly */
.service-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
  min-height: 80px;
}

/* Fixed service logo container */
.service-logo {
  width: 80px;
  height: 80px;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gray-200);
  position: relative;
}

/* Proper image handling within logo container */
.service-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: white;
  padding: 4px;
}

.service-logo-placeholder {
  color: var(--gray-400);
  font-size: 2rem;
}

.service-title-section {
  flex: 1;
  min-width: 0;
}

.service-box h3 {
  color: var(--primary);
  margin-bottom: 8px;
  font-size: 1.25rem;
  word-wrap: break-word;
}

.service-category {
  color: var(--gray-500);
  font-size: 0.9rem;
  font-weight: 500;
  background: var(--gray-100);
  padding: 4px 8px;
  border-radius: 4px;
  display: inline-block;
}

.service-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-box p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--gray-700);
}

.service-box strong {
  color: var(--gray-700);
  font-weight: 500;
  min-width: 60px;
  flex-shrink: 0;
}

.service-box a {
  color: var(--secondary);
  font-weight: 500;
  text-decoration: none;
  word-break: break-all;
}

.service-box a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.service-description {
  margin-top: 12px;
  color: var(--gray-600);
  font-style: italic;
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Loading states */
.loading-container {
  text-align: center;
  padding: 60px;
  color: var(--gray-500);
  font-size: 1.1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid var(--gray-200);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.no-results {
  text-align: center;
  padding: 60px 20px;
  color: var(--gray-500);
}

.no-results-icon {
  font-size: 4rem;
  color: var(--gray-300);
  margin-bottom: 20px;
}

.no-results h3 {
  color: var(--gray-700);
  margin-bottom: 12px;
}

.no-results p {
  margin-bottom: 24px;
}

/* Company Profile Page */
.company-container {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-100);
}

.company-container h1 {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  padding: 40px;
  margin: 0;
  text-align: center;
  font-size: 2.5rem;
}

.company-description {
  padding: 40px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--gray-700);
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}

.image-slider {
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.slider-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.slider-img:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.contact-box {
  padding: 40px;
  background: var(--white);
}

.contact-box h3 {
  color: var(--primary);
  margin-bottom: 24px;
  font-size: 1.5rem;
}

.contact-box p {
  margin: 12px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}

.contact-box strong {
  min-width: 100px;
  color: var(--gray-700);
  font-weight: 500;
}

.contact-box a {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}

.contact-box a:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  backdrop-filter: blur(4px);
}

.modal-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: var(--shadow-xl);
  transform: scale(0.9);
  animation: modalEnter 0.3s ease forwards;
}

@keyframes modalEnter {
  to {
    transform: scale(1);
  }
}

.success-icon {
  font-size: 4rem;
  color: var(--success);
  margin-bottom: 20px;
}

.error-icon {
  font-size: 4rem;
  color: var(--error);
  margin-bottom: 20px;
}

.modal-content h3 {
  margin-bottom: 16px;
  color: var(--gray-900);
}

.modal-content p {
  margin-bottom: 32px;
  color: var(--gray-600);
  line-height: 1.6;
}

.modal-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-900) 100%);
  color: var(--white);
  padding: 60px 20px 30px;
  margin-top: 80px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-section h3 {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-section h4 {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 0;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 400;
}

.footer-section ul li a:hover {
  color: var(--primary-light);
  transform: translateX(5px);
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.social-links a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 30px;
  }
  
  .registration-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-header {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    align-items: center;
  }

  .service-logo {
    width: 100px;
    height: 100px;
  }
  
  .nav-links {
    gap: 16px;
  }
  
  .nav-links a {
    padding: 6px 12px;
    font-size: 0.9rem;
  }
  
  .form-column {
    padding: 30px 20px;
  }
  
  .hero-content {
    padding: 40px 0;
  }
  
  .container {
    padding: 0 16px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }

  .results-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .hero-search .search-filters {
    flex-direction: column;
    gap: 12px;
  }

  .hero-search .premium-filter-wrapper {
    min-width: auto;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .pricing-card {
    padding: 24px;
  }
  
  .amount {
    font-size: 2.5rem;
  }
  
  .modal-content {
    padding: 30px 20px;
  }
  
  .footer-content {
    gap: 25px;
  }

  .hero-search .search-input-wrapper {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-search .search-btn {
    margin-top: 8px;
    min-width: auto;
  }

  .service-logo {
    width: 80px;
    height: 80px;
  }
}