/* Modern Color Scheme */
:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #93c5fd;
  --secondary: #111827;
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --emissions: #059669;
  --white: #ffffff;
  --light-gray: #f9fafb;
  --medium-gray: #e5e7eb;
  --dark-gray: #4b5563;
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.15);
}
/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Poppins", sans-serif;
  color: var(--secondary);
  line-height: 1.7;
  background-color: var(--white);
  overflow-x: hidden;
  scroll-behavior: smooth;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 1.3;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
.container {
  width: 95%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 15px;
}
section {
  padding: 100px 0;
  position: relative;
}
.section-title {
  text-align: center;
  margin-bottom: 15px;
  font-size: 2.5rem;
  color: var(--secondary);
  position: relative;
}
.section-title:after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--primary);
  margin: 20px auto 30px;
  border-radius: 2px;
}
.section-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 1.1rem;
  color: var(--dark-gray);
}
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}
.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(128, 146, 186, 0.4);
}
.btn-secondary {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-secondary:hover {
  background-color: var(--white);
  color: var(--primary);
}
.btn-accent {
  background-color: var(--accent);
  color: var(--secondary);
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}
.btn-accent:hover {
  background-color: var(--accent-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}
.text-center {
  text-align: center;
}
/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
  z-index: 1000;
  padding: 2px 0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}
.navbar.scrolled {
  padding: 5px 0;
  background-color: rgba(17, 24, 39, 0.98);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-links a.active,
.mobile-menu a.active {
  color: var(--primary-light) !important;
}
.nav-links a.active:after,
.mobile-menu a.active:after {
  width: 100% !important;
}
/* Logo Styles */
.logo {
  display: flex;
  align-items: center;
  height: 100%;
}
.logo-img {
  height: 100px;
  width: auto;
  transition: all 0.3s ease;
}
.navbar .logo {
  padding: 5px 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  color: var(--white);
  font-weight: 500;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  position: relative;
}
.nav-links a:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}
.nav-links a:hover:after {
  width: 100%;
}
.nav-links a:hover {
  color: var(--primary-light);
}
.nav-links .btn {
  padding: 10px 25px;
  margin-left: 15px;
}
.hamburger {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1001;
}
.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--white);
  border-radius: 3px;
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--secondary) 0%, #000 100%);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  transform: translateX(-100%);
}
.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.mobile-menu-container {
  width: 100%;
  height: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
}
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-menu-logo {
  height: 60px;
  width: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.1);
}
.mobile-menu-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 0;
}
.mobile-menu-link {
  display: flex;
  align-items: center;
  padding: 20px 0;
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.mobile-menu-link i {
  margin-right: 15px;
  font-size: 1.2rem;
  width: 30px;
  text-align: center;
  color: var(--primary-light);
}
.mobile-menu-link:hover {
  color: var(--primary-light);
  padding-left: 10px;
}
.mobile-menu-phone,
.mobile-menu-location {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
}
.mobile-menu-phone i,
.mobile-menu-location i {
  margin-right: 10px;
}
.mobile-menu-phone:hover,
.mobile-menu-location:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}
/* Remove old mobile menu styles */
.mobile-menu {
  display: none;
}
/* Update hamburger menu for mobile */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
    z-index: 2001;
    position: relative;
  }
  .hamburger.active span {
    background-color: var(--white);
  }
}

/* Preloader Styles */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--secondary);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  text-align: center;
}

.preloader-logo {
  max-width: 250px;
  height: auto;
  margin-bottom: 30px;
  background: transparent;
  border: none;
  box-shadow: none;
}

.preloader-spinner {
  width: 200px;
  height: 6px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.preloader-spinner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--primary);
  border-radius: 3px;
  animation: loading 2s infinite ease-in-out;
}

