/* Request Quote Page Styles - Copied from request-quote.ejs */
/* Hero Section (matching blogs.ejs) */
.hero { position: relative; background: #0B0D0E; color: #fff; min-height: 540px; padding: 75px 0 48px 0; overflow: hidden; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.hero__grid-bg { position: absolute; inset: 0; background: repeating-linear-gradient(90deg, #23272F 0 1px, transparent 1px 80px), repeating-linear-gradient(180deg, #23272F 0 1px, transparent 1px 80px); opacity: 0.5; z-index: 0; }
.hero__grid-bg::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(90deg, transparent 0 1px, transparent 1px 80px), repeating-linear-gradient(180deg, transparent 0 1px, transparent 1px 80px); z-index: 1; pointer-events: none; }
.hero__grid-cell { position: absolute; width: 80px; height: 80px; border: 1px solid #23272F; opacity: 0; z-index: 1; pointer-events: auto; transition: background 0.18s, opacity 0.18s; }
.hero__grid-cell:hover { opacity: 1; z-index: 2; background: #2563eb; }
.hero__centerpiece { position: relative; z-index: 2; text-align: center; max-width: 700px; margin: 0 auto; padding:4rem; }
.hero__title { font-size: 3.2rem; font-weight: 900; margin-bottom: 32px; line-height: 1.1; letter-spacing: -1px; padding: 2rem 0; color:white; }
.hero__badge { display: inline-block; background: #181A1B; color: #fff; font-size: 0.95rem; border-radius: 16px; padding: 4px 16px; margin-bottom: 18px; font-weight: 500; letter-spacing: 0.02em; }
.hero__subtitle {
  font-size: 1.1rem;
  color: #e5e7eb;
  margin-top: 15px;
  line-height: 1.6;
  padding: 0 20px; /* Add some horizontal padding */
}

/* Request Quote Form Section */
.request-quote-form-section {
  padding: 80px 0;
  background: #f8fafc;
}

.request-quote-form-card {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(37, 99, 235, 0.07), 0 2px 12px rgba(37, 99, 235, 0.10);
  border: 1.5px solid #e5e7eb;
  height: fit-content;
}

.form-card-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 2rem;
  text-align: center;
}

.form-section {
  margin-bottom: 2.5rem;
}

.form-section-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2563eb;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e5e7eb;
}

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

.form-group label {
  display: block;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.required {
  color: #dc2626;
  font-weight: 700;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  background: #f8fafc;
  color: #1f2937;
  transition: all 0.2s ease;
}

.form-control:focus {
  outline: none;
  border-color: #2563eb;
  background: white;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-control::placeholder {
  color: #9ca3af;
}

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

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.checkbox-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #2563eb;
}

.checkbox-item label {
  margin-bottom: 0;
  font-weight: 500;
  color: #374151;
  cursor: pointer;
}

.terms-group {
  background: #f8fafc;
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}

.terms-group a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
}

.terms-group a:hover {
  text-decoration: underline;
}

.submit-btn {
  background: #2563eb;
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  justify-content: center;
}

.submit-btn:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* How It Works Card */
.how-it-works-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 24px rgba(37, 99, 235, 0.07), 0 2px 12px rgba(37, 99, 235, 0.10);
  border: 1.5px solid #e5e7eb;
  height: fit-content;
  position: sticky;
  top: 100px;
}

.how-it-works-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 2rem;
  text-align: center;
}

.steps-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.step-number {
  background: #2563eb;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.step-content p {
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
}

.trust-note {
  margin-top: 2rem;
  padding: 1rem;
  background: #fef3c7;
  border-radius: 8px;
  border-left: 4px solid #f59e0b;
}

.trust-note p {
  margin: 0;
  color: #92400e;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Country Select Styling */
.country-select {
  background: #f8fafc;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  color: #1f2937;
  font-weight: 500;
  padding: 12px 16px;
}

/* Add error styling */
.form-control.error {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

/* Responsive Design */
@media (max-width: 991px) {
  .hero__title {
    font-size: 2.5rem;
  }
  
  .request-quote-form-card,
  .how-it-works-card {
    padding: 30px;
  }
  
  .how-it-works-card {
    position: static;
    margin-top: 2rem;
  }
  
  .checkbox-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 100px 0 60px;
  }
  
  .hero__title {
    font-size: 2rem;
  }
  
  .request-quote-form-section {
    padding: 60px 0;
  }
  
  .request-quote-form-card,
  .how-it-works-card {
    padding: 20px;
  }
  
  .form-card-title,
  .how-it-works-title {
    font-size: 1.5rem;
  }
} 