:root {
  --primary: #2e6b3c;
  --primary-dark: #1d452a;
  --primary-light: #4e9a5f;
  --secondary: #ffa000;
  --secondary-dark: #cc8000;
  --secondary-light: #ffb74d;
  --accent: #3f51b5;
  --accent-dark: #303f9f;
  --accent-light: #7986cb;
  --quaternary: #e91e63;
  --quaternary-dark: #c2185b;
  --quaternary-light: #f48fb1;
  --text: #333333;
  --text-light: #757575;
  --light: #f8f9fa;
  --dark: #212529;
  --danger: #dc3545;
  --success: #28a745;
  --white: #ffffff;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
  --gradient-1: linear-gradient(135deg, var(--primary), var(--primary-light));
  --gradient-2: linear-gradient(135deg, var(--secondary), var(--quaternary));
  --gradient-3: linear-gradient(135deg, var(--primary-dark), var(--accent));
  --gradient-4: linear-gradient(135deg, var(--primary), var(--secondary));
  --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  --transition: all 0.3s ease;
  --radius: 8px;
  --radius-lg: 12px;
  --radius-sm: 4px;
  --radius-round: 50px;
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Outfit', sans-serif;
}

/* Base Styles */
body {
  font-family: var(--font-primary);
  color: var(--text);
  background-color: var(--light);
  overflow-x: hidden;
  transition: var(--transition);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  font-weight: 600;
  color: var(--dark);
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

.section-padding {
  padding: 80px 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
}

@media (max-width: 576px) {
  .section-padding {
    padding: 40px 0;
  }
}

/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader {
  text-align: center;
}

.spinner {
  margin-bottom: 20px;
}

.spinner-grow {
  width: 3rem;
  height: 3rem;
  color: var(--primary);
}

.loading-text {
  font-family: var(--font-secondary);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 3px;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.6;
  }
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  box-shadow: var(--shadow);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--primary-dark);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.back-to-top i {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Navbar */
.navbar {
  transition: var(--transition);
  padding: 15px 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.navbar-scrolled {
  padding: 10px 0;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
}

.navbar-brand img {
  height: 50px;
  transition: var(--transition);
}

.navbar-scrolled .navbar-brand img {
  height: 45px;
}

.navbar-toggler {
  border: none;
  outline: none !important;
  box-shadow: none !important;
  position: relative;
  overflow: hidden;
}

.navbar-toggler-icon {
  color: var(--primary);
}

.navbar-toggler::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(46, 107, 60, 0.1);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.3s ease;
}

.navbar-toggler:hover::before {
  transform: scale(1.5);
}

.nav-item {
  position: relative;
  margin: 0 5px;
}

.nav-link {
  color: var(--text);
  font-weight: 500;
  padding: 15px !important;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  transition: all 0.4s ease;
}

.nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--gray-200);
  border-radius: 50%;
  margin-right: 8px;
  transition: all 0.4s ease;
}

.nav-link:hover .nav-icon,
.nav-link.active .nav-icon {
  background-color: var(--primary);
  color: white;
  transform: rotate(360deg);
}

.nav-link span {
  position: relative;
  z-index: 2;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 12px;
  width: 0;
  height: 3px;
  background-color: var(--primary);
  transition: width 0.4s ease;
  border-radius: var(--radius-round);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: calc(100% - 24px);
}

.nav-item.hotline .nav-link {
  background-color: var(--primary);
  color: var(--white);
  border-radius: var(--radius-round);
  padding: 19px 20px !important;
  margin-left: 10px;
  transition: all 0.5s ease;
  box-shadow: 0 5px 15px rgba(46, 107, 60, 0.4);
}

.nav-item.hotline .nav-link:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(46, 107, 60, 0.5);
}

.nav-item.hotline .nav-link::after {
  display: none;
}

.phone-pulse {
  animation: phone-pulse 2s infinite;
}

@keyframes phone-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(46, 107, 60, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(46, 107, 60, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(46, 107, 60, 0);
  }
}

/* Fixed Dropdown Menu */
/* Megamenu */
.dropdown-menu {
  padding: 0;
  margin-top: 0;
  border: none;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 100%;
  left: 0;
  right: 0;
}

