/* Variables */
:root {
  --primary-color: #4CAF50;
  --secondary-color: #718096;
  --text-color: #2d3748;
  --light-bg: #f7fafc;
  --white: #ffffff;
  --black: #2d3748;
  --gray: #718096;
  --light-gray: #e2e8f0;
  --success-color: #48bb78;
  --warning-color: #ed8936;
  --accent-color: #66BB6A;
  --border-color: #e2e8f0;
}

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

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Arial", sans-serif;
  color: var(--text-color);
  position: relative;
  background: var(--white);
  width: 100%;
  overflow-x: hidden;
  min-height: 100vh;
}

section {
  padding: 60px 20px;
  margin-top: 0;
}

section h2 {
  text-align: center;
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 0.8rem 1rem;
}

.navbar .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

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

.logo img {
  height: 45px;
  width: auto;
}

.logo h1 {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.get-quote {
  background: var(--primary-color);
  color: var(--white) !important;
  padding: 0.7rem 1.5rem;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.get-quote:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-color);
  font-size: 24px;
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  background: linear-gradient(
      135deg,
      rgba(76, 175, 80, 0.95) 0%,
      rgba(102, 187, 106, 0.85) 100%
    ),
    url("images/hero-bg.jpg") center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px 40px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.2) 0%, transparent 100%),
    linear-gradient(-45deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
  z-index: 1;
}

