@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #333333;
  background-color: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #1A2B4F;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

p {
  margin-bottom: 1rem;
  color: #666666;
}

a {
  color: #00645C;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: #AAD140;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
}

.section-padding {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
}
@media (max-width: 576px) {
  .section-padding {
    padding: 40px 0;
  }
}

.bg-light {
  background-color: #F7F7F7;
}

.bg-dark {
  background-color: #1A2B4F;
  color: #ffffff;
}
.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4, .bg-dark h5, .bg-dark h6 {
  color: #ffffff;
}
.bg-dark p {
  color: rgba(255, 255, 255, 0.8);
}

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

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #AAD140;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}
.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.scroll-to-top:hover {
  background: #00645C;
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
@media (max-width: 576px) {
  .scroll-to-top {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
    font-size: 16px;
  }
}

.btn {
  display: inline-block;
  padding: 16px 36px;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: 50px;
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.3s ease;
}
.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  z-index: -1;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.btn:hover::before {
  width: 300px;
  height: 300px;
}
.btn:active {
  transform: translateY(-1px);
}

.btn-primary {
  background-color: #AAD140;
  color: #ffffff;
}
.btn-primary:hover {
  background-color: rgb(142.3797468354, 178.9113924051, 43.0886075949);
  color: #ffffff;
}

.btn-secondary {
  background-color: transparent;
  color: #1A2B4F;
  border-color: #1A2B4F;
}
.btn-secondary:hover {
  background-color: #1A2B4F;
  color: #ffffff;
}

.btn-lg {
  padding: 18px 40px;
  font-size: 18px;
}

.btn-sm {
  padding: 10px 24px;
  font-size: 14px;
}

.site-header {
  background-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 40px 0;
  transition: all 0.3s ease;
}
.site-header.scrolled {
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 15px 0;
  position: fixed;
  top: 0;
}
.site-header.scrolled .header-inner {
  padding-top: 5px;
  padding-bottom: 5px;
}
.site-header .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.site-branding {
  flex-shrink: 0;
}
.site-branding .custom-logo-link {
  display: block;
  line-height: 0;
}
.site-branding .custom-logo {
  max-height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}
.site-branding .custom-logo:hover {
  transform: scale(1.05);
}
.site-branding .site-title {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #1A2B4F;
  text-decoration: none;
  transition: color 0.3s ease;
}
.site-branding .site-title:hover {
  color: #AAD140;
}

.main-navigation {
  flex-grow: 1;
}
.main-navigation .nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-navigation .nav-menu li {
  position: relative;
}
.main-navigation .nav-menu li a {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  padding: 8px 0;
  display: block;
  transition: color 0.3s ease;
}
.main-navigation .nav-menu li a:hover, .main-navigation .nav-menu li a:focus {
  color: #AAD140;
}
.main-navigation .nav-menu li.current-menu-item a, .main-navigation .nav-menu li.current_page_item a {
  color: #AAD140;
  position: relative;
}
.main-navigation .nav-menu li.current-menu-item a::after, .main-navigation .nav-menu li.current_page_item a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #AAD140;
}
.main-navigation .menu-toggle {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  height: 24px;
}
.main-navigation .menu-toggle .bar {
  width: 100%;
  height: 3px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.main-navigation .menu-toggle[aria-expanded=true] .bar:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}
.main-navigation .menu-toggle[aria-expanded=true] .bar:nth-child(2) {
  opacity: 0;
}
.main-navigation .menu-toggle[aria-expanded=true] .bar:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.site-header.scrolled .main-navigation .nav-menu li a {
  color: #333333;
}
.site-header.scrolled .main-navigation .nav-menu li a:hover, .site-header.scrolled .main-navigation .nav-menu li a:focus {
  color: #AAD140;
}
.site-header.scrolled .main-navigation .menu-toggle .bar {
  background-color: #1A2B4F;
}

.header-cta {
  flex-shrink: 0;
}
.header-cta .btn {
  white-space: nowrap;
}

@media (max-width: 768px) {
  .site-header {
    padding: 15px 0;
  }
  .site-header .header-inner {
    gap: 20px;
  }
  .main-navigation .nav-menu {
    gap: 25px;
  }
  .main-navigation .nav-menu li a {
    font-size: 14px;
  }
  .header-cta .btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .site-header .header-inner {
    flex-wrap: wrap;
  }
  .main-navigation {
    order: 3;
    width: 100%;
  }
  .main-navigation .menu-toggle {
    display: flex;
  }
  .main-navigation .nav-menu {
    display: none;
    flex-direction: column;
    gap: 0;
    width: 100%;
    margin-top: 20px;
    background-color: #F7F7F7;
    border-radius: 8px;
    padding: 10px 0;
  }
  .main-navigation .nav-menu.active {
    display: flex;
  }
  .main-navigation .nav-menu li {
    width: 100%;
  }
  .main-navigation .nav-menu li a {
    padding: 15px 20px;
    color: #333333;
  }
  .main-navigation .nav-menu li a:hover {
    background-color: rgba(170, 209, 64, 0.1);
  }
  .main-navigation .nav-menu li.current-menu-item a::after, .main-navigation .nav-menu li.current_page_item a::after {
    display: none;
  }
  .header-cta {
    margin-left: auto;
  }
}
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 100px;
  padding-bottom: 80px;
}
.hero-section .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.hero-section .container {
  position: relative;
  z-index: 2;
}
.hero-section .hero-content-center {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: #ffffff;
}
.hero-section .hero-tagline {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #AAD140;
  text-transform: uppercase;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}
.hero-section .hero-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(42px, 5vw, 84px);
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 30px;
  letter-spacing: -2px;
}
.hero-section .hero-description {
  font-size: 18px;
  line-height: 1.875;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero-section .hero-cta {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-section .btn-play {
  display: flex;
  align-items: center;
  gap: 15px;
  background: transparent;
  color: #ffffff;
  padding: 0;
}
.hero-section .btn-play:hover {
  transform: none;
  box-shadow: none;
  color: #AAD140;
}
.hero-section .btn-play:hover .play-icon {
  transform: scale(1.1);
  box-shadow: 0 15px 30px rgba(170, 209, 64, 0.5);
}
.hero-section .btn-play .play-icon {
  width: 52px;
  height: 52px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00645C;
  font-size: 14px;
  padding-left: 3px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}
.hero-section .btn-play span {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 17px;
}
.hero-section .scroll-down {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: bounce 2s infinite;
  z-index: 3;
}
.hero-section .scroll-down:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-50%) translateY(-5px);
}
.hero-section .scroll-down i {
  animation: arrowMove 2s infinite;
}
@media (max-width: 768px) {
  .hero-section {
    min-height: 80vh;
  }
  .hero-section .hero-cta {
    flex-direction: column;
  }
  .hero-section .hero-cta .btn {
    width: 100%;
    max-width: 300px;
  }
  .hero-section .scroll-down {
    bottom: 30px;
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}
@keyframes arrowMove {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}
.section-tag {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.category-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}
@media (max-width: 1199px) {
  .category-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .category-cards-grid {
    grid-template-columns: 1fr;
  }
}

.category-card {
  background: #ffffff;
  padding: 50px 40px;
  border-radius: 24px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
}
.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
  border-color: #AAD140;
}
.category-card:hover .category-icon-large {
  transform: scale(1.1) rotate(-5deg);
  background: linear-gradient(135deg, #AAD140 0%, rgb(142.3797468354, 178.9113924051, 43.0886075949) 100%);
}
.category-card .category-icon-large {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #00645C 0%, rgb(0, 49, 45.08) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: #ffffff;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}
.category-card .category-title {
  font-size: 24px;
  font-weight: 700;
  color: #1A2B4F;
  margin-bottom: 16px;
  line-height: 1.3;
}
.category-card .category-description {
  font-size: 15px;
  color: #666666;
  margin-bottom: 30px;
  line-height: 1.6;
}
.category-card .services-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.category-card .services-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.7;
  color: #333333;
}
.category-card .services-list li:last-child {
  margin-bottom: 0;
}
.category-card .services-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: #AAD140;
  border-radius: 50%;
}
.category-card .services-list li strong {
  color: #1A2B4F;
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}