.has-megamenu {
  position: static !important;
}

.megamenu {
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  padding: 0;
  margin-top: 0;
  border: none !important;
}

.megamenu-inner {
  padding: 20px 0;
  background-color: white;
}

.megamenu-section {
  padding: 0 15px;
  border-left: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
}

.megamenu-section:first-child {
  border-left: none;
}

.dropdown-header {
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 0;
  margin-bottom: 10px;
  border-bottom: 2px solid var(--primary-light);
  text-align: left;
}

.dropdown-item {
  padding: 8px 10px;
  margin-bottom: 5px;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  color: var(--text);
  white-space: normal;
  display: flex;
  align-items: center;
  text-align: left;
}

.dropdown-item:hover {
  background-color: rgba(46, 107, 60, 0.1);
  color: var(--primary);
  transform: translateX(5px);
}

.dropdown-item i {
  width: 20px;
  text-align: center;
  margin-right: 8px;
  color: var(--primary);
}

/* Poprawiona obsługa mobile */
@media (max-width: 991px) {
  .has-megamenu {
    position: relative !important;
  }

  .megamenu {
    width: 100% !important;
    position: static;
  }

  .megamenu-inner {
    padding: 10px;
  }

  .megamenu-section {
    border-left: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  .megamenu-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
  }

  .dropdown-header {
    padding: 5px 0;
  }
}

/* 3D Hero Slider with Swiper - Fixed positioning */
.hero-3d-slider {
  position: relative;
  height: 700px;
  overflow: hidden;
}

.hero-slider-container {
  position: relative;
  height: 100%;
  width: 100%;
}

.hero-swiper {
  width: 100%;
  height: 100%;
}

.hero-swiper .swiper-slide {
  overflow: hidden;
}

.slide-inner {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.overlay-gradient-1 {
  background: linear-gradient(90deg, rgba(46, 107, 60, 0.85) 0%, rgba(46, 107, 60, 0.6) 50%, rgba(46, 107, 60, 0.3) 100%);
}

.overlay-gradient-2 {
  background: linear-gradient(90deg, rgba(255, 160, 0, 0.85) 0%, rgba(255, 160, 0, 0.6) 50%, rgba(255, 160, 0, 0.3) 100%);
}

.overlay-gradient-3 {
  background: linear-gradient(90deg, rgba(63, 81, 181, 0.85) 0%, rgba(63, 81, 181, 0.6) 50%, rgba(63, 81, 181, 0.3) 100%);
}

.overlay-gradient-4 {
  background: linear-gradient(90deg, rgba(233, 30, 99, 0.85) 0%, rgba(233, 30, 99, 0.6) 50%, rgba(233, 30, 99, 0.3) 100%);
}

.slide-content {
  position: relative;
  z-index: 1;
  color: white;
  max-width: 600px;
  padding: 40px 0;
}

.slide-subtitle {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  margin-bottom: 15px;
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 5px 15px;
  border-radius: var(--radius-round);
}

.slide-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  color: var(--white);
}

.slide-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.slide-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

/* Fixed slider navigation */
.hero-slider-navigation {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-slider-pagination {
  display: flex;
  gap: 10px;
}

.hero-slider-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 1;
}

.hero-slider-pagination .swiper-pagination-bullet-active {
  background-color: var(--white);
  width: 30px;
  border-radius: var(--radius-round);
}

.hero-slider-buttons {
  display: flex;
  gap: 20px;
  margin-left: 30px;
}

.hero-slider-button-prev,
.hero-slider-button-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-slider-button-prev:hover,
.hero-slider-button-next:hover {
  background-color: var(--white);
  color: var(--primary);
}

@media (max-width: 991px) {
  .hero-3d-slider {
    height: 600px;
  }

  .slide-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 767px) {
  .hero-3d-slider {
    height: 500px;
  }

  .slide-title {
    font-size: 2rem;
  }

  .slide-description {
    font-size: 1rem;
  }

  .hero-slider-buttons {
    margin-left: 15px;
  }
}

