 

@charset "UTF-8";

 @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
 
:root { 
  --background-color: #ffffff;  
  --default-color: #35211f; 
  --heading-color: #200f0d;  
  --accent-color: #f95e4d;  
  --surface-color: #ffffff; 
  --contrast-color: #ffffff;  
}
 
:root {
  --nav-color: #ffffff;   
  --nav-hover-color: #f95e4d;  
  --nav-mobile-background-color: #ffffff;  
  --nav-dropdown-background-color: #ffffff;  
  --nav-dropdown-color: #35211f;  
  --nav-dropdown-hover-color: #f95e4d;  
}
 

.light-background {
  --background-color: #faf9f6;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #031013;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}
 
body {
  color: var(--default-color);
  background-color: var(--background-color);
   font-family: "Poppins", sans-serif;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
 
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgb(255, 255, 255);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: rgba(0, 0, 0, 0.26);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 65px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 26px;
  margin: 0;
  font-weight: 600;
  color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 10px 26px;
  margin: 0;
  border-radius: 4px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 20px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(255, 255, 255, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(255, 255, 255, 0.85);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

.navmenu a, .navmenu a:focus {
    color: #000000;
    padding: 18px 15px;
    font-size: 14px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
}

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
 

.whatsapp_sticky {
  position: fixed; bottom: 30px; left: 30px;
  font-size: 24px;
  background: #10c772;
  color: #fff;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  text-align: center;
  display: flex;
  align-items: center; 
  justify-content: center;
  margin-bottom: 10px; z-index: 9;
}
.whatsapp_sticky:after {
    content: "";
    display: block;
    position: absolute;
    left: -20px;
    right: -20px;
    top: -20px;
    bottom: -20px;
    border-radius: 50%;
    animation: animate 1.6s linear infinite;
    opacity: 0;
    backface-visibility: hidden;
    animation-delay: .6s;    border: 5px solid #10c772;
}

@keyframes animate {
  0% {
    transform: scale(.5);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}

.footer {
  color: var(--default-color);
    background: #182744;
  font-size: 14px;
  padding: 80px 0 0;
  position: relative;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.footer .footer-content .logo {
  line-height: 1;
}

.footer .footer-content .logo span {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.5px;
 
}

.footer .footer-content p {
  font-size: 15px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.footer .newsletter-form {
  margin-top: 30px;
}

.footer .newsletter-form h5 {
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
 
}

.footer .newsletter-form .input-group {
  position: relative;
  display: flex;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 2px 10px color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .newsletter-form input[type=email] {
  flex: 1;
  padding: 12px 20px;
  border: none;
  background-color: var(--surface-color);
  color: var(--default-color);
  font-size: 14px;
}

.footer .newsletter-form input[type=email]:focus {
  outline: none;
  box-shadow: none;
}

.footer .newsletter-form input[type=email]::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.footer .newsletter-form .btn-subscribe {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  transition: 0.3s;
}

.footer .newsletter-form .btn-subscribe:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
}

.footer .newsletter-form .btn-subscribe i {
  font-size: 16px;
}

.footer .newsletter-form .loading,
.footer .newsletter-form .error-message,
.footer .newsletter-form .sent-message {
  font-size: 13px;
  margin-top: 8px;
}

.footer h4 {
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
 
}

.footer h4:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background-color: var(--accent-color);
}

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

.footer .footer-links ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
  transition: 0.3s;
}

.footer .footer-links ul li:hover {
  transform: translateX(5px);
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 14px;
  transition: 0.3s;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-links ul a i {
  margin-right: 8px;
  font-size: 12px; 
}

.footer .footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;    align-items: center;
}
.footer .footer-contact .contact-item a{ color: #fff;
}

.footer .footer-contact .contact-item .contact-icon {
    width: 40px;
    height: 40px;
    background-color: hsl(0deg 0% 100% / 15%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.footer .footer-contact .contact-item .contact-icon i { 
  font-size: 16px;
}

.footer .footer-contact .contact-item .contact-info p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 14px;
  line-height: 1.5;
}

.footer .social-links {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.footer .social-links a {
  width: 42px;
  height: 42px;
  background-color: color-mix(in srgb, var(--default-color), transparent 92%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
  text-decoration: none;
}

.footer .social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.footer .social-links a i {
  font-size: 16px;
}

.footer .footer-bottom {
  margin-top: 50px;
  padding: 25px 0;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.footer .footer-bottom .copyright p {
  margin: 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

@media (max-width: 991px) {
  .footer .footer-bottom .copyright p {
    text-align: center;
    margin-bottom: 15px;
  }
}

.footer .footer-bottom .footer-bottom-links {
  text-align: right;
  margin-bottom: 8px;
}

@media (max-width: 991px) {
  .footer .footer-bottom .footer-bottom-links {
    text-align: center;
    margin-bottom: 10px;
  }
}

.footer .footer-bottom .footer-bottom-links a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 13px;
  margin-left: 20px;
  text-decoration: none;
}

.footer .footer-bottom .footer-bottom-links a:first-child {
  margin-left: 0;
}

.footer .footer-bottom .footer-bottom-links a:hover {
  color: var(--accent-color);
}

@media (max-width: 991px) {
  .footer .footer-bottom .footer-bottom-links a {
    margin: 0 10px;
  }
}

.footer .footer-bottom .credits {
  text-align: right;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

@media (max-width: 991px) {
  .footer .footer-bottom .credits {
    text-align: center;
  }
}

.footer .footer-bottom .credits a {
  color: var(--accent-color);
  text-decoration: none;
}

.footer .footer-bottom .credits a:hover {
  text-decoration: underline;
}

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

  .footer .footer-content {
    text-align: center;
    margin-bottom: 40px;
  }

  .footer .footer-links,
  .footer .footer-contact {
    margin-bottom: 40px;
  }
}

input[type=text],
input[type=email],
textarea {
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 14px;
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

input[type=text]:focus,
input[type=email]:focus,
textarea:focus {
  border-color: var(--accent-color);
}

input[type=text]::placeholder,
input[type=email]::placeholder,
textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}
 
/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    color: var(--default-color);
    background-color: var(--background-color);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 150px 0 140px 0;
    margin-top: 100px;
    text-align: center;
    position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 70%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

 
 

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 40px;
  font-weight: 600;
  padding: 0;
  line-height: 1px;
  margin: 0; 
 
  position: relative;
}
 

.section-title div {
  color: var(--heading-color);
  margin: 0;
  font-size: 24px;
  font-weight: 700;
 
}
 /*--------------------------------------------------------------
Hero
--------------------------------------------------------------*/
.carousel-inner img{ height:95vh; object-fit: cover;}
.carousel-inner h3{  font-size: 50px; color: #fff;}
.btn1{
    color: var(--contrast-color);
    background: var(--accent-color);
    font-size: 14px;
    padding: 8px 26px;
    margin: 0;
    border-radius: 4px;
    transition: 0.3s;
}
.carousel-caption{    bottom: 4.25rem;   }
.carousel-caption h3, .carousel-caption p{    bottom: 2.25rem;    text-shadow: 1px 1px 5px #000;} 
/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us .content-grid {
  margin-bottom: 5rem;
}

@media (max-width: 768px) {
  .why-us .content-grid {
    margin-bottom: 3rem;
  }
}
 

.why-us .about-block .about-header h2 {
  font-size: 2.5rem;
  font-weight: 700; 
  line-height: 1.3;
}

.why-us .about-block .about-content p {
 
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.why-us .about-block .feature-list {
  margin-top: 2rem;
}

 
 

@media (max-width: 768px) {
  .why-us .about-block {
    padding: 2rem;
    margin-bottom: 2rem;
  }

  .why-us .about-block .about-header h2 {
    font-size: 1.6rem;
  }
}

 

.why-us .image-showcase {
  position: relative;
  height: 100%;
}

.why-us .image-showcase .main-image {
  position: relative;
  height: 100%;
  min-height: 400px;
}

.why-us .image-showcase .main-image img {
  height: 100%;
  object-fit: cover;
}
 

.why-us .why-choose-wrapper {
  margin-top: 6rem;
}

.why-us .why-choose-wrapper .section-header {
  margin-bottom: 4rem;
}

.why-us .why-choose-wrapper .section-header h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 1rem 0 1.5rem;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .why-us .why-choose-wrapper .section-header h3 {
    font-size: 2rem;
  }
}
 

@media (max-width: 768px) {
  .why-us .why-choose-wrapper {
    margin-top: 4rem;
  }

  .why-us .why-choose-wrapper .section-header {
    margin-bottom: 2.5rem;
  }
}

.why-us .feature-box {
  text-align: center;
  padding: 2rem;
  border-radius: 16px;
  background: var(--surface-color);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  height: 100%;
}

.why-us .feature-box:hover {
  border-color: var(--accent-color);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.why-us .feature-box:hover .feature-icon-wrapper {
  transform: scale(1.1);
}

.why-us .feature-box:hover .feature-icon-wrapper .feature-icon {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.why-us .feature-box .feature-icon-wrapper {
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.why-us .feature-box .feature-icon-wrapper .feature-icon {
  width: 70px;
  height: 70px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.why-us .feature-box h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.why-us .feature-box p {
  font-size: 1rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin: 0;
}

@media (max-width: 768px) {
  .why-us .feature-box {
    padding: 1.5rem;
  }

  .why-us .feature-box .feature-icon-wrapper .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.3rem;
  }

  .why-us .feature-box h4 {
    font-size: 1.2rem;
  }
}

/*--------------------------------------------------------------
# Featured Destinations Section
--------------------------------------------------------------*/
.featured-destinations .destination-card {
  background: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.featured-destinations .destination-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.featured-destinations .destination-card:hover .image-wrapper img {
  transform: scale(1.05);
}

 
.featured-destinations .image-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

.featured-destinations .image-wrapper .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.3), transparent 50%);
}

.featured-destinations .image-wrapper .badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.featured-destinations .image-wrapper .badge.featured {
  background: #ff6b35;
}

.featured-destinations .image-wrapper .badge.new {
  background: #28a745;
}

.featured-destinations .content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  height: calc(100% - 220px);
}

.featured-destinations .content h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.featured-destinations .content p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--default-color);
  margin-bottom: 15px;
  flex-grow: 1;
}

.featured-destinations .features {
  margin-bottom: 20px;
}
 
 
.featured-destinations .card-footer .explore-btn {
  background: transparent;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  color: var(--accent-color);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

.featured-destinations .card-footer .explore-btn i {
  font-size: 10px;
  transition: transform 0.3s ease;
}

.featured-destinations .destinations-cta {
  margin-top: 60px;
  padding: 40px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--accent-color), transparent 90%) 100%);
  border-radius: 16px;
  text-align: center;
}

.featured-destinations .destinations-cta h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.featured-destinations .destinations-cta p {
  font-size: 16px;
  color: var(--default-color);
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.featured-destinations .destinations-cta .cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.featured-destinations .destinations-cta .btn {
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid;
}

.featured-destinations .destinations-cta .btn.btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.featured-destinations .destinations-cta .btn.btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  border-color: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
}

.featured-destinations .destinations-cta .btn.btn-outline {
  background: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.featured-destinations .destinations-cta .btn.btn-outline:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .featured-destinations .destination-card .image-wrapper {
    height: 200px;
  }

  .featured-destinations .destination-card .content {
    height: calc(100% - 200px);
    padding: 16px;
  }

  .featured-destinations .destination-card .content h4 {
    font-size: 16px;
  }

  .featured-destinations .destination-card .content p {
    font-size: 13px;
  }

  .featured-destinations .destination-card .card-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .featured-destinations .destination-card .card-footer .explore-btn {
    text-align: center;
    justify-content: center;
  }

  .featured-destinations .destinations-cta {
    padding: 30px 20px;
    margin-top: 40px;
  }

  .featured-destinations .destinations-cta h3 {
    font-size: 24px;
  }

  .featured-destinations .destinations-cta p {
    font-size: 14px;
  }

  .featured-destinations .destinations-cta .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .featured-destinations .destinations-cta .cta-buttons .btn {
    width: 100%;
    max-width: 250px;
  }
}

@media (max-width: 576px) {
  .featured-destinations .features .feature-tag {
    font-size: 10px;
    padding: 2px 6px;
    margin-right: 4px;
  }
}

/*--------------------------------------------------------------
# Featured Tours Section
--------------------------------------------------------------*/
.featured-tours .destination-card {
  border-radius: 16px;
  overflow: hidden;
  height: 400px;
  position: relative;
  transition: all 0.4s ease;
}

.featured-tours .destination-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 35px color-mix(in srgb, var(--default-color), transparent 75%);
}

.featured-tours .destination-card .destination-overlay {
  position: relative;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.featured-tours .destination-card .destination-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.featured-tours .destination-card .destination-overlay .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.featured-tours .destination-card .destination-overlay .badge-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.featured-tours .destination-card .destination-overlay .badge-container .featured-badge {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 6px 14px;
  border-radius: 25px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  box-shadow: 0 4px 12px color-mix(in srgb, var(--accent-color), transparent 60%);
}

 
 

.featured-tours .destination-card .destination-overlay .badge-container .price-tag {
  background-color: color-mix(in srgb, var(--contrast-color), transparent 15%);
  color: var(--heading-color);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 800;
  backdrop-filter: blur(10px);
  border: 1px solid color-mix(in srgb, var(--contrast-color), transparent 70%);
}

.featured-tours .destination-card .destination-overlay .card-details {
  color: var(--contrast-color); text-align: center; margin: auto;
}

.featured-tours .destination-card .destination-overlay .card-details h5 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--contrast-color);
  line-height: 1.3;
}
 
.featured-tours .destination-card .destination-overlay .card-details .action-row .explore-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.featured-tours .destination-card .destination-overlay .card-details .action-row .explore-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 20%);
  transform: translateY(-2px);
  color: var(--contrast-color);
  box-shadow: 0 6px 15px color-mix(in srgb, var(--accent-color), transparent 50%);
}

.featured-tours .destination-card .destination-overlay .card-details .action-row .rating-stars {
  display: flex;
  align-items: center;
  gap: 2px;
}

.featured-tours .destination-card .destination-overlay .card-details .action-row .rating-stars i {
  color: #ffd700;
  font-size: 12px;
}

.featured-tours .destination-card .destination-overlay .card-details .action-row .rating-stars small {
  margin-left: 6px;
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  font-weight: 600;
  font-size: 12px;
}

.featured-tours .destination-card:hover .destination-overlay img {
  transform: scale(1.1);
}

.featured-tours .destination-card:hover .destination-overlay .card-overlay {
  opacity: 1;
}
 

@media (max-width: 1200px) {
  .featured-tours .destination-card {
    height: 380px;
  }

  .featured-tours .destination-card .destination-overlay .card-details h5 {
    font-size: 20px;
  }

  .featured-tours .destination-card .destination-overlay .card-details .meta-info {
    flex-direction: column;
    gap: 8px;
  }

  .featured-tours .destination-card .destination-overlay .card-details .action-row {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }

  .featured-tours .destination-card .destination-overlay .card-details .action-row .explore-btn {
    text-align: center;
  }

  .featured-tours .destination-card .destination-overlay .card-details .action-row .rating-stars {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .featured-tours .destination-card {
    height: 350px;
  }

  .featured-tours .destination-card .destination-overlay .card-overlay {
    opacity: 1;
    background: linear-gradient(180deg, color-mix(in srgb, var(--default-color), transparent 60%) 0%, color-mix(in srgb, var(--default-color), transparent 20%) 100%);
  }

  .featured-tours .destination-card .destination-overlay .card-details h5 {
    font-size: 18px;
  }

  .featured-tours .destination-card .destination-overlay .card-details p {
    font-size: 13px;
    margin-bottom: 15px;
  }
}

@media (max-width: 576px) {
  .featured-tours .destination-card {
    height: 320px;
  }

  .featured-tours .destination-card .destination-overlay .badge-container {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }

  .featured-tours .destination-card .destination-overlay .badge-container .featured-badge {
    font-size: 10px;
    padding: 5px 10px;
  }

  .featured-tours .destination-card .destination-overlay .badge-container .price-tag {
    font-size: 14px;
    padding: 6px 12px;
  }

  .featured-tours .destination-card .destination-overlay .card-details .meta-info {
    gap: 6px;
  }

  .featured-tours .destination-card .destination-overlay .card-details .action-row {
    gap: 10px;
  }

  .featured-tours .destination-card .destination-overlay .card-details .action-row .explore-btn {
    padding: 8px 16px;
    font-size: 12px;
  }
}

/*--------------------------------------------------------------
# Testimonials Home Section
--------------------------------------------------------------*/
.testimonials-home .testimonials-carousel,
.testimonials-home .testimonials-slider {
  overflow: hidden;
}

.testimonials-home .testimonial-item .testimonial-content {
  border-left: 3px solid var(--accent-color);
  padding-left: 30px;
}

.testimonials-home .testimonial-item .testimonial-img {
  border-radius: 50%;
  border: 4px solid var(--background-color);
  margin: 0 auto;
}

.testimonials-home .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials-home .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0 0 10px 0;
}

.testimonials-home .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials-home .testimonial-item .quote-icon-left,
.testimonials-home .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.testimonials-home .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials-home .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials-home .testimonial-item p {
  font-style: italic;
}

.testimonials-home .swiper-wrapper {
  height: auto;
}

.testimonials-home .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

.testimonials-home .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.testimonials-home .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action .stats-section {
    background-color: #f95e4d;
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem 2rem;
    margin-top: 3rem;
    border: 1px solid color-mix(in srgb, var(--contrast-color), transparent 80%);
}
.call-to-action .stat-item .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--contrast-color);
    margin-bottom: 0.5rem;
}
.call-to-action .stat-item .stat-label {
    display: block;
    font-size: 1rem;
    color: color-mix(in srgb, var(--contrast-color), transparent 25%);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.call-to-action .stat-item {
    padding: 1rem 0;
}
.footer_logo{height: 75px;
    margin-bottom: 30px;}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h2 {
  font-weight: 300;
  font-size: 2.5rem;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .about .content h2 {
    font-size: 2rem;
  }
}

.about .content .lead {
  font-size: 1.125rem;
  font-weight: 300;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
}

.about .content p {
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.about .stat-item {
  padding: 1.5rem 0;
}

.about .stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.about .stat-item .stat-label {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.about .btn-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0;
  background: none;
  border: none;
  color: var(--accent-color);
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s ease;
}

.about .btn-learn-more span {
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.3s ease;
}

.about .btn-learn-more i {
  font-size: 1.125rem;
  transition: transform 0.3s ease;
}

.about .btn-learn-more:hover {
  color: var(--accent-color);
}

.about .btn-learn-more:hover span {
  border-bottom-color: var(--accent-color);
}

.about .btn-learn-more:hover i {
  transform: translateX(4px);
}

.about .image-stack {
  position: relative;
}

.about .image-stack .image-main {
  position: relative;
  z-index: 1;
}

.about .image-stack .image-main img {
  border-radius: 8px;
  box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 90%);
}

.about .image-stack .image-overlay {
  position: absolute;
  bottom: -40px;
  right: -40px;
  z-index: 2;
  max-width: 200px;
}

@media (max-width: 768px) {
  .about .image-stack .image-overlay {
    bottom: -20px;
    right: -20px;
    max-width: 150px;
  }
}

.about .image-stack .image-overlay img {
  border-radius: 8px;
  border: 4px solid var(--background-color);
  box-shadow: 0 15px 30px color-mix(in srgb, var(--default-color), transparent 85%);
}

.about .feature-item {
  padding: 2.5rem 1.5rem;
  transition: transform 0.3s ease;
}

.about .feature-item:hover {
  transform: translateY(-5px);
}

.about .feature-item .feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.about .feature-item .feature-icon i {
  font-size: 2rem;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.about .feature-item h5 {
  font-size: 1.125rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.about .feature-item p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin: 0;
}

.about .feature-item:hover .feature-icon {
  background: var(--accent-color);
  transform: scale(1.05);
}

.about .feature-item:hover .feature-icon i {
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .about {
    padding: 40px 0;
  }

  .about .image-stack {
    margin-top: 3rem;
  }

  .about .stat-item {
    padding: 1rem 0;
  }

  .about .stat-item .stat-number {
    font-size: 2rem;
  }
}
 
   

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery {
  padding: 70px 0;
}

.gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 15px;
}

@media (min-width: 576px) {
  .gallery .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 992px) {
  .gallery .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
  }
}

