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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #374151;
  background-color: #ffffff;
}

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

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

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn-primary {
  background-color: #2563eb;
  color: white;
}

.btn-primary:hover {
  background-color: #1d4ed8;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: #ea580c;
  color: white;
}

.btn-secondary:hover {
  background-color: #dc2626;
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.btn-outline:hover {
  background-color: white;
  color: #2563eb;
}

.btn-emergency {
  background-color: #dc2626;
  color: white;
  width: 100%;
}

.btn-emergency:hover {
  background-color: #b91c1c;
}

.full-width {
  width: 100%;
}

/* Icons */
.icon {
  width: 1rem;
  height: 1rem;
}

/* Header */
.header {
  background-color: white;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 50;
}

.top-bar {
  background-color: #1e3a8a;
  color: white;
  padding: 0.25rem 0;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
}

.contact-info {
  display: flex;
  gap: 1.5rem;
}

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

.hours {
  display: none;
}

.main-header {
  padding: 1rem 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 2rem;
  height: 2rem;
  color: #2563eb;
}

.logo-text h1 {
  font-size: 1.25rem;
  color: #111827;
  margin-bottom: 0;
}

.logo-text p {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0;
}

.desktop-nav {
  display: none;
  gap: 2rem;
}

.desktop-nav a {
  color: #374151;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.desktop-nav a:hover {
  color: #2563eb;
}

.header-cta {
  display: none;
}

.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn span {
  width: 1.5rem;
  height: 2px;
  background-color: #374151;
  transition: all 0.3s ease;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid #e5e7eb;
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav a {
  color: #374151;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0;
}

.mobile-cta {
  margin-top: 1rem;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #1d4ed8 100%);
  color: white;
  padding: 5rem 0;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.2);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.highlight {
  color: #fb923c;
  display: block;
}

.hero-description {
  font-size: 1.25rem;
  color: #bfdbfe;
  margin-bottom: 2rem;
  line-height: 1.6;
}

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

.trust-indicators {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.trust-item {
  text-align: center;
}

.trust-icon {
  width: 2rem;
  height: 2rem;
  color: #fb923c;
  margin: 0 auto 0.5rem;
}

.trust-title {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0;
}

.trust-subtitle {
  font-size: 0.75rem;
  color: #bfdbfe;
  margin-bottom: 0;
}

.hero-image {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.shed-illustration {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.hero-image:hover .shed-illustration {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.8) 0%, rgba(29, 78, 216, 0.6) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero-image:hover .image-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  color: white;
  padding: 2rem;
}

.overlay-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.overlay-content p {
  font-size: 1rem;
  color: #bfdbfe;
  margin-bottom: 1.5rem;
}

.overlay-content .btn {
  font-size: 0.875rem;
  padding: 0.5rem 1.5rem;
}

/* Services Section */
.services {
  padding: 5rem 0;
  background-color: #f9fafb;
}

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

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.25rem;
  color: #6b7280;
  max-width: 48rem;
  margin: 0 auto;
}

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

.service-card {
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.75rem;
}

.service-card p {
  color: #6b7280;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  margin-bottom: 1rem;
}

.service-features li {
  display: flex;
  align-items: center;
  color: #374151;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.service-features li::before {
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  background-color: #ea580c;
  border-radius: 50%;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.service-card .btn {
  width: 100%;
  font-size: 0.875rem;
}

.key-benefits {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
  margin-bottom: 4rem;
}

.benefit-item {
  text-align: center;
}

.benefit-icon {
  font-size: 3rem;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 0.5rem;
}

.benefit-item h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}

.benefit-item p {
  color: #6b7280;
  margin-bottom: 0;
}

.why-choose-us {
  background: #1e3a8a;
  color: white;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
}

.why-choose-us h3 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.why-choose-us p {
  font-size: 1.25rem;
  color: #bfdbfe;
  margin-bottom: 2rem;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fb923c;
  margin-bottom: 0.5rem;
}

.stat-item p {
  color: #bfdbfe;
  margin-bottom: 0;
}

/* About Section */
.about {
  padding: 5rem 0;
  background-color: white;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

.about-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
}

.about-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.about-text p {
  font-size: 1.125rem;
  color: #6b7280;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

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

.feature-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #10b981;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.feature-item h4 {
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}

.feature-item p {
  color: #6b7280;
  font-size: 0.875rem;
  margin-bottom: 0;
}

.complete-service {
  background: #fef3e2;
  border: 1px solid #fed7aa;
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-top: 2rem;
}

.complete-service h4 {
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.75rem;
}

.complete-service p {
  color: #374151;
  line-height: 1.6;
  margin-bottom: 0;
}

.external-link {
  color: #2563eb;
  text-decoration: underline;
  font-weight: 500;
}

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

.about-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.about-image {
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 12rem;
  object-fit: cover;
}

.about-image.offset {
  margin-top: 2rem;
}

.construction-process {
  margin-bottom: 5rem;
}

.construction-process h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111827;
  text-align: center;
  margin-bottom: 3rem;
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.process-step {
  text-align: center;
}

.step-number {
  width: 4rem;
  height: 4rem;
  background-color: #2563eb;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.process-step h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.process-step p {
  color: #6b7280;
  margin-bottom: 0;
}

.cta-section {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  border-radius: 1rem;
  padding: 3rem 2rem;
  text-align: center;
}

.cta-section h3 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.25rem;
  color: #bfdbfe;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}

.cta-note {
  color: #bfdbfe;
  font-size: 0.875rem;
  margin-bottom: 0;
}

/* Testimonials Section */
.testimonials {
  padding: 5rem 0;
  background-color: white;
}

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

.testimonial-card {
  background: #f9fafb;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  padding: 2rem;
}

.testimonial-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.quote-icon {
  width: 2rem;
  height: 2rem;
  color: #2563eb;
}

.stars {
  display: flex;
  gap: 0.25rem;
}

.star {
  color: #fbbf24;
  font-size: 1.25rem;
}

.testimonial-card p {
  color: #374151;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-style: italic;
}

.testimonial-author {
  border-top: 1px solid #e5e7eb;
  padding-top: 1rem;
}

.author-name {
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.25rem;
}

.author-location {
  color: #6b7280;
  font-size: 0.875rem;
  margin-bottom: 0;
}

.testimonials-cta {
  text-align: center;
}

.testimonials-badge {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 0.5rem;
  padding: 1.5rem;
  display: inline-block;
}

.badge-text {
  color: #1e40af;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.badge-subtitle {
  color: #2563eb;
  font-size: 0.875rem;
  margin-bottom: 0;
}

/* Service Areas Section */
.service-areas {
  padding: 5rem 0;
  background-color: #f9fafb;
}

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

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

.map-icon {
  width: 2rem;
  height: 2rem;
  color: #2563eb;
}

.areas-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.area-item {
  background: white;
  border-radius: 0.5rem;
  padding: 1rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  text-align: center;
  font-weight: 600;
  color: #111827;
}

.extended-service {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 0.5rem;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.clock-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #2563eb;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.extended-service h4 {
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}

.extended-service p {
  color: #374151;
  line-height: 1.6;
  margin-bottom: 0;
}

.emergency-services {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.emergency-services h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.emergency-services p {
  color: #6b7280;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.emergency-features {
  margin-bottom: 1.5rem;
}

.emergency-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.emergency-dot {
  width: 0.75rem;
  height: 0.75rem;
  background-color: #dc2626;
  border-radius: 50%;
  flex-shrink: 0;
}

.emergency-feature span {
  color: #374151;
}

/* FAQ Section */
.faq {
  padding: 5rem 0;
  background-color: #f9fafb;
}

.faq-list {
  margin-bottom: 3rem;
}

.faq-item {
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #f9fafb;
}

.faq-question span {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  padding-right: 1rem;
}

.faq-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #6b7280;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: #2563eb;
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.5rem;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-answer p {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 0;
}

.faq-cta {
  text-align: center;
}

.faq-cta h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.faq-cta p {
  color: #6b7280;
  margin-bottom: 1.5rem;
}

/* Contact Section */
.contact {
  padding: 5rem 0;
  background-color: white;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

/* Contact Information */
.contact-info {
  background: #1e3a8a;
  color: white;
  border-radius: 1rem;
  padding: 2rem;
}

.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.contact-items {
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #fb923c;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.contact-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-subtitle {
  color: #bfdbfe;
  font-size: 0.875rem;
  margin-bottom: 0;
}

.consultation-info {
  border-top: 1px solid #1e40af;
  padding-top: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.consultation-info .quote-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #fb923c;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.consultation-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.consultation-info p {
  color: #bfdbfe;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Contact Form */
.contact-form {
  background: #f9fafb;
  border-radius: 1rem;
  padding: 2rem;
}

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

.message-icon {
  width: 2rem;
  height: 2rem;
  color: #2563eb;
}

.form-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0;
}

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

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

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

.full-width {
  grid-column: 1 / -1;
}

.form-disclaimer {
  text-align: center;
  margin-top: 1.5rem;
}

.form-disclaimer p {
  color: #6b7280;
  font-size: 0.875rem;
  margin-bottom: 0;
}

/* Footer */
.footer {
  background-color: #111827;
  color: white;
  padding: 4rem 0;
}

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

.footer-section {
  margin-bottom: 2rem;
}

.company-info {
  grid-column: 1 / -1;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo-icon {
  width: 2rem;
  height: 2rem;
  color: #fb923c;
}

.footer-logo h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0;
}

.footer-logo p {
  font-size: 0.875rem;
  color: #9ca3af;
  margin-bottom: 0;
}

.company-description {
  color: #d1d5db;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

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

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

.footer-icon {
  width: 1rem;
  height: 1rem;
  color: #fb923c;
  flex-shrink: 0;
}

.footer-contact-item span {
  color: #d1d5db;
}

.footer-section h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fb923c;
}

.footer-contact-info {
  margin-top: 1.5rem;
}

.footer-contact-info h5 {
  font-weight: 600;
  color: #fb923c;
  margin-bottom: 0.5rem;
}

.footer-info-items {
  font-size: 0.875rem;
  color: #9ca3af;
}

.footer-info-items p {
  margin-bottom: 0.25rem;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.copyright {
  color: #9ca3af;
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
  font-size: 0.875rem;
}

.footer-legal a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #fb923c;
}

.footer-cta {
  text-align: center;
}

.footer-cta-content {
  background: #1e40af;
  border-radius: 0.5rem;
  padding: 1.5rem;
}

.footer-cta-content h4 {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.footer-cta-content p {
  color: #bfdbfe;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

/* Responsive Design */
@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
  
  .trust-indicators {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .key-benefits {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .areas-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
  
  .footer-bottom-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (min-width: 768px) {
  .hours {
    display: block;
  }
  
  .desktop-nav {
    display: flex;
  }
  
  .header-cta {
    display: block;
  }
  
  .mobile-menu-btn {
    display: none;
  }
  
  .hero-content {
    grid-template-columns: 1fr 1fr;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .about-content {
    grid-template-columns: 1fr 1fr;
  }
  
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .service-areas-content {
    grid-template-columns: 1fr 1fr;
  }
  
  .contact-content {
    grid-template-columns: 1fr 2fr;
  }
  
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1280px) {
  .hero-title {
    font-size: 4rem;
  }
}