@media (max-width: 576px) {
  .hero-3d-slider {
    height: 450px;
  }

  .slide-title {
    font-size: 1.8rem;
  }

  .slide-subtitle {
    font-size: 0.9rem;
  }
}

/* New Modern Service Numbers Section */
.service-numbers-section {
  background-color: var(--white);
  margin-top: -30px;
  position: relative;
  z-index: 10;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stat-card {
  background-color: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
  transition: all 0.4s ease;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.stat-card:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-1);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.stat-card:hover:before {
  transform: scaleX(1);
}

.stat-card:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background-color: rgba(46, 107, 60, 0.05);
  border-radius: 0 0 0 100%;
}

.stat-icon {
  font-size: 2.5rem;
  color: var(--primary);
  background-color: rgba(46, 107, 60, 0.1);
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.stat-card:hover .stat-icon {
  background-color: var(--primary);
  color: var(--white);
  transform: rotate(10deg);
}

.stat-content {
  flex: 1;
}

.stat-counter {
  display: flex;
  align-items: baseline;
  margin-bottom: 5px;
}

.counter {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.counter-plus {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-left: 2px;
}

.stat-title {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 10px;
  font-weight: 500;
}

.stat-progress {
  margin-top: 10px;
}

.progress {
  height: 6px;
  border-radius: var(--radius-round);
  background-color: rgba(46, 107, 60, 0.1);
  overflow: hidden;
}

.progress-bar {
  background: var(--gradient-1);
  border-radius: var(--radius-round);
}

@media (max-width: 767px) {
  .stat-card {
    padding: 15px;
  }

  .stat-icon {
    width: 50px;
    height: 50px;
    font-size: 1.8rem;
  }

  .counter {
    font-size: 1.8rem;
  }

  .counter-plus {
    font-size: 1.2rem;
  }

  .stat-title {
    font-size: 0.9rem;
  }
}

/* Services Section */
.services-section {
  background-color: var(--gray-100);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(46, 107, 60, 0.1), rgba(156, 39, 176, 0.1));
  z-index: 0;
}

.services-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(57, 181, 74, 0.1), rgba(255, 152, 0, 0.1));
  z-index: 0;
}

.service-card {
  background-color: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.5s ease;
  position: relative;
  z-index: 1;
  height: 100%;
  border-bottom: 4px solid transparent;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.service-card:hover {
  transform: translateY(-15px) rotateY(5deg);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(45deg, rgba(46, 107, 60, 0.05) 25%, transparent 25%, transparent 50%, rgba(46, 107, 60, 0.05) 50%, rgba(46, 107, 60, 0.05) 75%, transparent 75%);
  background-size: 20px 20px;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.service-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  transform: translateZ(20px);
  transition: all 0.5s ease;
}

.service-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover .service-image::before {
  opacity: 1;
}

.service-card:hover .service-image {
  transform: translateZ(30px) scale(1.05);
}

.service-content {
  padding: 30px;
  position: relative;
  transform: translateZ(10px);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.8rem;
  position: absolute;
  top: -35px;
  right: 30px;
  box-shadow: var(--shadow);
  transition: all 0.5s ease;
  transform: translateZ(30px) rotate(0deg);
  overflow: hidden;
}

.service-icon::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  top: -100%;
  left: -100%;
  transition: all 0.5s ease;
}

.service-card:hover .service-icon {
  transform: translateZ(50px) rotate(360deg);
  border-radius: 50%;
}

.service-card:hover .service-icon::before {
  top: 0;
  left: 0;
}

.service-content h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--dark);
  transition: all 0.3s ease;
}

.service-card:hover .service-content h3 {
  color: var(--primary);
  transform: translateZ(5px);
}

.service-content p {
  color: var(--text-light);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.service-card:hover .service-content p {
  transform: translateZ(5px);
}

/* CTA Banner */
.cta-banner {
  background: var(--gradient-1);
  padding: 50px 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M0 0L100 100" stroke="rgba(255,255,255,0.1)" stroke-width="2"/></svg>');
  opacity: 0.2;
}

.cta-banner h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--white);
}