.gallery .gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(0);
  transition: all 0.4s ease;
}

.gallery .gallery-item.featured {
  grid-row: span 2;
}

@media (min-width: 768px) {
  .gallery .gallery-item.featured {
    grid-column: span 2;
  }
}

.gallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery .gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery .gallery-item .gallery-overlay i {
  color: var(--contrast-color);
  font-size: 2rem;
  transform: scale(0.5);
  transition: transform 0.4s ease;
}

.gallery .gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

.gallery .gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery .gallery-item:hover .gallery-overlay i {
  transform: scale(1);
}

.gallery .btn-view-more {
  display: inline-block;
  background-color: transparent;
  color: var(--accent-color);
  font-weight: 600;
  padding: 12px 30px;
  border: 2px solid var(--accent-color);
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.gallery .btn-view-more i {
  transition: transform 0.3s ease;
  margin-left: 5px;
}

.gallery .btn-view-more:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.gallery .btn-view-more:hover i {
  transform: translateX(5px);
}
 

/*--------------------------------------------------------------
# Slider Testimonials Section
--------------------------------------------------------------*/
.slider-testimonials .testimonial-item {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 24px;
  border-radius: 8px;
  transition: all 0.3s;
}

.slider-testimonials .testimonial-item .stars {
  margin-bottom: 16px;
  color: #f7b50d;
}

.slider-testimonials .testimonial-item .stars i {
  font-size: 18px;
  margin: 0 2px;
}

.slider-testimonials .testimonial-item p {
  font-size: 15px;
  font-style: italic;
  margin: 0 0 20px 0;
}

.slider-testimonials .testimonial-item .profile {
  display: flex;
  align-items: center;
  gap: 16px;
}

.slider-testimonials .testimonial-item .profile .testimonial-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.slider-testimonials .testimonial-item .profile .info h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 4px 0;
}

