/* ========================================
   RESET & BASE STYLES
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Manrope", sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ========================================
   UTILITY CLASSES
======================================== */
.ae-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

.flex {
    display: flex;
}

.align-center {
    align-items: center;
}

.space-between {
    justify-content: space-between;
}

/* ========================================
   HEADER STYLES
======================================== */
header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

header .ae-container {
    position: relative;
}

/* Logo */
header .logo img {
    max-width: 250px;
    height: auto;
}

/* Navigation */
header .col-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

header nav ul {
    gap: 0.3rem;
}

header nav ul li a {
    color: #000;
    font-size: 14px;
    font-weight: 600;
    padding: 8px;
    display: block;
    transition: color 0.3s ease;
    position: relative;
}

header nav ul li a:hover {
    color: #27bdbe;
}

/* Dropdown Styles */
header .dropdown-list {
    position: relative;
}

header .dropdown-list>a {
    display: flex;
    align-items: center;
    gap: 5px;
}

header .dropdown-list>a img {
    width: 18px;
    height: 7px;
    transition: transform 0.3s ease;
}

header .dropdown_menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 2px 4px 4px 0 rgba(0, 0, 0, 0.15);
    border-radius: 3px;
    padding: 8px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 999;
}

header .dropdown-list:hover .dropdown_menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

header .dropdown-list:hover>a img {
    transform: rotate(180deg);
}

header .dropdown_menu li {
    border-bottom: 1px solid #f5f5f5;
    position: relative;
}

header .dropdown_menu li:last-child {
    border-bottom: none;
}

header .dropdown_menu li a {
    font-size: 13px;
    padding: 8px 10px;
    display: block;
    font-weight: 500;
    transition: all 0.2s ease;
}

header .dropdown_menu li a:hover {
    color: #27bdbe;
    font-weight: 600;
}

/* Nested Submenu for Desktop */
header .dropdown_menu .has-submenu>a::after {
    content: '';
    display: block;
    width: 7px;
    height: 8px;
    background-image: url(../header-footer-imgs/nav-arrow.svg);
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    translate: 0 -50%;
    right: 10px;
    transition: all 0.2s ease;
}

header .dropdown_menu .has-submenu:hover>a::after {
    background-image: url(../header-footer-imgs/active-nav-arrow.svg);
}

header .dropdown_menu .sub_dropdown_list {
    position: absolute;
    top: 0;
    left: 100%;
    background-color: #fff;
    box-shadow: 2px 4px 4px 0 rgba(0, 0, 0, 0.15);
    border-radius: 3px;
    padding: 8px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.25s ease;
    z-index: 1000;
    margin-left: 8px;
}