.why-choose-us-section .why-choose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
@media (max-width: 768px) {
  .why-choose-us-section .why-choose-grid {
    grid-template-columns: 1fr;
  }
}
.why-choose-us-section .why-choose-content {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 80px 60px;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .why-choose-us-section .why-choose-content {
    padding: 60px 40px;
    min-height: 500px;
  }
}
.why-choose-us-section .why-choose-content .content-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1;
}
.why-choose-us-section .why-choose-content .content-inner {
  position: relative;
  z-index: 2;
  color: #ffffff;
  max-width: 500px;
}
.why-choose-us-section .why-choose-content .content-inner h3 {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.4;
}
.why-choose-us-section .why-choose-content .content-inner p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 16px;
}
.why-choose-us-section .why-choose-content .content-inner p.tagline {
  font-size: 20px;
  font-weight: 600;
  color: #AAD140;
  margin-top: 24px;
  margin-bottom: 20px;
}
.why-choose-us-section .why-choose-content .content-inner .btn-white {
  margin-top: 30px;
  background: #ffffff;
  color: #1A2B4F;
}
.why-choose-us-section .why-choose-content .content-inner .btn-white:hover {
  background: #AAD140;
  color: #ffffff;
}
.why-choose-us-section .why-choose-stats {
  background: #00645C;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 768px) {
  .why-choose-us-section .why-choose-stats {
    padding: 60px 40px;
  }
}
.why-choose-us-section .why-choose-stats .stats-title {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 50px;
  line-height: 1.3;
}
.why-choose-us-section .why-choose-stats .stat-item {
  margin-bottom: 40px;
}
.why-choose-us-section .why-choose-stats .stat-item:last-child {
  margin-bottom: 0;
}
.why-choose-us-section .why-choose-stats .stat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.why-choose-us-section .why-choose-stats .stat-header .stat-label {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
}
.why-choose-us-section .why-choose-stats .stat-header .stat-value {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
}
.why-choose-us-section .why-choose-stats .stat-bar {
  width: 100%;
  height: 12px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  overflow: hidden;
}
.why-choose-us-section .why-choose-stats .stat-bar .stat-progress {
  height: 100%;
  background: #ffffff;
  border-radius: 10px;
  width: 0;
  transition: width 2s ease-out;
}

.testimonials-section .testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 768px) {
  .testimonials-section .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.testimonials-section .testimonials-header .section-title {
  text-align: left;
}
.testimonials-section .testimonials-header .section-title::after {
  left: 0;
  transform: none;
}
.testimonials-section .testimonials-cards {
  position: relative;
}
.testimonials-section .testimonial-card {
  background: #ffffff;
  padding: 34px;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  position: relative;
}
.testimonials-section .testimonial-card.active {
  border: 2px solid #F7F7F7;
}
.testimonials-section .testimonial-card .testimonial-image {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 24px;
}
.testimonials-section .testimonial-card .testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonials-section .testimonial-card .testimonial-content {
  margin-bottom: 24px;
}
.testimonials-section .testimonial-card .testimonial-content p {
  font-size: 16px;
  line-height: 2;
  color: #666666;
  margin: 0;
}
.testimonials-section .testimonial-card .testimonial-author h4 {
  font-size: 18px;
  font-weight: 600;
  color: #333333;
  margin-bottom: 4px;
}
.testimonials-section .testimonial-card .testimonial-author p {
  font-size: 14px;
  color: #666666;
  margin: 0;
}

.trust-section {
  overflow: hidden;
}
.trust-section .trust-counter {
  text-align: center;
  margin-bottom: 60px;
}
.trust-section .trust-counter h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: #1A2B4F;
}
.trust-section .trust-counter h2 .counter-number {
  color: #AAD140;
  font-size: clamp(32px, 5vw, 56px);
}
.trust-section .brands-slider-wrapper {
  width: 100%;
  overflow: hidden;
  padding: 40px 0;
  position: relative;
}
.trust-section .brands-slider-wrapper::before, .trust-section .brands-slider-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.trust-section .brands-slider-wrapper::before {
  left: 0;
  background: linear-gradient(to right, rgb(248, 249, 250) 0%, rgba(248, 249, 250, 0) 100%);
}
.trust-section .brands-slider-wrapper::after {
  right: 0;
  background: linear-gradient(to left, rgb(248, 249, 250) 0%, rgba(248, 249, 250, 0) 100%);
}
.trust-section .brands-slider-track {
  display: flex;
  gap: 80px;
  animation: scroll-brands 60s linear infinite;
  width: fit-content;
}
.trust-section .brands-slider-track:hover {
  animation-play-state: paused;
}
.trust-section .brand-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
}
.trust-section .brand-logo img {
  height: 60px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.6);
  transition: all 0.3s ease;
}
.trust-section .brand-logo img:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.1);
}

@keyframes scroll-brands {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.testimonials-slider {
  position: relative;
}
.testimonials-slider .testimonial-card {
  display: none;
}
.testimonials-slider .testimonial-card.active {
  display: block;
}
.testimonials-slider .testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}
.testimonials-slider .testimonial-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(26, 43, 79, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}
.testimonials-slider .testimonial-dots .dot.active {
  background: #00645C;
  transform: scale(1.2);
}
.testimonials-slider .testimonial-dots .dot:hover {
  background: #00645C;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}
@media (max-width: 768px) {
  .destinations-grid {
    grid-template-columns: 1fr;
  }
}

.destination-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.destination-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}
.destination-card .destination-image {
  width: 100%;
  height: 327px;
  overflow: hidden;
}
.destination-card .destination-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.destination-card:hover .destination-image img {
  transform: scale(1.1);
}
.destination-card .destination-content {
  padding: 30px;
}
.destination-card .destination-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}
.destination-card .destination-header h3 {
  font-size: 18px;
  font-weight: 500;
  color: #333333;
  margin: 0;
  flex: 1;
}
.destination-card .destination-header .destination-price {
  font-size: 18px;
  font-weight: 500;
  color: #666666;
  white-space: nowrap;
  margin-left: 10px;
}
.destination-card .destination-duration {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: #666666;
  margin: 0;
}
.destination-card .destination-duration i {
  color: #00645C;
}