.slider-testimonials .testimonial-item .profile .info h4 i {
  font-size: 14px;
  color: var(--accent-color);
  margin-left: 4px;
}

.slider-testimonials .testimonial-item .profile .info span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.slider-testimonials .swiper-wrapper {
  height: auto !important;
}

.slider-testimonials .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

.slider-testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: color-mix(in srgb, var(--default-color), transparent 70%);
  opacity: 1;
}

.slider-testimonials .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--accent-color);
  width: 20px;
  border-radius: 4px;
}

@media (max-width: 1199.98px) {
  .slider-testimonials .testimonial-item {
    margin: 0;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.testimonials .testimonial-masonry::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, color-mix(in srgb, var(--accent-color), transparent 95%), transparent);
  opacity: 0.5;
  z-index: -1;
}

.testimonials .testimonial-item:nth-child(3n-1) {
  margin-top: 3rem;
}

.testimonials .testimonial-item:nth-child(3n) {
  margin-top: 1.5rem;
}

.testimonials .testimonial-item.highlight .testimonial-content {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
}

.testimonials .testimonial-item.highlight .testimonial-content .quote-pattern {
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
}

.testimonials .testimonial-item.highlight .testimonial-content .quote-pattern i {
  color: var(--accent-color);
}

.testimonials .testimonial-content {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.testimonials .testimonial-content:hover {
  transform: translateY(-5px);
}

.testimonials .testimonial-content p {
  font-size: 1rem;
  line-height: 1.7;
  margin: 1.5rem 0;
  position: relative;
}

.testimonials .quote-pattern {
  position: absolute;
  top: -1.25rem;
  left: 2rem;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--surface-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.testimonials .quote-pattern i {
  font-size: 1.25rem;
  color: var(--accent-color);
}

.testimonials .client-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.testimonials .client-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.testimonials .client-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonials .client-details h3 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.testimonials .client-details .position {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--heading-color), transparent 40%);
}