.hero-content {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 2rem;
  background: rgba(76, 175, 80, 0.3);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero p {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  margin-bottom: 2rem;
  line-height: 1.6;
  opacity: 0.95;
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.hero-button {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
  text-align: center;
  min-width: 200px;
}

.primary-button {
  background: var(--white);
  color: var(--primary-color);
  border: none;
}

.primary-button:hover {
  background: var(--accent-color);
  color: var(--white);
  transform: translateY(-2px);
}

.secondary-button {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.secondary-button:hover {
  background: var(--white);
  color: var(--primary-color);
  transform: translateY(-2px);
}

/* Get Quote Button */
.get-quote:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* About Section */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-text p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.about-image {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.feature {
  text-align: center;
  padding: 1.5rem;
  background: var(--light-bg);
  border-radius: 10px;
  transition: transform 0.3s ease;
}

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

.feature i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

@media screen and (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 15px;
  }

  .about-image {
    height: 300px;
    margin: 0 auto;
  }

  .about-text {
    order: -1;
  }

  .about-features {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }
}

@media screen and (max-width: 480px) {
  .about-content {
    padding: 0 10px;
  }

  .about-image {
    height: 250px;
  }

  .about-text p {
    font-size: 1rem;
  }

  .about-features {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

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

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

.service-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.service-card h3 {
  margin-bottom: 1rem;
  color: var(--text-color);
}

.service-card p {
  color: var(--gray);
  font-size: 0.9rem;
}

/* Projects */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.project-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.project-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.project-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: var(--white);
}

.project-info h3 {
  margin-bottom: 0.5rem;
}

.project-link {
  display: inline-block;
  color: var(--white);
  text-decoration: none;
  margin-top: 1rem;
  font-weight: 600;
}

/* Testimonials */
.testimonials {
  background: var(--light-bg);
}

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

.testimonial-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
  position: relative;
  margin-bottom: 2rem;
}

.testimonial-content i {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.rating {
  color: #ffd700;
  margin-top: 1rem;
}

/* Contact Section */
.contact {
  background: var(--white);
  padding: 80px 20px;
}

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

.contact-info {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.contact-info-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--light-gray);
}

.contact-info-header h3 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.contact-info-header p {
  color: var(--gray);
}

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

.hours-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--light-gray);
}

.hours-item:last-child {
  border-bottom: none;
}

.hours-item span:first-child {
  font-weight: 600;
  color: var(--text-color);
}

.hours-item span:last-child {
  color: var(--gray);
}

.contact-map {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.contact-map iframe {
  display: block;
}

@media screen and (max-width: 768px) {
  .cta-contact-info {
    flex-direction: column;
    gap: 1rem;
  }

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

  .cta-contact-content {
    padding: 2rem;
  }

  .cta-info-item {
    padding: 1rem;
  }
}

/* Business Hours */
.business-hours {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--light-gray);
}

.business-hours h3 {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.business-hours p {
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

/* Emergency Service Banner */
.emergency-service {
  background: linear-gradient(135deg, var(--warning-color), #f6ad55);
  color: var(--white);
  padding: 1.2rem;
  border-radius: 8px;
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 2px 10px rgba(237, 137, 54, 0.2);
}

.emergency-service i {
  font-size: 1.8rem;
}

.emergency-service div h4 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

/* Contact Form */
.contact-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.form-subtitle {
  color: var(--gray);
  margin-bottom: 2rem;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--light-bg);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(44, 82, 130, 0.1);
  background: var(--white);
}

.contact-form textarea {
  height: 150px;
  resize: vertical;
  margin-bottom: 1.5rem;
}

.submit-button {
  width: 100%;
  background: var(--primary-color);
  color: var(--white);
  padding: 1rem;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.submit-button:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 2px 10px rgba(66, 153, 225, 0.2);
}

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

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

.form-guarantee {
  text-align: center;
  color: var(--success-color);
  margin-top: 1rem;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.form-guarantee i {
  color: var(--success-color);
}

/* Footer */
footer {
  background: var(--black);
  color: var(--white);
  padding: 3rem 5%;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

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

.footer-section h3 {
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

.footer-section a {
  color: var(--white);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--accent-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Chat Widget */
.chat-widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
}

.chat-toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.chat-container {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 300px;
  height: 400px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  display: none;
}

.chat-container.active {
  display: flex;
  flex-direction: column;
}

.chat-header {
  padding: 1rem;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 10px 10px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.close-chat {
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
}

.chat-messages {
  flex-grow: 1;
  padding: 1rem;
  overflow-y: auto;
}

.chat-input {
  padding: 1rem;
  border-top: 1px solid #ddd;
  display: flex;
  gap: 0.5rem;
}

.chat-input input {
  flex-grow: 1;
  padding: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.send-message {
  background: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  cursor: pointer;
}

/* Mobile Navigation */
@media screen and (max-width: 768px) {
  .navbar {
    padding: 0.6rem 1rem;
  }

  .navbar .container {
    width: 100%;
    padding: 0;
  }

  .logo img {
    height: 35px;
  }

  .mobile-menu-btn {
    display: block;
    margin-left: auto;
    padding: 0.5rem;
    z-index: 1001;
  }

  .nav-links {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    display: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

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

  .nav-links a {
    width: 100%;
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid var(--light-gray);
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  .get-quote {
    margin: 1rem;
    width: calc(100% - 2rem);
  }

  .hero {
    padding: 60px 15px 30px;
  }

  .hero-content {
    padding: 1.5rem;
    margin: 0 15px;
  }

  .trust-badges {
    flex-direction: column;
    padding: 1rem;
    margin: 1.5rem auto;
    width: 90%;
    gap: 0.8rem;
  }

  .badge {
    width: 100%;
    padding: 0.8rem;
    min-width: unset;
  }

  .social-proof {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
    margin: 2rem auto 0;
    width: 90%;
  }

  .counter {
    padding: 1rem 0;
  }

  .counter::after {
    display: none;
  }

  .count {
    font-size: 2.5rem;
  }

  .label {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  .hero-button {
    width: 100%;
    min-width: unset;
    padding: 1rem;
  }
}

@media screen and (max-width: 480px) {
  .navbar {
    padding: 0.5rem;
  }

  .logo img {
    height: 30px;
  }

  .nav-links {
    top: 50px;
  }

  .nav-links a {
    padding: 0.8rem;
    font-size: 0.95rem;
  }

  .hero {
    padding: 50px 10px 30px;
  }

  .hero-content {
    padding: 1.2rem;
    margin: 0 10px;
  }

  .trust-badges {
    width: 100%;
    padding: 0.8rem;
  }

  .badge {
    padding: 0.7rem;
  }

  .badge i {
    font-size: 1.4rem;
  }

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

  .social-proof {
    width: 100%;
    padding: 1rem;
  }

  .count {
    font-size: 2.2rem;
  }

  .label {
    font-size: 0.9rem;
  }
}

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

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate {
  animation: fadeIn 0.6s ease forwards;
}

/* Floating Phone Button */
.floating-phone {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 1000;
}

.floating-phone i {
  font-size: 24px;
  animation: pulse 2s infinite;
}

.floating-phone:hover {
  transform: scale(1.1);
  background: #2b6cb0;
}

.phone-tooltip {
  position: absolute;
  right: 70px;
  background: var(--black);
  color: var(--white);
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.phone-tooltip::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 6px solid var(--black);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.floating-phone:hover .phone-tooltip {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 768px) {
  .floating-phone {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
  }

  .floating-phone i {
    font-size: 20px;
  }
}

/* Popup */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1002;
}

.popup.active {
  display: flex;
}

.popup-content {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  position: relative;
  max-width: 400px;
  width: 90%;
  text-align: center;
}

.popup h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.popup-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0;
}

.popup-footer {
  color: var(--gray);
  font-size: 0.9rem;
  margin-top: 1rem;
}

.close-popup {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--gray);
}

/* Social Proof Counter */
.social-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem auto 0;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  max-width: 800px;
}

.counter {
  text-align: center;
  padding: 1rem;
  position: relative;
}

.counter::after {
  content: "";
  position: absolute;
  right: -1rem;
  top: 50%;
  transform: translateY(-50%);
  height: 70%;
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.counter:last-child::after {
  display: none;
}

.count {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.label {
  color: var(--white);
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  line-height: 1.4;
  opacity: 0.9;
}

/* Video Testimonial */
.video-testimonial {
  margin-bottom: 3rem;
}

.video-placeholder {
  background: var(--black);
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.video-placeholder:hover {
  transform: scale(1.02);
}

.video-placeholder i {
  font-size: 4rem;
  margin-bottom: 1rem;
  color: var(--accent-color);
}

/* Trust Indicators */
.trust-indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.trust-item img {
  max-width: 100%;
  height: auto;
  filter: grayscale(1);
  transition: filter 0.3s ease;
}

.trust-item:hover img {
  filter: grayscale(0);
}

/* Enhanced Contact Form */
.contact-form h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.form-subtitle {
  color: var(--gray);
  margin-bottom: 1.5rem;
}

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

.form-guarantee {
  color: var(--success-color);
  font-size: 0.9rem;
  margin-top: 1rem;
  text-align: center;
}

.submit-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.submit-button i {
  transition: transform 0.3s ease;
}

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

/* Emergency Service */
.emergency-service {
  background: var(--warning-color);
  color: var(--white);
  padding: 1rem;
  border-radius: 5px;
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.emergency-service i {
  font-size: 1.5rem;
  color: var(--white);
}

/* Social Links */
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  color: var(--white);
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--accent-color);
}

/* Payment Methods */
.payment-methods {
  margin-top: 1rem;
}

/* Navigation CTA */
.nav-cta {
  background: var(--primary-color);
  color: var(--white) !important;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: all 0.3s ease !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  background: #2b6cb0;
}

/* Animations */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

/* Update form elements */
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent-color);
  outline: none;
  box-shadow: 0 0 0 2px rgba(66, 153, 225, 0.2);
}

/* Trust Badges */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 2.5rem auto;
  width: 100%;
  max-width: 800px;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  transition: all 0.3s ease;
  min-width: 200px;
  justify-content: center;
}

.badge:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.badge i {
  font-size: 1.8rem;
  color: var(--white);
}

.badge span {
  color: var(--white);
  font-weight: 600;
  font-size: 1.1rem;
  white-space: nowrap;
}

/* Mobile Responsive Badge Adjustments */
@media screen and (max-width: 768px) {
  .trust-badges {
    flex-direction: column;
    padding: 1rem;
    margin: 1.5rem auto;
    width: 90%;
  }

  .badge {
    width: 100%;
    padding: 0.8rem;
    min-width: unset;
  }

  .badge i {
    font-size: 1.2rem;
  }

  .badge span {
    font-size: 0.95rem;
  }
}

/* Social Proof Counter Adjustments */
.social-proof {
  margin-top: 3rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: center;
  gap: 3rem;
}

.counter {
  text-align: center;
  padding: 0.5rem;
}

.count {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--white);
  margin-bottom: 0.5rem;
  display: block;
}

.label {
  color: var(--white);
  font-size: 1rem;
  opacity: 0.9;
}

@media screen and (max-width: 768px) {
  .social-proof {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1rem;
    margin-top: 2rem;
  }

  .counter {
    padding: 0.5rem 1rem;
  }

  .count {
    font-size: 2rem;
  }

  .label {
    font-size: 0.9rem;
  }
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  color: var(--white);
  padding: 3rem 0;
  text-align: center;
  margin: 4rem 0;
}

.cta-banner-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.cta-banner h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
  color: var(--white);
}

.cta-banner p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Trust Section */
.trust-section {
  padding: 4rem 0;
  background: var(--light-bg);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.trust-item {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.trust-item:hover {
  transform: translateY(-5px);
}

.trust-item i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.trust-item h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.trust-item p {
  color: var(--gray);
  line-height: 1.6;
}

/* Featured Projects Section */
.featured-projects {
  padding: 4rem 0;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.featured-project {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.featured-project img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.featured-project:hover img {
  transform: scale(1.05);
}

.featured-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: var(--white);
}

.featured-overlay h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.featured-overlay p {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Guarantee Section */
.guarantee-section {
  background: var(--white);
  padding: 4rem 0;
  text-align: center;
}

.guarantee-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.guarantee-badge {
  width: 120px;
  height: 120px;
  margin: 0 auto 2rem;
  background: var(--success-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 3rem;
}

.guarantee-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
  color: var(--text-color);
}

.guarantee-section p {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 2rem;
  line-height: 1.6;
}

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

.guarantee-feature {
  text-align: center;
}

.guarantee-feature i {
  font-size: 2rem;
  color: var(--success-color);
  margin-bottom: 1rem;
}

.guarantee-feature h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.guarantee-feature p {
  font-size: 0.9rem;
  color: var(--gray);
}

/* Mobile Responsive Adjustments */
@media screen and (max-width: 768px) {
  .cta-banner {
    padding: 2rem 0;
    margin: 2rem 0;
  }

  .trust-section,
  .featured-projects,
  .guarantee-section {
    padding: 2rem 0;
  }

  .guarantee-badge {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }

  .trust-item,
  .featured-project {
    padding: 1.5rem;
  }
}

@media screen and (max-width: 480px) {
  .cta-banner {
    padding: 1.5rem 0;
    margin: 1.5rem 0;
  }

  .trust-section,
  .featured-projects,
  .guarantee-section {
    padding: 1.5rem 0;
  }

  .guarantee-badge {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }
}

/* Gallery Section */
.gallery {
  padding: 4rem 0;
  background: var(--light-bg);
}

.gallery h2 {
  text-align: center;
  color: var(--primary-color);
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.gallery p {
  text-align: center;
  color: var(--gray);
  margin-bottom: 3rem;
  font-size: clamp(1rem, 2vw, 1.1rem);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: var(--white);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.gallery-item .overlay h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.gallery-item .overlay p {
  font-size: 0.9rem;
  margin: 0;
  opacity: 0.9;
  text-align: left;
  color: var(--white);
}

@media screen and (max-width: 768px) {
  .gallery {
    padding: 2rem 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    padding: 0 15px;
  }
}

@media screen and (max-width: 480px) {
  .gallery {
    padding: 1.5rem 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    padding: 0 10px;
  }

  .gallery-item {
    aspect-ratio: 3/2;
  }
}

/* CTA Contact Section */
.cta-contact {
  background: var(--light-bg);
  padding: 80px 0;
  margin: 40px 0;
}

.cta-contact-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.cta-contact-text h2 {
  color: var(--primary-color);
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.cta-contact-text p {
  color: var(--gray);
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.cta-contact-info {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
}

.cta-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--light-bg);
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.cta-info-item:hover {
  transform: translateY(-5px);
}

.cta-info-item i {
  font-size: 2rem;
  color: var(--primary-color);
}

.cta-info-item h3 {
  color: var(--text-color);
  margin-bottom: 0.5rem;
}

.cta-info-item a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
}
