@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;1,100&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;600;700&display=swap");
*{
    font-family: 'Aileron', sans-serif;
    margin: 0;
    padding: 0;
    text-decoration: none;
    box-sizing: border-box;
    text-decoration: none;
    outline: none;
    border: none;
    transition: all .2s linear;
    --transition-1: 0.15s ease;
    --radius-4: 4px;
}

html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 7rem;
    background-color: #0e1114;
}

section{
    padding:3rem 9%;
}
span{
    color:#f57238;
}

.heading{
    text-align: center;
    color: #f57238;
    margin-bottom: 3rem;
    font-size: 4rem;
}

.btn{
    display:inline-block;
    margin-top:1rem;
    padding:1rem 3rem;
    color: #f57238;
    font-size:1.7rem;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.7);
    cursor: pointer;
}


.btn:hover{
    letter-spacing: .1rem;
    background: #f57238;
    color: #ffffff;
}


@keyframes fadeIn{
    0%{
        opacity: 0;
        transform: translateY(-4rem) scale(0.4);
    }
}

/* Van Banner Styles */
.van-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.van-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.15; /* Subtle overlay effect */
}


/* Header Styles */
.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(14, 17, 20, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid #f57238;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo Styles */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 50px;
  width: auto;
  margin-right: 1rem;
}

.logo-text {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}

.logo-text span {
  color: #f57238;
}

/* Navigation Styles */
.navbar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  font-size: 1.6rem;
  color: #ccc;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.nav-link i {
  font-size: 1.8rem;
  color: #f57238;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: #fff;
  background: rgba(245, 114, 56, 0.1);
}

.nav-link:hover i {
  transform: scale(1.1);
}

.quote-nav {
  background: linear-gradient(45deg, #f57238, #e65a2d) !important;
  color: #fff !important;
  border-radius: 25px;
  margin: 0 0.5rem;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}

.quote-nav:hover {
  background: linear-gradient(45deg, #e65a2d, #d64527) !important;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(245, 114, 56, 0.4);
}

.quote-nav:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.quote-nav:hover:before {
  left: 100%;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.4rem;
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-link i {
  color: #f57238;
}

.contact-link:hover {
  color: #fff;
}

.contact-link:hover span {
  color: #f57238;
}

.cta-button {
  background: #f57238;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 5px;
  font-size: 1.6rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #e65a2d;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(245, 114, 56, 0.3);
}

/* Mobile Menu Toggle */
#hamburger-icon {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 25px;
  cursor: pointer;
  z-index: 1001;
}

#hamburger-icon div {
  width: 100%;
  height: 3px;
  background-color: #f57238;
  margin: 2px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

#hamburger-icon.open .bar1 {
  transform: rotate(-45deg) translate(-5px, 6px);
}

#hamburger-icon.open .bar2 {
  opacity: 0;
}

#hamburger-icon.open .bar3 {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Menu - FIXED VERSION */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%; /* Start completely off-screen */
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: #0e1114;
  padding: 8rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: right 0.4s ease;
  z-index: 999;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
  visibility: hidden; /* Hide when off-screen */
}

.mobile-menu.open {
  right: 0;
  visibility: visible; /* Show when open */
}

/* Mobile Menu Overlay - FIXED VERSION */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 998;
}

.mobile-menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  font-size: 1.8rem;
  color: #ccc;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.mobile-nav-link i {
  color: #f57238;
  font-size: 2rem;
  width: 25px;
}

.mobile-nav-link:hover {
  background: rgba(245, 114, 56, 0.1);
  color: #fff;
}

.mobile-contact {
  margin: 2rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(245, 114, 56, 0.2);
  border-bottom: 1px solid rgba(245, 114, 56, 0.2);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-contact-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.6rem;
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s ease;
}

.mobile-contact-link i {
  color: #f57238;
}

.mobile-contact-link:hover {
  color: #fff;
}

