@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #2c3e50;
}

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

.header {
  background: transparent;
  box-shadow: none;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: background 0.6s, box-shadow 0.6s;
}
.header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header-top {
  background: #008751;
  color: #ffffff;
  padding: 8px 0;
  font-size: 14px;
}
.header-top .contact-info {
  display: flex;
  gap: 30px;
}
.header-top .contact-info span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-top .contact-info i {
  font-size: 12px;
}

.navbar {
  padding: 10px 0;
}
.navbar .nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar .logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.navbar .logo img {
  width: 50px;
  height: 50px;
}
.navbar .logo .logo-text h3 {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.2;
}
.navbar .logo .logo-text p {
  font-size: 11px;
  color: rgb(169, 185, 186);
}
.navbar .nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}
.navbar .nav-menu a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  font-size: 12px;
  transition: color 0.3s ease;
}
.navbar .nav-menu a:hover, .navbar .nav-menu a.active {
  color: #ff6b35;
  font-weight: 700;
}
.navbar .cta-button {
  background: #ff6b35;
  color: #ffffff;
  padding: 6px 18px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  font-size: 11px;
  transition: background 0.3s ease;
}
.navbar .cta-button:hover {
  background: rgb(255, 69.6336633663, 2);
}
.navbar .mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
.navbar .mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #2c3e50;
  margin: 3px 0;
  transition: 0.3s;
}

.header.scrolled .navbar .nav-menu a {
  color: #2c3e50;
}

.header.scrolled .navbar .nav-menu a.active,
.header.scrolled .navbar .nav-menu a:hover {
  color: #008751;
}

.header.scrolled .navbar .logo .logo-text h3 {
  color: #2c3e50;
}

.header.scrolled .navbar .logo .logo-text p {
  color: #7f8c8d;
}

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 0;
}
.hero .hero-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}
.hero .hero-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 135, 81, 0.5);
  z-index: 1;
}
.hero .hero-carousel .carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.7s;
  pointer-events: none;
}
.hero .hero-carousel .carousel-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero .hero-carousel .carousel-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.hero .hero-carousel .carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  font-size: 32px;
  padding: 8px 16px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  transition: background 0.3s;
}
.hero .hero-carousel .carousel-arrow:hover {
  background: rgba(0, 0, 0, 0.6);
}
.hero .hero-carousel .carousel-arrow.left {
  left: 30px;
}
.hero .hero-carousel .carousel-arrow.right {
  right: 30px;
}
.hero .hero-carousel .carousel-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}
.hero .hero-carousel .carousel-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid #fff;
  cursor: pointer;
  transition: background 0.3s, border 0.3s;
}
.hero .hero-carousel .carousel-dots .dot.active {
  background: #ff6b35;
  border-color: #ff6b35;
}
.hero .hero-background {
  display: none;
}
.hero .hero-content {
  position: relative;
  z-index: 2;
}
.hero .hero-text {
  max-width: 600px;
  color: #ffffff;
}
.hero .hero-text .hero-subtitle {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 10px;
  display: block;
}
.hero .hero-text h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
}
.hero .hero-text h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
}
.hero .hero-text p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}
.hero .hero-text .hero-button {
  background: #ff6b35;
  color: #ffffff;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  font-size: 16px;
  display: inline-block;
  transition: background 0.3s ease;
}
.hero .hero-text .hero-button:hover {
  background: rgb(255, 69.6336633663, 2);
}

.featured-services {
  padding: 80px 0;
  background: #ffffff;
}
.featured-services .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}
.featured-services .service-card {
  text-align: center;
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.featured-services .service-card:hover {
  transform: translateY(-5px);
}
.featured-services .service-card .service-icon {
  width: 80px;
  height: 80px;
  background: #008751;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.featured-services .service-card .service-icon i {
  font-size: 32px;
  color: #ffffff;
}
.featured-services .service-card h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #2c3e50;
}
.featured-services .service-card p {
  color: #7f8c8d;
  line-height: 1.6;
  margin-bottom: 20px;
}
.featured-services .service-card .service-link {
  display: inline-block;
  color: #008751;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}
.featured-services .service-card .service-link:hover {
  border-color: #008751;
}

.features-list {
  padding: 80px 0;
  background: #f8f9fa;
}
.features-list .section-header {
  text-align: center;
  margin-bottom: 60px;
}
.features-list .section-header h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #2c3e50;
}
.features-list .section-header p {
  font-size: 18px;
  color: #7f8c8d;
}
.features-list .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}
.features-list .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 30px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.features-list .feature-item .feature-icon {
  width: 60px;
  height: 60px;
  background: #ff6b35;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.features-list .feature-item .feature-icon i {
  font-size: 24px;
  color: #ffffff;
}
.features-list .feature-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #2c3e50;
}
.features-list .feature-item p {
  color: #7f8c8d;
  line-height: 1.5;
}