@keyframes loading {
  0% {
    width: 0;
    left: 0;
  }
  50% {
    width: 100%;
    left: 0;
  }
  100% {
    width: 0;
    left: 100%;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
/* Hero Section */
.hero {
  position: relative;
  color: var(--white);
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}
.hero-image-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.hero-image-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 40px 0;
}
.hero-text {
  flex: 1;
  max-width: 600px;
  padding: 20px;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 35px;
  max-width: 600px;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

/* Updated badges section */
.hero-badges {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.hero-badge {
  display: inline-block;
  background-color: var(--accent);
  color: var(--secondary);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.8rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.hero-badge-emissions {
  background-color: var(--emissions);
  color: var(--white);
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

/* Hero Logo Container */
.hero-logo-container {
  flex: 1;
  max-width: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.hero-logo-img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  padding: 15px;
}

/* Stats Section */
.stats {
  background-color: var(--primary);
  color: var(--white);
  padding: 50px 0;
  position: relative;
  z-index: 2;
  margin-top: -25px;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
}
.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}
.stat-item {
  padding: 20px;
  transition: transform 0.3s ease;
}
.stat-item:hover {
  transform: translateY(-5px);
}
.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.9);
}
.stat-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}
.stat-label {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}
/* Services Section */
.services {
  background-color: var(--light-gray);
  position: relative;
}
.services .section-title {
  color: var(--secondary);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
}
.service-card {
  background-color: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  position: relative;
  border: 1px solid var(--medium-gray);
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.service-card.featured {
  border: 2px solid var(--primary);
  transform: scale(1.02);
}
.featured-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--accent);
  color: var(--secondary);
  padding: 6px 15px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
}
.service-header {
  padding: 30px;
  background-color: var(--primary);
  color: var(--white);
  position: relative;
  text-align: center;
}
.service-header:after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid var(--primary);
}
.service-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.9);
}
.service-header h3 {
  margin-bottom: 5px;
  font-size: 1.5rem;
}
.price {
  font-size: 1.2rem;
}
.service-features {
  padding: 40px 30px;
  list-style: none;
}
.service-features li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  position: relative;
  padding-left: 10px;
}
.service-features i {
  color: var(--primary);
  margin-top: 3px;
  font-size: 1.1rem;
}
.service-card .btn {
  display: block;
  margin: 0 30px 30px;
  text-align: center;
  width: calc(100% - 60px);
}
/* About Section */
.about {
  background-color: var(--white);
  position: relative;
}
.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-content {
  position: relative;
}
.about-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.about-image:hover {
  transform: translateY(-5px);
}
.about-image:before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 2px solid var(--primary);
  border-radius: 12px;
  z-index: -1;
}
.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.feature {
  text-align: center;
  padding: 25px 15px;
  background-color: var(--light-gray);
  border-radius: 8px;
  transition: all 0.3s ease;
}
.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
.feature i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
}
.feature h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.feature p {
  font-size: 0.95rem;
  color: var(--dark-gray);
}
/* Process Section */
.process {
  background-color: var(--light-gray);
}
.process-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 60px;
}
.process-steps:before {
  content: "";
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--medium-gray);
  z-index: 1;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 2;
  width: 23%;
}
.step-number {
  width: 60px;
  height: 60px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
  transition: all 0.3s ease;
}
.step-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 15px;
}
.process-step:hover .step-number {
  transform: scale(1.1);
  background-color: var(--primary-dark);
}
.step-title {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: var(--secondary);
}
.step-description {
  color: var(--dark-gray);
  font-size: 0.95rem;
}
/* Specializations Section */
.specializations {
  background-color: var(--white);
}
.specialization-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}
.specialization-card {
  background-color: var(--light-gray);
  padding: 40px 30px;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}
.specialization-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  background-color: var(--primary);
  color: var(--white);
}
.specialization-card:hover h3,
.specialization-card:hover .spec-icon i {
  color: var(--white);
}
.specialization-card:hover ul li {
  color: rgba(255, 255, 255, 0.9);
}
.spec-icon {
  margin-bottom: 20px;
}
.spec-icon i {
  font-size: 2.5rem;
  color: var(--primary);
}
.specialization-card h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--secondary);
}
.specialization-card ul {
  list-style: none;
}
.specialization-card ul li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 25px;
  color: var(--dark-gray);
}
.specialization-card ul li:before {
  content: "▹";
  position: absolute;
  left: 0;
  color: var(--primary);
}
.specialization-card:hover ul li:before {
  color: var(--accent);
}
/* Testimonials */
.testimonials {
  background-color: var(--white);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}