.mobile-cta-button {
  background: #f57238;
  color: #fff;
  padding: 1.5rem;
  border-radius: 5px;
  font-size: 1.8rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.mobile-cta-button:hover {
  background: #e65a2d;
  transform: translateY(-2px);
}


body.no-scroll {
  overflow: hidden;
}

/* Responsive Design */
@media (max-width: 992px) {
  .navbar {
      gap: 0.2rem;
  }
  
  .nav-link {
      padding: 0.8rem 1rem;
      font-size: 1.5rem;
  }
  
  .header-actions {
      gap: 1rem;
  }
  
  .contact-link span {
      display: none;
  }
  
  .contact-link i {
      font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .navbar,
  .header-actions {
      display: none;
  }
  
  #hamburger-icon {
      display: flex;
  }
  
  .logo-text {
      font-size: 1.8rem;
  }
  
  /* Prevent horizontal scrolling */
  body {
      overflow-x: hidden;
      width: 100%;
  }
  
  /* Ensure mobile menu doesn't cause horizontal scroll */
  .mobile-menu {
      transform: translateX(100%); /* Alternative approach */
  }
  
  .mobile-menu.open {
      transform: translateX(0);
  }
}



@media (max-width: 576px) {
  .header-container {
      padding: 1rem;
  }
  
  .logo img {
      height: 40px;
  }
  
  .logo-text {
      font-size: 1.6rem;
  }
  
  .mobile-menu {
      width: 85%;
  }
}




/* Hero Section */
.hero {
  padding: 6rem 0 4rem;
  background: linear-gradient(to bottom, #0e1114 0%, #1a1f24 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMTAwIDEwMCIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMCwwIEwxMDAsMCBMMTAwLDEwMCBMMCwxMDAiIGZpbGw9Im5vbmUiIHN0cm9rZT0iI2Y1NzIzOCIgc3Ryb2tlLXdpZHRoPSIwLjIiIHN0cm9rZS1kYXNocGFycmF5PSI1LDUiPjwvcGF0aD48L3N2Zz4=');
  opacity: 0.1;
  z-index: 1;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}


.hero-content h1 {
  font-size: 4.5rem;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.hero-content h1 span {
  color: #f57238;
}

.hero-description {
  font-size: 1.8rem;
  color: #ccc;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-bottom: 3rem;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #f57238;
}

.stat-label {
  font-size: 1.4rem;
  color: #999;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
}

.btn-primary {
  background-color: #f57238;
  color: #fff;
  padding: 1.2rem 2.5rem;
  border-radius: 5px;
  font-size: 1.6rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #e65a2d;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(245, 114, 56, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: #f57238;
  border: 2px solid #f57238;
  padding: 1.2rem 2.5rem;
  border-radius: 5px;
  font-size: 1.6rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: #f57238;
  color: #fff;
  transform: translateY(-3px);
}

.hero-visual {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
}

.machine-image {
  max-width: 100%;
  animation: float 6s ease-in-out infinite;
}

.machine-image img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}

.floating-badge {
  position: absolute;
  top: 20%;
  right: 0;
  background: rgba(245, 114, 56, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(245, 114, 56, 0.3);
  border-radius: 10px;
  padding: 1rem;
  animation: pulse 2s ease-in-out infinite;
}

.badge-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.badge-title {
  font-size: 1rem;
  color: #f57238;
  font-weight: 600;
}

.badge-text {
  font-size: 1.2rem;
  color: #fff;
  font-weight: 700;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(245, 114, 56, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(245, 114, 56, 0); }
  100% { box-shadow: 0 0 0 0 rgba(245, 114, 56, 0); }
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 3rem;
  margin-bottom: 3rem;
}

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

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: #f57238;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.4rem;
  color: #ccc;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Services Overview */
.services-overview {
  padding: 8rem 0;
  background-color: #0e1114;
}

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

.section-title {
  font-size: 3.5rem;
  text-align: center;
  color: #fff;
  margin-bottom: 1.5rem;
}

.section-title span {
  color: #f57238;
}

.section-subtitle {
  font-size: 1.8rem;
  text-align: center;
  color: #999;
  margin-bottom: 5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.service-card {
  background: linear-gradient(145deg, #151a1f, #12161a);
  border-radius: 15px;
  padding: 3rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(245, 114, 56, 0.1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  border-color: rgba(245, 114, 56, 0.3);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: rgba(245, 114, 56, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.service-icon i {
  font-size: 3rem;
  color: #f57238;
}

.service-card h3 {
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 1.5rem;
}

.service-card p {
  font-size: 1.6rem;
  color: #999;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.service-link {
  color: #f57238;
  font-size: 1.6rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.service-link:hover {
  gap: 1rem;
  color: #fff;
}

/* Why Choose Us */
.why-choose-us {
  padding: 8rem 0;
  background: linear-gradient(to bottom, #1a1f24, #0e1114);
}

.why-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why-text {
  padding-right: 2rem;
}

.benefits-list {
  margin-top: 3rem;
}

.benefit-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background: rgba(245, 114, 56, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon i {
  font-size: 2rem;
  color: #f57238;
}

.benefit-content h4 {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.benefit-content p {
  font-size: 1.5rem;
  color: #999;
  line-height: 1.6;
}

.why-image {
  position: relative;
}

.image-container {
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

.image-container img {
  width: 100%;
  height: auto;
  display: block;
}

/* Why Choose Us Section - Fixed Alignment */
.why-choose-us .section-header.left-align {
    text-align: left;
    margin-bottom: 4rem;
}

.why-choose-us .section-header.left-align .section-title,
.why-choose-us .section-header.left-align .section-subtitle {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

/* Benefit items alignment fix */
.benefit-item {
    display: flex;
    align-items: flex-start; /* Changed from center to flex-start */
    gap: 1.5rem;
    margin-bottom: 3rem;
    text-align: left; /* Added text alignment */
}

.benefit-content {
    text-align: left; /* Ensure content is left-aligned */
}

.benefit-content h4 {
    text-align: left;
    margin-bottom: 0.5rem;
}

.benefit-content p {
    text-align: left;
    margin-bottom: 0;
}

/* Mobile responsiveness for Why Choose Us */
@media (max-width: 992px) {
    .why-choose-us .section-header.left-align {
        text-align: center;
    }
    
    .why-choose-us .section-header.left-align .section-title,
    .why-choose-us .section-header.left-align .section-subtitle {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .benefit-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .benefit-content {
        text-align: center;
    }
    
    .benefit-content h4,
    .benefit-content p {
        text-align: center;
    }
}

/* Additional mobile optimization */
@media (max-width: 768px) {
    .why-content {
        gap: 3rem;
    }
    
    .benefit-item {
        gap: 1rem;
    }
    
    .benefit-icon {
        width: 45px;
        height: 45px;
    }
    
    .benefit-icon i {
        font-size: 1.8rem;
    }
}



/* CTA Section */
.cta-section {
  padding: 8rem 0;
  background: linear-gradient(rgba(14, 17, 20, 0.9), rgba(14, 17, 20, 0.9)), url('images/cta-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
}

.cta-content h2 {
  font-size: 3.5rem;
  color: #fff;
  margin-bottom: 2rem;
}

.cta-content h2 span {
  color: #f57238;
}

.cta-content p {
  font-size: 1.8rem;
  color: #ccc;
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

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

.btn-light {
  background: #fff;
  color: #f57238;
  padding: 1.2rem 2.5rem;
  border-radius: 5px;
  font-size: 1.6rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-light:hover {
  background: #f57238;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 1.2rem 2.5rem;
  border-radius: 5px;
  font-size: 1.6rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background: #fff;
  color: #f57238;
  transform: translateY(-3px);
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #f57238;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 5px 15px rgba(245, 114, 56, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: #e65a2d;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-container {
      flex-direction: column;
      text-align: center;
  }
  
  .hero-content {
      margin-bottom: 5rem;
  }
  
  .hero-stats {
      justify-content: center;
  }
  
  .hero-cta {
      justify-content: center;
  }
  
  .why-content {
      grid-template-columns: 1fr;
      gap: 4rem;
  }
  
  .why-text {
      padding-right: 0;
  }
  
  .cta-buttons {
      flex-direction: column;
      align-items: center;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
      font-size: 3.5rem;
  }
  
  .section-title {
      font-size: 2.8rem;
  }
  
  .services-grid {
      grid-template-columns: 1fr;
  }
  
  .benefit-item {
      flex-direction: column;
      text-align: center;
  }
  
  .experience-badge {
      width: 80px;
      height: 80px;
      bottom: -15px;
      right: -15px;
  }
  
  .experience-badge .years {
      font-size: 1.8rem;
  }
  
  .experience-badge .text {
      font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
      font-size: 2.8rem;
  }
  
  .hero-stats {
      flex-direction: column;
      gap: 2rem;
  }
  
  .hero-cta {
      flex-direction: column;
  }
  
}



/* About Hero Section */
.about-hero {
  padding: 10rem 0 6rem;
  background: linear-gradient(to bottom, #0e1114 0%, #1a1f24 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMTAwIDEwMCIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMCwwIEwxMDAsMCBMMTAwLDEwMCBMMCwxMDAiIGZpbGw9Im5vbmUiIHN0cm9rZT0iI2Y1NzIzOCIgc3Ryb2tlLXdpZHRoPSIwLjIiIHN0cm9rZS1kYXNocGFycmF5PSI1LDUiPjwvcGF0aD48L3N2Zz4=');
  opacity: 0.1;
  z-index: 1;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.about-hero h1 {
  font-size: 4.5rem;
  color: #fff;
  margin-bottom: 2rem;
  font-weight: 700;
}

.about-hero h1 span {
  color: #f57238;
}

.about-hero p {
  font-size: 1.8rem;
  color: #ccc;
  margin-bottom: 4rem;
  line-height: 1.6;
}


/* About Section */
.about-section {
  padding: 8rem 0;
  background-color: #0e1114;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-image {
  position: relative;
}

.image-wrapper {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}



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

.section-header h2 {
  font-size: 3.5rem;
  color: #fff;
  margin-bottom: 1.5rem;
}

.section-header h2 span {
  color: #f57238;
}

.section-header p {
  font-size: 1.8rem;
  color: #999;
}

.section-header.center {
  text-align: center;
}

.about-text p {
  font-size: 1.6rem;
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.about-features {
  margin: 3rem 0;
}

.feature {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(245, 114, 56, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon i {
  font-size: 2.5rem;
  color: #f57238;
}

.feature-content h4 {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.feature-content p {
  font-size: 1.5rem;
  color: #999;
  margin-bottom: 0;
}


/* Team Section - Swiper Styles */
.team-swiper-container {
    display: none; /* Hidden by default, shown on mobile */
    width: 100%;
    margin-top: 3rem;
    padding: 0 10px;
}

.team-swiper {
    width: 100%;
    height: auto;
    padding-bottom: 50px; /* Space for pagination */
}

.team-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

/* Swiper pagination */
.team-swiper .swiper-pagination {
    bottom: 20px;
}

.team-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #999;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.team-swiper .swiper-pagination-bullet-active {
    background: #f57238;
    opacity: 1;
    transform: scale(1.2);
}

/* Swiper navigation */
.team-swiper .swiper-button-next,
.team-swiper .swiper-button-prev {
    color: #f57238;
    width: 40px;
    height: 40px;
    background: rgba(245, 114, 56, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.team-swiper .swiper-button-next:hover,
.team-swiper .swiper-button-prev:hover {
    background: rgba(245, 114, 56, 0.2);
    transform: scale(1.1);
}

.team-swiper .swiper-button-next:after,
.team-swiper .swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

/* Team member adjustments for swiper */
.team-swiper .team-member {
    margin: 0;
    height: 100%;
}


/* Responsive Design */
@media (max-width: 768px) {
    .team-grid {
        display: none !important; /* Hide grid on mobile */
    }
    
    .team-swiper-container {
        display: block; /* Show swiper on mobile */
    }
    
    .team-swiper .team-member {
        max-width: 320px;
        margin: 0 auto;
    }
}

@media (min-width: 769px) {
    .team-swiper-container {
        display: none !important; /* Hide swiper on desktop */
    }
    
    .team-grid {
        display: grid !important; /* Show grid on desktop */
    }
}

/* Original team styles (unchanged) */
.team-section {
    padding: 8rem 0;
    background: linear-gradient(to bottom, #1a1f24, #0e1114);
}

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

.team-member {
    background: linear-gradient(145deg, #151a1f, #12161a);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(245, 114, 56, 0.1);
}

.team-member:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(245, 114, 56, 0.3);
}

.member-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}




.member-info {
    padding: 2rem;
    text-align: center;
}

.member-info h3 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.member-info .position {
    font-size: 1.6rem;
    color: #f57238;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.member-info .experience {
    font-size: 1.4rem;
    color: #999;
}

/* Contact Info Section */
.contact-info-section {
  padding: 8rem 0;
  background: linear-gradient(to bottom, #1a1f24, #0e1114);
}

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

.contact-card {
  background: linear-gradient(145deg, #151a1f, #12161a);
  border-radius: 15px;
  padding: 3rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(245, 114, 56, 0.1);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  border-color: rgba(245, 114, 56, 0.3);
}

.contact-icon {
  width: 70px;
  height: 70px;
  background: rgba(245, 114, 56, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 2.5rem;
  color: #f57238;
}

.contact-details h3 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 1rem;
}

.contact-details p {
  font-size: 1.6rem;
  color: #999;
  line-height: 1.6;
}


.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 1.2rem 2.5rem;
  border-radius: 5px;
  font-size: 1.6rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #fff;
  color: #f57238;
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-grid {
      grid-template-columns: 1fr;
      gap: 4rem;
  }
  
  .hero-stats {
      gap: 3rem;
  }
  
  .stat-number {
      font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .about-hero h1 {
      font-size: 3.5rem;
  }
  
  .hero-stats {
      flex-direction: column;
      gap: 2rem;
  }
  
  .cta-buttons {
      flex-direction: column;
      align-items: center;
  }
  
  .contact-card {
      flex-direction: column;
      text-align: center;
  }
}

@media (max-width: 576px) {
  .about-hero h1 {
      font-size: 2.8rem;
  }
  
  .about-hero p {
      font-size: 1.6rem;
  }
  
  .section-header h2 {
      font-size: 2.8rem;
  }
  
  .team-grid,
  .values-grid,
  .contact-grid {
      grid-template-columns: 1fr;
  }
}





/* Services Hero Section */
.services-hero {
  padding: 10rem 0 6rem;
  background: linear-gradient(to bottom, #0e1114 0%, #1a1f24 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.services-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMTAwIDEwMCIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMCwwIEwxMDAsMCBMMTAwLDEwMCBMMCwxMDAiIGZpbGw9Im5vbmUiIHN0cm9rZT0iI2Y1NzIzOCIgc3Ryb2tlLXdpZHRoPSIwLjIiIHN0cm9rZS1kYXNocGFycmF5PSI1LDUiPjwvcGF0aD48L3N2Zz4=');
  opacity: 0.1;
  z-index: 1;
}

.services-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.services-hero h1 {
  font-size: 4.5rem;
  color: #fff;
  margin-bottom: 2rem;
  font-weight: 700;
}

.services-hero h1 span {
  color: #f57238;
}

.services-hero p {
  font-size: 1.8rem;
  color: #ccc;
  margin-bottom: 4rem;
  line-height: 1.6;
}

.services-hero .hero-stats {
  display: flex;
  justify-content: center;
  gap: 5rem;
  margin-top: 4rem;
}

.services-hero .hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.services-hero .stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: #f57238;
  line-height: 1;
}

.services-hero .stat-label {
  font-size: 1.6rem;
  color: #999;
  margin-top: 1rem;
}

/* Hire Options Section */
.hire-options {
  padding: 8rem 0;
  background-color: #0e1114;
}

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

.option-card {
  background: linear-gradient(145deg, #151a1f, #12161a);
  border-radius: 15px;
  padding: 3rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(245, 114, 56, 0.1);
  position: relative;
}

.option-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(245, 114, 56, 0.3);
}

.option-card.featured {
  border-color: #f57238;
  transform: scale(1.05);
}

.option-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.option-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #f57238;
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 1.2rem;
  font-weight: 600;
}

.option-icon {
  width: 80px;
  height: 80px;
  background: rgba(245, 114, 56, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.option-icon i {
  font-size: 3rem;
  color: #f57238;
}

.option-content h3 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 1.5rem;
}

.option-description {
  font-size: 1.6rem;
  color: #999;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.option-features {
  text-align: left;
  margin-bottom: 3rem;
}

.option-features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.4rem;
  color: #ccc;
  margin-bottom: 1rem;
}

.option-features i {
  color: #f57238;
  font-size: 1.2rem;
}

.option-cta {
  margin-top: 2rem;
}


/* Featured Equipment */
.featured-equipment {
  padding: 8rem 0;
  background-color: #0e1114;
}

.equipment-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-bottom: 5rem;
}

.equipment-card {
  background: linear-gradient(145deg, #151a1f, #12161a);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(245, 114, 56, 0.1);
}

.equipment-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  border-color: rgba(245, 114, 56, 0.3);
}

.equipment-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.equipment-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.equipment-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #f57238;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-size: 1.2rem;
  font-weight: 600;
}

.equipment-details {
  padding: 2rem;
}

.equipment-details h3 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 1.5rem;
}

.equipment-specs {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.equipment-specs span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.4rem;
  color: #999;
}

.equipment-specs i {
  color: #f57238;
}

.btn-outline {
  background: transparent;
  color: #f57238;
  border: 2px solid #f57238;
  padding: 1rem 2rem;
  border-radius: 5px;
  font-size: 1.4rem;
  font-weight: 600;
  width: 100%;
  text-align: center;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #f57238;
  color: #fff;
}

.view-all-container {
  text-align: center;
}


/* FAQ Section */
.faq-section {
  padding: 8rem 0;
  background-color: #0e1114;
}

.faq-container {
  max-width: 800px;
  margin: 5rem auto 0;
}

.faq-item {
  background: linear-gradient(145deg, #151a1f, #12161a);
  border-radius: 10px;
  margin-bottom: 1.5rem;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(245, 114, 56, 0.1);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(245, 114, 56, 0.3);
}

.faq-question {
  width: 100%;
  padding: 2rem 3rem;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1.8rem;
  color: #fff;
  text-align: left;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: #f57238;
}

.faq-question i {
  color: #f57238;
  transition: all 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 3rem 2rem;
  font-size: 1.6rem;
  color: #ccc;
  line-height: 1.6;
}

/* Values Section */
.values-section {
  padding: 8rem 0;
  background: linear-gradient(to bottom, #1a1f24, #0e1114);
}

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

.value-card {
  background: linear-gradient(145deg, #151a1f, #12161a);
  border-radius: 15px;
  padding: 3rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(245, 114, 56, 0.1);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  border-color: rgba(245, 114, 56, 0.3);
}

.value-icon {
  width: 70px;
  height: 70px;
  background: rgba(245, 114, 56, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.value-icon i {
  font-size: 2.5rem;
  color: #f57238;
}

.value-card h3 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 1.5rem;
}

.value-card p {
  font-size: 1.6rem;
  color: #999;
  line-height: 1.6;
}


/* Responsive Design */
@media (max-width: 992px) {
  .options-grid {
      grid-template-columns: 1fr;
  }
  
  .option-card.featured {
      transform: scale(1);
  }
  
  .option-card.featured:hover {
      transform: translateY(-10px);
  }
}

@media (max-width: 768px) {
  .services-hero h1 {
      font-size: 3.5rem;
  }
  
  .services-hero .hero-stats {
      flex-direction: column;
      gap: 2rem;
  }
  

  
  .faq-question {
      padding: 1.5rem 2rem;
      font-size: 1.6rem;
  }
  
  .faq-answer p {
      padding: 0 2rem 1.5rem;
  }
}

@media (max-width: 576px) {
  .services-hero h1 {
      font-size: 2.8rem;
  }
  
  .services-hero p {
      font-size: 1.6rem;
  }
  
  
  .values-grid {
      grid-template-columns: 1fr;
  }
}



/* Contact Hero Section */
.contact-hero {
    padding: 10rem 0 6rem;
    background: linear-gradient(to bottom, #0e1114 0%, #1a1f24 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMTAwIDEwMCIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMCwwIEwxMDAsMCBMMTAwLDEwMCBMMCwxMDAiIGZpbGw9Im5vbmUiIHN0cm9rZT0iI2Y1NzIzOCIgc3Ryb2tlLXdpZHRoPSIwLjIiIHN0cm9rZS1kYXNocGFycmF5PSI1LDUiPjwvcGF0aD48L3N2Zz4=');
    opacity: 0.1;
    z-index: 1;
}

.contact-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero h1 {
    font-size: 4.5rem;
    color: #fff;
    margin-bottom: 2rem;
    font-weight: 700;
}

.contact-hero h1 span {
    color: #f57238;
}

.contact-hero p {
    font-size: 1.8rem;
    color: #ccc;
    margin-bottom: 4rem;
    line-height: 1.6;
}



/* Contact Information Section */
.contact-info-section {
    padding: 8rem 0;
    background-color: #0e1114;
}

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

.contact-card {
    background: linear-gradient(145deg, #151a1f, #12161a);
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(245, 114, 56, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(245, 114, 56, 0.3);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: rgba(245, 114, 56, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.contact-icon i {
    font-size: 2.5rem;
    color: #f57238;
}

.contact-content h3 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.contact-content p {
    font-size: 1.6rem;
    color: #999;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-action {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #f57238;
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    padding: 1rem 2rem;
    border: 2px solid #f57238;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.contact-action:hover {
    background: #f57238;
    color: #fff;
    transform: translateY(-2px);
}

.hours-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(245, 114, 56, 0.1);
    border-radius: 5px;
    font-size: 1.4rem;
    color: #f57238;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Quick Contact Section */
.quick-contact-section {
    padding: 8rem 0;
    background: linear-gradient(to bottom, #1a1f24, #0e1114);
}

.quick-contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: linear-gradient(145deg, #151a1f, #12161a);
    border-radius: 15px;
    padding: 4rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(245, 114, 56, 0.1);
}

.quick-contact-text h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.quick-contact-text h2 span {
    color: #f57238;
}

.quick-contact-text p {
    font-size: 1.6rem;
    color: #ccc;
    line-height: 1.6;
}

.quick-contact-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.quick-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 120px;
}

.quick-action-btn.phone {
    background: rgba(245, 114, 56, 0.1);
    border: 2px solid #f57238;
    color: #f57238;
}

.quick-action-btn.email {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #fff;
    color: #fff;
}

.quick-action-btn:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.quick-action-btn.phone:hover {
    background: #f57238;
    color: #fff;
}

.quick-action-btn.email:hover {
    background: #fff;
    color: #0e1114;
}

.quick-action-btn i {
    font-size: 2.5rem;
}

.quick-action-btn span {
    font-size: 1.6rem;
    font-weight: 600;
}

/* Map Section */
.map-section {
    padding: 8rem 0;
    background-color: #0e1114;
}

.map-container {
    margin-top: 5rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    position: relative;
}

.map-wrapper {
    position: relative;
    height: 450px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}





/* Responsive Design */
@media (max-width: 992px) {
    .quick-contact-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .quick-contact-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .quick-action-btn {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 3.5rem;
    }
    
    
    .contact-cards-grid {
        grid-template-columns: 1fr;
    }
    
}

@media (max-width: 576px) {
    .contact-hero h1 {
        font-size: 2.8rem;
    }
    
    .contact-hero p {
        font-size: 1.6rem;
    }
    
    .contact-card {
        padding: 2rem;
    }
    
    .quick-contact-content {
        padding: 2rem;
    }
}



/* Reviews Hero Section */
.reviews-hero {
  padding: 10rem 0 6rem;
  background: linear-gradient(to bottom, #0e1114 0%, #1a1f24 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.reviews-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMTAwIDEwMCIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMCwwIEwxMDAsMCBMMTAwLDEwMCBMMCwxMDAiIGZpbGw9Im5vbmUiIHN0cm9rZT0iI2Y1NzIzOCIgc3Ryb2tlLXdpZHRoPSIwLjIiIHN0cm9rZS1kYXNocGFycmF5PSI1LDUiPjwvcGF0aD48L3N2Zz4=');
  opacity: 0.1;
  z-index: 1;
}

.reviews-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.reviews-hero h1 {
  font-size: 4.5rem;
  color: #fff;
  margin-bottom: 2rem;
  font-weight: 700;
}

.reviews-hero h1 span {
  color: #f57238;
}

.reviews-hero p {
  font-size: 1.8rem;
  color: #ccc;
  margin-bottom: 4rem;
  line-height: 1.6;
}

.rating-overview {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}



.rating-number {
  font-size: 4rem;
  font-weight: 700;
  color: #f57238;
  display: block;
  line-height: 1;
  margin-bottom: 1rem;
}

.stars {
  display: flex;
  justify-content: center;
  gap: 0.3rem;
  margin-bottom: 1rem;
}

.stars i {
  color: #f57238;
  font-size: 1.6rem;
}

.rating-count {
  font-size: 1.4rem;
  color: #999;
}

/* Reviews Section */
.reviews-section {
  padding: 8rem 0;
  background-color: #0e1114;
}

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

.review-card {
  background: linear-gradient(145deg, #151a1f, #12161a);
  border-radius: 15px;
  padding: 3rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(245, 114, 56, 0.1);
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 8rem;
  color: rgba(245, 114, 56, 0.1);
  font-family: serif;
  line-height: 1;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  border-color: rgba(245, 114, 56, 0.3);
}

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

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}


.reviewer-details h3 {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.reviewer-details p {
  font-size: 1.4rem;
  color: #f57238;
  font-weight: 500;
}

.review-rating .stars {
  justify-content: flex-end;
}

.review-content {
  margin-bottom: 2rem;
}

.review-content h4 {
  font-size: 1.8rem;
  color: #f57238;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.review-content p {
  font-size: 1.5rem;
  color: #ccc;
  line-height: 1.6;
}

.review-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.review-date,
.review-project {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.3rem;
  color: #999;
}

.review-date i,
.review-project i {
  color: #f57238;
  font-size: 1.2rem;
}

/* Reviews Section - Swiper Styles */
.reviews-swiper-container {
    display: none; /* Hidden by default, shown on mobile */
    width: 100%;
    margin-top: 3rem;
    padding: 0 10px 70px; /* Increased bottom padding for dots */
    position: relative;
    overflow: visible; /* Ensure dots are visible */
}

.reviews-swiper {
    width: 100%;
    height: auto;
    padding-bottom: 60px; /* More space for pagination */
    overflow: visible; /* Ensure navigation arrows are visible */
}

.reviews-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    height: auto; /* Allow height to adjust to content */
}

/* Swiper pagination - FIXED POSITION */
.reviews-swiper .swiper-pagination {
    bottom: 15px !important; /* Position from bottom of swiper container */
    z-index: 10;
}

.reviews-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #999;
    opacity: 0.6;
    transition: all 0.3s ease;
    margin: 0 5px !important;
}

.reviews-swiper .swiper-pagination-bullet-active {
    background: #f57238;
    opacity: 1;
    transform: scale(1.2);
}

/* Swiper navigation - FIXED POSITION */
.reviews-swiper .swiper-button-next,
.reviews-swiper .swiper-button-prev {
    color: #f57238;
    width: 35px;
    height: 35px;
    background: rgba(245, 114, 56, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
    top: 45%; /* Center vertically */
    margin-top: -20px; /* Half the height to truly center */
}

.reviews-swiper .swiper-button-next {
    right: 5px; /* Position from right edge */
}

.reviews-swiper .swiper-button-prev {
    left: 5px; /* Position from left edge */
}

.reviews-swiper .swiper-button-next:hover,
.reviews-swiper .swiper-button-prev:hover {
    background: rgba(245, 114, 56, 0.2);
    transform: scale(1.1);
}

.reviews-swiper .swiper-button-next:after,
.reviews-swiper .swiper-button-prev:after {
    font-size: 16px;
    font-weight: bold;
}

/* Review card adjustments for swiper */
.reviews-swiper .review-card {
    margin: 0;
    height: 100%;
    transform: scale(0.95);
    transition: transform 0.3s ease;
    padding-bottom: 10px; /* Extra padding to prevent content clipping */
}

.reviews-swiper .swiper-slide-active .review-card {
    transform: scale(1);
}

/* Ensure review content has enough space */
.reviews-swiper .review-content {
    margin-bottom: 1.5rem;
    min-height: 120px; /* Minimum height for consistency */
}

.reviews-swiper .review-meta {
    padding-top: 1.5rem;
    margin-top: auto; /* Push to bottom of card */
}

/* Responsive Design */
@media (max-width: 768px) {
    .reviews-grid {
        display: none !important; /* Hide grid on mobile */
    }
    
    .reviews-swiper-container {
        display: block; /* Show swiper on mobile */
        padding: 0 15px 80px; /* More padding for mobile */
    }
    
    .reviews-swiper .review-card {
        max-width: 320px;
        margin: 0 auto;
        padding: 2.5rem 2rem; /* Adjusted padding */
    }
    
    /* Adjust navigation for mobile */
    .reviews-swiper .swiper-button-next,
    .reviews-swiper .swiper-button-prev {
        width: 30px;
        height: 30px;
        top: 40%;
    }
    
    .reviews-swiper .swiper-button-next {
        right: 0;
    }
    
    .reviews-swiper .swiper-button-prev {
        left: 0;
    }
    
    .reviews-swiper .swiper-button-next:after,
    .reviews-swiper .swiper-button-prev:after {
        font-size: 14px;
    }
    
    /* Ensure text doesn't get clipped */
    .reviews-swiper .review-content p {
        font-size: 1.4rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .reviews-swiper-container {
        padding: 0 10px 70px;
    }
    
    .reviews-swiper .review-card {
        padding: 2rem 1.5rem;
    }
    
    /* Hide navigation arrows on very small screens */
    .reviews-swiper .swiper-button-next,
    .reviews-swiper .swiper-button-prev {
        display: none;
    }
    
    /* Larger pagination for touch devices */
    .reviews-swiper .swiper-pagination {
        bottom: 10px !important;
    }
    
    .reviews-swiper .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
    }
}

@media (min-width: 769px) {
    .reviews-swiper-container {
        display: none !important; /* Hide swiper on desktop */
    }
    
    .reviews-grid {
        display: grid !important; /* Show grid on desktop */
    }
}

.swipe-indicator {
    text-align: center;
    margin-top: 15px;
    color: #f57238;
    font-size: 1.4rem;
    font-weight: 600;
    animation: fade-in-out 3s infinite;
}

@keyframes fade-in-out {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

.swipe-indicator:before {
    content: '← ';
}

.swipe-indicator:after {
    content: ' →';
}


/* Responsive Design */
@media (max-width: 992px) {
  .reviews-grid {
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .reviews-hero h1 {
      font-size: 3.5rem;
  }
  
  .review-header {
      flex-direction: column;
      gap: 1.5rem;
  }
  
  .review-rating .stars {
      justify-content: flex-start;
  }
  
  .review-meta {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
  }
  
}

@media (max-width: 576px) {
  .reviews-hero h1 {
      font-size: 2.8rem;
  }
  
  .reviews-hero p {
      font-size: 1.6rem;
  }
  
  .reviews-grid {
      grid-template-columns: 1fr;
  }
  
  .review-card {
      padding: 2rem;
  }
  
  .reviewer-info {
      flex-direction: column;
      text-align: center;
  }
  
  .reviewer-details {
      text-align: center;
  }
}

/* Blog Hero Section */
.blog-hero {
  padding: 10rem 0 6rem;
  background: linear-gradient(to bottom, #0e1114 0%, #1a1f24 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.blog-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMTAwIDEwMCIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMCwwIEwxMDAsMCBMMTAwLDEwMCBMMCwxMDAiIGZpbGw9Im5vbmUiIHN0cm9rZT0iI2Y1NzIzOCIgc3Ryb2tlLXdpZHRoPSIwLjIiIHN0cm9rZS1kYXNocGFycmF5PSI1LDUiPjwvcGF0aD48L3N2Zz4=');
  opacity: 0.1;
  z-index: 1;
}

.blog-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.blog-hero h1 {
  font-size: 4.5rem;
  color: #fff;
  margin-bottom: 2rem;
  font-weight: 700;
}

.blog-hero h1 span {
  color: #f57238;
}

.blog-hero p {
  font-size: 1.8rem;
  color: #ccc;
  margin-bottom: 4rem;
  line-height: 1.6;
}

.blog-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.blog-stat {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  background: rgba(245, 114, 56, 0.1);
  border-radius: 10px;
  border: 1px solid rgba(245, 114, 56, 0.2);
}

.blog-stat i {
  font-size: 2rem;
  color: #f57238;
}

.blog-stat span {
  font-size: 1.6rem;
  color: #fff;
  font-weight: 500;
}

/* Featured Post Section */
.featured-post {
  padding: 8rem 0;
  background-color: #0e1114;
}

.featured-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  background: linear-gradient(145deg, #151a1f, #12161a);
  border-radius: 15px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(245, 114, 56, 0.1);
}

.featured-image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

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

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

.featured-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #f57238;
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 1.2rem;
  font-weight: 600;
}

.featured-text {
  padding: 2rem;
}

.featured-text .post-meta {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.post-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.4rem;
  color: #999;
}

.post-meta i {
  color: #f57238;
}

.featured-text h2 {
  font-size: 2.8rem;
  color: #fff;
  margin-bottom: 2rem;
  line-height: 1.3;
}

.post-excerpt {
  font-size: 1.6rem;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 3rem;
}

/* Blog Posts Section */
.blog-posts {
  padding: 8rem 0;
  background: linear-gradient(to bottom, #1a1f24, #0e1114);
}

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

.post-card {
  background: linear-gradient(145deg, #151a1f, #12161a);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(245, 114, 56, 0.1);
}

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  border-color: rgba(245, 114, 56, 0.3);
}

.post-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

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

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

.post-category-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #f57238;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-size: 1.2rem;
  font-weight: 600;
}

.post-content {
  padding: 2rem;
}

.post-content .post-meta {
  margin-bottom: 1.5rem;
}

.post-content h3 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.post-content .post-excerpt {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.post-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #f57238;
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.post-read-more:hover {
  gap: 1rem;
  color: #fff;
}




/* Responsive Design */
@media (max-width: 992px) {
  .featured-content {
      grid-template-columns: 1fr;
  }
  
  .newsletter-content {
      grid-template-columns: 1fr;
      text-align: center;
  }
  
  .form-group {
      flex-direction: column;
  }
}

@media (max-width: 768px) {
  .blog-hero h1 {
      font-size: 3.5rem;
  }
  
  .blog-stats {
      flex-direction: column;
      align-items: center;
  }
  
  .posts-grid {
      grid-template-columns: 1fr;
  }
  
  .featured-text h2 {
      font-size: 2.4rem;
  }
  
}

@media (max-width: 576px) {
  .blog-hero h1 {
      font-size: 2.8rem;
  }
  
  .blog-hero p {
      font-size: 1.6rem;
  }
  
  .featured-content {
      padding: 2rem;
  }
  
  .featured-text {
      padding: 1rem;
  }
  
  .newsletter-content {
      padding: 2rem;
  }
  
  .post-content h3 {
      font-size: 1.8rem;
  }
}



/* HAVANT AND WATERLOOVILLE BLOG */

.blog-section {
  padding: 4rem 0;
}

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


.blog-section .blog-post {
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 5rem;
}

.blog-section .blog-image {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  margin-bottom: 5rem;
}

.blog-section .blog-content {
  padding: 2rem;
}

.blog-section .blog-content h3 {
  font-size: 2.8rem;
  color: #f57238;
  margin-bottom: 5rem;
}

.blog-section .blog-content p {
  font-size: 2.1rem;
  color: #666;
  line-height: 1.9;
  margin-bottom: 5rem;
}


@media (max-width: 768px) {
  .blog-section .blog-post {
      flex-direction: column;
  }
}




/* Footer Services Section */
.footer-services {
  padding: 6rem 0;
  background: linear-gradient(to bottom, #1a1f24, #0e1114);
  border-top: 1px solid rgba(245, 114, 56, 0.2);
}

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

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem;
  background: rgba(245, 114, 56, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(245, 114, 56, 0.1);
  transition: all 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 114, 56, 0.3);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(245, 114, 56, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-icon i {
  font-size: 2.5rem;
  color: #f57238;
}

.service-content h3 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 1rem;
}

.service-content p {
  font-size: 1.5rem;
  color: #999;
  line-height: 1.6;
}

/* Main Footer */
.main-footer {
  padding: 8rem 0 4rem;
  background: #0e1114;
  border-top: 1px solid rgba(245, 114, 56, 0.2);
}

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

.footer-column {
  display: flex;
  flex-direction: column;
}

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

.footer-logo img {
  height: 40px;
  width: auto;
}

.logo-text {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
}

.logo-text span {
  color: #f57238;
}

.footer-description {
  font-size: 1.5rem;
  color: #999;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-link {
  width: 45px;
  height: 45px;
  background: rgba(245, 114, 56, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f57238;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #f57238;
  color: #fff;
  transform: translateY(-3px);
}

.footer-title {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: #f57238;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #999;
  text-decoration: none;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.footer-link i {
  color: #f57238;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: #f57238;
}

.footer-link:hover i {
  transform: translateX(5px);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

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

.contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(245, 114, 56, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  color: #f57238;
  font-size: 1.6rem;
}

.contact-details a {
  color: #999;
  text-decoration: none;
  font-size: 1.5rem;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: #f57238;
}

.sponsor-info {
  margin-bottom: 3rem;
}

.sponsor-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #f57238;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.sponsor-link:hover {
  color: #fff;
  transform: translateX(5px);
}

.sponsor-description {
  font-size: 1.4rem;
  color: #999;
  line-height: 1.6;
}



/* Footer Bottom */
.footer-bottom {
  padding: 3rem 0;
  background: #0a0c0e;
  border-top: 1px solid rgba(245, 114, 56, 0.2);
}

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

.copyright p {
  font-size: 1.4rem;
  color: #999;
}

.copyright strong {
  color: #f57238;
}

.design-credit p {
  font-size: 1.4rem;
  color: #999;
}

.designer-link {
  color: #f57238;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.designer-link:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-links-bottom {
  display: flex;
  gap: 2rem;
}

.footer-links-bottom a {
  color: #999;
  text-decoration: none;
  font-size: 1.4rem;
  transition: color 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 992px) {
  .footer-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 3rem;
  }
  
  .footer-bottom-content {
      flex-direction: column;
      text-align: center;
  }
}

@media (max-width: 768px) {
  .footer-services {
      padding: 4rem 0;
  }
  
  .services-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
  }
  
  .service-item {
      flex-direction: column;
      text-align: center;
      padding: 2rem;
  }
  
  .footer-grid {
      grid-template-columns: 1fr;
      gap: 3rem;
  }
  

  
  .footer-links-bottom {
      flex-direction: column;
      gap: 1rem;
  }
}

@media (max-width: 576px) {
  .main-footer {
      padding: 4rem 0 2rem;
  }
  
  .service-item {
      padding: 1.5rem;
  }
  
  .footer-title {
      font-size: 1.8rem;
  }
  
  .footer-link {
      font-size: 1.4rem;
  }
  
  .contact-details a {
      font-size: 1.4rem;
  }
}



/* media queries */
@media (max-width: 991px){
    html{
        font-size: 55%;
    }
    .header{
        padding:1.5rem 2rem;
    }
    section{
        padding:3rem 2rem;
    }


}


@media (max-width:768px){

    .header #menu-btn{
        display: inline-block;
    }
    .header .navbar{
        position: absolute;
        top: 99%;
        left: 0;
        right: 0;
        background: #fff;
        border-top: 0.2rem solid #222;
        border-bottom: 0.2rem solid #222;
        padding: 0.2rem;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }

    .header .navbar.active{
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .header .navbar a{
        display: block;
        font-size:2rem;
        margin:3rem 1rem;
    }

}




/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #f57238 #000000;
}

/* Chrome, Edge and Safari */
*::-webkit-scrollbar {
  width: 10px;
  width: 10px;
}
*::-webkit-scrollbar-track {
  border-radius: 5px;
  background-color: #f57238;
}

*::-webkit-scrollbar-track:hover {
  background-color: #f57238;
}

*::-webkit-scrollbar-track:active {
  background-color: #f57238;
}

*::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: #f57238;
}

*::-webkit-scrollbar-thumb:hover {
  background-color: #f57238;
}

*::-webkit-scrollbar-thumb:active {
  background-color: #f57238;
}

/* Legal Pages Styles */
.legal-page {
  padding: 8rem 0 4rem;
  background: #0e1114;
  min-height: 100vh;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.02);
  padding: 4rem;
  border-radius: 10px;
  border: 1px solid rgba(245, 114, 56, 0.1);
}

.legal-content h1 {
  font-size: 3.5rem;
  color: #fff;
  margin-bottom: 1rem;
  text-align: center;
}

.legal-content .last-updated {
  text-align: center;
  color: #999;
  font-size: 1.4rem;
  margin-bottom: 3rem;
  font-style: italic;
}

.legal-section {
  margin-bottom: 3rem;
}

.legal-section h2 {
  font-size: 2.4rem;
  color: #f57238;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid rgba(245, 114, 56, 0.3);
  padding-bottom: 0.5rem;
}

.legal-section h3 {
  font-size: 2rem;
  color: #fff;
  margin: 2rem 0 1rem;
}

.legal-section p {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #ccc;
  margin-bottom: 1.5rem;
}

.legal-section ul {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.legal-section li {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 0.8rem;
  list-style-type: disc;
}

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

.legal-section a:hover {
  color: #e65a2d;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .legal-content {
    padding: 2rem;
    margin: 1rem;
  }
  
  .legal-content h1 {
    font-size: 2.8rem;
  }
  
  .legal-section h2 {
    font-size: 2rem;
  }
  
  .legal-section h3 {
    font-size: 1.8rem;
  }
  
  .legal-section p,
  .legal-section li {
    font-size: 1.4rem;
  }
}

/* Quote Calculator Styles */
.quote-hero {
  padding: 12rem 0 4rem;
  background: linear-gradient(135deg, rgba(14, 17, 20, 0.95), rgba(245, 114, 56, 0.1));
  text-align: center;
}

.quote-hero h1 {
  font-size: 4rem;
  color: #fff;
  margin-bottom: 1.5rem;
}

.quote-hero p {
  font-size: 1.8rem;
  color: #ccc;
  max-width: 600px;
  margin: 0 auto;
}

.quote-calculator {
  padding: 6rem 0;
  background: #0e1114;
}

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

.calculator-form {
  background: rgba(255, 255, 255, 0.03);
  padding: 4rem;
  border-radius: 15px;
  border: 1px solid rgba(245, 114, 56, 0.2);
}

.form-header h2 {
  font-size: 2.8rem;
  color: #fff;
  margin-bottom: 1rem;
}

.form-header p {
  font-size: 1.6rem;
  color: #999;
  margin-bottom: 3rem;
}

.form-group {
  margin-bottom: 2.5rem;
}

.form-group label {
  display: block;
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.form-group select,
.form-group input[type="number"] {
  width: 100%;
  padding: 1.2rem 1.5rem;
  font-size: 1.6rem;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(245, 114, 56, 0.3);
  border-radius: 8px;
  color: #fff;
  transition: all 0.3s ease;
}

.form-group select:focus,
.form-group input[type="number"]:focus {
  outline: none;
  border-color: #f57238;
  background: rgba(255, 255, 255, 0.08);
}

.duration-input {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.duration-input input {
  flex: 1;
}

.duration-input span {
  font-size: 1.4rem;
  color: #999;
  min-width: 80px;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  color: #ccc;
  cursor: pointer;
  position: relative;
  padding-left: 3rem;
  margin-bottom: 0;
}

.checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 20px;
  width: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(245, 114, 56, 0.5);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.checkbox-label:hover .checkmark {
  background: rgba(245, 114, 56, 0.1);
}

.checkbox-label input[type="checkbox"]:checked ~ .checkmark {
  background: #f57238;
  border-color: #f57238;
}

.checkbox-label input[type="checkbox"]:checked ~ .checkmark:after {
  content: "";
  position: absolute;
  display: block;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 12px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.calc-btn {
  width: 100%;
  padding: 1.5rem 2rem;
  font-size: 1.8rem;
  font-weight: 600;
  background: linear-gradient(45deg, #f57238, #e65a2d);
  color: #fff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.calc-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 114, 56, 0.4);
}

.calculator-result {
  background: rgba(255, 255, 255, 0.03);
  padding: 4rem;
  border-radius: 15px;
  border: 1px solid rgba(245, 114, 56, 0.2);
}

.result-header h2 {
  font-size: 2.8rem;
  color: #fff;
  margin-bottom: 1rem;
}

.result-header p {
  font-size: 1.6rem;
  color: #999;
  margin-bottom: 3rem;
}

.quote-placeholder {
  text-align: center;
  padding: 4rem 2rem;
  color: #666;
}

.quote-placeholder i {
  font-size: 4rem;
  margin-bottom: 2rem;
  color: #f57238;
}

.quote-placeholder p {
  font-size: 1.6rem;
}

.quote-calculated {
  animation: slideIn 0.6s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.quote-details {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(245, 114, 56, 0.3);
}

.quote-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1.6rem;
}

.equipment-item {
  font-weight: 600;
  color: #f57238;
  font-size: 1.8rem;
}

.item-label {
  color: #ccc;
}

.item-value {
  color: #fff;
  font-weight: 500;
}

.services-list {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.2rem;
}

.services-list small {
  font-size: 1.3rem;
  color: #999;
}

.quote-pricing {
  margin-bottom: 2.5rem;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
  font-size: 1.6rem;
  color: #ccc;
}

.price-item.subtotal {
  border-top: 1px solid rgba(245, 114, 56, 0.2);
  margin-top: 1rem;
  padding-top: 1.5rem;
  font-weight: 500;
}

.price-item.vat {
  color: #999;
  font-size: 1.4rem;
}

.price-item.total {
  border-top: 2px solid #f57238;
  margin-top: 1rem;
  padding-top: 1.5rem;
  font-size: 2rem;
  font-weight: 700;
  color: #f57238;
}

.quote-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.quote-actions .btn {
  flex: 1;
  padding: 1.2rem;
  font-size: 1.5rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.quote-disclaimer {
  padding-top: 2rem;
  border-top: 1px solid rgba(245, 114, 56, 0.2);
}

.quote-disclaimer small {
  font-size: 1.2rem;
  color: #777;
  line-height: 1.5;
}

.calculator-benefits {
  padding: 6rem 0;
  background: rgba(245, 114, 56, 0.05);
}

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

.benefit-card {
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  border: 1px solid rgba(245, 114, 56, 0.2);
}

.benefit-icon {
  font-size: 4rem;
  color: #f57238;
  margin-bottom: 2rem;
}

.benefit-card h3 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 1rem;
}

.benefit-card p {
  font-size: 1.5rem;
  color: #ccc;
  line-height: 1.6;
}

/* Booking Modal */
.booking-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-content {
  background: #0e1114;
  padding: 3rem;
  border-radius: 15px;
  border: 2px solid #f57238;
  max-width: 500px;
  width: 90%;
  position: relative;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(245, 114, 56, 0.3);
}

.modal-header h3 {
  font-size: 2.4rem;
  color: #f57238;
  margin: 0;
}

.close-modal {
  font-size: 3rem;
  color: #999;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-modal:hover {
  color: #f57238;
}

.modal-body p {
  font-size: 1.6rem;
  color: #ccc;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(245, 114, 56, 0.1);
  border: 1px solid rgba(245, 114, 56, 0.3);
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-option:hover {
  background: rgba(245, 114, 56, 0.2);
  transform: translateY(-2px);
}

.contact-option i {
  font-size: 2rem;
  color: #f57238;
}

/* Responsive Design for Quote Calculator */
@media (max-width: 968px) {
  .calculator-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .calculator-form,
  .calculator-result {
    padding: 2.5rem;
  }
}

@media (max-width: 768px) {
  .quote-hero h1 {
    font-size: 3rem;
  }
  
  .calculator-form,
  .calculator-result {
    padding: 2rem;
  }
  
  .quote-actions {
    flex-direction: column;
  }
  
  .modal-content {
    padding: 2rem;
    margin: 1rem;
  }
  
  .contact-options {
    gap: 1rem;
  }
  
  .contact-option {
    padding: 1.2rem;
    font-size: 1.4rem;
  }
}

/* Enhanced Service Icons */
.service-icon {
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.service-icon .icon-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #f57238, #e65a2d);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 0;
}

.service-icon i {
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon .icon-bg {
  opacity: 1;
}

.service-card:hover .service-icon i {
  color: #fff;
  transform: scale(1.1);
}

.excavator-icon:hover {
  animation: bounce 0.6s ease-in-out;
}

.dumper-icon:hover {
  animation: shake 0.6s ease-in-out;
}

.accessories-icon:hover {
  animation: rotate 0.6s ease-in-out;
}

@keyframes bounce {
  0%, 20%, 60%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  80% { transform: translateY(-5px); }
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.service-features {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.feature-tag {
  background: rgba(245, 114, 56, 0.1);
  color: #f57238;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 1.2rem;
  font-weight: 500;
  border: 1px solid rgba(245, 114, 56, 0.2);
  transition: all 0.3s ease;
}

.feature-tag:hover {
  background: rgba(245, 114, 56, 0.2);
  transform: translateY(-2px);
}

/* Quick Quote Section */
.quick-quote-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #1a1f24 0%, #0e1114 100%);
  position: relative;
}

.quick-quote-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(245,114,56,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') repeat;
  opacity: 0.5;
}

.quick-quote-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.quick-quote-content h2 {
  font-size: 3.5rem;
  color: #fff;
  margin-bottom: 1rem;
}

.quick-quote-content p {
  font-size: 1.8rem;
  color: #ccc;
  margin-bottom: 4rem;
}

.quick-quote-form {
  background: rgba(21, 26, 31, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 3rem;
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid rgba(245, 114, 56, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
}

.form-input {
  padding: 1.5rem;
  border: 2px solid rgba(245, 114, 56, 0.2);
  border-radius: 10px;
  background: rgba(14, 17, 20, 0.8);
  color: #fff;
  font-size: 1.6rem;
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: #f57238;
  box-shadow: 0 0 0 3px rgba(245, 114, 56, 0.1);
}

.form-input option {
  background: #0e1114;
  color: #fff;
}

.quick-quote-result {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.quick-quote-result.show-result {
  opacity: 1;
  transform: translateY(0);
}

.quote-display {
  background: linear-gradient(45deg, #f57238, #e65a2d);
  padding: 2rem;
  border-radius: 15px;
  color: #fff;
  text-align: center;
}

.quote-label {
  font-size: 1.6rem;
  display: block;
  margin-bottom: 0.5rem;
}

.quote-price {
  font-size: 2.5rem;
  font-weight: 700;
}

/* Reviews Section */
.reviews-section {
  padding: 8rem 0;
  background: linear-gradient(to bottom, #0e1114 0%, #1a1f24 100%);
}

.reviews-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.review-card {
  background: linear-gradient(145deg, #151a1f, #12161a);
  border-radius: 20px;
  padding: 4rem;
  text-align: center;
  border: 1px solid rgba(245, 114, 56, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s ease;
  display: none;
  margin-bottom: 2rem;
}

.review-card.active {
  opacity: 1;
  transform: translateY(0);
  display: block;
}

.review-stars {
  margin-bottom: 2rem;
}

.review-stars i {
  color: #ffc107;
  font-size: 1.8rem;
  margin: 0 0.2rem;
}

.review-card p {
  font-size: 1.8rem;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 3rem;
  font-style: italic;
}

.reviewer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.reviewer strong {
  color: #fff;
  font-size: 1.6rem;
}

.reviewer span {
  color: #f57238;
  font-size: 1.4rem;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 4rem;
}

.slider-btn {
  background: rgba(245, 114, 56, 0.1);
  border: 2px solid rgba(245, 114, 56, 0.3);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f57238;
  font-size: 1.6rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-btn:hover {
  background: rgba(245, 114, 56, 0.2);
  border-color: #f57238;
  transform: scale(1.1);
}

.slider-dots {
  display: flex;
  gap: 1rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(245, 114, 56, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #f57238;
  transform: scale(1.2);
}

/* Floating Contact Widget */
.floating-contact {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.floating-contact-trigger {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #f57238, #e65a2d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2.4rem;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(245, 114, 56, 0.4);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.floating-contact-trigger:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(245, 114, 56, 0.6);
}

.floating-contact-trigger.active {
  background: linear-gradient(45deg, #e65a2d, #d64527);
  transform: rotate(45deg);
}

.floating-contact-panel {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 320px;
  background: rgba(21, 26, 31, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(245, 114, 56, 0.2);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.3s ease;
}

.floating-contact-panel.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.contact-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 2rem 1rem;
  border-bottom: 1px solid rgba(245, 114, 56, 0.1);
}

.contact-header h4 {
  color: #fff;
  font-size: 1.8rem;
  margin: 0;
}

.close-panel {
  background: none;
  border: none;
  color: #f57238;
  font-size: 1.8rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.close-panel:hover {
  background: rgba(245, 114, 56, 0.1);
  transform: scale(1.1);
}

.floating-contact .contact-options {
  padding: 1rem;
}

.floating-contact .contact-option {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
  background: rgba(14, 17, 20, 0.6);
  border-radius: 10px;
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(245, 114, 56, 0.1);
}

.floating-contact .contact-option:hover {
  background: rgba(245, 114, 56, 0.1);
  border-color: rgba(245, 114, 56, 0.3);
  transform: translateX(5px);
}

.floating-contact .contact-option:last-child {
  margin-bottom: 0;
}

.floating-contact .contact-option i {
  width: 24px;
  text-align: center;
  font-size: 1.8rem;
  color: #f57238;
}

.floating-contact .contact-option strong {
  display: block;
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 0.2rem;
}

.floating-contact .contact-option span {
  font-size: 1.2rem;
  color: #999;
}

.quote-option {
  background: linear-gradient(45deg, rgba(245, 114, 56, 0.1), rgba(230, 90, 45, 0.1)) !important;
  border-color: rgba(245, 114, 56, 0.3) !important;
}

/* Enhanced Responsive Design */
@media (max-width: 992px) {
  .hero-stats {
    gap: 2rem;
  }
  
  .stat-number {
    font-size: 2.8rem;
  }
  
  .form-row {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  
  .form-row button {
    grid-column: 1 / -1;
    justify-self: center;
  }
  
  .review-card {
    padding: 3rem;
  }
}

@media (max-width: 768px) {
  .hero-stats {
    flex-direction: column;
    gap: 2rem;
  }
  
  .service-features {
    gap: 0.5rem;
  }
  
  .feature-tag {
    font-size: 1.1rem;
    padding: 0.4rem 0.8rem;
  }
  
  .quick-quote-form {
    padding: 2rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .review-card {
    padding: 2rem;
  }
  
  .review-card p {
    font-size: 1.6rem;
  }
  
  .floating-contact-panel {
    width: 280px;
    right: -10px;
  }
  
  .floating-contact-trigger {
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 576px) {
  .hero-stats {
    gap: 1.5rem;
  }
  
  .stat-number {
    font-size: 2.4rem;
  }
  
  .quick-quote-content h2 {
    font-size: 2.8rem;
  }
  
  .floating-contact-panel {
    width: calc(100vw - 40px);
    right: -140px;
  }
}