.news-cta {
  padding: 60px 0;
  background: #008751;
  color: #ffffff;
  text-align: center;
}
.news-cta .cta-content {
  max-width: 600px;
  margin: 0 auto;
}
.news-cta .cta-content h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 15px;
}
.news-cta .cta-content p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}
.news-cta .cta-content .cta-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}
.news-cta .cta-content .cta-link:hover {
  border-color: #ffffff;
}

.consul-message {
  padding: 80px 0;
  background: #ffffff;
}
.consul-message .message-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.consul-message .message-text .message-subtitle {
  color: #008751;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}
.consul-message .message-text h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #2c3e50;
}
.consul-message .message-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #7f8c8d;
  margin-bottom: 20px;
}
.consul-message .message-text .message-button {
  background: #008751;
  color: #ffffff;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  display: inline-block;
  margin-top: 10px;
  transition: background 0.3s ease;
}
.consul-message .message-text .message-button:hover {
  background: rgb(0, 84, 50.4);
}
.consul-message .message-image img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}

.blog-section {
  padding: 80px 0;
  background: #f8f9fa;
}
.blog-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}
.blog-section .section-header h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #2c3e50;
}
.blog-section .section-header p {
  font-size: 18px;
  color: #7f8c8d;
}
.blog-section .blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}
.blog-section .blog-card {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.blog-section .blog-card:hover {
  transform: translateY(-5px);
}
.blog-section .blog-card .blog-image {
  height: 200px;
  overflow: hidden;
}
.blog-section .blog-card .blog-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-section .blog-card .blog-content {
  padding: 25px;
}
.blog-section .blog-card .blog-content .blog-category {
  background: #008751;
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}
.blog-section .blog-card .blog-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 15px 0 10px;
  color: #2c3e50;
}
.blog-section .blog-card .blog-content p {
  color: #7f8c8d;
  line-height: 1.6;
  margin-bottom: 15px;
}
.blog-section .blog-card .blog-content .blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #7f8c8d;
}
.blog-section .blog-card .blog-content .blog-read-more {
  display: inline-block;
  color: #008751;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  margin-top: 15px;
  transition: color 0.3s ease;
}
.blog-section .blog-card .blog-content .blog-read-more:hover {
  color: #ff6b35;
}
.blog-section .blog-card .blog-content .blog-read-more i {
  margin-left: 5px;
  font-size: 12px;
}

.footer {
  background: #2c3e50;
  color: #ffffff;
  padding: 60px 0 20px;
}
.footer .footer-content {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}
.footer .footer-section .footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: justify;
  gap: 15px;
  margin-bottom: 12px;
}
.footer .footer-section .footer-logo img {
  width: 60px;
  height: 60px;
}
.footer .footer-section .footer-logo h4 {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 2px;
}
.footer .footer-section .footer-logo p {
  font-size: 11px;
  opacity: 0.8;
}
.footer .footer-section h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}
.footer .footer-section p {
  opacity: 0.8;
  line-height: 1.6;
}
.footer .footer-section ul {
  list-style: none;
}
.footer .footer-section ul li {
  margin-bottom: 10px;
}
.footer .footer-section ul li a {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
.footer .footer-section ul li a:hover {
  opacity: 1;
}
.footer .footer-section .contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}
.footer .footer-section .contact-item i {
  width: 20px;
  color: #008751;
}
.footer .footer-section .contact-item span {
  opacity: 0.8;
}
.footer .footer-section.footer-map {
  min-width: 250px;
  max-width: 350px;
}
.footer .footer-section.footer-map .map-embed {
  width: 100%;
  height: 180px;
}
.footer .footer-section.footer-map .map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 8px;
}
.footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
}
.footer .footer-bottom p {
  opacity: 0.6;
  font-size: 14px;
}

