/* BAS Restoration - High-Converting Website Styles */

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

html {
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
}

body {
  width: 100vw;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Header & Navigation Styles */
.site-header {
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #e5e7eb;
  width: 100vw;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 120px;
  width: 100%;
}

.header-logo .logo-link {
  text-decoration: none;
  display: block;
}

.company-logo {
  height: 100px;
  width: auto;
  object-fit: contain;
}

.header-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2.5rem;
}

.nav-item {
  color: #374151;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-item:hover {
  color: #1e40af;
}

.nav-dropdown {
  position: relative;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 200px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  padding: 0.5rem 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
  z-index: 100;
  margin: 0;
}

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

.dropdown-content li {
  margin: 0;
}

.dropdown-content a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: #374151;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.2s ease;
}

.dropdown-content a:hover {
  background: #f3f4f6;
  color: #1e40af;
}

.header-cta {
  display: flex;
  align-items: center;
}

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

.phone-label {
  display: block;
  font-size: 0.75rem;
  color: #6b7280;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.phone-number {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  color: #dc2626;
  text-decoration: none;
  transition: color 0.3s ease;
}

.phone-number:hover {
  color: #b91c1c;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 3px;
  padding: 8px;
}

.mobile-toggle span {
  width: 22px;
  height: 2px;
  background: #374151;
  transition: all 0.3s ease;
  border-radius: 1px;
}

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

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

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #1a365d;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.lead {
  font-size: 1.25rem;
  font-weight: 400;
  color: #4a5568;
}

/* Button Styles - Conversion Focused */
.btn {
  display: inline-block;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
  transform: translateY(-2px);
}

.btn-emergency {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: white;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
  animation: pulse 2s infinite;
  white-space: nowrap;
  min-width: 180px;
  font-size: 0.95rem;
  padding: 12px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-emergency:hover {
  background: linear-gradient(135deg, #b91c1c, #991b1b);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
  animation: none;
}

/* Responsive emergency button sizing */
@media (max-width: 768px) {
  .btn-emergency {
    font-size: 0.9rem;
    padding: 10px 16px;
    min-width: 160px;
  }
}

@media (max-width: 480px) {
  .btn-emergency {
    font-size: 0.85rem;
    padding: 8px 12px;
    min-width: 140px;
  }
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.btn-full {
  width: 100%;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3); }
  50% { box-shadow: 0 4px 25px rgba(220, 38, 38, 0.5); }
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 100%);
  color: white;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.85), rgba(59, 130, 246, 0.85)),
              url('https://storage.googleapis.com/msgsndr/NzVWVqnsJoUiafPVB3V9/media/68c74365da8255b7db738adb.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 500px;
}

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

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

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #e2e8f0;
  font-weight: 400;
  line-height: 1.3;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-form {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.form-title {
  color: #1a365d;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-align: center;
}

.form-subtitle {
  color: #4a5568;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Lead Generation Form */
.lead-form input,
.lead-form select {
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  background: white;
  color: #374151;
  transition: border-color 0.3s ease;
}

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

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

.form-row input {
  margin-bottom: 0;
}

.trust-badges {
  display: flex;
  justify-content: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.badge {
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Emergency Response Bar */
.emergency-bar {
  background: #dc2626;
  color: white;
  padding: 15px 0;
  position: sticky;
  top: 80px;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.emergency-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
}

.emergency-phone {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.emergency-phone:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Services Snapshot */
.services-snapshot {
  padding: 80px 0;
  background: #f8fafc;
}

.services-snapshot h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
}

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

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-image {
  width: 100%;
  height: 200px;
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  background-color: #f3f4f6;
  border: 1px solid #e5e7eb;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-card h3 {
  margin-bottom: 1rem;
  color: #1a365d;
}

.service-link {
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  margin-top: 1rem;
}

.service-link:hover {
  color: #1d4ed8;
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 80px 0;
  background: white;
}

.why-choose-us h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
}

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

.feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.feature:hover {
  background: #f8fafc;
}

.feature-icon {
  font-size: 2rem;
  color: #2563eb;
  flex-shrink: 0;
  width: 60px;
  text-align: center;
}

.feature h3 {
  margin-bottom: 0.5rem;
  color: #1a365d;
}

/* Testimonials */
.testimonials {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
}

.testimonials-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.testimonial {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: none;
}

.testimonial.active {
  display: block;
}

.stars {
  font-size: 1.5rem;
  color: #fbbf24;
  margin-bottom: 1rem;
}

.testimonial blockquote {
  font-size: 1.25rem;
  font-style: italic;
  margin-bottom: 1rem;
  color: #4a5568;
  line-height: 1.6;
}

.testimonial cite {
  font-weight: 600;
  color: #2563eb;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.nav-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: #cbd5e0;
  cursor: pointer;
  transition: background 0.3s ease;
}

.nav-dot.active {
  background: #2563eb;
}

/* Contact CTA Section */
.contact-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 100%);
  color: white;
  text-align: center;
}

.contact-cta h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

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

.service-area {
  font-size: 1rem;
  color: #e2e8f0;
  margin-top: 2rem;
}

/* Service Pages */
.service-hero, .about-hero, .contact-hero {
  background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 100%);
  color: white;
  padding: 100px 0 60px;
  text-align: center;
}