.cta-banner p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 0;
}

/* Features Section */
.features-section {
  background-color: var(--white);
  position: relative;
}

.feature-box {
  padding: 30px;
  background-color: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
  z-index: 1;
  border: 1px solid var(--gray-200);
}

.feature-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-1);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}

.feature-box:hover::before {
  transform: scaleX(1);
}

.feature-icon-wrapper {
  margin-bottom: 20px;
  position: relative;
  width: 80px;
  height: 80px;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-light);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.8rem;
  transition: var(--transition);
  position: relative;
  z-index: 2;
}

.feature-icon::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  width: 70px;
  height: 70px;
  background-color: rgba(46, 107, 60, 0.2);
  border-radius: 25px;
  z-index: -1;
  transition: var(--transition);
}

.feature-box:hover .feature-icon {
  background-color: var(--primary);
  transform: rotate(10deg);
}

.feature-box:hover .feature-icon::before {
  transform: rotate(-10deg);
}

.feature-box h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--dark);
}

.feature-box p {
  color: var(--text-light);
  margin-bottom: 20px;
}

.btn-link {
  display: inline-flex;
  align-items: center;
  color: var(--primary);
  font-weight: 500;
  transition: var(--transition);
}

.btn-link span {
  margin-right: 8px;
}

.btn-link i {
  transition: var(--transition);
}

.btn-link:hover {
  color: var(--primary-dark);
}

.btn-link:hover i {
  transform: translateX(5px);
}

/* Process Section */
.process-section {
  background-color: var(--gray-100);
  position: relative;
  overflow: hidden;
}

.process-timeline {
  margin-top: 50px;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 35px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 2px;
  background: var(--gradient-1);
}

@media (max-width: 768px) {
  .process-timeline::before {
    display: none;
  }
}

.process-step {
  text-align: center;
  margin-bottom: 30px;
}

.process-icon {
  width: 80px;
  height: 80px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.process-icon i {
  font-size: 1.8rem;
  color: var(--primary);
  transition: var(--transition);
}

.step-number {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 30px;
  height: 30px;
  background-color: var(--secondary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
}

.process-step:hover .process-icon {
  background: var(--gradient-1);
  transform: translateY(-10px);
}

.process-step:hover .process-icon i {
  color: var(--white);
}

.process-step h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--dark);
}

.process-step p {
  color: var(--text-light);
}

/* Cooperation Section */
.cooperation-section {
  background: linear-gradient(rgba(46, 107, 60, 0.9), rgba(46, 107, 60, 0.9)), url('../img/cooperation-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 80px 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cooperation-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.cooperation-section .section-title h2 {
  color: var(--white);
}

.cooperation-section .section-title h2::after {
  background: var(--white);
}

.cooperation-section p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 20px;
}

.partners-logos {
  margin-top: 50px;
}

.partner-logo {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  transition: var(--transition);
}

.partner-logo:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.partner-logo img {
  max-height: 60px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: var(--transition);
}

.partner-logo:hover img {
  opacity: 1;
}

/* News Section */
.news-section {
  background-color: var(--gray-100);
  position: relative;
}

.news-card {
  background-color: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}

.news-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}

.news-image-wrapper {
  position: relative;
}

.news-image {
  height: 220px;
  background-size: cover;
  background-position: center;
  transition: var(--transition);
}

.news-card:hover .news-image {
  transform: scale(1.1);
}

.news-date {
  position: absolute;
  bottom: 0;
  right: 20px;
  background-color: var(--primary);
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 10px 10px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transform: translateY(30%);
  box-shadow: var(--shadow);
}

.news-date .day {
  font-size: 1.3rem;
  line-height: 1;
}

.news-date .month {
  font-size: 0.8rem;
  text-transform: uppercase;
}

.news-content {
  padding: 30px;
}

.news-category {
  display: inline-block;
  background-color: var(--gray-200);
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.news-content h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--dark);
  transition: var(--transition);
}

.news-card:hover .news-content h4 {
  color: var(--primary);
}

.news-content p {
  color: var(--text-light);
  margin-bottom: 20px;
}