@media (max-width: 1200px) {
  .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-content .footer-section.footer-map {
    grid-column: span 3;
    max-width: 100%;
    margin-top: 20px;
  }
}
@media (max-width: 900px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
  .footer-content .footer-section.footer-map {
    grid-column: span 2;
    max-width: 100%;
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  .header-top {
    padding: 6px 0;
    font-size: 12px;
  }
  .header-top .contact-info {
    flex-direction: column;
    gap: 6px;
  }
  .header-top .contact-info span {
    gap: 6px;
  }
  .navbar {
    padding: 8px 0;
  }
  .navbar .logo img {
    width: 40px;
    height: 40px;
  }
  .navbar .logo .logo-text h3 {
    font-size: 13px;
  }
  .navbar .logo .logo-text p {
    font-size: 10px;
  }
  .navbar .cta-button {
    padding: 5px 12px;
    font-size: 10px;
  }
  .navbar .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    gap: 0;
    padding: 10px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 999;
  }
  .navbar .nav-menu.open {
    display: flex;
  }
  .navbar .nav-menu li a {
    color: #2c3e50 !important;
    display: block;
    padding: 12px 20px;
    font-size: 14px;
  }
  .navbar .mobile-menu-toggle {
    display: flex;
  }
  .hero {
    height: auto;
    min-height: 60vh;
    padding-top: 100px;
  }
  .hero .hero-carousel .carousel-arrow {
    font-size: 20px;
    padding: 6px 12px;
  }
  .hero .hero-carousel .carousel-arrow.left {
    left: 10px;
  }
  .hero .hero-carousel .carousel-arrow.right {
    right: 10px;
  }
  .hero .hero-text h1 {
    font-size: 28px;
  }
  .hero .hero-text h2 {
    font-size: 18px;
  }
  .hero .hero-text p {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .hero .hero-text .hero-subtitle {
    font-size: 14px;
  }
  .featured-services {
    padding: 50px 0;
  }
  .featured-services .service-card {
    padding: 25px 20px;
  }
  .featured-services .service-card h3 {
    font-size: 20px;
  }
  .featured-services .service-card .service-icon {
    width: 60px;
    height: 60px;
  }
  .featured-services .service-card .service-icon i {
    font-size: 24px;
  }
  .features-list {
    padding: 50px 0;
  }
  .features-list .section-header h2 {
    font-size: 28px;
  }
  .features-list .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .features-list .feature-item {
    padding: 20px;
  }
  .consul-message {
    padding: 50px 0;
  }
  .consul-message .message-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .consul-message .message-text h2 {
    font-size: 28px;
  }
  .consul-message .message-image img {
    height: 250px;
  }
  .blog-section {
    padding: 50px 0;
  }
  .blog-section .section-header h2 {
    font-size: 28px;
  }
  .blog-section .section-header p {
    font-size: 16px;
  }
  .services-grid,
  .features-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .news-cta {
    padding: 40px 0;
  }
  .news-cta .cta-content h2 {
    font-size: 24px;
  }
  .news-cta .cta-content p {
    font-size: 16px;
  }
  .footer {
    padding: 40px 0 15px;
  }
  .footer .footer-content {
    gap: 30px;
  }
  .footer-content {
    grid-template-columns: 1fr;
  }
  .footer-content .footer-section.footer-map {
    grid-column: auto;
    max-width: 100%;
    margin-top: 20px;
  }
}
@media (max-width: 600px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
  .footer-content .footer-section.footer-map {
    grid-column: auto;
    margin-top: 20px;
  }
}
@media (max-width: 600px) {
  .header-top .contact-info {
    gap: 12px;
    font-size: 11px;
  }
  .navbar .nav-menu li a {
    font-size: 13px;
  }
  .hero {
    padding-top: 80px;
    min-height: 50vh;
  }
  .hero .hero-text {
    max-width: 100%;
  }
  .hero .hero-carousel .carousel-dots {
    bottom: 20px;
  }
  .hero .hero-carousel .carousel-dots .dot {
    width: 10px;
    height: 10px;
  }
  .featured-services .services-grid {
    gap: 25px;
  }
  .features-list .feature-item {
    gap: 15px;
  }
  .features-list .feature-item .feature-icon {
    width: 50px;
    height: 50px;
  }
  .features-list .feature-item .feature-icon i {
    font-size: 20px;
  }
  .news-cta .cta-content .cta-link {
    font-size: 16px;
  }
  .footer .footer-content {
    grid-template-columns: 1fr;
  }
  .footer .footer-section .footer-logo {
    flex-direction: row;
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }
  .header-top {
    padding: 5px 0;
    font-size: 11px;
  }
  .header-top .contact-info span {
    font-size: 10px;
  }
  .header-top .contact-info i {
    font-size: 10px;
  }
  .navbar .logo img {
    width: 35px;
    height: 35px;
  }
  .navbar .logo .logo-text h3 {
    font-size: 12px;
  }
  .navbar .logo .logo-text p {
    font-size: 9px;
  }
  .navbar .cta-button {
    padding: 4px 10px;
    font-size: 9px;
  }
  .hero {
    margin-top: 0;
    padding-top: 70px;
    min-height: 45vh;
  }
  .hero .hero-text h1 {
    font-size: 22px;
    margin-bottom: 8px;
  }
  .hero .hero-text h2 {
    font-size: 16px;
    margin-bottom: 15px;
  }
  .hero .hero-text p {
    font-size: 13px;
    margin-bottom: 15px;
  }
  .hero .hero-text .hero-button {
    padding: 10px 20px;
    font-size: 12px;
  }
  .hero .hero-carousel .carousel-arrow {
    display: none;
  }
  .featured-services {
    padding: 30px 0;
  }
  .featured-services .service-card {
    padding: 20px 15px;
  }
  .featured-services .service-card h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .featured-services .service-card p {
    font-size: 13px;
    margin-bottom: 12px;
  }
  .featured-services .service-card .service-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 12px;
  }
  .featured-services .service-card .service-icon i {
    font-size: 20px;
  }
  .featured-services .service-card .service-link {
    font-size: 12px;
  }
  .features-list {
    padding: 30px 0;
  }
  .features-list .section-header {
    margin-bottom: 30px;
  }
  .features-list .section-header h2 {
    font-size: 20px;
  }
  .features-list .section-header p {
    font-size: 14px;
  }
  .features-list .feature-item {
    padding: 15px;
    gap: 12px;
  }
  .features-list .feature-item h4 {
    font-size: 16px;
  }
  .features-list .feature-item p {
    font-size: 13px;
  }
  .news-cta {
    padding: 30px 0;
  }
  .news-cta .cta-content h2 {
    font-size: 20px;
  }
  .news-cta .cta-content p {
    font-size: 13px;
    margin-bottom: 20px;
  }
  .news-cta .cta-content .cta-link {
    font-size: 13px;
  }
  .consul-message {
    padding: 30px 0;
  }
  .consul-message .message-text .message-subtitle {
    font-size: 12px;
  }
  .consul-message .message-text h2 {
    font-size: 22px;
    margin-bottom: 15px;
  }
  .consul-message .message-text p {
    font-size: 14px;
  }
  .consul-message .message-image img {
    height: 200px;
  }
  .blog-section {
    padding: 30px 0;
  }
  .blog-section .section-header h2 {
    font-size: 20px;
  }
  .blog-section .section-header p {
    font-size: 13px;
    margin-bottom: 30px;
  }
  .blog-section .blog-card .blog-content {
    padding: 15px;
  }
  .blog-section .blog-card .blog-content h3 {
    font-size: 16px;
  }
  .blog-section .blog-card .blog-content p {
    font-size: 13px;
  }
  .section-header h2 {
    font-size: 20px;
  }
  .footer {
    padding: 30px 0 12px;
  }
  .footer .footer-section h4 {
    font-size: 13px;
    margin-bottom: 12px;
  }
  .footer .footer-section p {
    font-size: 12px;
  }
  .footer .footer-section .footer-logo img {
    width: 50px;
    height: 50px;
  }
  .footer .footer-section .footer-logo h4 {
    font-size: 12px;
  }
  .footer .footer-section ul li {
    margin-bottom: 8px;
  }
  .footer .footer-section ul li a {
    font-size: 12px;
  }
  .footer .footer-section .contact-item {
    gap: 8px;
    margin-bottom: 12px;
  }
  .footer .footer-section .contact-item span {
    font-size: 12px;
  }
  .footer .footer-bottom p {
    font-size: 11px;
  }
}
/* Page Header Styles */
.page-header {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-header-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.page-header-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.page-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 135, 81, 0.6) 0%, rgba(0, 104, 62, 0.4) 100%);
  z-index: 1;
}

