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

html {
  scroll-behavior: smooth;
}

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

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

/* Header Styles */
.header {
  background: linear-gradient(135deg, #c41e3a 0%, #a01830 100%);
  color: white;
  padding: 1.5rem 0;
  box-shadow: 0 2px 10px rgba(196, 30, 58, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo {
  flex: 1;
}

.logo h1 {
  font-size: 2rem;
  font-weight: bold;
  margin: 0;
}

.logo p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin: 0.25rem 0 0 0;
}

.nav {
  display: flex;
  gap: 2rem;
  flex: 2;
  justify-content: flex-end;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  position: relative;
}

.nav-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.nav-link.active {
  background-color: rgba(255, 255, 255, 0.3);
  border-bottom: 3px solid white;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #c41e3a 0%, #a01830 100%);
  color: white;
  padding: 6rem 20px;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  line-height: 1.8;
}

.cta-button {
  display: inline-block;
  background-color: white;
  color: #c41e3a;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 2px solid white;
}

.cta-button:hover {
  background-color: #f0f0f0;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* About Section */
.about {
  padding: 4rem 20px;
  background-color: white;
}

.about h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #c41e3a;
}

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

.about-item {
  text-align: center;
  padding: 2rem;
  background-color: #f9f9f9;
  border-radius: 10px;
  transition: all 0.3s ease;
  border-top: 4px solid #c41e3a;
}

.about-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(196, 30, 58, 0.15);
}

.about-icon {
  color: #c41e3a;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
}

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

.about-item p {
  color: #666;
  line-height: 1.6;
}

/* Services Preview */
.services-preview {
  padding: 4rem 20px;
}

.services-preview h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #c41e3a;
}

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

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  border-left: 4px solid #c41e3a;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(196, 30, 58, 0.2);
}

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

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: #c41e3a;
}

.service-card p {
  color: #666;
  line-height: 1.6;
}

.see-more {
  text-align: center;
}

.link {
  display: inline-block;
  color: #c41e3a;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border-bottom: 2px solid #c41e3a;
  padding-bottom: 0.3rem;
}

.link:hover {
  color: #a01830;
  border-bottom-color: #a01830;
}

/* Page Hero (for inner pages) */
.page-hero {
  background: linear-gradient(135deg, #c41e3a 0%, #a01830 100%);
  color: white;
  padding: 3.5rem 20px;
  text-align: center;
}

.page-hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

.page-hero p {
  font-size: 1rem;
  opacity: 0.95;
}

/* Services Full Page */
.services {
  padding: 4rem 20px;
}

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

.service-full-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-left: 5px solid #c41e3a;
  transition: all 0.3s ease;
}

.service-full-card:hover {
  box-shadow: 0 8px 25px rgba(196, 30, 58, 0.2);
  transform: translateY(-5px);
}

.service-number {
  display: inline-block;
  background-color: #c41e3a;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.service-full-card h3 {
  font-size: 1.4rem;
  color: #c41e3a;
  margin-bottom: 1rem;
}

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

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

.service-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #555;
}

.service-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #c41e3a;
  font-weight: bold;
}

/* Warranty Section */
.warranty {
  background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
  padding: 4rem 20px;
}

.warranty h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #c41e3a;
}

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

.warranty-item {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.warranty-item:hover {
  box-shadow: 0 8px 20px rgba(196, 30, 58, 0.15);
  transform: translateY(-3px);
}

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

.warranty-item p {
  color: #666;
  line-height: 1.6;
}

/* Regions Page */
.regions {
  padding: 4rem 20px;
}

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

.region-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-top: 4px solid #c41e3a;
  transition: all 0.3s ease;
}

.region-card:hover {
  box-shadow: 0 8px 25px rgba(196, 30, 58, 0.2);
  transform: translateY(-5px);
}

.region-card h3 {
  color: #c41e3a;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.region-card ul {
  list-style: none;
}

.region-card li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #555;
}

.region-card li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: #c41e3a;
  font-weight: bold;
}

.service-area-info {
  background: linear-gradient(135deg, #fff5f5 0%, #ffe6e6 100%);
  padding: 2rem;
  border-radius: 10px;
  border-left: 5px solid #c41e3a;
  margin-bottom: 3rem;
}

.service-area-info h3 {
  color: #c41e3a;
  margin-bottom: 1rem;
}

.service-area-info p {
  color: #666;
  line-height: 1.6;
}

.service-info {
  padding: 4rem 20px;
  background: white;
}

.service-info h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2.5rem;
  color: #c41e3a;
}

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

.info-card {
  background: #f9f9f9;
  padding: 2rem;
  border-radius: 10px;
  border-bottom: 3px solid #c41e3a;
}

.info-card h4 {
  color: #c41e3a;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.info-card p {
  color: #666;
  line-height: 1.6;
}

/* Contact Page */
.contact {
  padding: 4rem 20px;
}

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

.contact-info h3,
.contact-form h3 {
  color: #c41e3a;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

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

.contact-item h4 {
  color: #333;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: #666;
  line-height: 1.6;
}

.contact-item a {
  color: #c41e3a;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.contact-item a:hover {
  text-decoration: underline;
  color: #a01830;
}

/* Form Styles */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #333;
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #c41e3a;
  box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
}

.submit-btn {
  background: linear-gradient(135deg, #c41e3a 0%, #a01830 100%);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
}

.form-message {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: 5px;
  text-align: center;
  font-weight: 500;
  display: none;
}

.form-message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  display: block;
}

.form-message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  display: block;
}

/* Quick Service Section */
.quick-service {
  background: linear-gradient(135deg, #c41e3a 0%, #a01830 100%);
  padding: 3rem 20px;
  text-align: center;
  color: white;
}

.quick-service h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.quick-service p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.phone-button {
  display: inline-block;
  background-color: white;
  color: #c41e3a;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.phone-button:hover {
  background-color: #f0f0f0;
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
  background: #222;
  color: #bbb;
  padding: 3rem 20px 1rem;
  margin-top: 3rem;
}

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

.footer-section h4 {
  color: #c41e3a;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-section p {
  line-height: 1.6;
  margin-bottom: 0.8rem;
}

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

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

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

.footer-section a:hover {
  color: #c41e3a;
}

.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 1.5rem;
  text-align: center;
  color: #999;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 1rem;
  }

  .nav {
    flex-direction: column;
    gap: 0.5rem;
    justify-content: center;
  }

  .hero h2 {
    font-size: 2rem;
  }

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

  .logo h1 {
    font-size: 1.5rem;
  }

  .about-grid,
  .services-grid,
  .regions-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .services-full-grid {
    grid-template-columns: 1fr;
  }

  .page-hero h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 3rem 15px;
  }

  .hero h2 {
    font-size: 1.5rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .cta-button {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }

  .about-grid,
  .services-grid,
  .regions-grid,
  .info-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .services-preview h2 {
    font-size: 1.8rem;
  }

  .nav {
    flex-direction: column;
    gap: 0.3rem;
  }

  .nav-link {
    padding: 0.3rem 0.5rem;
    font-size: 0.9rem;
  }
}