.service-hero h1, .about-hero h1, .contact-hero h1 {
  color: white;
  margin-bottom: 1rem;
}

.service-subtitle {
  font-size: 1.25rem;
  color: #e2e8f0;
  margin-bottom: 2rem;
}

.service-content, .about-content, .contact-content {
  padding: 60px 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.main-content {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.emergency-widget, .service-areas, .business-info, .trust-indicators {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #2563eb;
}

.process-list {
  list-style: none;
  counter-reset: step-counter;
}

.process-list li {
  counter-increment: step-counter;
  margin-bottom: 1.5rem;
  padding-left: 3rem;
  position: relative;
}

.process-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  background: #2563eb;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
}

.causes-grid, .restoration-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.cause, .restoration-item {
  text-align: center;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 8px;
}

.cause i, .restoration-item i {
  font-size: 2rem;
  color: #2563eb;
  margin-bottom: 1rem;
}

/* Contact Page Specific */
.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.emergency-options {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.emergency-call {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  background: #dc2626;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.emergency-call:hover {
  background: #b91c1c;
  transform: scale(1.02);
}

.emergency-call i {
  font-size: 2rem;
}

.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #e2e8f0;
  border-radius: 6px;
  margin-bottom: 1rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #2563eb;
}

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

.info-item i {
  font-size: 1.25rem;
  color: #2563eb;
  width: 20px;
}

.map-placeholder {
  background: #f8fafc;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 1rem;
  border: 2px dashed #cbd5e0;
}

.area-list {
  list-style: none;
}

.area-list li {
  padding: 0.25rem 0;
  color: #4a5568;
}

.credentials {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.credential {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #4a5568;
}

.credential i {
  color: #2563eb;
  width: 16px;
}

/* About Page Specific */
.certifications {
  list-style: none;
  margin: 1rem 0;
}

.certifications li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.certifications li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 600;
}

.team-photo {
  background: #f8fafc;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  border: 2px dashed #cbd5e0;
}

.emergency-contact-widget {
  background: #dc2626;
  color: white;
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 2rem;
  text-align: center;
}

.emergency-contact-widget h4 {
  color: white;
  margin-bottom: 1rem;
}

.emergency-contact-widget .btn {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid white;
  color: white;
  margin: 1rem 0;
}

.emergency-contact-widget .btn:hover {
  background: white;
  color: #dc2626;
}

.differentiators {
  display: grid;
  gap: 1.5rem;
  margin: 2rem 0;
}

.differentiator {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 8px;
  border-left: 4px solid #2563eb;
}

.differentiator i {
  font-size: 2rem;
  color: #2563eb;
  flex-shrink: 0;
  width: 60px;
  text-align: center;
}

.differentiator h4 {
  margin-bottom: 0.5rem;
  color: #1a365d;
}

/* Who We Serve Section */
.who-we-serve {
  background: #f8fafc;
  padding: 4rem 0;
  margin: 3rem 0;
}

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

.client-type {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.client-type:hover {
  transform: translateY(-5px);
}

.client-icon {
  font-size: 3rem;
  color: #2563eb;
  margin-bottom: 1.5rem;
}

.client-type h3 {
  color: #1a365d;
  margin-bottom: 1rem;
}

.client-type ul {
  text-align: left;
  margin-top: 1rem;
}

.client-type ul li {
  padding: 0.25rem 0;
  color: #4a5568;
}

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

.value {
  text-align: center;
  padding: 2rem;
  background: #f8fafc;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.value i {
  font-size: 2.5rem;
  color: #2563eb;
  margin-bottom: 1rem;
}

.value h3 {
  color: #1a365d;
  margin-bottom: 1rem;
}

/* Service Philosophy Section */
.service-philosophy {
  background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 100%);
  color: white;
  padding: 4rem 0;
  margin: 3rem 0;
}

.service-philosophy h2 {
  color: white;
  text-align: center;
  margin-bottom: 3rem;
}

.philosophy-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.philosophy-text blockquote {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid #fbbf24;
  font-style: italic;
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.philosophy-text blockquote p {
  color: #e2e8f0;
  margin: 0;
}

.philosophy-points {
  list-style: none;
}

.philosophy-points li {
  padding: 0.5rem 0;
  padding-left: 2rem;
  position: relative;
  color: #e2e8f0;
}

.philosophy-points li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #fbbf24;
  font-weight: 600;
}

.philosophy-points strong {
  color: white;
}

.contact-cta-sidebar {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.contact-cta-sidebar h3 {
  color: white;
  margin-bottom: 1rem;
}

.contact-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}

.contact-options .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.service-area-info {
  margin: 2rem 0;
  text-align: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

.service-area-info h4 {
  color: white;
  margin-bottom: 0.5rem;
}

.service-area-info p {
  color: #cbd5e0;
  margin: 0.25rem 0;
}

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

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #cbd5e0;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
}

.trust-badge i {
  color: #fbbf24;
  width: 16px;
}

/* Mobile Responsiveness for About Page */
@media (max-width: 768px) {
  .differentiators {
    gap: 1rem;
  }
  
  .differentiator {
    flex-direction: column;
    text-align: center;
  }
  
  .differentiator i {
    width: auto;
  }
  
  .client-types-grid {
    grid-template-columns: 1fr;
  }
  
  .philosophy-content {
    grid-template-columns: 1fr;
  }
  
  .trust-badges {
    grid-template-columns: 1fr;
  }
  
  .contact-options .btn {
    padding: 1rem;
    font-size: 1rem;
  }
}

/* Mobile Responsiveness */
@media (max-width: 1100px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero-text {
    text-align: center;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .trust-badges {
    justify-content: center;
  }
  
  .hero-form {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .header-container {
    height: 80px;
    padding: 0 15px;
    flex-wrap: nowrap;
  }
  
  .header-logo {
    flex-shrink: 0;
  }
  
  .company-logo {
    height: 60px;
    max-width: 120px;
  }
  
  .header-nav {
    display: none;
  }
  
  .header-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    flex: 1;
    min-width: 0;
  }
  
  .emergency-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
  }
  
  .phone-label {
    font-size: 0.7rem;
    font-weight: 500;
    color: #dc2626;
    text-transform: uppercase;
    letter-spacing: 0.025em;
  }
  
  .phone-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: #dc2626;
    text-decoration: none;
    white-space: nowrap;
  }
  
  .mobile-toggle {
    display: flex;
    margin-left: 10px;
    flex-shrink: 0;
  }
  
  .hero-text h1 {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .radio-group {
    grid-template-columns: 1fr;
  }
  
  .trust-badges {
    gap: 1rem;
  }
  
  .emergency-content {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .content-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .causes-grid,
  .restoration-grid {
    grid-template-columns: 1fr;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .container {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 1.75rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-form {
    padding: 1.5rem;
  }
  
  .form-title {
    font-size: 1.25rem;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .btn-large {
    padding: 14px 24px;
    font-size: 1rem;
  }
}

/* Fixed CTA Button for Mobile */
@media (max-width: 768px) {
  .mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #dc2626;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .mobile-cta .btn {
    width: 100%;
    margin: 0;
  }
  
  body {
    padding-bottom: 80px;
  }
}

/* Loading and Animation States */
.fade-in {
  opacity: 0;
  animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.slide-up {
  transform: translateY(30px);
  opacity: 0;
  animation: slideUp 0.6s ease forwards;
}

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

/* Print Styles */
/* New Hero Section Styles - UPDATED TO MATCH */
.hero-section {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  padding: 80px 0 40px;
  color: white;
  position: relative;
  width: 100vw;
  min-height: 80vh;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 500px;
}

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

.hero-subtitle {
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1rem;
  font-weight: 500;
}

.feature-item i {
  color: #fbbf24;
  width: 18px;
  text-align: center;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.btn-emergency {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #dc2626;
  color: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.125rem;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-emergency:hover {
  background: #b91c1c;
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.5);
  transform: translateY(-2px);
}

.cta-note {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  font-style: italic;
}

/* Hero Form */
.hero-form {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.form-container {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* LeadConnector form styles removed - iframe is now direct in form-container */

.form-note {
  color: #6b7280;
  font-size: 0.75rem;
  text-align: center;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.form-note i {
  color: #10b981;
}

/* Trust Bar */
.trust-bar {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem 0;
}

.trust-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
}

.trust-badge i {
  width: 20px;
  color: #fbbf24;
  font-size: 1.25rem;
  text-align: center;
}

/* Mobile Responsiveness for New Hero */
@media (max-width: 768px) {
  .header-container {
    height: 100px;
    padding: 0 15px;
  }
  
  .company-logo {
    height: 80px;
  }
  
  .header-nav {
    display: none;
    position: fixed;
    top: 100px;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
    padding: 1rem 0;
  }
  
  .header-nav.active {
    display: block;
  }
  
  .nav-menu {
    flex-direction: column;
    gap: 0;
    padding: 0 20px;
  }
  
  .nav-menu li {
    border-bottom: 1px solid #f3f4f6;
  }
  
  .nav-menu li:last-child {
    border-bottom: none;
  }
  
  .nav-item {
    display: block;
    padding: 1rem 0;
    font-size: 1.1rem;
  }
  
  .dropdown-content {
    position: static;
    box-shadow: none;
    border: none;
    background: #f8fafc;
    margin: 0;
    padding: 0.5rem 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    border-radius: 0;
    display: none;
  }
  
  .nav-dropdown.active .dropdown-content {
    display: block;
  }
  
  .dropdown-content a {
    padding: 0.75rem 1rem;
    font-size: 1rem;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-text h1 {
    font-size: 2rem;
  }
  
  .hero-features {
    margin-bottom: 2rem;
  }
  
  .btn-emergency {
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
  
  .form-container {
    padding: 1.5rem;
  }
  
  .trust-badges {
    gap: 2rem;
  }
  
  .trust-badge {
    font-size: 0.75rem;
  }
  
  .badge-logo {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 1.75rem;
  }
  
  .hero-content {
    gap: 1.5rem;
  }
  
  .form-container {
    padding: 1rem;
  }
  
  .trust-badges {
    gap: 1.5rem;
  }
}

/* Footer Styles */
.site-footer {
  background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
  color: white;
  margin-top: 2rem;
}

.footer-main {
  padding: 4rem 0 2rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.footer-logo-img {
  height: 80px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-description {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-certifications {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cert-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
}

.cert-badge i {
  color: #fbbf24;
  width: 16px;
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: white;
  padding-left: 4px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.contact-item i {
  color: #fbbf24;
  width: 18px;
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-item div {
  display: flex;
  flex-direction: column;
}

.contact-item strong {
  font-weight: 600;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2px;
}

.contact-item a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #fbbf24;
}

.contact-item span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

/* Footer Bottom */
.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-legal p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-size: 0.875rem;
}

.legal-links {
  display: flex;
  gap: 1.5rem;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: white;
}

.footer-emergency {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.emergency-number {
  color: #fbbf24;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.emergency-number:hover {
  color: white;
}

/* Footer Mobile Responsiveness */
@media (max-width: 968px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .footer-main {
    padding: 3rem 0 1.5rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-logo-img {
    height: 60px;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .footer-legal {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .footer-emergency {
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media print {
  .emergency-bar,
  .hero-buttons,
  .cta-buttons,
  .btn,
  .site-footer {
    display: none;
  }
}