.page-header-content {
  color: white;
  text-align: center;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 14px;
  opacity: 0.9;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}

.breadcrumb a:hover {
  color: white;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-header p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.registration-section {
  padding: 80px 0;
  background: #f8f9fa;
}
.registration-section .registration-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: flex-start;
}
.registration-section .registration-info h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #2c3e50;
}
.registration-section .registration-info .info-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}
.registration-section .registration-info .info-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #008751;
}
.registration-section .registration-info .info-card ul {
  list-style: none;
}
.registration-section .registration-info .info-card ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.registration-section .registration-info .info-card ul li i {
  color: #008751;
  font-size: 14px;
}
.registration-section .registration-info .info-card .processing-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}
.registration-section .registration-info .info-card .processing-item i {
  width: 20px;
  height: 20px;
  background: #008751;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  margin-top: 2px;
}
.registration-section .registration-info .info-card .processing-item strong {
  display: block;
  margin-bottom: 5px;
  color: #2c3e50;
}
.registration-section .registration-info .info-card .processing-item p {
  color: #7f8c8d;
  margin: 0;
}
.registration-section .registration-form {
  background: #ffffff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.registration-section .registration-form h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #2c3e50;
  text-align: center;
}
.registration-section .registration-form .form-section {
  margin-bottom: 40px;
}
.registration-section .registration-form .form-section h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #008751;
  border-bottom: 2px solid #e1e8ed;
  padding-bottom: 10px;
}
.registration-section .registration-form .form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}
.registration-section .registration-form .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #2c3e50;
}
.registration-section .registration-form .form-group label::after {
  content: " *";
  color: #ff6b35;
}
.registration-section .registration-form .form-group input,
.registration-section .registration-form .form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e1e8ed;
  border-radius: 5px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}