header .dropdown_menu .has-submenu:hover>.sub_dropdown_list {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

header .sub_dropdown_list li {
    border-bottom: 1px solid #f5f5f5;
}

header .sub_dropdown_list li:last-child {
    border-bottom: none;
}

header .sub_dropdown_list li a {
    font-size: 13px;
    padding: 8px 10px;
    display: block;
    font-weight: 500;
}

/* Top Icons */
header .top-icon {
    display: flex;
    align-items: center;
    gap: 15px;
}

header .destination-box,
header .verified-box {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
}

header .destination-box::after {
    content: "";
    width: 1px;
    height: 30px;
    background-color: #ddd;
    margin-left: 10px;
}

header .destination-box img,
header .verified-box img {
    width: 24px;
    height: 24px;
}

/* Mobile Toggle Button */
header .toggle-button {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

header .toggle-button span {
    width: 25px;
    height: 3px;
    background-color: #000;
    transition: all 0.3s ease;
}

header .toggle-button.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

header .toggle-button.active span:nth-child(2) {
    opacity: 0;
}

header .toggle-button.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: #fff;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.mobile-menu.active {
    max-height: calc(100vh - 70px);
    overflow-y: auto;
}

.mobile-menu .menu-categories-list {
    padding: 20px;
}

.mobile-menu .menu-categories-list>li {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-menu .categories-item {
    display: block;
    padding: 15px 10px;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    transition: color 0.3s ease;
}

.mobile-menu .categories-item:hover {
    color: #27bdbe;
}

.mobile-menu .angle-arrow::after {
    content: "";
    display: inline-block;
    width: 18px;
    height: 7px;
    background-image: url("../header-footer-imgs/dropdown-arrow.svg");
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 8px;
    transition: transform 0.3s ease;
    vertical-align: middle;
}

.mobile-menu .categories-list.active .angle-arrow::after {
    transform: rotate(180deg);
}

.mobile-menu .sub-categories-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding-left: 20px;
}

.mobile-menu .categories-list.active .sub-categories-list {
    max-height: 2000px;
}

.mobile-menu .sub-categories-list li a {
    display: block;
    padding: 10px 10px 10px 0;
    font-size: 14px;
    color: #555;
    transition: color 0.3s ease;
}

.mobile-menu .sub-categories-list li a:hover {
    color: #27bdbe;
}

/* Nested mobile submenus */
.mobile-menu .sub-categories-list .categories-list {
    margin-left: 0;
}

.mobile-menu .sub-categories-list .categories-list>.categories-item {
    font-size: 14px;
    padding: 10px;
    font-weight: 600;
}

.mobile-menu .sub-categories-list .sub-categories-list {
    padding-left: 38px;
}

.mobile-menu .sub-categories-list ul li {
    list-style-type: circle;
}

/* ========================================
   FOOTER STYLES
======================================== */
footer {
    background-color: #d9d9d9;
    padding: 2rem 0 0;
    position: relative;
    margin-top: 15rem;
}

footer::before {
    content: "";
    display: block;
    width: 940px;
    height: 197px;
    background-image: url("../header-footer-imgs/footer-bg.png");
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    bottom: 99.5%;
    left: 50%;
    transform: translateX(-50%);
}

footer .inner-row {
    gap: 3rem;
    flex-wrap: wrap;
}

/* Footer Left */
footer .col-left {
    flex: 1;
    min-width: 300px;
}

footer .f-logo img {
    max-width: 250px;
    margin-bottom: 20px;
}

footer .map-text p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #333;
}

footer .map-img img {
    max-width: 100%;
    margin-bottom: 15px;
}

footer .office-address {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 15px;
}

footer .office-address img {
    width: 20px;
    margin-top: 3px;
}

footer .office-address span {
    font-size: 12px;
    font-weight: bold;
    line-height: 1.6;
}

/* Footer Right */
footer .col-right {
    flex: 1;
    min-width: 300px;
}

footer .col-right .inner-row {
    margin-bottom: 2rem;
}

footer .inner-col {
    flex: 1;
    min-width: 150px;
}

footer .inner-col h4 {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #000;
    position: relative;
    padding-bottom: 8px;
}

footer .inner-col h4::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #828282;
}

footer .inner-col ul {
    margin-top: 10px;
}

footer .inner-col ul li {
    margin-bottom: 8px;
}

footer .inner-col ul li a {
    font-size: 14px;
    color: #000;
    transition: color 0.3s ease;
}

footer .inner-col ul li a:hover {
    color: #27bdbe;
}

/* Association & Payment */
footer .association,
footer .payment {
    margin-bottom: 1.5rem;
}

footer .association p,
footer .payment p {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

footer .association ul,
footer .payment ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
}

footer .association ul li img,
footer .payment ul li img {
    max-height: 35px;
    width: auto;
}

/* Copyright Section */
footer .copy-right {
    background-color: #27bdbe;
    padding: 1rem 0;
    margin-top: 2rem;
}

footer .copy-right .inner-row {
    gap: 1rem;
}

footer .copy-right .col ul {
    display: flex;
    gap: 1rem;
    align-items: center;
}