.how-we-work-section .how-we-work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
@media (max-width: 768px) {
  .how-we-work-section .how-we-work-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
.how-we-work-section .how-we-work-content .section-title {
  text-align: left;
  margin-bottom: 50px;
}
.how-we-work-section .how-we-work-content .section-title::after {
  display: none;
}
.how-we-work-section .steps-list {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.how-we-work-section .step-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.how-we-work-section .step-icon {
  width: 47px;
  height: 48px;
  background: #AAD140;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #ffffff;
  flex-shrink: 0;
}
.how-we-work-section .step-content {
  flex: 1;
}
.how-we-work-section .step-content h3 {
  font-size: 16px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 8px;
}
.how-we-work-section .step-content p {
  font-size: 16px;
  line-height: 1.625;
  color: #666666;
  margin: 0;
}
.how-we-work-section .how-we-work-image {
  position: relative;
}
.how-we-work-section .how-we-work-image img {
  width: 100%;
  height: auto;
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.testimonials-section .testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 768px) {
  .testimonials-section .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.testimonials-section .testimonials-header .section-title {
  text-align: left;
}
.testimonials-section .testimonials-header .section-title::after {
  left: 0;
  transform: none;
}
.testimonials-section .testimonials-cards {
  position: relative;
}
.testimonials-section .testimonial-card {
  background: #ffffff;
  padding: 34px;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  position: relative;
}
.testimonials-section .testimonial-card.active {
  border: 2px solid #F7F7F7;
}
.testimonials-section .testimonial-card .testimonial-image {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 24px;
}
.testimonials-section .testimonial-card .testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonials-section .testimonial-card .testimonial-content {
  margin-bottom: 24px;
}
.testimonials-section .testimonial-card .testimonial-content p {
  font-size: 16px;
  line-height: 2;
  color: #666666;
  margin: 0;
}
.testimonials-section .testimonial-card .testimonial-author h4 {
  font-size: 18px;
  font-weight: 600;
  color: #333333;
  margin-bottom: 4px;
}
.testimonials-section .testimonial-card .testimonial-author p {
  font-size: 14px;
  color: #666666;
  margin: 0;
}

.partners-section .partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}
.partners-section .partners-logos img {
  height: 60px;
  width: auto;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
.partners-section .partners-logos img:hover {
  opacity: 1;
}

.process-timeline-section {
  background: #00645C;
}
.process-timeline-section .section-header .section-tag {
  color: rgba(255, 255, 255, 0.8);
}
.process-timeline-section .section-header .section-title {
  color: #ffffff;
}
.process-timeline-section .timeline-wrapper {
  max-width: 1100px;
  margin: 60px auto 0;
  position: relative;
}
.process-timeline-section .timeline-wrapper::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 3px;
  background: rgba(255, 255, 255, 0.3);
}
@media (max-width: 768px) {
  .process-timeline-section .timeline-wrapper::before {
    left: 40px;
    transform: none;
  }
}
.process-timeline-section .timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 100px 1fr;
  gap: 40px;
  margin-bottom: 60px;
  align-items: center;
}
@media (max-width: 768px) {
  .process-timeline-section .timeline-item {
    grid-template-columns: 80px 1fr;
    gap: 30px;
    padding-left: 0;
  }
}
.process-timeline-section .timeline-item:last-child {
  margin-bottom: 0;
}
.process-timeline-section .timeline-item:nth-child(odd) .timeline-content {
  grid-column: 1;
  grid-row: 1;
}
.process-timeline-section .timeline-item:nth-child(odd) .timeline-number {
  grid-column: 2;
  grid-row: 1;
}
.process-timeline-section .timeline-item:nth-child(odd) .timeline-spacer {
  grid-column: 3;
  grid-row: 1;
}
@media (max-width: 768px) {
  .process-timeline-section .timeline-item:nth-child(odd) .timeline-content {
    grid-column: 2;
  }
  .process-timeline-section .timeline-item:nth-child(odd) .timeline-number {
    grid-column: 1;
  }
}
.process-timeline-section .timeline-item:nth-child(even) .timeline-spacer {
  grid-column: 1;
  grid-row: 1;
}
.process-timeline-section .timeline-item:nth-child(even) .timeline-number {
  grid-column: 2;
  grid-row: 1;
}
.process-timeline-section .timeline-item:nth-child(even) .timeline-content {
  grid-column: 3;
  grid-row: 1;
}
@media (max-width: 768px) {
  .process-timeline-section .timeline-item:nth-child(even) .timeline-content {
    grid-column: 2;
  }
  .process-timeline-section .timeline-item:nth-child(even) .timeline-number {
    grid-column: 1;
  }
}
@media (max-width: 768px) {
  .process-timeline-section .timeline-spacer {
    display: none;
  }
}
.process-timeline-section .timeline-number {
  width: 100px;
  height: 100px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 700;
  color: #00645C;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 2;
  position: relative;
}
@media (max-width: 768px) {
  .process-timeline-section .timeline-number {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }
}
.process-timeline-section .timeline-content {
  background: #ffffff;
  padding: 35px 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .process-timeline-section .timeline-content {
    padding: 28px 32px;
  }
}
.process-timeline-section .timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}
.process-timeline-section .timeline-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1A2B4F;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .process-timeline-section .timeline-content h3 {
    font-size: 19px;
  }
}
.process-timeline-section .timeline-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #666666;
  margin: 0;
}
@media (max-width: 768px) {
  .process-timeline-section .timeline-content p {
    font-size: 15px;
  }
}

.latest-posts-section .posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}
@media (max-width: 1024px) {
  .latest-posts-section .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .latest-posts-section .posts-grid {
    grid-template-columns: 1fr;
  }
}
.latest-posts-section .post-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.latest-posts-section .post-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
.latest-posts-section .post-card:hover .post-image img {
  transform: scale(1.1);
}
.latest-posts-section .post-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}
.latest-posts-section .post-image a {
  display: block;
  width: 100%;
  height: 100%;
}
.latest-posts-section .post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.latest-posts-section .post-content {
  padding: 30px;
}
.latest-posts-section .post-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.latest-posts-section .post-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #666666;
}
.latest-posts-section .post-meta span i {
  color: #00645C;
  font-size: 13px;
}
.latest-posts-section .post-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 16px;
}
.latest-posts-section .post-title a {
  color: #1A2B4F;
  text-decoration: none;
  transition: color 0.3s ease;
}
.latest-posts-section .post-title a:hover {
  color: #00645C;
}
.latest-posts-section .post-excerpt {
  font-size: 15px;
  line-height: 1.7;
  color: #666666;
  margin-bottom: 20px;
}
.latest-posts-section .post-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #00645C;
  text-decoration: none;
  transition: all 0.3s ease;
}
.latest-posts-section .post-read-more i {
  font-size: 12px;
  transition: transform 0.3s ease;
}
.latest-posts-section .post-read-more:hover {
  color: #AAD140;
}
.latest-posts-section .post-read-more:hover i {
  transform: translateX(5px);
}
.latest-posts-section .no-posts {
  grid-column: 1/-1;
  text-align: center;
  padding: 60px 20px;
}
.latest-posts-section .no-posts p {
  font-size: 18px;
  color: #666666;
}

.subscribe-section {
  position: relative;
  background: rgba(170, 209, 64, 0.05);
  overflow: hidden;
}
.subscribe-section .subscribe-background {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  background-image: radial-gradient(circle at 20% 50%, #00645C 0%, transparent 50%), radial-gradient(circle at 80% 80%, #AAD140 0%, transparent 50%);
}
.subscribe-section .subscribe-content {
  max-width: 1170px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.subscribe-section .subscribe-content h2 {
  font-size: 33px;
  font-weight: 600;
  color: #666666;
  margin-bottom: 20px;
  line-height: 1.636;
}
.subscribe-section .subscribe-content p {
  font-size: 16px;
  color: #666666;
  margin-bottom: 60px;
}
.subscribe-section .subscribe-form {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}
.subscribe-section .subscribe-form .form-group {
  position: relative;
  width: 100%;
}
.subscribe-section .subscribe-form .form-group i {
  position: absolute;
  left: 35px;
  top: 50%;
  transform: translateY(-50%);
  color: #666666;
  font-size: 20px;
  z-index: 1;
}
.subscribe-section .subscribe-form .form-group input {
  width: 100%;
  padding: 28px 180px 28px 75px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  color: #333333;
  background: #ffffff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.subscribe-section .subscribe-form .form-group input::placeholder {
  color: #666666;
}
.subscribe-section .subscribe-form .form-group input:focus {
  outline: none;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}
@media (max-width: 576px) {
  .subscribe-section .subscribe-form .form-group input {
    padding: 24px 24px 24px 65px;
  }
}
.subscribe-section .subscribe-form .btn-subscribe {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  padding: 20px 45px;
  background: #00645C;
  color: #ffffff;
  border: none;
  border-radius: 50px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.subscribe-section .subscribe-form .btn-subscribe:hover {
  background: rgb(0, 59.2, 54.464);
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 100, 92, 0.4);
}
@media (max-width: 576px) {
  .subscribe-section .subscribe-form .btn-subscribe {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 15px;
  }
  .subscribe-section .subscribe-form .btn-subscribe:hover {
    transform: scale(1.02);
  }
}
@media (max-width: 576px) {
  .subscribe-section .subscribe-form .form-group input {
    padding-right: 24px;
  }
}

.brands-slider-wrapper .brand-logo img {
  max-height: 80px !important;
  width: auto;
}

.testimonials-section .testimonial-dots {
  justify-content: flex-start !important;
}
.testimonials-section .testimonial-dots .dot {
  width: 12px;
  height: 12px;
  background: rgba(26, 43, 79, 0.2);
  border-radius: 50%;
}
.testimonials-section .testimonial-dots .dot.active {
  background: #AAD140;
}

.services-list {
  list-style: none;
  padding-left: 0;
}
.services-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 16px;
}
.services-list li::before {
  content: ">";
  position: absolute;
  left: 0;
  top: 0;
  color: #AAD140;
  font-weight: 700;
  font-size: 18px;
}

.site-footer {
  background: #1A2B4F;
  color: rgba(255, 255, 255, 0.8);
}
.site-footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}
.site-footer a:hover {
  color: #AAD140;
}