.btn-read-more {
  display: inline-flex;
  align-items: center;
  color: var(--primary);
  font-weight: 500;
  transition: var(--transition);
}

.btn-read-more span {
  margin-right: 8px;
}

.btn-read-more i {
  transition: var(--transition);
}

.btn-read-more:hover {
  color: var(--primary-dark);
}

.btn-read-more:hover i {
  transform: translateX(5px);
}

/* Locations Section - Enhanced */
.locations-section {
  background-color: var(--white);
  position: relative;
}

.locations-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><circle cx="3" cy="3" r="3" fill="rgba(46, 107, 60, 0.1)"/></svg>');
  background-size: 30px 30px;
  opacity: 0.5;
  z-index: 0;
}

.location-card {
  background-color: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  z-index: 1;
  border: 1px solid var(--gray-200);
  cursor: pointer;
}

.location-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.location-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.location-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s ease;
}

.location-card:hover .location-image img {
  transform: scale(1.1);
}

.location-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--primary);
  color: var(--white);
  padding: 8px 20px;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 0 var(--radius) 0 0;
  box-shadow: var(--shadow);
}

.location-badge-special {
  background-color: var(--secondary);
}

.location-content {
  padding: 25px;
}

.location-content h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--primary);
  border-bottom: 2px dashed var(--gray-300);
  padding-bottom: 10px;
}

.location-info {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}

.location-info i {
  color: var(--primary);
  width: 25px;
  margin-top: 3px;
}

.location-card-special .location-info i {
  color: var(--secondary);
}

.location-info span {
  flex: 1;
}

.location-info a {
  color: var(--text);
  transition: all 0.3s ease;
}

.location-info a:hover {
  color: var(--primary);
}

.location-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.location-service-badge {
  background-color: rgba(46, 107, 60, 0.1);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: var(--radius-round);
}

.location-card-special .location-service-badge {
  background-color: rgba(255, 160, 0, 0.1);
  color: var(--secondary-dark);
}

.location-feature {
  background-color: rgba(255, 160, 0, 0.05);
  padding: 15px;
  border-radius: var(--radius);
  margin-bottom: 15px;
  border-left: 3px solid var(--secondary);
}

.btn-block {
  display: block;
  width: 100%;
}

.location-card-special .btn-primary {
  background-color: var(--secondary);
  border-color: var(--secondary);
}

.location-card-special .btn-primary:hover {
  background-color: var(--secondary-dark);
  border-color: var(--secondary-dark);
}

/* Quick Contact Section */
.quick-contact-section {
  padding: 50px 0;
  background-color: var(--gray-100);
}

.quick-contact-box {
  background: var(--gradient-1);
  padding: 30px;
  border-radius: var(--radius);
  color: var(--white);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.quick-contact-box::before {
  content: '\f095';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: -20px;
  right: -20px;
  font-size: 10rem;
  color: rgba(255, 255, 255, 0.1);
  transform: rotate(15deg);
}

.quick-contact-box h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--white);
}

.quick-contact-box p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 0;
}

/* Footer */
footer {
  background-color: var(--dark);
  color: var(--gray-400);
  position: relative;
}

.footer-top {
  padding: 80px 0 30px;
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(0, 0, 0, 0.2);
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  height: 50px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary);
  transform: translateY(-5px);
}

footer h4 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 25px;
  font-weight: 600;
  position: relative;
  padding-bottom: 15px;
}

footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary);
  border-radius: var(--radius-round);
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul li a {
  color: var(--gray-400);
  transition: var(--transition);
  display: flex;
  align-items: center;
}

.footer-links ul li a i {
  margin-right: 8px;
  font-size: 0.8rem;
  transition: var(--transition);
}

.footer-links ul li a:hover {
  color: var(--white);
  transform: translateX(5px);
}

.footer-links ul li a:hover i {
  color: var(--primary);
}

