:root {
  --primary-color: #1B3A4B;
  --secondary-color: #D2E4DC;
  --accent-color: #4CAF50;
  --text-color: #333333;
  --light-text: #ffffff;
  --background-light: #ffffff;
  --dark-bg: #121212;
  --gray-text: #9e9e9e;
  --success-color: #10B981;
  --warning-color: #F59E0B;
  --error-color: #EF4444;
}

/* Container and Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Hero Section */
.contact-hero {
  height: 70vh;
  background: linear-gradient(135deg, rgba(27, 58, 75, 0.9), rgba(76, 175, 80, 0.1)),
              url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?auto=format&fit=crop&q=80');
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  position: relative;
  margin-top: var(--nav-height-desktop);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(27, 58, 75, 0.85), rgba(76, 175, 80, 0.1));
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-text p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 600px;
}

.highlight {
  color: var(--accent-color);
  position: relative;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
  border-radius: 2px;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.stat {
  text-align: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat strong {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.stat span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.floating-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  text-align: center;
  animation: float 6s ease-in-out infinite;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color), #45a049);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 8px 16px rgba(76, 175, 80, 0.3);
}

.card-icon i {
  font-size: 1.5rem;
  color: white;
}

.floating-card h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
  font-weight: 700;
}

.floating-card p {
  color: var(--gray-text);
  font-size: 0.95rem;
  margin: 0;
}

/* Quick Contact Section */
.quick-contact {
  padding: 4rem 0;
  background: #f8fafc;
  margin-top: -2rem;
  position: relative;
  z-index: 3;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.method-card {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.method-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.method-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-color), #45a049);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 24px rgba(76, 175, 80, 0.3);
}

.method-icon i {
  font-size: 2rem;
  color: white;
}

.method-card h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
  font-weight: 700;
}

.method-card p {
  color: var(--gray-text);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.method-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--primary-color), #2c3e50);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(27, 58, 75, 0.2);
}

.method-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(27, 58, 75, 0.3);
  background: linear-gradient(135deg, #2c3e50, var(--primary-color));
}

.method-link i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.method-link:hover i {
  transform: translateX(4px);
}

.number, .email, .location {
  font-weight: 700;
  font-size: 1.1rem;
}