.footer-main {
  padding: 80px 0 60px;
}
@media (max-width: 768px) {
  .footer-main {
    padding: 60px 0 40px;
  }
}

.footer-columns {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 50px;
}
@media (max-width: 1024px) {
  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.footer-column .footer-title {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}
.footer-column .footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: #AAD140;
}

.footer-about .footer-logo {
  margin-bottom: 24px;
}
.footer-about .footer-logo img {
  height: 150px;
  width: auto;
}
.footer-about p {
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
  color: #ffffff;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-menu li {
  margin-bottom: 12px;
}
.footer-menu li:last-child {
  margin-bottom: 0;
}
.footer-menu li a {
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-menu li a::before {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 12px;
  color: #AAD140;
  transition: transform 0.3s ease;
}
.footer-menu li a:hover::before {
  transform: translateX(3px);
}

.footer-services {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-services li {
  margin-bottom: 12px;
}
.footer-services li:last-child {
  margin-bottom: 0;
}
.footer-services li a {
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-services li a::before {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 12px;
  color: #AAD140;
  transition: transform 0.3s ease;
}
.footer-services li a:hover::before {
  transform: translateX(3px);
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.6;
}
.footer-contact li:last-child {
  margin-bottom: 0;
}
.footer-contact li i {
  color: #AAD140;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact li a {
  flex: 1;
}

.footer-bottom {
  background: rgb(19.6857142857, 32.5571428571, 59.8142857143);
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 576px) {
  .footer-bottom-inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

.copyright {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.footer-social {
  display: flex;
  gap: 15px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
  transition: all 0.3s ease;
}
.footer-social a:hover {
  background: #AAD140;
  color: #ffffff;
  transform: translateY(-3px);
}

.footer-logo {
  margin-bottom: 20px;
}
.footer-logo img,
.footer-logo a img {
  max-width: 180px;
  height: auto;
  width: auto;
  object-fit: contain;
}

.section-header {
  margin-bottom: 60px;
}
.section-header .section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}
.section-header .section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #AAD140 0%, rgb(142.3797468354, 178.9113924051, 43.0886075949) 100%);
  border-radius: 2px;
}
.section-header .section-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: #666666;
  margin-top: 20px;
}
.section-header.text-center .section-title::after {
  left: 50%;
  transform: translateX(-50%);
}

.who-we-are-section .who-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  font-size: 18px;
  line-height: 1.8;
  color: #333333;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.category-card {
  background: #ffffff;
  padding: 50px 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.category-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #AAD140 0%, rgb(142.3797468354, 178.9113924051, 43.0886075949) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.category-card:hover::before {
  transform: scaleX(1);
}
.category-card:hover .category-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, #AAD140 0%, rgb(142.3797468354, 178.9113924051, 43.0886075949) 100%);
}
.category-card .category-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  background: linear-gradient(135deg, #00645C 0%, rgb(0, 49, 45.08) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease;
}
.category-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #1A2B4F;
}
.category-card p {
  margin-bottom: 24px;
  line-height: 1.7;
}
.category-card .category-link {
  color: #00645C;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.category-card .category-link::after {
  content: "→";
  transition: transform 0.3s ease;
}
.category-card .category-link:hover::after {
  transform: translateX(5px);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.service-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border-color: #AAD140;
}
.service-card:hover .service-icon {
  background: #AAD140;
  color: #ffffff;
  transform: scale(1.1);
}
.service-card .service-icon {
  width: 70px;
  height: 70px;
  background: #00645C;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #ffffff;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}
.service-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
}
.service-card p {
  margin-bottom: 20px;
  line-height: 1.7;
}
.service-card .service-link {
  color: #00645C;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.service-card .service-link i {
  transition: transform 0.3s ease;
}
.service-card .service-link:hover i {
  transform: translateX(5px);
}

.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.testimonial-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 30px;
  font-size: 80px;
  font-family: Georgia, serif;
  color: rgba(170, 209, 64, 0.2);
  line-height: 1;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.testimonial-card .testimonial-rating {
  display: flex;
  gap: 5px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.testimonial-card .testimonial-rating i {
  color: #AAD140;
  font-size: 18px;
}
.testimonial-card .testimonial-content {
  margin-bottom: 30px;
  font-style: italic;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}
.testimonial-card .testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 20px;
  border-top: 2px solid #F7F7F7;
}
.testimonial-card .testimonial-author .author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.testimonial-card .testimonial-author .author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-card .testimonial-author .author-info h4 {
  font-size: 18px;
  margin-bottom: 4px;
  color: #1A2B4F;
}
.testimonial-card .testimonial-author .author-info p {
  font-size: 14px;
  color: #666666;
  margin: 0;
}