.registration-section .registration-form .form-group input:focus,
.registration-section .registration-form .form-group select:focus {
  outline: none;
  border-color: #008751;
}
.registration-section .registration-form .form-group input:required:invalid,
.registration-section .registration-form .form-group select:required:invalid {
  border-color: #ff6b35;
}
.registration-section .registration-form .form-group select {
  cursor: pointer;
}
.registration-section .registration-form .checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}
.registration-section .registration-form .checkbox-group input[type=checkbox] {
  width: auto;
  margin-top: 4px;
  transform: scale(1.2);
}
.registration-section .registration-form .checkbox-group label {
  flex: 1;
  line-height: 1.5;
}
.registration-section .registration-form .checkbox-group label::after {
  display: none;
}
.registration-section .registration-form .form-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}
.registration-section .registration-form .form-actions .submit-button {
  background: #008751;
  color: #ffffff;
  padding: 15px 40px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}
.registration-section .registration-form .form-actions .submit-button:hover {
  background: rgb(0, 84, 50.4);
}
.registration-section .registration-form .form-actions .reset-button {
  background: transparent;
  color: #7f8c8d;
  padding: 15px 40px;
  border: 2px solid #e1e8ed;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.registration-section .registration-form .form-actions .reset-button:hover {
  border-color: #7f8c8d;
  color: #2c3e50;
}

/* Info Sections */
.info-sections {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(248, 255, 254, 0.8) 0%, rgba(240, 249, 244, 0.9) 100%);
}

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

.info-card {
  background: rgba(255, 255, 255, 0.8);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 135, 81, 0.15);
  background: rgba(255, 255, 255, 0.95);
}

.info-icon {
  margin-bottom: 25px;
}

.info-icon img {
  width: 60px;
  height: 60px;
  filter: drop-shadow(0 4px 8px rgba(0, 135, 81, 0.2));
}

.info-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.info-card p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.info-list {
  list-style: none;
  text-align: left;
  margin-bottom: 25px;
}

.info-list li {
  padding: 8px 0;
  color: #555;
  position: relative;
  padding-left: 20px;
}

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

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

.info-link:hover {
  color: #00a862;
}

.featured-services-detailed {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(0, 135, 81, 0.05) 0%, rgba(0, 104, 62, 0.08) 100%);
}

.services-detailed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 40px;
}

.service-detailed-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-detailed-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 135, 81, 0.2);
}

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

.service-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease;
}

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

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 135, 81, 0.7) 0%, rgba(0, 104, 62, 0.5) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.service-detailed-card:hover .service-overlay {
  opacity: 1;
}

.service-icon-large img {
  width: 50px;
  height: 50px;
  filter: brightness(0) invert(1);
}

.service-content {
  padding: 30px;
}

.service-content h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.service-content p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  margin-bottom: 25px;
}

.service-features li {
  padding: 5px 0;
  color: #555;
  position: relative;
  padding-left: 20px;
  font-size: 0.95rem;
}

.service-features li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #008751;
  font-weight: bold;
}

.service-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding: 15px;
  background: rgba(0, 135, 81, 0.05);
  border-radius: 10px;
}

.processing-time {
  font-size: 0.9rem;
  color: #666;
}

.service-fee {
  font-weight: 600;
  color: #008751;
  font-size: 1.1rem;
}