/* Main Contact Section */
.contact-main {
  padding: 6rem 0;
  background: white;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

/* Info Panel */
.contact-info-panel {
  background: linear-gradient(145deg, #f8fafc, #ffffff);
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.info-header h2 {
  color: var(--primary-color);
  font-size: 2.2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.info-header p {
  color: var(--gray-text);
  font-size: 1.1rem;
  line-height: 1.6;
}

.service-highlights {
  margin-top: 3rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.highlight-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.highlight-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-color), #45a049);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.highlight-icon i {
  color: white;
  font-size: 1.2rem;
}

.highlight-content h4 {
  color: var(--primary-color);
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.highlight-content p {
  color: var(--gray-text);
  font-size: 0.9rem;
  margin: 0;
}

.business-info {
  margin-top: 3rem;
}

.business-info h3 {
  color: var(--primary-color);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.hours-grid {
  display: grid;
  gap: 0.75rem;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  background: white;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.hours-item.emergency {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(76, 175, 80, 0.05));
  border-color: var(--accent-color);
}

.day {
  font-weight: 600;
  color: var(--primary-color);
}

.time {
  color: var(--gray-text);
  font-weight: 500;
}

/* Form Panel */
.contact-form-panel {
  background: white;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-header h2 {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.form-header p {
  color: var(--gray-text);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.success-message {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 12px;
  margin-bottom: 2rem;
}

.success-message i {
  color: var(--success-color);
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.success-message h3 {
  color: var(--success-color);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.success-message p {
  color: var(--gray-text);
  margin: 0;
}

.quote-form {
  margin-top: 2rem;
}

.form-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e5e7eb;
}

.form-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.form-section h4 {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.form-section h4 i {
  color: var(--accent-color);
  font-size: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #f9fafb;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
  background: white;
}

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

.checkbox-group {
  margin-bottom: 0;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-weight: 500;
  color: var(--gray-text);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 0;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0.25rem 0 0 0;
  accent-color: var(--accent-color);
}

.submit-button {
  width: 100%;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--accent-color), #45a049);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  box-shadow: 0 4px 16px rgba(76, 175, 80, 0.3);
  margin-top: 1rem;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(76, 175, 80, 0.4);
  background: linear-gradient(135deg, #45a049, var(--accent-color));
}

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

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

/* Service Areas */
.service-areas {
  padding: 6rem 0;
  background: #f8fafc;
}

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

.section-header h2 {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.section-header p {
  color: var(--gray-text);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

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

.area-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.area-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.area-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), #2c3e50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.area-icon i {
  color: white;
  font-size: 1.5rem;
}

.area-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.area-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.area-card li {
  color: var(--gray-text);
  padding: 0.25rem 0;
  font-size: 0.95rem;
}

/* FAQ Section */
.faq-section {
  padding: 6rem 0;
  background: white;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-column {
  display: flex;
  flex-direction: column;
}

.faq-item {
  background: #f8fafc;
  border-radius: 12px;
  margin-bottom: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--primary-color);
  font-weight: 600;
  line-height: 1.4;
}

.faq-question i {
  color: var(--accent-color);
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question {
  background: var(--accent-color);
  color: white;
}

.faq-item.active .faq-question h3 {
  color: white;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: white;
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--gray-text);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* Trust Section */
.trust-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--primary-color), #2c3e50);
  color: white;
}

.trust-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.trust-text h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.trust-text p {
  font-size: 1.1rem;
  opacity: 0.9;
  line-height: 1.6;
}

.trust-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge i {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  color: var(--accent-color);
}

.badge span {
  font-weight: 600;
  font-size: 0.9rem;
}

/* Animations */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-info-panel,
  .contact-form-panel {
    padding: 2.5rem;
  }

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

  .hero-text h1 {
    font-size: 3rem;
  }

  .hero-stats {
    justify-content: center;
  }

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

  .trust-badges {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}

@media (max-width: 768px) {
  /* Hero Section - Tightened for Mobile */
  .contact-hero {
    height: 50vh;
    min-height: 400px;
    margin-top: 0;
    padding-top: var(--nav-height-mobile, 70px);
    background-attachment: scroll;
    padding-bottom: 2rem;
  }

  .hero-content {
    padding: 0 1rem;
    gap: 0;
    grid-template-columns: 1fr;
    align-items: flex-start;
    justify-content: center;
  }

  /* Hide floating card on mobile */
  .contact-hero .hero-visual .floating-card {
    display: none !important;
  }

  .hero-text h1 {
    font-size: 2.5rem !important;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 800 !important;
  }

  .hero-text p {
    font-size: 1rem;
    margin-bottom: 1.25rem;
    line-height: 1.5;
  }

  /* Hide hero stats on mobile - cleaner, more focused */
  .hero-stats {
    display: none !important;
  }

  /* Hide quick contact section on mobile */
  .quick-contact {
    display: none !important;
  }

  /* Main Contact Section - Form First Approach */
  .contact-main {
    padding: 2.5rem 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  }

  .contact-layout {
    gap: 0;
    grid-template-columns: 1fr;
  }

  /* Hide info panel on mobile - form is the focus */
  .contact-info-panel {
    display: none !important;
  }

  /* Form Panel - Full Width, Enhanced for Mobile */
  .contact-form-panel {
    padding: 0;
    background: transparent;
    box-shadow: none;
    border: none;
    width: 100%;
  }

  .form-header {
    text-align: left;
    margin-bottom: 2rem;
    padding: 0;
  }

  .form-header h2 {
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
  }

  .form-header p {
    font-size: 1rem;
    color: var(--gray-text);
    margin: 0;
    line-height: 1.5;
  }

  /* Streamlined Form Sections */
  .quote-form {
    margin-top: 0;
  }

  .form-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e5e7eb;
    background: white;
    padding: 1.75rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    margin-bottom: 1.5rem;
  }

  .form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
  }

  .form-section h4 {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.625rem;
  }

  .form-section h4 i {
    font-size: 1rem;
    color: var(--accent-color);
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 0;
  }

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

  .form-group:last-child {
    margin-bottom: 0;
  }

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

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

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
    background: white;
    outline: none;
  }

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

  .checkbox-group {
    margin-top: 1.25rem;
  }

  .checkbox-label {
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--gray-text);
  }

  .submit-button {
    width: 100%;
    padding: 1.25rem 2rem;
    font-size: 1.125rem;
    font-weight: 700;
    margin-top: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(76, 175, 80, 0.3);
  }

  /* Hide redundant sections on mobile */
  .service-areas,
  .faq-section,
  .trust-section {
    display: none !important;
  }

  .container {
    padding: 0 1rem;
  }

  /* Mobile Sticky CTA - Mobile Only */
  .mobile-sticky-cta {
    display: flex;
  }
  
  .mobile-sticky-phone,
  .mobile-sticky-quote {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
  }
  
  .mobile-sticky-phone {
    background: var(--accent-color, #4CAF50);
    color: white;
  }
  
  .mobile-sticky-phone:hover {
    background: #45a049;
    transform: translateY(-2px);
  }
  
  .mobile-sticky-quote {
    background: var(--primary-color, #1b3a4b);
    color: white;
  }
  
  .mobile-sticky-quote:hover {
    background: #2a3d5a;
    transform: translateY(-2px);
  }
  
  .mobile-sticky-phone i,
  .mobile-sticky-quote i {
    font-size: 1.1rem;
  }
  
  /* Add padding to body to prevent content from being hidden behind sticky bar */
  body {
    padding-bottom: 80px;
  }
}

@media (max-width: 480px) {
  .contact-hero {
    height: 45vh;
    min-height: 350px;
    margin-top: 0;
    padding-top: var(--nav-height-mobile, 70px);
    padding-bottom: 1.5rem;
  }

  .hero-content {
    padding: 0 1rem;
    gap: 1rem;
  }

  .hero-text h1 {
    font-size: 2.25rem !important;
    margin-bottom: 0.75rem;
    font-weight: 800 !important;
  }

  .hero-text p {
    font-size: 0.9375rem;
    margin-bottom: 1rem;
  }

  /* Form adjustments for small mobile */
  .contact-main {
    padding: 2rem 0;
  }

  .form-header h2 {
    font-size: 2.25rem !important;
    margin-bottom: 0.625rem;
  }

  .form-header p {
    font-size: 0.9375rem;
  }

  .form-section {
    padding: 1.5rem 1.25rem;
    margin-bottom: 1.25rem;
  }

  .form-section h4 {
    font-size: 1.0625rem;
    margin-bottom: 1rem;
  }

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

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.875rem;
    font-size: 0.9375rem;
  }

  .submit-button {
    padding: 1.125rem 1.75rem;
    font-size: 1.0625rem;
  }
}

/* Hide mobile sticky CTA on desktop */
@media (min-width: 769px) {
  .mobile-sticky-cta {
    display: none !important;
  }
}

/* Mobile Sticky CTA - Mobile Only */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  padding: 0.75rem 1rem;
  gap: 0.75rem;
}