.cta-section {
  background: linear-gradient(135deg, #00645C 0%, rgb(0, 49, 45.08) 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(170, 209, 64, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-section .cta-content {
  position: relative;
  z-index: 2;
}
.cta-section .cta-content h2 {
  font-size: clamp(28px, 4vw, 42px);
  color: #ffffff;
  margin-bottom: 20px;
}
.cta-section .cta-content p {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .categories-grid,
  .services-grid,
  .testimonials-slider {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.blog-posts-section {
  background: #F7F7F7;
}
.blog-posts-section .blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .blog-posts-section .blog-posts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}
@media (max-width: 576px) {
  .blog-posts-section .blog-posts-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}
.blog-posts-section .blog-post-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.blog-posts-section .blog-post-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}
.blog-posts-section .blog-post-card.featured-post {
  grid-column: 1/-1;
  flex-direction: row;
}
@media (max-width: 576px) {
  .blog-posts-section .blog-post-card.featured-post {
    flex-direction: column;
  }
}
.blog-posts-section .blog-post-card.featured-post .blog-post-image {
  width: 50%;
  height: 450px;
}
@media (max-width: 576px) {
  .blog-posts-section .blog-post-card.featured-post .blog-post-image {
    width: 100%;
    height: 280px;
  }
}
.blog-posts-section .blog-post-card.featured-post .blog-post-content {
  width: 50%;
  padding: 50px;
}
@media (max-width: 576px) {
  .blog-posts-section .blog-post-card.featured-post .blog-post-content {
    width: 100%;
    padding: 30px;
  }
}
.blog-posts-section .blog-post-card.featured-post .blog-post-content .blog-post-title a {
  font-size: 36px;
}
@media (max-width: 576px) {
  .blog-posts-section .blog-post-card.featured-post .blog-post-content .blog-post-title a {
    font-size: 26px;
  }
}
.blog-posts-section .blog-post-card.featured-post .blog-post-content .blog-post-excerpt {
  font-size: 17px;
}
.blog-posts-section .blog-post-card .blog-post-image {
  position: relative;
  overflow: hidden;
  height: 260px;
}
.blog-posts-section .blog-post-card .blog-post-image a {
  display: block;
  height: 100%;
}
.blog-posts-section .blog-post-card .blog-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.blog-posts-section .blog-post-card .blog-post-image:hover img {
  transform: scale(1.08);
}
.blog-posts-section .blog-post-card .blog-post-image .post-category-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 8px 18px;
  background: #AAD140;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 20px;
  z-index: 2;
}
.blog-posts-section .blog-post-card .blog-post-content {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-posts-section .blog-post-card .blog-post-content .post-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}
.blog-posts-section .blog-post-card .blog-post-content .post-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: #666666;
}
.blog-posts-section .blog-post-card .blog-post-content .post-meta span i {
  font-size: 13px;
  color: #00645C;
}
.blog-posts-section .blog-post-card .blog-post-content .blog-post-title {
  margin: 0 0 16px 0;
}
.blog-posts-section .blog-post-card .blog-post-content .blog-post-title a {
  font-size: 22px;
  font-weight: 700;
  color: #1A2B4F;
  text-decoration: none;
  line-height: 1.3;
  display: block;
  transition: color 0.3s ease;
}
.blog-posts-section .blog-post-card .blog-post-content .blog-post-title a:hover {
  color: #00645C;
}
.blog-posts-section .blog-post-card .blog-post-content .blog-post-excerpt {
  font-size: 15px;
  line-height: 1.7;
  color: #333333;
  margin-bottom: 24px;
  flex: 1;
}
.blog-posts-section .blog-post-card .blog-post-content .blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: #00645C;
  text-decoration: none;
  transition: all 0.3s ease;
  align-self: flex-start;
}
.blog-posts-section .blog-post-card .blog-post-content .blog-read-more i {
  font-size: 12px;
  transition: transform 0.3s ease;
}
.blog-posts-section .blog-post-card .blog-post-content .blog-read-more:hover {
  color: #AAD140;
  gap: 12px;
}
.blog-posts-section .blog-post-card .blog-post-content .blog-read-more:hover i {
  transform: translateX(4px);
}
.blog-posts-section .no-posts-found {
  text-align: center;
  padding: 100px 20px;
  background: #ffffff;
  border-radius: 20px;
}
.blog-posts-section .no-posts-found .no-posts-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 30px;
  background: linear-gradient(135deg, rgba(0, 100, 92, 0.1), rgba(170, 209, 64, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-posts-section .no-posts-found .no-posts-icon i {
  font-size: 56px;
  color: #00645C;
}
.blog-posts-section .no-posts-found h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1A2B4F;
  margin-bottom: 16px;
}
.blog-posts-section .no-posts-found p {
  font-size: 18px;
  color: #666666;
  margin-bottom: 30px;
}

.blog-pagination {
  margin-top: 60px;
}
.blog-pagination ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.blog-pagination ul li a,
.blog-pagination ul li span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 45px;
  height: 45px;
  padding: 0 16px;
  background: #ffffff;
  color: #333333;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.blog-pagination ul li a:hover,
.blog-pagination ul li span:hover {
  background: #00645C;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 100, 92, 0.3);
}
.blog-pagination ul li span.current {
  background: #00645C;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 100, 92, 0.3);
}
.blog-pagination ul li span.dots {
  background: transparent;
  box-shadow: none;
  cursor: default;
}
.blog-pagination ul li span.dots:hover {
  background: transparent;
  color: #333333;
  transform: none;
}
.blog-pagination ul li.prev a i, .blog-pagination ul li.next a i {
  font-size: 14px;
}
@media (max-width: 576px) {
  .blog-pagination ul {
    gap: 6px;
  }
  .blog-pagination ul li a,
  .blog-pagination ul li span {
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    font-size: 14px;
  }
}

.blog-posts-section {
  background: #F7F7F7;
}
.blog-posts-section .blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .blog-posts-section .blog-posts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media (max-width: 576px) {
  .blog-posts-section .blog-posts-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}
.blog-posts-section .blog-post-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}
.blog-posts-section .blog-post-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.blog-posts-section .blog-post-card:hover .blog-post-image img {
  transform: scale(1.1);
}
.blog-posts-section .blog-post-card:hover .blog-post-image .post-overlay {
  opacity: 1;
}
.blog-posts-section .blog-post-card:hover .blog-post-title {
  color: #00645C;
}
.blog-posts-section .blog-post-card .post-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.blog-posts-section .blog-post-card .blog-post-image {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(0, 100, 92, 0.1), rgba(170, 209, 64, 0.1));
}
.blog-posts-section .blog-post-card .blog-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.blog-posts-section .blog-post-card .blog-post-image.no-image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-posts-section .blog-post-card .blog-post-image.no-image .placeholder-icon {
  font-size: 64px;
  color: rgba(0, 100, 92, 0.3);
}
.blog-posts-section .blog-post-card .blog-post-image .post-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(26, 43, 79, 0.8) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.blog-posts-section .blog-post-card .blog-post-image .post-overlay .read-post-btn {
  width: 60px;
  height: 60px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00645C;
  font-size: 20px;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.blog-posts-section .blog-post-card .blog-post-image:hover .post-overlay .read-post-btn {
  transform: translateY(0);
}
.blog-posts-section .blog-post-card .blog-post-content {
  padding: 28px;
}
.blog-posts-section .blog-post-card .blog-post-content .post-category {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(170, 209, 64, 0.1);
  color: #00645C;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.blog-posts-section .blog-post-card .blog-post-content .blog-post-title {
  font-size: 20px;
  font-weight: 700;
  color: #1A2B4F;
  line-height: 1.4;
  margin: 0 0 14px 0;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-posts-section .blog-post-card .blog-post-content .blog-post-excerpt {
  font-size: 15px;
  line-height: 1.7;
  color: #666666;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-posts-section .blog-post-card .blog-post-content .post-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(26, 43, 79, 0.08);
}
.blog-posts-section .blog-post-card .blog-post-content .post-meta .post-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.blog-posts-section .blog-post-card .blog-post-content .post-meta .post-author img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}
.blog-posts-section .blog-post-card .blog-post-content .post-meta .post-author span {
  font-size: 14px;
  font-weight: 600;
  color: #333333;
}
.blog-posts-section .blog-post-card .blog-post-content .post-meta .post-date {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: #666666;
}
.blog-posts-section .blog-post-card .blog-post-content .post-meta .post-date i {
  font-size: 12px;
  color: #00645C;
}
.blog-posts-section .no-posts-found {
  text-align: center;
  padding: 100px 20px;
  background: #ffffff;
  border-radius: 20px;
}
.blog-posts-section .no-posts-found .no-posts-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 30px;
  background: linear-gradient(135deg, rgba(0, 100, 92, 0.1), rgba(170, 209, 64, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-posts-section .no-posts-found .no-posts-icon i {
  font-size: 56px;
  color: #00645C;
}
.blog-posts-section .no-posts-found h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1A2B4F;
  margin-bottom: 16px;
}
.blog-posts-section .no-posts-found p {
  font-size: 18px;
  color: #666666;
  margin-bottom: 30px;
}

.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 60px;
  flex-wrap: wrap;
}
.blog-pagination a,
.blog-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  padding: 0 18px;
  background: #ffffff;
  color: #333333;
  font-size: 15px;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}
.blog-pagination a:hover,
.blog-pagination span:hover {
  background: #00645C;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 100, 92, 0.3);
}
.blog-pagination a i,
.blog-pagination span i {
  font-size: 12px;
}
.blog-pagination .current {
  background: #00645C;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(0, 100, 92, 0.3);
}
.blog-pagination .dots {
  background: transparent;
  box-shadow: none;
  cursor: default;
}
.blog-pagination .dots:hover {
  background: transparent;
  color: #333333;
  transform: none;
  box-shadow: none;
}
@media (max-width: 576px) {
  .blog-pagination {
    gap: 8px;
  }
  .blog-pagination a,
  .blog-pagination span {
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    font-size: 14px;
  }
}

.blog-section {
  background: #F7F7F7;
}
.blog-section .blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .blog-section .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}
@media (max-width: 576px) {
  .blog-section .blog-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}