.testimonial-card {
  background-color: var(--light-gray);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  position: relative;
  transition: all 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.testimonial-card:before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 5rem;
  color: var(--primary-light);
  font-family: serif;
  line-height: 1;
  opacity: 0.3;
}
.rating {
  color: var(--accent);
  margin-bottom: 20px;
  font-size: 1rem;
}
.testimonial-card p {
  font-style: italic;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}
.client {
  display: flex;
  align-items: center;
  gap: 15px;
}
.client-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
}
.client-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.client-info h4 {
  margin-bottom: 5px;
  font-size: 1.1rem;
}
.client-info span {
  color: var(--dark-gray);
  font-size: 0.9rem;
}
/* Gallery Section */
.gallery {
  padding: 80px 0;
  background-color: var(--light-gray);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 50px;
}
.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 250px;
  transition: all 0.3s ease;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay-content {
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.gallery-item:hover .gallery-overlay-content {
  transform: translateY(0);
}
.gallery-overlay h4 {
  color: var(--white);
  margin-bottom: 5px;
}
.gallery-overlay p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}
/* Contact Section  */
.contact {
  background-color: var(--light-gray);
  padding: 100px 0;
  position: relative;
}
.contact .container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}
.contact-header {
  text-align: center;
  margin-bottom: 60px;
}
.contact-header h2 {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 15px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.contact-header p {
  font-size: 1.1rem;
  color: var(--dark-gray);
  max-width: 700px;
  margin: 0 auto;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}
.contact-cta {
  padding: 60px;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-cta h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.contact-cta p {
  margin-bottom: 30px;
  opacity: 0.9;
  line-height: 1.6;
}
.phone-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--white);
  color: var(--primary);
  padding: 18px 30px;
  border-radius: 50px;
  font-size: 1.3rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}
.phone-button i {
  font-size: 1.2em;
}
.phone-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.contact-details {
  padding: 60px;
}
.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--medium-gray);
}
.contact-method:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.contact-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.5rem;
  flex-shrink: 0;
}
.contact-info h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--secondary);
}
.contact-info p,
.contact-info a {
  color: var(--dark-gray);
  transition: color 0.3s ease;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.contact-info a:hover {
  color: var(--primary);
}
.business-hours {
  margin-top: 40px;
}
.business-hours h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--secondary);
}
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--medium-gray);
}
.hours-row:last-child {
  border-bottom: none;
}
.hours-day {
  font-weight: 500;
}
/* CTA Section */
.cta {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  color: var(--white);
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
}
.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  position: relative;
}
.cta p {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
}
.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  position: relative;
}
.cta .btn-secondary {
  color: var(--white);
  border-color: var(--white);
}
.cta .btn-secondary:hover {
  background-color: var(--white);
  color: var(--primary);
}
/* Footer - Fixed for mobile */
.footer {
  background-color: var(--secondary);
  color: var(--white);
  padding: 80px 0 0;
  position: relative;
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  margin-bottom: 60px;
}
.footer-about {
  padding-right: 30px;
}
/* Footer Logo Styles */
.footer-logo-img {
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
}
.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  margin: 15px 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.1rem;
  transition: all 0.3s ease;
}
.social-links a:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
}
.footer-links h4,
.footer-services h4,
.footer-contact h4 {
  font-size: 1.3rem;
  margin-bottom: 25px;
  color: var(--white);
  position: relative;
}
.footer-links h4:after,
.footer-services h4:after,
.footer-contact h4:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary);
}
.footer-links ul,
.footer-services ul {
  list-style: none;
}
.footer-links li,
.footer-services li {
  margin-bottom: 12px;
}
.footer-links a,
.footer-services a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  display: inline-block;
}
.footer-links a:hover,
.footer-services a:hover {
  color: var(--primary-light);
  transform: translateX(5px);
}
.footer-contact p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.footer-contact i {
  color: var(--primary);
  margin-top: 5px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px 0;
  text-align: center;
}
.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.footer-bottom a {
  color: var(--primary-light);
}
.footer-bottom a:hover {
  color: var(--primary);
  text-decoration: none;
}
/* Floating Call Button */
.floating-call {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 999;
  display: none;
}
.floating-call a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--accent);
  color: var(--secondary);
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(245, 158, 11, 0.4);
  font-size: 1.5rem;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}