footer .copy-right .col ul li a {
    display: block;
    width: 32px;
    height: 32px;
}

footer .copy-right .col ul li a img {
    width: 100%;
    height: 100%;
}

footer .copy-right p {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

/* ========================================
   RESPONSIVE STYLES
======================================== */

/* Tablets */
@media screen and (max-width: 992px) {
    header .col-right {
        display: none;
    }

    header .toggle-button {
        display: flex;
        gap: 6.5px;
    }

    .mobile-menu {
        display: block;
    }

    footer {
        margin-top: 6rem;
    }

    footer::before {
        width: 100%;
        height: 95px;
        background-size: cover;
        bottom: 99.9%;
        left: 0;
        transform: none;
    }

    footer .inner-row {
        flex-direction: column;
    }

    footer .f-logo img {
        display: block;
        margin: 0 auto 20px;
    }

    footer .map-text {
        text-align: center;
    }

    footer .office-address {
        justify-content: center;
    }

    footer .col-right .inner-row {
        flex-wrap: wrap;
        gap: 2rem;
    }

    footer .copy-right .inner-row {
        flex-direction: column;
        text-align: center;
    }

    footer .copy-right .col ul {
        justify-content: center;
    }
}

/* Mobile */
@media screen and (max-width: 576px) {
    header .logo img {
        max-width: 180px;
    }

    footer .association ul,
    footer .payment ul {
        gap: 1rem;
    }

    footer .inner-col {
        min-width: 100%;
    }

    footer .col-right .inner-row {
        flex-direction: column;
        gap: 1.5rem;
    }
}
.common--botton a,
.common--botton a span {
  color: #fff;
  font-weight: 800
}

.common--botton,
.common--botton a {
  width: 175px;
  height: 50px;
  transition: .5s ease-in-out
}

.common--botton {
  position: fixed;
  bottom: 50px;
  right: 50px;
  z-index: 1
}

.common--botton.call_now {
  bottom: 112px
}

.common--botton.call_now a {
  background-color: #030000 !important
}

.common--botton a::after,
.common--botton a::before {
  content: "";
  position: absolute;
  border: 1px solid #000;
  inset: -2px;
  border-radius: 500px;
  opacity: 0;
  z-index: 0
}

.common--botton a i.fa-whatsapp::after {
  content: "";
  width: 10px;
  height: 10px;
  background-color: red;
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  right: 4px;
  top: 4px;
  display: block !important
}

.common--botton a {
  background-color: #25d366;
  border-radius: 30px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: rgba(0, 0, 0, .15) 0 3px 12px 0
}

.common--botton.whatsapp-now a {
  animation: 1s linear infinite circle
}

@keyframes circle {

  0%,
  100% {
    transform: scale(1);
    opacity: 1
  }

  50% {
    transform: scale(.8);
    opacity: 1
  }
}

.common--botton a i {
  font-size: 25px;
  color: #fff;
  margin-right: 10px
}

.common--botton a img {
  margin-right: 10px
}

.common--botton a:hover {
  transform: scale(.9)
}


.scrollTop {
  position: fixed;
  bottom: 6%;
  left: 2%;
  background: #d3cc1f;
  color: #fff;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border-radius: 50%;
  transition: .5s ease-in-out;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  z-index: 1
}

.scrollTop.show {
  opacity: 1;
  visibility: visible;
  display: flex !important;
}

.scrollTop i {
  color: #fff
}

@media screen and (max-width: 767px) {
  .common--botton.call_now a {
    display: flex !important
  }

  .common--botton {
    width: 155px;
    height: 40px;
    right: 10px;
    bottom: 30px
  }

  .common--botton a {
    width: 100%;
    height: 40px;
    font-size: 14px
  }

  .common--botton a i {
    font-size: 18px
  }

  .common--botton.call_now {
    bottom: 80px
  }

  .scrollTop {
    width: 40px;
    height: 40px;
    bottom: 9%;
    left: 4%
  }
}