@media (max-width: 1199.98px) {
  .testimonials .testimonial-masonry {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .testimonials .testimonial-item:nth-child(3n-1),
  .testimonials .testimonial-item:nth-child(3n) {
    margin-top: 0;
  }

  .testimonials .testimonial-item:nth-child(even) {
    margin-top: 2rem;
  }
}

@media (max-width: 767.98px) {
  .testimonials .testimonial-masonry {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .testimonials .testimonial-item:nth-child(even) {
    margin-top: 0;
  }

  .testimonials .testimonial-content {
    padding: 1.5rem;
  }

  .testimonials .testimonial-content p {
    font-size: 0.9375rem;
    margin: 1.25rem 0;
  }

  .testimonials .quote-pattern {
    width: 2.25rem;
    height: 2.25rem;
    top: -1.125rem;
  }

  .testimonials .quote-pattern i {
    font-size: 1.125rem;
  }

  .testimonials .client-info {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
  }

  .testimonials .client-image {
    width: 45px;
    height: 45px;
  }

  .testimonials .client-details h3 {
    font-size: 1rem;
  }

  .testimonials .client-details .position {
    font-size: 0.8125rem;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-card {
  height: 100%;
  padding: 40px;
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  text-align: center;
}

.faq .faq-card i {
  font-size: 48px;
  color: var(--accent-color);
  margin-bottom: 20px;
  display: block;
}

.faq .faq-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.faq .faq-card p {
  margin-bottom: 25px;
  font-size: 15px;
  line-height: 24px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.faq .faq-card .btn-primary {
  padding: 8px 20px;
  font-size: 16px;
  font-weight: 500;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.faq .faq-card .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.faq .faq-list {
  padding: 0;
}

.faq .faq-list .faq-item {
  position: relative;
  margin-bottom: 25px;
  padding: 30px;
  background-color: var(--surface-color);
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  cursor: pointer;
}

.faq .faq-list .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-list .faq-item h3 {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  padding-right: 40px;
  margin-bottom: 0;
  position: relative;
  cursor: pointer;
}

.faq .faq-list .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-list .faq-item .faq-content p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 24px;
  overflow: hidden;
}

.faq .faq-list .faq-item .faq-toggle {
  position: absolute;
  right: 30px;
  top: 30px;
  font-size: 24px;
  color: var(--accent-color);
  transition: transform 0.2s ease;
}

.faq .faq-list .faq-item.faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-list .faq-item.faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 15px;
}

.faq .faq-list .faq-item.faq-active .faq-toggle {
  transform: rotate(45deg);
}

@media (max-width: 768px) {
  .faq .faq-list .faq-item {
    padding: 20px;
  }

  .faq .faq-list .faq-item h3 {
    font-size: 16px;
    line-height: 24px;
  }

  .faq .faq-list .faq-item .faq-toggle {
    right: 20px;
    top: 20px;
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .container {
  max-width: 1280px;
}

.contact .contact-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 992px) {
  .contact .contact-wrapper {
    grid-template-columns: 38% 62%;
    gap: 30px;
  }
}

.contact .contact-info-panel {
  background: linear-gradient(145deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #1a4372 40%));
  color: var(--contrast-color);
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact .contact-info-panel .contact-info-header {
  margin-bottom: 30px;
}

.contact .contact-info-panel .contact-info-header h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

.contact .contact-info-panel .contact-info-header p {
  font-size: 15px;
  opacity: 0.85;
  line-height: 1.6;
}

.contact .contact-info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: auto;
}

@media (min-width: 576px) and (max-width: 991px) {
  .contact .contact-info-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact .info-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.contact .info-card:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.contact .info-card .icon-container {
  width: 45px;
  height: 45px;
  flex-shrink: 0;
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact .info-card .icon-container i {
  font-size: 20px;
  color: var(--contrast-color);
}

.contact .info-card .card-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--contrast-color);
}

.contact .info-card .card-content p {
  font-size: 14px;
  margin-bottom: 0;
  opacity: 0.8;
}

.contact .social-links-panel {
  margin-top: 35px;
}

.contact .social-links-panel h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

.contact .social-links-panel .social-icons {
  display: flex;
  gap: 12px;
}

.contact .social-links-panel .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--contrast-color);
  font-size: 18px;
  transition: all 0.3s ease;
}

.contact .social-links-panel .social-icons a:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px);
}

.contact .contact-form-panel {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact .map-container {
  width: 100%;
  height: 280px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact .form-container {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
}

.contact .form-container h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  background: linear-gradient(120deg, var(--heading-color), color-mix(in srgb, var(--heading-color), var(--accent-color) 30%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.contact .form-container p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 25px;
}

.contact .form-container .form-floating {
  margin-bottom: 20px;
}

.contact .form-container .form-floating .form-control {
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  padding: 24px 20px 8px 20px;
  height: calc(3.5rem + 3px);
  background-color: var(--surface-color);
  color: var(--default-color);
  transition: all 0.3s ease;
}

.contact .form-container .form-floating .form-control:focus {
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 85%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 40%);
  background-color: var(--surface-color);
}

.contact .form-container .form-floating .form-control::placeholder {
  color: transparent;
}

.contact .form-container .form-floating label {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 1rem 1.25rem 2.5rem 1.25rem;
}

.contact .form-container .form-floating label::after {
  background-color: transparent;
}

.contact .form-container .btn-submit {
  background: linear-gradient(145deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #1a4372 30%));
  color: var(--contrast-color);
  border: none;
  padding: 15px 25px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact .form-container .btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px color-mix(in srgb, var(--accent-color), transparent 75%);
}

.contact .form-container .btn-submit i {
  transition: transform 0.3s ease;
}

.contact .form-container .btn-submit:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .contact .contact-info-panel {
    padding: 30px 25px;
  }

  .contact .form-container {
    padding: 30px 25px;
  }
}

@media (max-width: 576px) {
  .contact .social-links-panel .social-icons {
    flex-wrap: wrap;
  }
} 