.floating-call a:hover {
  transform: scale(1.1);
  background-color: var(--accent-dark);
  color: var(--white);
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(245, 158, 11, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
  }
}
/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--secondary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.back-to-top.active {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  background-color: var(--primary-dark);
  transform: translateY(-5px);
}
/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 {
  transition-delay: 0.2s;
}
.delay-2 {
  transition-delay: 0.4s;
}
.delay-3 {
  transition-delay: 0.6s;
}
.delay-4 {
  transition-delay: 0.8s;
}
/* Responsive Styles */
@media (max-width: 1200px) {
  .section-title {
    font-size: 2.2rem;
  }
  .hero h1 {
    font-size: 3rem;
  }
}
@media (max-width: 992px) {
  section {
    padding: 80px 0;
  }
  .about .container,
  .contact .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-image {
    order: -1;
  }
  .process-steps {
    flex-wrap: wrap;
    gap: 40px;
  }
  .process-step {
    width: 45%;
  }
  .process-steps:before {
    display: none;
  }
  .contact-form {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero p {
    font-size: 1.1rem;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .btn {
    width: 100%;
    font-size: 0.75rem;
  }
  .stats-container {
    grid-template-columns: 1fr 1fr;
  }
  .process-step {
    width: 100%;
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .cta h2 {
    font-size: 2rem;
  }
  .contact-content {
    grid-template-columns: 1fr;
  }
  .contact-cta,
  .contact-details {
    padding: 40px;
  }
  .floating-call {
    display: block;
  }
  /* Specific fixes for contact section on mobile */
  .contact-header h2 {
    font-size: 2rem;
    padding: 0 15px;
  }
  .contact-header p {
    padding: 0 15px;
  }
  .phone-button {
    font-size: 1.1rem;
    padding: 15px 20px;
  }
  /* Footer adjustments for mobile */
  .footer-about {
    padding-right: 0;
  }
  .footer-content {
    gap: 30px;
  }
}
@media (max-width: 576px) {
  section {
    padding: 60px 0;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .hero {
    min-height: auto;
    padding: 80px 0 40px;
  }
  .stats-container {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .contact-header h2 {
    font-size: 1.8rem;
  }
  .phone-button {
    font-size: 1rem;
    padding: 12px 18px;
  }
  .contact-method {
    flex-direction: column;
    gap: 15px;
  }
  .contact-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  .footer-content {
    grid-template-columns: 1fr;
  }
  /* Specific fixes for footer text on very small screens */
  .footer-about p,
  .footer-contact p {
    font-size: 0.95rem;
  }
  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .cta-buttons .btn {
    width: 100%;
  }
}
/* Mobile Menu Toggle */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: left;
    padding-top: 60px;
  }
  .hero-text {
    max-width: 100%;
    padding-top: 0;
  }
  .hero-logo-container {
    justify-content: center;
    margin-top: 40px;
    order: 2;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero p {
    max-width: 100%;
  }
}
@media (max-width: 576px) {
  .hero {
    padding: 80px 0 40px;
  }
  .hero-logo-container {
    margin-top: 20px;
  }
  .hero-logo-img {
    max-width: 300px;
  }
  .hero-content {
    gap: 30px;
  }
  .logo-img {
    height: 100px;
  }
  .footer-logo-img {
    max-width: 150px;
  }
}