.blog-section .blog-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.blog-section .blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
.blog-section .blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}
.blog-section .blog-card:hover .blog-card-title {
  color: #00645C;
}
.blog-section .blog-card:hover .read-more-arrow {
  transform: translateX(5px);
}
.blog-section .blog-card .blog-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.blog-section .blog-card .blog-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(0, 100, 92, 0.05), rgba(170, 209, 64, 0.05));
}
.blog-section .blog-card .blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.blog-section .blog-card .blog-card-image .no-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-section .blog-card .blog-card-image .no-image-placeholder i {
  font-size: 48px;
  color: rgba(0, 100, 92, 0.2);
}
.blog-section .blog-card .blog-card-body {
  padding: 24px;
}
.blog-section .blog-card .blog-card-body .blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.blog-section .blog-card .blog-card-body .blog-card-meta .blog-date {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: #666666;
}
.blog-section .blog-card .blog-card-body .blog-card-meta .blog-date i {
  font-size: 12px;
  color: #00645C;
}
.blog-section .blog-card .blog-card-body .blog-card-meta .blog-category {
  padding: 4px 12px;
  background: rgba(170, 209, 64, 0.1);
  color: #00645C;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 12px;
}
.blog-section .blog-card .blog-card-body .blog-card-title {
  font-size: 19px;
  font-weight: 700;
  color: #1A2B4F;
  line-height: 1.4;
  margin: 0 0 12px 0;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 53px;
}
.blog-section .blog-card .blog-card-body .blog-card-excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: #666666;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 67px;
}
.blog-section .blog-card .blog-card-body .blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(26, 43, 79, 0.08);
}
.blog-section .blog-card .blog-card-body .blog-card-footer .blog-author {
  display: flex;
  align-items: center;
  gap: 8px;
}
.blog-section .blog-card .blog-card-body .blog-card-footer .blog-author img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}
.blog-section .blog-card .blog-card-body .blog-card-footer .blog-author span {
  font-size: 13px;
  font-weight: 600;
  color: #333333;
}
.blog-section .blog-card .blog-card-body .blog-card-footer .read-more-arrow {
  width: 32px;
  height: 32px;
  background: rgba(0, 100, 92, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00645C;
  font-size: 12px;
  transition: all 0.3s ease;
}
.blog-section .no-posts {
  text-align: center;
  padding: 80px 20px;
  background: #ffffff;
  border-radius: 16px;
}
.blog-section .no-posts i {
  font-size: 64px;
  color: rgba(0, 100, 92, 0.3);
  margin-bottom: 24px;
}
.blog-section .no-posts h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1A2B4F;
  margin-bottom: 12px;
}
.blog-section .no-posts p {
  font-size: 16px;
  color: #666666;
}

.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 60px;
  flex-wrap: wrap;
}
.blog-pagination a,
.blog-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  background: #ffffff;
  color: #333333;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.blog-pagination a:hover,
.blog-pagination span:hover {
  background: #00645C;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 100, 92, 0.25);
}
.blog-pagination a i,
.blog-pagination span i {
  font-size: 11px;
}
.blog-pagination .current {
  background: #00645C;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 100, 92, 0.25);
}
.blog-pagination .dots {
  background: transparent;
  box-shadow: none;
  cursor: default;
}
.blog-pagination .dots:hover {
  background: transparent;
  color: #333333;
  transform: none;
  box-shadow: none;
}

.page-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}
.page-hero .page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.page-hero .container {
  position: relative;
  z-index: 2;
}
.page-hero .page-hero-content {
  text-align: center;
  color: #ffffff;
}
.page-hero .page-hero-content .page-title {
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 700;
  margin-bottom: 16px;
  color: #ffffff;
}
.page-hero .page-hero-content .page-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}
.content-wrapper .lead-text {
  font-size: 20px;
  font-weight: 600;
  color: #1A2B4F;
  margin-bottom: 30px;
  line-height: 1.6;
}
.content-wrapper p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #333333;
}
.content-wrapper .highlight-text {
  font-size: 18px;
  font-weight: 600;
  color: #00645C;
  padding: 20px;
  background: rgba(170, 209, 64, 0.1);
  border-left: 4px solid #AAD140;
  border-radius: 8px;
  margin-top: 30px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.feature-card {
  text-align: center;
  padding: 40px 30px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
.feature-card .feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #00645C, #AAD140);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #ffffff;
  margin: 0 auto 24px;
}
.feature-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1A2B4F;
  margin-bottom: 16px;
}
.feature-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #666666;
  margin: 0;
}

.testimonials-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.testimonial-full-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}
.testimonial-full-card .testimonial-quote {
  font-size: 48px;
  color: #AAD140;
  margin-bottom: 20px;
}
.testimonial-full-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 30px;
}
.testimonial-full-card .testimonial-author-info {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testimonial-full-card .testimonial-author-info img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-full-card .testimonial-author-info h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1A2B4F;
  margin-bottom: 4px;
}
.testimonial-full-card .testimonial-author-info p {
  font-size: 14px;
  color: #666666;
  margin: 0;
}

.service-detail-section .service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 768px) {
  .service-detail-section .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.service-detail-section .service-detail-grid.reverse .service-detail-content {
  order: 2;
}
@media (max-width: 768px) {
  .service-detail-section .service-detail-grid.reverse .service-detail-content {
    order: 1;
  }
}
.service-detail-section .service-detail-grid.reverse .service-detail-image {
  order: 1;
}
@media (max-width: 768px) {
  .service-detail-section .service-detail-grid.reverse .service-detail-image {
    order: 2;
  }
}
.service-detail-section .service-category-badge {
  display: inline-block;
  padding: 8px 20px;
  background: #AAD140;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.service-detail-section .service-detail-content h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1A2B4F;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .service-detail-section .service-detail-content h2 {
    font-size: 28px;
  }
}
.service-detail-section .service-detail-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 20px;
}
.service-detail-section .service-detail-content .btn {
  margin-top: 20px;
}
.service-detail-section .service-detail-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.contact-section .contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
}
@media (max-width: 768px) {
  .contact-section .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

.contact-form-wrapper h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1A2B4F;
  margin-bottom: 16px;
}
.contact-form-wrapper p {
  font-size: 16px;
  color: #666666;
  margin-bottom: 40px;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 576px) {
  .contact-form .form-row {
    grid-template-columns: 1fr;
  }
}
.contact-form .form-group {
  margin-bottom: 24px;
}
.contact-form .form-group label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #1A2B4F;
  margin-bottom: 8px;
}
.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(26, 43, 79, 0.1);
  border-radius: 8px;
  font-size: 15px;
  color: #333333;
  transition: border-color 0.3s ease;
}
.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
  outline: none;
  border-color: #00645C;
}
.contact-form .form-group textarea {
  resize: vertical;
}

.contact-info-wrapper h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1A2B4F;
  margin-bottom: 16px;
}
.contact-info-wrapper > p {
  font-size: 16px;
  color: #666666;
  margin-bottom: 40px;
}

.contact-info-list .contact-info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}
.contact-info-list .contact-info-item:last-child {
  margin-bottom: 0;
}
.contact-info-list .contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #00645C, #AAD140);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #ffffff;
  flex-shrink: 0;
}
.contact-info-list .contact-details {
  flex: 1;
}
.contact-info-list .contact-details h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1A2B4F;
  margin-bottom: 8px;
}
.contact-info-list .contact-details p {
  font-size: 15px;
  line-height: 1.6;
  color: #666666;
  margin-bottom: 8px;
}
.contact-info-list .contact-details .contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #00645C;
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact-info-list .contact-details .contact-link:hover {
  color: #AAD140;
}
.contact-info-list .contact-details .contact-link i {
  font-size: 12px;
}

.contact-social {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 2px solid rgba(26, 43, 79, 0.1);
}
.contact-social h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1A2B4F;
  margin-bottom: 16px;
}
.contact-social .social-links {
  display: flex;
  gap: 12px;
}
.contact-social .social-links a {
  width: 45px;
  height: 45px;
  background: #00645C;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 20px;
  transition: all 0.3s ease;
}
.contact-social .social-links a:hover {
  background: #AAD140;
  transform: translateY(-3px);
}

.map-section iframe {
  display: block;
  width: 100%;
}

.cta-section {
  background: linear-gradient(135deg, #00645C, #AAD140);
}
.cta-section .cta-content h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}
.cta-section .cta-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
}
.cta-section .cta-content .btn {
  background: #ffffff;
  color: #00645C;
}
.cta-section .cta-content .btn:hover {
  background: #1A2B4F;
  color: #ffffff;
}

.post-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  padding: 120px 0 80px;
}
.post-hero .post-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
  z-index: 1;
}
.post-hero .container {
  position: relative;
  z-index: 2;
}
.post-hero .post-hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  color: #ffffff;
}
.post-hero .post-hero-content .post-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 24px 0;
  color: #ffffff;
}
.post-hero .post-hero-content .post-meta-header {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}
.post-hero .post-hero-content .post-meta-header span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}
.post-hero .post-hero-content .post-meta-header span i {
  font-size: 14px;
  color: #AAD140;
}

