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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #ffffff;
}

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

h1 {
  font-size: 2.5rem;
  color: #1e40af;
}

h2 {
  font-size: 2rem;
  color: #1e40af;
}

h3 {
  font-size: 1.5rem;
  color: #1e40af;
}

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

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

/* Hide top header on mobile and fix responsive issues */
.top-header {
  background-color: #f8f9fa;
  padding: 8px 0;
  border-bottom: 1px solid #e9ecef;
}

.top-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #6c757d;
}

.top-header-left {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.top-header-left a {
  color: #1e40af;
  text-decoration: none;
  font-weight: 600;
}

.top-header-right {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.social-links {
  display: flex;
  gap: 0.5rem;
}

.social-links a {
  color: #6c757d;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #1e40af;
}

/* Header */
.header {
  background-color: white;
  padding: 1rem 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.logo-icon {
  width: 50px;
  height: 50px;
  background-color: #1e40af;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  font-weight: bold;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-size: 24px;
  font-weight: bold;
  color: #1e40af;
  line-height: 1;
}

.logo-sub {
  font-size: 14px;
  color: #ea580c;
  font-weight: 500;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-item a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
}

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

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

.cta-text {
  font-size: 12px;
  color: #6c757d;
  text-align: right;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  color: white;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.hero-features {
  list-style: none;
  margin-bottom: 2rem;
}

.hero-features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.hero-features li::before {
  content: "✓";
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.hero-image {
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: #ea580c;
  color: white;
  box-shadow: 0 4px 15px rgba(234, 88, 12, 0.4);
}

.btn-primary:hover {
  background-color: #dc2626;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(234, 88, 12, 0.6);
}

.btn-secondary {
  background-color: transparent;
  color: #1e40af;
  border: 2px solid #1e40af;
  padding: 12px 24px;
  font-size: 1rem;
  text-transform: none;
  letter-spacing: normal;
}

.btn-secondary:hover {
  background-color: #1e40af;
  color: white;
}

.btn-large {
  padding: 18px 36px;
  font-size: 1.2rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #333;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Process Steps Section with proper styling */
.process-section {
  padding: 4rem 0;
  background-color: #f8f9fa;
}

.process-section h2 {
  font-size: 2.5rem;
  color: #1e40af;
  text-align: center;
  margin-bottom: 3rem;
  font-weight: bold;
}

.process-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

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

.step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  position: relative;
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 30px;
  top: 60px;
  width: 2px;
  height: 60px;
  background-color: #e5e7eb;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: #ea580c;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(234, 88, 12, 0.3);
}

.step-content h3 {
  color: #1f2937;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.step-content h3 .phone-number {
  color: #1e40af;
  text-decoration: none;
}

.step-content h3 .phone-number:hover {
  text-decoration: underline;
}

.step-content p {
  color: #6b7280;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

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

.process-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.process-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.process-cta {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  color: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(30, 64, 175, 0.3);
}

.process-cta h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.process-cta p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-size: 1.1rem;
}

/* Services Section with card layout matching reference design */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

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

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

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  color: #1e40af;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

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

/* Added detailed services section styling */
.detailed-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-detail {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid #1e40af;
}

.service-detail:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.service-detail h3 {
  color: #1e40af;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

.service-detail p {
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.service-detail .btn {
  margin-top: 0.5rem;
}

/* Content sections and general layout styles */
.section {
  padding: 4rem 0;
}

.section.bg-light {
  background-color: #f8f9fa;
}

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

.feature-item {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.feature-item h3 {
  color: #1e40af;
  margin-bottom: 1rem;
}

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

.testimonial {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-left: 4px solid #1e40af;
}

.testimonial p {
  font-style: italic;
  margin-bottom: 1rem;
  color: #4b5563;
}

.testimonial strong {
  color: #1e40af;
}

.service-areas ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  list-style: none;
  margin-top: 1rem;
}

.service-areas li {
  background: #f3f4f6;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  text-align: center;
  color: #374151;
}

/* Added comprehensive responsive styles for service areas section */
.service-areas-responsive {
  margin-top: 2rem;
}

.service-areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.service-area-card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid #1e40af;
}

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

.service-area-card h3 {
  color: #1e40af;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.service-area-card p {
  color: #6b7280;
  font-size: 0.95rem;
  margin: 0;
}

.service-commitment {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  color: white;
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(30, 64, 175, 0.3);
}

.service-commitment h3 {
  color: white;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-weight: bold;
}

.commitment-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin: 0;
}

.commitment-list li {
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  backdrop-filter: blur(10px);
}

.contact-section {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.contact-section h2 {
  color: white;
  margin-bottom: 1rem;
}

.contact-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Footer */
.footer {
  background-color: #1f2937;
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: white;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

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

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

.footer-section a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 1rem;
  text-align: center;
  color: #9ca3af;
}

/* Mobile responsive styles with proper breakpoints and touch optimization */
@media (max-width: 768px) {
  /* Hide top header completely on mobile */
  .top-header {
    display: none;
  }

  .header-content {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    gap: 1rem;
    border-radius: 0 0 8px 8px;
  }

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

  /* Enhanced mobile menu items with better touch targets */
  .nav-item a {
    padding: 12px 16px;
    display: block;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .nav-item a:hover,
  .nav-item a.active {
    background-color: #f3f4f6;
    color: #1e40af;
  }

  .mobile-menu-toggle {
    display: block;
    padding: 8px;
    min-height: 44px;
    min-width: 44px;
  }

  /* Hide header CTA on mobile since top header is hidden */
  .header-cta {
    display: none;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 15px;
  }

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

  .hero-text h1 {
    font-size: 2.5rem;
    text-align: left;
    line-height: 1.2;
  }

  .hero-features li {
    justify-content: flex-start;
    text-align: left;
    font-size: 1rem;
  }

  /* Enhanced mobile button styling with better touch targets */
  .btn {
    padding: 16px 24px;
    font-size: 1rem;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: auto;
  }

  .btn-large {
    padding: 18px 32px;
    font-size: 1.1rem;
    min-height: 52px;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .process-section {
    padding: 3rem 0;
  }

  .process-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

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

  .process-images {
    order: -1;
    grid-template-columns: 1fr;
  }

  .process-image img {
    height: 150px;
  }

  .step {
    gap: 1rem;
  }

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .step:not(:last-child)::after {
    left: 25px;
    top: 50px;
    height: 50px;
  }

  .step-content h3 {
    font-size: 1.3rem;
  }

  .step-content p {
    font-size: 0.9rem;
  }

  .process-cta {
    padding: 1.5rem;
  }

  .process-cta h3 {
    font-size: 1.3rem;
  }

  .process-cta p {
    font-size: 1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  /* Added mobile styles for detailed services */
  .detailed-services {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .service-detail {
    padding: 1.5rem;
  }

  .service-detail h3 {
    font-size: 1.3rem;
  }

  .service-detail p {
    font-size: 0.95rem;
  }

  /* Enhanced mobile service detail buttons */
  .service-detail .btn {
    width: 100%;
    margin-top: 1rem;
  }

  .section {
    padding: 3rem 0;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .team-member {
    padding: 1.5rem;
  }

  .team-photo {
    height: 200px;
  }

  .service-image {
    height: 180px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .faq-item {
    padding: 1.5rem;
  }

  /* Enhanced mobile responsive styles for service areas */
  .service-areas-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
  }

  .service-area-card {
    padding: 1rem;
  }

  .service-area-card h3 {
    font-size: 1.1rem;
  }

  .service-area-card p {
    font-size: 0.9rem;
  }

  .service-commitment {
    padding: 2rem;
  }

  .service-commitment h3 {
    font-size: 1.5rem;
  }

  .commitment-list {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .commitment-list li {
    padding: 0.8rem;
    font-size: 0.95rem;
  }

  /* Enhanced mobile contact grid for better touch interaction */
  .contact-grid-responsive {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-item {
    padding: 1.5rem;
    text-align: center;
  }

  .contact-item a {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
  }

  /* Enhanced mobile how-to guides layout */
  .guides-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .guide-card {
    padding: 1.5rem;
  }

  .guide-steps {
    margin: 1rem 0;
  }

  .step {
    margin-bottom: 1rem;
    padding: 0.8rem;
    background-color: #f8f9fa;
    border-radius: 6px;
  }

  .maintenance-tips {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .tip-card {
    padding: 1.5rem;
  }

  .professional-call-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .call-card {
    padding: 1.5rem;
  }

  .local-tips {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .local-tip-card {
    padding: 1.5rem;
  }
}

/* Enhanced small mobile optimization for better usability */
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero {
    padding: 2rem 0;
  }

  .hero-text h1 {
    font-size: 2rem;
    line-height: 1.1;
  }

  .hero-features li {
    font-size: 1rem;
  }

  .btn {
    padding: 14px 20px;
    font-size: 0.95rem;
    min-height: 44px;
  }

  .btn-large {
    padding: 16px 24px;
    font-size: 1rem;
    min-height: 48px;
  }

  .service-card {
    padding: 1rem;
  }

  .service-card img {
    height: 150px;
  }

  /* Added mobile styles for detailed services on small screens */
  .service-detail {
    padding: 1rem;
  }

  .service-detail h3 {
    font-size: 1.2rem;
  }

  .service-detail p {
    font-size: 0.9rem;
  }

  .team-member {
    padding: 1rem;
  }

  .team-photo {
    height: 180px;
  }

  .service-image {
    height: 150px;
  }

  .faq-item {
    padding: 1rem;
  }

  .faq-item h3 {
    font-size: 1.1rem;
  }

  /* Enhanced mobile responsive styles for service areas */
  .service-areas-grid {
    grid-template-columns: 1fr;
  }

  .service-area-card {
    padding: 0.8rem;
  }

  .service-commitment {
    padding: 1.5rem;
  }

  .service-commitment h3 {
    font-size: 1.3rem;
  }

  .commitment-list li {
    padding: 0.7rem;
    font-size: 0.9rem;
  }

  /* Enhanced small screen contact optimization */
  .contact-item {
    padding: 1rem;
  }

  .contact-item h3 {
    font-size: 1.1rem;
  }

  .contact-item p {
    font-size: 0.9rem;
  }

  /* Enhanced small screen how-to guides */
  .guide-card {
    padding: 1rem;
  }

  .guide-header h3 {
    font-size: 1.1rem;
  }

  .difficulty {
    font-size: 0.8rem;
    padding: 0.3rem 0.6rem;
  }

  .guide-steps .step {
    padding: 0.6rem;
    font-size: 0.9rem;
  }

  .guide-warning {
    padding: 0.8rem;
    font-size: 0.9rem;
  }

  .tip-card {
    padding: 1rem;
  }

  .tip-card h3 {
    font-size: 1.1rem;
  }

  .tip-card ul li {
    font-size: 0.9rem;
  }

  .call-card {
    padding: 1rem;
  }

  .call-card h3 {
    font-size: 1.1rem;
  }

  .call-card ul li {
    font-size: 0.9rem;
  }

  .local-tip-card {
    padding: 1rem;
  }

  .local-tip-card h3 {
    font-size: 1.1rem;
  }

  .local-tip-card p {
    font-size: 0.9rem;
  }
}

/* Enhanced floating phone button for mobile with better positioning */
@media (max-width: 768px) {
  .floating-phone {
    bottom: 80px !important;
    right: 15px !important;
    width: 56px !important;
    height: 56px !important;
    font-size: 20px !important;
  }
}

/* Animation for floating phone button */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* Enhanced responsive image classes with better mobile optimization */
.responsive-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.team-photo {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.team-photo:hover {
  transform: scale(1.05);
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Adding team grid layout for proper responsive display */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

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

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.team-member h3 {
  color: #1e40af;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.team-member p {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.team-member p:last-child {
  margin-bottom: 0;
}

/* Adding FAQ grid layout for services page */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.faq-item {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-left: 4px solid #1e40af;
}

.faq-item h3 {
  color: #1e40af;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.faq-item p {
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

/* Enhanced responsive styles for contact page with mobile optimization */
.contact-grid-responsive {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.contact-item {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid #1e40af;
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.contact-item .contact-icon {
  width: 60px;
  height: 60px;
  background-color: #1e40af;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 24px;
  color: white;
}

.contact-item h3 {
  color: #1e40af;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

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

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

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

.emergency-box {
  background: linear-gradient(135deg, #dc2626 0%, #ea580c 100%);
  color: white;
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(220, 38, 38, 0.3);
  grid-column: 1 / -1;
}

.emergency-box h3 {
  color: white;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.emergency-box p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.emergency-box .btn {
  background-color: white;
  color: #dc2626;
  font-weight: bold;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.emergency-box .btn:hover {
  background-color: #f8f9fa;
  transform: translateY(-2px);
}

/* Enhanced how-to guides mobile styling */
.how-to-guides-page {
  padding: 2rem 0;
}

.page-header {
  text-align: center;
  margin-bottom: 3rem;
}

.page-header h1 {
  color: #1e40af;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.page-header p {
  color: #6b7280;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.guides-section {
  margin-bottom: 4rem;
}

.guides-section h2 {
  color: #1e40af;
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

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

.guide-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid #1e40af;
}

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

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

.guide-header h3 {
  color: #1e40af;
  font-size: 1.3rem;
  margin-bottom: 0;
  flex: 1;
}

.difficulty {
  background-color: #f3f4f6;
  color: #374151;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-left: 1rem;
}

.difficulty.easy {
  background-color: #d1fae5;
  color: #065f46;
}

.difficulty.medium {
  background-color: #fef3c7;
  color: #92400e;
}

.difficulty.hard {
  background-color: #fee2e2;
  color: #991b1b;
}

.guide-steps {
  margin: 1.5rem 0;
}

.guide-steps .step {
  background-color: #f8f9fa;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  border-left: 3px solid #1e40af;
}

.guide-steps .step:last-child {
  margin-bottom: 0;
}

.guide-warning {
  background-color: #fef2f2;
  border: 1px solid #fecaca;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1.5rem;
}

.guide-warning strong {
  color: #dc2626;
}

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

.tip-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-left: 4px solid #1e40af;
}

.tip-card h3 {
  color: #1e40af;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

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

.tip-card ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #f3f4f6;
  color: #4b5563;
}

.tip-card ul li:last-child {
  border-bottom: none;
}

.tip-card ul li::before {
  content: "✓";
  color: #10b981;
  font-weight: bold;
  margin-right: 0.5rem;
}

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

.call-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.call-card.emergency {
  border-left: 4px solid #dc2626;
}

.call-card.scheduled {
  border-left: 4px solid #f59e0b;
}

.call-card.installation {
  border-left: 4px solid #1e40af;
}

.call-card h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.call-card.emergency h3 {
  color: #dc2626;
}

.call-card.scheduled h3 {
  color: #f59e0b;
}

.call-card.installation h3 {
  color: #1e40af;
}

.call-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
  text-align: left;
}

.call-card ul li {
  padding: 0.5rem 0;
  color: #4b5563;
  border-bottom: 1px solid #f3f4f6;
}

.call-card ul li:last-child {
  border-bottom: none;
}

.btn-emergency {
  background-color: #dc2626;
  color: white;
  animation: pulse 2s infinite;
}

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

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

.local-tip-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-left: 4px solid #1e40af;
}

.local-tip-card h3 {
  color: #1e40af;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.local-tip-card p {
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

.cta-section {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  color: white;
  padding: 4rem 0;
  text-align: center;
  margin-top: 4rem;
}

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

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

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

.cta-buttons .btn {
  min-width: 200px;
}

/* Mobile-specific CTA button optimization */
@media (max-width: 768px) {
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}