/* FAQs Section */
.faqs-section {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(248, 255, 254, 0.9) 0%, rgba(240, 249, 244, 0.8) 100%);
}

.faqs-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  border-radius: 15px;
  overflow: hidden;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 10px 25px rgba(0, 135, 81, 0.12);
  background: rgba(255, 255, 255, 0.95);
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(0, 135, 81, 0.05);
}

.faq-question h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
}

.faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: #008751;
  transition: all 0.3s ease;
}

.faq-answer {
  padding: 0 30px 25px;
  display: none;
  color: #666;
  line-height: 1.6;
}

/* Services CTA */
.services-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(0, 135, 81, 0.9) 0%, rgba(0, 104, 62, 0.8) 100%);
  color: white;
}

.services-cta .cta-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.services-cta .cta-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.services-cta .cta-text p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.95;
  line-height: 1.7;
}

.cta-features {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-icon {
  background: rgba(255, 255, 255, 0.2);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
}

.services-cta .cta-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content,
  .cta-content,
  .message-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-location {
    font-size: 1.5rem;
  }
  .nav-menu {
    display: none;
  }
  .nav-menu.open {
    display: flex;
    flex-direction: column;
  }
  .services-grid,
  .services-list,
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .contact-info {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .page-header h1 {
    font-size: 2rem;
  }
  .info-grid,
  .services-detailed-grid {
    grid-template-columns: 1fr;
  }
  .services-cta .cta-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .cta-features {
    flex-direction: column;
    gap: 15px;
  }
  .services-cta .cta-text h2 {
    font-size: 2rem;
  }
  .service-meta {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
@media (max-width: 1024px) {
  .registration-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
  .footer-content .footer-section.footer-map {
    grid-column: span 2;
    max-width: 100%;
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  .page-header {
    padding: 120px 0 60px;
    min-height: 50vh;
  }
  .page-header .page-header-content h1 {
    font-size: 32px;
  }
  .page-header .page-header-content p {
    font-size: 16px;
  }
  .breadcrumb {
    font-size: 12px;
  }
  .registration-section {
    padding: 50px 0;
  }
  .registration-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .registration-info h2 {
    font-size: 24px;
  }
  .registration-form h2 {
    font-size: 24px;
  }
  .registration-form {
    padding: 25px 20px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .form-group label {
    font-size: 14px;
  }
  .form-group input,
  .form-group select {
    padding: 10px 12px;
    font-size: 14px;
  }
  .form-section h3 {
    font-size: 18px;
  }
  .form-actions {
    flex-direction: column;
    gap: 12px;
  }
  .form-actions .submit-button,
  .form-actions .reset-button {
    width: 100%;
    padding: 12px 30px;
    font-size: 14px;
  }
  .registration-info .info-card {
    padding: 20px;
  }
  .registration-info .info-card h3 {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .page-header {
    padding: 100px 0 40px;
    min-height: 40vh;
  }
  .page-header .page-header-content h1 {
    font-size: 22px;
  }
  .page-header .page-header-content p {
    font-size: 14px;
  }
  .breadcrumb {
    font-size: 11px;
  }
  .registration-section {
    padding: 25px 0;
  }
  .registration-info h2,
  .registration-form h2 {
    font-size: 18px;
  }
  .registration-form {
    padding: 15px 12px;
  }
  .registration-info .info-card {
    padding: 15px;
    margin-bottom: 20px;
  }
  .registration-info .info-card h3 {
    font-size: 16px;
    margin-bottom: 12px;
  }
  .registration-info .info-card ul li {
    margin-bottom: 8px;
    font-size: 13px;
  }
  .registration-info .info-card .processing-item {
    margin-bottom: 12px;
  }
  .registration-info .info-card .processing-item strong {
    font-size: 13px;
  }
  .registration-info .info-card .processing-item p {
    font-size: 12px;
  }
  .form-section {
    margin-bottom: 25px;
  }
  .form-section h3 {
    font-size: 16px;
    margin-bottom: 12px;
  }
  .form-group label {
    font-size: 13px;
    margin-bottom: 6px;
  }
  .form-group input,
  .form-group select {
    padding: 9px 10px;
    font-size: 13px;
  }
  .checkbox-group {
    gap: 8px;
  }
  .checkbox-group label {
    font-size: 12px;
    line-height: 1.4;
  }
  .form-actions {
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
  }
  .form-actions .submit-button,
  .form-actions .reset-button {
    width: 100%;
    padding: 10px 20px;
    font-size: 13px;
  }
}/*# sourceMappingURL=styles.css.map */