.single-post-article .post-content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}
.single-post-article .post-content {
  font-size: 18px;
  line-height: 1.8;
  color: #333333;
}
.single-post-article .post-content p {
  margin-bottom: 24px;
}
.single-post-article .post-content h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1A2B4F;
  margin-top: 48px;
  margin-bottom: 24px;
}
.single-post-article .post-content h3 {
  font-size: 26px;
  font-weight: 700;
  color: #1A2B4F;
  margin-top: 40px;
  margin-bottom: 20px;
}
.single-post-article .post-content h4 {
  font-size: 22px;
  font-weight: 600;
  color: #1A2B4F;
  margin-top: 32px;
  margin-bottom: 16px;
}
.single-post-article .post-content ul, .single-post-article .post-content ol {
  margin-bottom: 24px;
  padding-left: 30px;
}
.single-post-article .post-content ul li, .single-post-article .post-content ol li {
  margin-bottom: 12px;
  line-height: 1.8;
}
.single-post-article .post-content blockquote {
  margin: 40px 0;
  padding: 30px 40px;
  background: rgba(170, 209, 64, 0.08);
  border-left: 5px solid #AAD140;
  border-radius: 8px;
  font-size: 20px;
  font-style: italic;
  color: #1A2B4F;
}
.single-post-article .post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 32px 0;
}
.single-post-article .post-content a {
  color: #00645C;
  text-decoration: underline;
  transition: color 0.3s ease;
}
.single-post-article .post-content a:hover {
  color: #AAD140;
}
.single-post-article .page-links {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 2px solid rgba(26, 43, 79, 0.1);
  font-weight: 600;
  color: #1A2B4F;
}
.single-post-article .page-links a {
  display: inline-block;
  padding: 8px 16px;
  margin: 0 4px;
  background: #F7F7F7;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.single-post-article .page-links a:hover {
  background: #00645C;
  color: #ffffff;
}
.single-post-article .post-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 50px;
  padding-top: 40px;
  border-top: 2px solid rgba(26, 43, 79, 0.1);
}
.single-post-article .post-tags i {
  font-size: 18px;
  color: #00645C;
}
.single-post-article .post-tags a {
  display: inline-block;
  padding: 8px 18px;
  background: #F7F7F7;
  color: #333333;
  font-size: 14px;
  font-weight: 500;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.single-post-article .post-tags a:hover {
  background: #00645C;
  color: #ffffff;
}
.single-post-article .author-bio {
  display: flex;
  gap: 24px;
  margin-top: 60px;
  padding: 40px;
  background: #F7F7F7;
  border-radius: 16px;
}
@media (max-width: 576px) {
  .single-post-article .author-bio {
    flex-direction: column;
    text-align: center;
  }
}
.single-post-article .author-bio .author-avatar {
  flex-shrink: 0;
}
.single-post-article .author-bio .author-avatar img {
  border-radius: 50%;
  border: 4px solid #ffffff;
}
.single-post-article .author-bio .author-info {
  flex: 1;
}
.single-post-article .author-bio .author-info .author-name {
  font-size: 22px;
  font-weight: 700;
  color: #1A2B4F;
  margin-bottom: 12px;
}
.single-post-article .author-bio .author-info .author-description {
  font-size: 16px;
  line-height: 1.7;
  color: #666666;
  margin: 0;
}
.single-post-article .post-navigation {
  margin-top: 60px;
  padding-top: 50px;
  border-top: 2px solid rgba(26, 43, 79, 0.1);
}
.single-post-article .post-navigation .nav-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media (max-width: 576px) {
  .single-post-article .post-navigation .nav-links {
    grid-template-columns: 1fr;
  }
}
.single-post-article .post-navigation .nav-previous a,
.single-post-article .post-navigation .nav-next a {
  display: block;
  padding: 30px;
  background: #F7F7F7;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.single-post-article .post-navigation .nav-previous a:hover,
.single-post-article .post-navigation .nav-next a:hover {
  background: #00645C;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.single-post-article .post-navigation .nav-previous a:hover .nav-subtitle,
.single-post-article .post-navigation .nav-previous a:hover .nav-title,
.single-post-article .post-navigation .nav-next a:hover .nav-subtitle,
.single-post-article .post-navigation .nav-next a:hover .nav-title {
  color: #ffffff;
}
.single-post-article .post-navigation .nav-previous .nav-subtitle,
.single-post-article .post-navigation .nav-next .nav-subtitle {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #00645C;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}
.single-post-article .post-navigation .nav-previous .nav-title,
.single-post-article .post-navigation .nav-next .nav-title {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #1A2B4F;
  line-height: 1.4;
  transition: color 0.3s ease;
}
.single-post-article .post-navigation .nav-next {
  text-align: right;
}
.single-post-article .post-navigation .nav-next .nav-subtitle {
  justify-content: flex-end;
}
.single-post-article .related-posts {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 2px solid rgba(26, 43, 79, 0.1);
}
.single-post-article .related-posts .related-posts-title {
  font-size: 32px;
  font-weight: 700;
  color: #1A2B4F;
  margin-bottom: 40px;
  text-align: center;
}
.single-post-article .related-posts .related-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.single-post-article .related-posts .related-post-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.single-post-article .related-posts .related-post-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.single-post-article .related-posts .related-post-card .related-post-image {
  overflow: hidden;
}
.single-post-article .related-posts .related-post-card .related-post-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.single-post-article .related-posts .related-post-card .related-post-image:hover img {
  transform: scale(1.1);
}
.single-post-article .related-posts .related-post-card .related-post-content {
  padding: 24px;
}
.single-post-article .related-posts .related-post-card .related-post-content .related-post-date {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #00645C;
  margin-bottom: 12px;
}
.single-post-article .related-posts .related-post-card .related-post-content .related-post-title {
  margin: 0;
}
.single-post-article .related-posts .related-post-card .related-post-content .related-post-title a {
  font-size: 18px;
  font-weight: 700;
  color: #1A2B4F;
  text-decoration: none;
  line-height: 1.4;
  transition: color 0.3s ease;
}
.single-post-article .related-posts .related-post-card .related-post-content .related-post-title a:hover {
  color: #00645C;
}

@media (max-width: 768px) {
  .post-hero {
    min-height: 400px;
    padding: 100px 0 60px;
  }
}
@media (max-width: 576px) {
  .post-hero {
    min-height: 350px;
    padding: 80px 0 50px;
  }
  .post-hero .post-hero-content .post-meta-header {
    gap: 16px;
  }
  .post-hero .post-hero-content .post-meta-header span {
    font-size: 13px;
  }
  .single-post-article .post-content {
    font-size: 16px;
  }
  .single-post-article .post-content h2 {
    font-size: 26px;
    margin-top: 36px;
  }
  .single-post-article .post-content h3 {
    font-size: 22px;
    margin-top: 32px;
  }
  .single-post-article .post-content blockquote {
    padding: 20px 24px;
    font-size: 18px;
  }
  .single-post-article .author-bio {
    padding: 30px 24px;
  }
}

/*# sourceMappingURL=main.css.map */

/* Contact Form Messages */
.contact-message {
  padding: 20px 25px;
  border-radius: 8px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 16px;
  animation: slideDown 0.5s ease-out;
}

.contact-message i {
  font-size: 24px;
  flex-shrink: 0;
}

.contact-message p {
  margin: 0;
  line-height: 1.5;
}

.contact-message.success {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}

.contact-message.success i {
  color: #28a745;
}

.contact-message.error {
  background: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}

.contact-message.error i {
  color: #dc3545;
}

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


/* ============================================
   MOBILE OPTIMIZATION FIXES
   ============================================ */

/* Fix 1: Hide CTA button on mobile to prevent menu wrapping */
@media (max-width: 991px) {
  .header-cta {
    display: none !important;
  }
  
  .header-inner {
    justify-content: space-between;
  }
}

/* Fix 2: Center service card icons on mobile */
@media (max-width: 768px) {
  .service-card,
  .category-card,
  .feature-card {
    text-align: center;
  }
  
  .service-icon,
  .category-icon,
  .category-icon-large,
  .feature-icon {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Fix 3: Center testimonial dots on mobile */
@media (max-width: 768px) {
  .testimonial-dots {
    justify-content: center !important;
  }
  
  .testimonials-section .testimonial-dots {
    justify-content: center !important;
  }
}

/* Fix 4: Center footer content on mobile */
@media (max-width: 768px) {
  .footer-column {
    text-align: center;
  }
  
  .footer-about {
    text-align: center;
  }
  
  .footer-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
  }
  
  .footer-menu,
  .footer-services,
  .footer-contact {
    text-align: center;
  }
  
  .footer-menu li,
  .footer-services li {
    justify-content: center;
  }
  
  .footer-contact li {
    justify-content: center;
    text-align: center;
  }
  
  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Fix 5: Increase brand logo size */
.brand-logo img {
  height: 80px !important;
  max-width: 200px !important;
  width: auto !important;
}

.brands-slider-track {
  gap: 100px !important;
}

/* Additional mobile header fixes */
@media (max-width: 991px) {
  .site-header .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .menu-toggle {
    margin-left: auto;
  }
  
  .site-branding {
    flex: 0 0 auto;
  }
}

/* Ensure hamburger menu doesn't wrap */
@media (max-width: 991px) {
  .header-inner {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: nowrap;
  }
  
  .site-branding {
    flex-shrink: 0;
  }
  
  .menu-toggle {
    flex-shrink: 0;
    margin-left: auto;
  }
}



/* ============================================
   ENHANCED MOBILE FIXES - FINAL
   ============================================ */

/* Fix 1: Prevent hamburger menu wrapping - Force single line */
@media (max-width: 991px) {
  /* CRITICAL: Hide CTA button from header completely on mobile */
  .header-cta {
    display: none !important;
    visibility: hidden !important;
    position: absolute !important;
    left: -9999px !important;
  }
  
  .site-header .header-inner {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 15px !important;
    padding: 0 !important;
  }
  
  .site-branding {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    max-width: calc(100% - 50px) !important;
  }
  
  .site-branding img,
  .site-branding .custom-logo {
    max-height: 40px !important;
    width: auto !important;
    max-width: 100% !important;
  }
  
  .main-navigation {
    flex: 0 0 auto !important;
    margin-left: auto !important;
  }
  
  .menu-toggle {
    flex-shrink: 0 !important;
    margin-left: 0 !important;
    display: flex !important;
    width: 35px !important;
    height: 30px !important;
  }
  
  /* Show menu toggle, hide desktop menu */
  .nav-menu {
    display: none !important;
  }
  
  .nav-menu.active {
    display: flex !important;
    flex-direction: column !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    background: #ffffff !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
    padding: 20px 0 !important;
    z-index: 999 !important;
  }
  
  .nav-menu.active li {
    width: 100% !important;
  }
  
  .nav-menu.active li a {
    padding: 15px 30px !important;
    color: #333333 !important;
    display: block !important;
  }
}

/* Fix 2: Center ALL service card icons on mobile */
@media (max-width: 768px) {
  .service-card,
  .category-card,
  .feature-card,
  .destination-card {
    text-align: center !important;
  }
  
  .service-icon,
  .category-icon,
  .category-icon-large,
  .feature-icon {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  
  /* Also center the service cards grid items */
  .services-grid .service-card,
  .category-cards-grid .category-card,
  .features-grid .feature-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
}

/* Fix 3: Center testimonial dots on ALL mobile screens */
@media (max-width: 768px) {
  .testimonial-dots,
  .testimonials-slider .testimonial-dots,
  .testimonials-section .testimonial-dots {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* Fix 4: Center ALL footer content on mobile */
@media (max-width: 768px) {
  .footer-columns {
    text-align: center !important;
  }
  
  .footer-column {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  
  .footer-about {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  
  .footer-logo {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 20px !important;
  }
  
  .footer-logo img {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  
  .footer-menu,
  .footer-services,
  .footer-contact {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  
  .footer-menu li,
  .footer-services li,
  .footer-contact li {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
  }
  
  .footer-menu li a,
  .footer-services li a {
    justify-content: center !important;
  }
  
  .footer-contact li {
    flex-direction: column !important;
    text-align: center !important;
  }
  
  .footer-contact li i {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  
  .footer-title {
    text-align: center !important;
  }
  
  .footer-title::after {
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
  
  .footer-about p {
    text-align: center !important;
  }
}

/* Extra small screens - even more aggressive fixes */
@media (max-width: 576px) {
  .site-header .header-inner {
    padding: 0 !important;
  }
  
  .site-branding img,
  .site-branding .custom-logo {
    max-height: 35px !important;
  }
  
  .menu-toggle {
    width: 30px !important;
    height: 24px !important;
  }
}

/* Ensure footer social icons are centered */
@media (max-width: 768px) {
  .footer-social {
    justify-content: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  
  .footer-bottom-inner {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }
  
  .copyright {
    text-align: center !important;
  }
}


/* Mobile CTA Button Styling */
@media (max-width: 991px) {
  .mobile-cta {
    width: 100% !important;
    padding: 15px 30px !important;
    margin-top: 10px !important;
    border-top: 1px solid rgba(0,0,0,0.1) !important;
    padding-top: 20px !important;
  }
  
  .mobile-cta .btn {
    width: 100% !important;
    display: block !important;
    text-align: center !important;
  }
}


/* Mobile CTA Button Inside Menu */
@media (max-width: 991px) {
  /* Style the cloned CTA button inside mobile menu */
  .nav-menu .mobile-cta {
    display: block !important;
    width: 100% !important;
    padding: 15px 30px !important;
    margin-top: 15px !important;
    border-top: 1px solid rgba(0,0,0,0.1) !important;
    padding-top: 25px !important;
    visibility: visible !important;
    position: static !important;
    left: auto !important;
  }
  
  .nav-menu .mobile-cta .btn {
    width: 100% !important;
    display: block !important;
    text-align: center !important;
    padding: 16px 36px !important;
  }
  
  /* Ensure mobile CTA shows when menu is active */
  .nav-menu.active .mobile-cta {
    display: block !important;
  }
}


/* CRITICAL FIX: Force logo and hamburger on same line - MAXIMUM PRIORITY */
@media (max-width: 991px) {
  .site-header {
    width: 100% !important;
  }
  
  .site-header .container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  
  .site-header .header-inner {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    gap: 10px !important;
  }
  
  .site-branding {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    max-width: calc(100% - 60px) !important;
    overflow: hidden !important;
  }
  
  .site-branding a,
  .site-branding .custom-logo-link {
    display: block !important;
    max-width: 100% !important;
  }
  
  .site-branding img,
  .site-branding .custom-logo {
    max-height: 35px !important;
    width: auto !important;
    max-width: 100% !important;
    height: auto !important;
  }
  
  .main-navigation {
    flex: 0 0 40px !important;
    width: 40px !important;
    margin-left: auto !important;
  }
  
  .menu-toggle {
    width: 40px !important;
    height: 30px !important;
    flex-shrink: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    padding: 5px !important;
  }
  
  .menu-toggle .bar {
    width: 100% !important;
    height: 3px !important;
    background: #ffffff !important;
  }
}

/* Extra aggressive for very small screens */
@media (max-width: 480px) {
  .site-branding img,
  .site-branding .custom-logo {
    max-height: 30px !important;
  }
  
  .site-header .container {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
}


/* ULTIMATE FIX: Logo and Hamburger Same Line - HIGHEST PRIORITY */
@media screen and (max-width: 991px) {
  body .site-header .container .header-inner {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 8px !important;
    width: 100% !important;
  }
  
  body .site-header .site-branding {
    flex: 1 1 auto !important;
    max-width: calc(100% - 50px) !important;
    min-width: 0 !important;
  }
  
  body .site-header .site-branding img,
  body .site-header .site-branding .custom-logo {
    max-height: 32px !important;
    width: auto !important;
  }
  
  body .site-header .main-navigation {
    flex: 0 0 40px !important;
    flex-grow: 0 !important;
    width: 40px !important;
  }
  
  body .site-header .menu-toggle {
    display: flex !important;
  }
  
  body .site-header .nav-menu:not(.active) {
    display: none !important;
  }
}