.footer-contact p {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.footer-contact p i {
  margin-right: 10px;
  color: var(--primary);
}

.footer-contact a {
  color: var(--gray-400);
  transition: var(--transition);
}

.footer-contact a:hover {
  color: var(--white);
}

.footer-alert {
  background-color: rgba(255, 160, 0, 0.2);
  border-left: 3px solid var(--secondary);
  padding: 10px 15px;
  margin-bottom: 20px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
}

.footer-alert i {
  color: var(--secondary);
  margin-right: 10px;
  font-size: 1.2rem;
}

.copyright {
  font-size: 0.9rem;
}

.credits {
  font-size: 0.9rem;
}

.credits a {
  color: var(--primary-light);
  transition: var(--transition);
}

.credits a:hover {
  color: var(--white);
}

/* Button Styles */
.btn {
  padding: 12px 25px;
  font-weight: 500;
  border-radius: var(--radius-round);
  transition: all 0.4s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-secondary {
  background-color: var(--secondary);
  border-color: var(--secondary);
}

.btn-secondary:hover,
.btn-secondary:focus {
  background-color: var(--secondary-dark);
  border-color: var(--secondary-dark);
}

.btn-outline-light {
  color: var(--white);
  border-color: var(--white);
}

.btn-outline-light:hover {
  background-color: var(--white);
  color: var(--primary);
}

/* 3D Button Effect */
.btn-3d {
  position: relative;
  transform-style: preserve-3d;
  transition: all 0.3s ease;
}

.btn-3d::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  transform: translateZ(-5px);
  border-radius: var(--radius-round);
  z-index: -1;
}

.btn-3d:hover {
  transform: translateY(-5px) translateZ(10px);
}

.btn-3d:hover::before {
  transform: translateZ(-10px);
}

.btn-3d i {
  margin-left: 8px;
  transition: all 0.3s ease;
}

.btn-3d:hover i {
  transform: translateX(5px);
}

/* Button with Glow Effect */
.btn-glow {
  position: relative;
  overflow: hidden;
}

.btn-glow::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
  opacity: 0;
  transition: all 0.5s ease;
  pointer-events: none;
}

.btn-glow:hover::after {
  opacity: 1;
  transform: scale(1.2);
}

/* Button with Animation */
.btn-animated {
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-animated .btn-text {
  transition: all 0.3s ease;
}

.btn-animated .btn-icon {
  position: absolute;
  right: 20px;
  opacity: 0;
  transition: all 0.3s ease;
}

.btn-animated:hover .btn-text {
  transform: translateX(-10px);
}

.btn-animated:hover .btn-icon {
  opacity: 1;
  transform: translateX(0);
}

/* Ripple Effect for Buttons */
.ripple-effect {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  transform: scale(0);
  animation: ripple 0.6s linear;
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: scale(2.5);
    opacity: 0;
  }
}

/* Responsive */
@media (max-width: 991px) {
  .navbar-collapse {
    background-color: var(--white);
    box-shadow: var(--shadow);
    padding: 20px;
    border-radius: var(--radius);
    margin-top: 15px;
  }

  .nav-item {
    margin: 5px 0;
  }

  .nav-item.hotline {
    margin-top: 15px;
  }

  .nav-item.hotline .nav-link {
    display: block;
    text-align: center;
    margin-left: 0;
  }

  .service-icon {
    position: relative;
    top: 0;
    right: 0;
    margin-bottom: 20px;
  }

  .process-timeline::before {
    width: 100%;
  }

  .quick-contact-box {
    text-align: center;
  }

  .footer-info,
  .footer-links,
  .footer-contact {
    text-align: center;
  }

  .footer-links ul li a,
  .footer-contact p {
    justify-content: center;
  }

  footer h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .social-links {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 40px 0;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
    margin-bottom: 10px;
  }

  .counter {
    font-size: 2rem;
  }

  .quick-contact-box {
    padding: 20px;
  }

  .quick-contact-box h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .section-padding {
    padding: 30px 0;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }

  .slide-title {
    font-size: 1.5rem;
  }

  .slide-description {
    font-size: 0.9rem;
  }

  .stat-card {
    padding: 15px;
  }

  .service-content {
    padding: 20px;
  }

  .feature-box {
    padding: 20px;
  }

  .quick-contact-box h3 {
    font-size: 1.3rem;
  }
}
