@import url("https://fonts.googleapis.com/css2?family=League+Spartan:wght@100..900&family=Saira+Stencil+One&family=Sniglet:wght@400;800&family=Water+Brush&display=swap");

* {
  padding: 0;
  margin: 0;
}

/* Modern Featuring Andaman Section */
.modern-featuring-section {
    background-color: #fafbfc;
    background-image: url('../images/pattern-travel-bg.svg');
    background-repeat: repeat;
    background-size: 340px auto;
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 60px 0;
}

@media (max-width: 991px) {
  .modern-featuring-section {
    background-size: 180px auto;
  }
}

.modern-featuring-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.95) 0%, rgba(226, 232, 240, 0.9) 100%);
    z-index: 1;
}

.modern-featuring-section .container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
}

.glass-content-container {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 25px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 132, 149, 0.15);
    transition: all 0.4s ease;
    margin: 0 30px;
}

.glass-content-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 40px 80px rgba(0, 132, 149, 0.2);
    border-color: rgba(0, 132, 149, 0.3);
}

.modern-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #008495;
    margin-bottom: 1rem;
}

.title-underline {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #008495, #00a0b7);
    border-radius: 2px;
    margin-bottom: 2rem;
}

.modern-image-container {
    position: relative;
    border-radius: 0 25px 25px 0;
    overflow: hidden;
    height: 100%;
    min-height: 420px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 20px;
}

.modern-image-container:hover {
    transform: scale(1.02);
}

.modern-feature-image {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.modern-image-container:hover .modern-feature-image {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 132, 149, 0.1) 0%, rgba(0, 160, 183, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.modern-image-container:hover .image-overlay {
    opacity: 1;
}

.image-badge {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: rgba(0, 132, 149, 0.9);
    backdrop-filter: blur(10px);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    z-index: 3;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.modern-image-container:hover .image-badge {
    transform: translateY(0);
    opacity: 1;
}

.modern-content-card {
    background: transparent;
    border-radius: 25px 0 0 25px;
    padding: 50px 40px;
    height: 100%;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.modern-content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 132, 149, 0.05), transparent);
    transition: left 0.6s ease;
}

.modern-content-card:hover::before {
    left: 100%;
}

.content-header {
    border-bottom: 2px solid rgba(0, 132, 149, 0.1);
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}

.content-title {
    font-size: 2rem;
    font-weight: 700;
    color: #008495;
    margin-bottom: 0.5rem;
}

.content-subtitle {
    font-size: 1.3rem;
    font-weight: 500;
    color: #64748b;
    margin: 0;
}

.content-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 1.5rem;
}

.content-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 500;
    color: #475569;
    transition: all 0.3s ease;
}

.feature-item:hover {
    color: #008495;
    transform: translateX(10px);
}

.feature-item i {
    color: #008495;
    margin-right: 1rem;
    font-size: 1.2rem;
}

/* Modern FAQ Section */
.modern-faq-section {
    background-color: #fafbfc;
    background-image: url('../images/pattern-travel-bg.svg');
    background-repeat: repeat;
    background-size: 340px auto;
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 80px 0;
}

@media (max-width: 991px) {
  .modern-faq-section {
    background-size: 180px auto;
  }
}

.modern-faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(241, 245, 249, 0.9) 0%, rgba(226, 232, 240, 0.85) 100%);
    z-index: 1;
}

.modern-faq-section .container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
}

.modern-tab-container {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 20px 40px rgba(0, 132, 149, 0.12);
    display: inline-block;
    margin-left:3rem;
}

.modern-nav-tabs {
    border: none;
    gap: 6px;
}

.modern-nav-link {
    background: transparent;
    border: none;
    color: #64748b;
    font-weight: 500;
    padding: 15px 25px;
    border-radius: 15px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.modern-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.modern-nav-link:hover::before {
    left: 100%;
}

.modern-nav-link:hover {
    background: rgba(0, 132, 149, 0.1);
    color: #008495;
    transform: translateY(-2px);
}

.modern-nav-link.active {
    background: #008495 !important;
    color: white !important;
    box-shadow: 0 8px 20px rgba(0, 132, 149, 0.3);
}

.modern-nav-link.active:hover {
    background: #006d7a !important;
    color: white !important;
}

.modern-nav-link i {
    font-size: 1rem;
}

.modern-tab-content {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 25px 60px rgba(0, 132, 149, 0.15);
    margin: 0 30px;
}

.modern-accordion {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.modern-accordion-item {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 25px rgba(0, 132, 149, 0.08);
}

.modern-accordion-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 132, 149, 0.18);
    border-color: rgba(0, 132, 149, 0.3);
}

.modern-accordion-header {
    background: rgba(255, 255, 255, 0.8);
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.modern-accordion-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 132, 149, 0.08), transparent);
    transition: left 0.6s ease;
}

.modern-accordion-header:hover::before {
    left: 100%;
}

.modern-accordion-header:hover {
    background: rgba(0, 132, 149, 0.05);
}

.modern-accordion-header h5 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    flex-grow: 1;
    padding-right: 1.5rem;
}

.modern-accordion-header i {
    color: #008495;
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.modern-accordion-header[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.modern-accordion-collapse {
    background: rgba(255, 255, 255, 0.9);
}

.modern-accordion-body {
    padding: 30px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
    border-top: 1px solid rgba(0, 132, 149, 0.1);
}

.modern-accordion-body strong {
    color: #008495;
    font-weight: 600;
}

/* Enhanced hover effects for FAQ items */
.modern-accordion-item:hover .modern-accordion-header h5 {
    color: #008495;
}

.modern-accordion-item:hover .modern-accordion-header i {
    transform: scale(1.1);
}

/* Modern Testimonials Section */
.testimonials {
    margin-top: 40px;
    padding: 80px 0;
    background: #008495;
    background-image: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><circle cx="30" cy="30" r="4"/></g></svg>');
    background-size: 60px 60px;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 132, 149, 0.95) 0%, rgba(0, 160, 183, 0.9) 100%);
    left: 0;
    top: 0;
    z-index: 1;
}

.testimonials::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 150px;
    left: 0;
    bottom: -15px;
    z-index: 1;
}

#carouselExample {
    z-index: 2;
    position: relative;
}

.testimonials .container {
    position: relative;
    z-index: 2;
}

.modern-testimonial-header {
    text-align: center;
    margin-bottom: 4rem;
}

.modern-testimonial-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.modern-testimonial-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.modern-testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 40px;
    margin: 0 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.modern-testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.profilePic {
    width: 120px;
    height: 120px;
    margin: 0px auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 2rem;
    padding: 8px;
    overflow: hidden;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.1);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.profilePic img {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.profileInfo {
    text-align: center;
    padding-top: 0;
}

.profileInfo h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.profileInfo p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    position: relative;
    padding: 0 20px;
}

.testimonial-quote::before {
    content: '"';
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.3);
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: serif;
}

.testimonial-quote::after {
    content: '"';
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.3);
    position: absolute;
    bottom: -40px;
    right: -10px;
    font-family: serif;
}

.testimonials .carousel-control-prev,
.testimonials .carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.testimonials .carousel-control-prev:hover,
.testimonials .carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.testimonials .carousel-control-prev {
    left: -25px;
}

.testimonials .carousel-control-next {
    right: -25px;
}

.testimonials .carousel-control-prev-icon,
.testimonials .carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .modern-featuring-section,
    .modern-faq-section {
        padding: 40px 0;
    }

    .modern-section-title {
        font-size: 2rem;
    }

    .glass-content-container {
        border-radius: 20px;
        margin: 0 15px;
    }

    .modern-content-card {
        border-radius: 20px;
        padding: 30px 25px;
        min-height: auto;
    }

    .modern-image-container {
        border-radius: 20px 20px 0 0;
        min-height: 300px;
        margin: 15px;
    }

    .modern-feature-image {
        min-height: 300px;
    }

    .content-title {
        font-size: 1.5rem;
    }

    .content-subtitle {
        font-size: 1.1rem;
    }

    .modern-tab-container {
        padding: 6px;
        width: 100%;
    }

    .modern-nav-tabs {
        flex-direction: column;
        gap: 4px;
    }

    .modern-nav-link {
        padding: 12px 20px;
        text-align: center;
        justify-content: center;
    }

    .modern-tab-content {
        padding: 30px 20px;
        margin: 0 15px;
    }

    .modern-accordion-header {
        padding: 20px 25px;
    }

    .modern-accordion-header h5 {
        font-size: 1rem;
    }

    .modern-accordion-body {
        padding: 25px;
    }

    .testimonials {
        padding: 60px 0;
    }

    .modern-testimonial-header h2 {
        font-size: 2rem;
    }

    .modern-testimonial-card {
        margin: 0 15px;
        padding: 30px 20px;
    }

    .profilePic {
        width: 100px;
        height: 100px;
        margin-bottom: 1.5rem;
    }

    .profilePic img {
        height: 80px;
        width: 80px;
    }

    .profileInfo h3 {
        font-size: 1.5rem;
    }

    .testimonial-quote {
        font-size: 1rem;
        padding: 0 10px;
    }

    .testimonial-quote::before,
    .testimonial-quote::after {
        font-size: 3rem;
    }

    /* Disable animations on mobile for performance */
    .glass-content-container,
    .modern-image-container,
    .modern-feature-image,
    .modern-content-card,
    .modern-nav-link,
    .modern-accordion-item,
    .modern-accordion-header,
    .modern-testimonial-card {
        animation: none !important;
        transition: none !important;
    }

    .glass-content-container:hover,
    .modern-image-container:hover,
    .modern-content-card:hover,
    .modern-accordion-item:hover,
    .modern-testimonial-card:hover {
        transform: none !important;
        box-shadow: 0 10px 30px rgba(0, 132, 149, 0.1) !important;
    }

    .modern-image-container:hover .modern-feature-image {
        transform: none !important;
    }

    .image-overlay,
    .image-badge,
    .modern-content-card::before,
    .modern-accordion-header::before,
    .modern-nav-link::before {
        display: none !important;
    }

    .feature-item:hover {
        transform: none !important;
    }
}

/* Mobile scroll safe class for complete animation disable */
@media only screen and (max-width: 767px) {
  .mobile-scroll-safe {
    transform: none !important;
    will-change: auto !important;
    backface-visibility: visible !important;
    perspective: none !important;
    animation: none !important;
    transition: none !important;
  }
  
  .mobile-scroll-safe * {
    transform: none !important;
    will-change: auto !important;
    animation: none !important;
    transition: none !important;
  }
}

*:focus {
  outline: none !important;
  box-shadow: none !important;
}

/* FIXED: Remove problematic scroll behavior */
html {
  scroll-behavior: auto;
}

html,
body {
  min-height: 100%;
  overflow-x: hidden;
}

body {
  padding: 0;
  margin: 0;
  background: #fafafa;
  font-family: "League Spartan";
  /* FIXED: Remove problematic mobile scroll properties */
  -webkit-overflow-scrolling: auto;
  overflow-scrolling: auto;
}

/* FIXED: Simplified mobile fixes without hardware acceleration */
@media only screen and (max-width: 767px) {
  body {
    -webkit-overflow-scrolling: auto;
    overscroll-behavior: auto;
  }
  
  /* FIXED: Remove hardware acceleration that causes scroll issues */
  .billMobile,
  .navbar,
  footer.mobile,
  .whats-app,
  .phone-app {
    -webkit-transform: none;
    transform: none;
    will-change: auto;
  }
}

.row {
  width: 100%;
  margin: auto 0px;
}

.ad {
  background: linear-gradient(45deg, #0083b7, #f5b32c, #0083b7);
}

.ad p {
  letter-spacing: 1px;
}

/* FIXED: Simplified header positioning */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,132,149,0.06);
  border-radius: 0;
  padding: 0.5rem 1rem;
  min-height: 70px;
}

header .navbar {
  position: static;
  padding: 0;
  min-height: auto;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
}

main {
  margin-top: 0;
  padding-top: 75px;
}

@media only screen and (max-width: 767px) {
  main {
    margin-top: 75px;
    padding-top: 0;
  }
}

header .navbar-brand {
  margin-left: 1.5rem;
}

.desktop .quoteBtn, .dk-visible .quoteBtn, .btn.quoteBtn {
  margin-left: auto;
}

.navbar {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,132,149,0.06);
  border-radius: 0;
  display: flex;
  align-items: center;
  z-index: 9999;
  padding: 0.5rem 1rem;
  min-height: 70px;
  transition: background 0.3s;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

.navbar .navbar-brand img {
  max-height: 48px;
  /* FIXED: Remove transform animation */
  transition: none;
}

.navbar-nav {
  gap: 1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  white-space: nowrap;
  flex-grow: 1;
  justify-content: center;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: #008495;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}

.nav-link.active, .nav-link:hover {
  background: #e6f7fa;
  color: #006d7a !important;
}

.navbar-brand {
  width: 200px;
  margin-left: 1.5rem;
}

.navbar-brand img {
  width: 100%;
}

/* ============== Search Banner ============== */
.search-banner {
  padding: 60px 0 70px;
  background-image: linear-gradient(to right, #0b5862, #6abe9a);
  background-size: cover;
  padding-bottom: 50px;
}
.banner-content {
  padding-bottom: 40px;
}
.banner-content h2 {
  font-size: 3.5em;
  color: #fff;
  margin-bottom: 0;
}
.banner-content h1 {
  font-size: 3.5em;
  color: #fff;
  margin-bottom: 0;
}
.banner-content p {
  font-size: 1.2em;
  color: #fff;
}
.ticket-booked,
.rated {
  display: flex;
  align-items: center;
}
.ticket-booked p,
.rated p {
  margin-bottom: 0;
  padding-left: 10px;
}
.border-end {
  border: 0 !important;
}
.bookingConsole select,
.bookingConsole input {
  height: 50px;
  padding: 10px !important;
  border: 1px solid #c5c5c5 !important;
  border-radius: 5px;
}
.search-bar-btn {
  justify-content: center;
}

.blogDetails {
  background-color: #008495;
  padding: 30px;
  display: flex;
  align-items: center;
}
.blogDetails h3 {
  color: #fff !important;
  font-size: 2.8em !important;
  padding-bottom: 10px;
}
.blogDetails span {
  color: #fff !important;
  font-size: 1.2em !important;
}
#send_btn {
  background-color: #008495;
  padding: 10px 40px;
  color: #fff;
  font-size: 1.1em;
}

.quoteBtn {
  background: #1793a3;
  border: 1px solid #1793a3;
  color: #fff;
  border-radius: 30px;
  font-weight: 500;
  padding: 7px 35px;
}

.quoteBtn:hover {
  background: #0f7684 !important;
  border: 1px solid #0f7684 !important;
  color: #fff !important;
}

.navbar-nav li {
  margin: 0 8px;
}

.navbar-toggler {
  border: none;
  outline: none !important;
  font-size: 25px;
  color: #fff;
  z-index: 99999;
  background: #008495;
}

.navbar-toggler #menu {
  display: block;
}

.navbar-toggler #menuclose {
  display: none;
}

.navbar-toggler.show #menu {
  display: none;
}

.navbar-toggler.show #menuclose {
  display: block;
}

header .nav-link {
  color: #000;
  border-bottom: 2px solid transparent;
  font-size: 0.85rem;
  padding: 0.3rem 0.6rem;
}

header .nav-link.active {
  color: #008495 !important;
  font-weight: 600;
  border-bottom: 2px solid #008495;
}

.nav-link:hover {
  color: #007bff;
}

#pre-booking-tab .nav-link.active {
  color: #fff !important;
}

.nav-link.active {
  color: #fff !important;
  font-weight: 600;
}

.carousel-item {
  position: relative;
  height: 450px;
}

.bannerDetails {
  position: absolute;
  left: 50%;
  top: 35%;
  transform: translate(-50%, -50%);
}

.bannerDetails h1 span {
  font-family: "Sniglet";
  font-size: 34px;
  font-weight: 400;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px #fff;
}

.bannerDetails h1 label {
  font-family: "Water Brush";
  font-size: 55px;
  font-weight: 400;
  color: #fff;
}

.secHead h4 {
  color: #008495;
}

.sectionHead h2 {
  color: #008495;
}

.processCard img {
  width: 100% !important;
}

.bannerDetails h1 {
  font-family: "Saira Stencil One";
  font-size: 55px;
  font-weight: 400;
  color: #fff;
}

.bannerDetails p {
  inline-size: 480px;
  box-sizing: border-box;
  padding: 15px;
  background: rgb(0 0 0 / 50%);
  color: #fff;
  border-radius: 5px;
  position: relative;
}

.bannerDetails p::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: #fff;
  border-radius: 10px;
}

.bannerBtns {
  display: flex;
  align-items: center;
}

.bannerBtns a {
  color: #fff;
  border: 1px solid #f6b42c;
  font-size: 20px;
  border-radius: 5px;
  width: 195px;
  display: flex;
  align-items: center;
  border-radius: 50px;
  justify-content: center;
  height: 55px;
  background: #008495;
}

.bannerBtns a:hover {
  background: #f6b42c;
  border: 1px solid #008495;
}

.bannerBtns button:hover {
  border-color: #fff;
  color: #fff;
}

.ferry-search-bar {
  padding-bottom: 5px !important;
  padding-top: 15px !important;
}

.socialIcon {
  position: absolute;
  right: 20px;
  top: 50%;
  display: flex;
  align-items: center;
}

.socialIcon a img {
  width: 24px;
  height: auto;
  /* FIXED: Remove transform animation */
  transition: none;
}

/* FIXED: Remove scale animation that can cause scroll issues */
.socialIcon a:hover img {
  /* No transform */
}

.downArrow {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 50px;
  background: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: inset 0px 0px 22px 3px #060a1a, 0px 0px 5px 2px #2c2c2c61;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-direction: column;
}

.downArrow img {
  width: 12px;
  height: auto;
  padding-bottom: 20px;
}

.ourStats {
  box-shadow: 0px 0px 18px 0px #00000014;
  color: #fff;
  background: #008495;
}

.bookingCard {
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0px 7px 14px 0px #00000040;
  background: #fff;
  box-shadow: 0px 7px 14px 0px #00000040;
  border-radius: 10px;
  overflow: hidden;
}

.bookingCard p {
  font-size: 20px;
  font-weight: 500;
  color: #008495;
  padding-left: 20px;
}

.bookingCard p span {
  font-size: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.bookingCard img {
  width: 185px;
}

.secHead h2 {
  font-size: 34px;
  font-weight: 700;
  color: #008495;
  position: relative;
}

.secHead h3 {
  font-size: 28px;
  font-weight: 500;
  color: #008495;
}

.packages .secHead h2 {
  inline-size: 205px;
}

.secHead p {
  color: #000;
  font-size: 18px;
}

.packageCard {
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  background: #eee;
}

.whiteShade {
  position: absolute;
  left: 0px;
  width: 200px !important;
  top: 0px;
  height: 200px;
  z-index: 9;
}

.cardImg {
  position: relative;
  height: 235px;
  overflow: hidden;
  box-shadow: 0px 4px 15px 0px #00000040;
}

.cardImg img {
  height: 100%;
}

.cardImg .badge {
  position: absolute;
  border-radius: 30px;
  background: #0c111f57;
  color: #fff;
  padding: 5px;
  padding-right: 10px;
  font-size: 12px;
  font-weight: 400;
  display: flex;
  top: 20px;
  left: 20px;
  align-items: center;
  z-index: 10;
  box-shadow: 7px 0px 20px 0px #ffffff26 inset;
  backdrop-filter: blur(5px);
}

.cardImg .badge img {
  width: 20px !important;
  height: 20px;
  border-radius: 50%;
  margin-right: 5px;
}

.packageName {
  padding: 15px 20px 20px 20px;
  background: #fff;
  border-radius: 0px 0px 30px 30px;
}

.packageName h3 {
  font-size: 24px;
  font-weight: 700;
  color: #008495;
}

.packageName p {
  color: #0c111f99;
  margin: 0;
}

.price {
  padding: 15px 20px 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price p {
  margin-bottom: 0;
  color: #008495;
  display: flex;
  align-items: baseline;
}

.price p span {
  color: #0c111f99;
}

.price p b {
  font-size: 24px;
  margin-left: 5px;
}

.price img {
  width: 20px !important;
}

.price .btn {
  box-shadow: 8px 0px 12px 0px #00849559;
  padding: 5px 15px;
  border-radius: 10px;
  background: #008495;
  color: #fff;
  transition: all 0.3s ease 0s;
}

.price .btn:hover {
  box-shadow: 8px 7px 12px 0px #00849559;
}
.blog-details-content img{
  width: 100% !important;
}
.owl-nav {
  position: absolute;
  width: 105%;
  height: 40px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block !important;
}

.owl-prev {
  position: absolute;
  z-index: 99999;
  background: url("../images/left-arrow.svg") no-repeat center center / 100%
    100% !important;
  width: 40px;
  height: 40px;
  cursor: pointer !important;
  display: block;
}

.owl-next {
  position: absolute;
  z-index: 99999;
  background: url("../images/right-arrow.svg") no-repeat center center / 100%
    100% !important;
  width: 40px;
  height: 40px;
  cursor: pointer !important;
  display: block;
}

.owl-dots {
  display: none !important;
}

.ferryCard {
  display: flex;
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0px 4.43px 17.71px 0px #9e9e9e40;
  justify-content: space-between;
}

.ferryDetails h4 {
  color: #008495;
  font-weight: 500;
  margin: 0;
  font-size: 25px;
}

.ferryDetails p {
  color: #008495;
  margin-bottom: 0;
}

.ferryDetails .btn,
.proceedBtn {
  padding: 5px 15px;
  border-radius: 10px;
  background: #008495;
  color: #fff;
  transition: all 0.3s ease 0s;
  display: flex;
  flex-wrap: wrap !important;
  justify-content: space-between;
}

.ferryDetails .btn:hover,
.proceedBtn:hover {
  box-shadow: 8px 7px 12px 0px #00849559;
  background: #008495;
  color: #fff;
}

.ferryCardSlider .owl-nav {
  top: 45%;
}

.destinationCard {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;
}

.destinationCard img {
  height: 100%;
  width: auto !important;
  /* FIXED: Remove transform animation */
  transition: none;
}

/* FIXED: Remove scale animation */
.destinationCard:hover img {
  /* No transform */
}

.destinationCard::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 45%;
}

.destinationCard h3 {
  font-weight: 700;
  font-size: 30px;
  position: absolute;
  z-index: 9;
  text-align: center;
  bottom: 20px;
}

.owl-next,
.owl-next {
  right: 0px;
}

.weOffer {
  background: #008495;
  padding-top: 30px;
}

.weOffer .secHead h2,
.weOffer .secHead p {
  color: #fff;
}

.weOfferPoints img {
  width: 40px;
  margin: 0px auto;
  margin-bottom: 15px;
}

.weOfferPoints h3 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 0;
}

.blogCards {
  background: none;
  padding: 50px 0px;
  margin-top: 0;
}

.blogcard {
  background: #eee;
  padding-top: 20px;
  border-radius: 20px;
}

.blogcard .blogImg {
  width: 85%;
  height: 150px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0px 16px 26px 0px #00000066;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px auto;
  position: relative;
  z-index: 9;
}

.blogImg img {
  height: 100%;
  width: auto;
}

.blogCardInfo {
  background: #fff;
  box-shadow: 0px 4px 4px 0px #00000040;
  border-radius: 20px;
  overflow: hidden;
  padding: 20px 20px 15px 20px;
  margin-top: 20px;
}

.blogCardInfo span {
  color: #697488;
  font-size: 12px;
}

.blogCardInfo h3 {
  color: #008495;
  font-size: 18px;
  font-weight: 600;
}

.blogCardInfo p {
  color: #008495;
}

.blogCardInfo a {
  color: #008495;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.blogCardInfo a img {
  width: 25px !important;
  margin-left: 5px;
  /* FIXED: Remove transform animation */
  transition: none;
}

/* FIXED: Remove margin animation */
.blogCardInfo a:hover img {
  /* No margin animation */
}

.testimonials .carousel-control-next,
.testimonials .carousel-control-prev {
  width: 35px;
  height: 35px;
  top: 50%;
  transform: translateY(-50%);
}

.testimonials .carousel-control-next img,
.testimonials .carousel-control-prev img {
  width: 100%;
}

.testimonials {
  margin-top: 40px;
  padding: 50px 0px 0px 0px;
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #008495;
  opacity: 70%;
  left: 0;
  top: 0;
  z-index: 3;
}

.testimonials::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 150px;
  left: 0;
  bottom: -15px;
  z-index: 3;
}

#carouselExample {
  z-index: 9;
}

.profilePic {
  width: 150px;
  height: 150px;
  margin: 0px auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 10px;
  padding: 12px;
  overflow: hidden;
  box-sizing: border-box;
}

.profilePic::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid #eaeaea;
}

.profilePic img {
  height: auto;
}

.profilePic img {
  height: 130px;
  width: 130px;
  border-radius: 50%;
}

.profileInfo {
  text-align: center;
  padding-top: 20px;
}

.profileInfo h3 {
  font-size: 36px;
  color: #fff;
}

.profileInfo p {
  font-size: 18px;
  color: #fff;
}

.faqSec {
  position: relative;
  z-index: 99;
}

.accordion-button {
  font-size: 20px;
  font-weight: 600;
  color: #008495;
}

.accordion-item {
  border: none !important;
  border-bottom: 1px solid #ccc !important;
  border-radius: 0 !important;
}

.accordion-body {
  font-size: 18px;
  font-weight: 500;
  color: #6b6b6b;
  background: #eee;
}

.accordion-button::after {
  background-image: url("../images/expand-icon.svg") !important;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("../images/collapse-icon.svg") !important;
}

.auth-img img {
  width: 50px;
}

.comment video {
  width: 550px;
  height: 550px;
  border-radius: 50%;
  overflow: hidden;
  padding: 50px;
}

footer {
  background: #f8f9fa;
  color: #fff;
  padding: 2rem 0;
  /* FIXED: Remove hardware acceleration */
  -webkit-transform: none;
  transform: none;
  will-change: auto;
}

footer h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

footer ul li {
  margin-bottom: 0.5rem;
}

footer ul li a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}

footer ul li a:hover {
  color: #007bff;
}

/* FERRY PAGE */
.bg-secondary {
  background-color: beige !important;
}
.boatBook {
  height: 350px;
}
.popup-close {
  position: absolute;
  right: 0;
  top: -50px;
  background: transparent;
  border: none;
}
.popup-close img {
  width: 40px;
}

.ferryBanner::after {
  content: none !important;
  background: transparent !important;
  height: 0 !important;
  pointer-events: none !important;
}


.ui-datepicker {
  z-index: 99999999999 !important;
}

.bg-green-text-white {
  background-color: white !important;
  color: #008495;
  border-radius: 5px;
  padding: 0px 5px;
}

.tab-round-trip {
  position: relative !important;
}

.bookingConsole {
  border-radius: 10px;
}

.boatBook .bookingConsole {
  top: 60%;
}

.tabContainer {
  background: #fff;
  padding: 25px;
  border-radius: 0 5px 5px 5px;
  width: 100%;
}
.tabs {
  opacity: 0;
  z-index: -1;
}

.tabs label {
  font-size: 15px;
  font-weight: 500;
  display: block;
}

.tabs input {
  border: none;
  outline: none;
  width: 100%;
}

.tabBtn {
  padding: 15px 20px;
  border-radius: 5px 5px 0px 0px;
  cursor: pointer;
  background: #008495;
  flex: 1;
  margin: 0 5px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tabBtn:first-child {
  margin-left: 0;
}

.tabBtn:last-child {
  margin-right: 0;
}

.tabBtn p {
  color: #fff;
  margin: 0;
}

.tabBtn i {
  color: #fff;
}

.tabBtn img {
  width: 20px;
}

.tabBtn .icon-active {
  display: none;
}

.tabBtn .icon-inactive {
  display: block;
}

.tabBtn.active {
  background: #fff;
}

.tabBtn.active p {
  color: #008495;
  font-weight: 600;
}

.tabBtn.active i {
  color: #008495;
}

.tabBtn.active .icon-active {
  display: block;
}

.tabBtn.active .icon-inactive {
  display: none;
}

.bookingConsole .button {
  background: #008495 !important;
  font-size: 1.1em;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
}

.bookingConsole .button i {
  margin-right: 5px;
}

.tabBtns {
  position: relative;
  justify-content: space-between;
}
.table-delet-btn button {
  margin-top: 30px;
}

.processCard {
  box-shadow: 0px 0px 20px 0px #c7c7c763;
  border-radius: 10px;
  text-align: center;
  padding: 10px;
  height: 100%;
}

.processCard .card-body {
  display: flex;
  align-items: center;
  justify-content: center;
}

.processCard p {
  color: #008495;
  font-weight: 700;
  font-size: 24px;
  text-align: center;
  margin-bottom: 0;
  margin-top: 20px;
}

.ferryCard.ferrySearch {
  margin-bottom: 20px;
}

/* FIXED: Simplified fixed positioning without hardware acceleration */
.whats-app {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 270px;
  color: white;
  text-align: center;
  font-size: 26px;
  right: 15px;
  top: auto;
  z-index: 1000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
  animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
  0% { box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 6px 15px rgba(37, 211, 102, 0.8), 0 0 0 10px rgba(37, 211, 102, 0.1); }
  100% { box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4); }
}

.phone-app {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 210px;
  color: white;
  text-align: center;
  font-size: 26px;
  right: 15px;
  top: auto;
  z-index: 1000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1e90ff;
  box-shadow: 0 6px 15px rgba(30, 144, 255, 0.4);
}

.ferryCard.ferrySearch .ferryImg {
  height: 150px;
  width: 25%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ferryCard.ferrySearch .ferryImg img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}

.ferryCard.ferrySearch .ferryDetails {
  display: flex;
  justify-content: space-between;
  width: 64%;
}

.ferryCard.ferrySearch .ferryDetails button {
  margin-left: 25px;
  margin-top: 0;
}

.ferryCard.boatCard.ferrySearch .ferryImg {
  width: 60%;
}

.ferryCard.boatCard.ferrySearch .ferryDetails {
  width: 38%;
  display: block;
}

.classBtn {
  width: 50%;
}

.searchResults::-webkit-scrollbar {
  width: 5px;
}

.searchResults::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}

.searchResults::-webkit-scrollbar-thumb {
  background: #008495;
  border-radius: 10px;
}

/* BOOKING SUMMARY */
.travel-insurance-main-bg {
  width: 100%;
  height: auto;
  margin: 0px 0 25px;
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #008495;
}

.order-input select,
.order-input .dobCalender,
.order-input input {
  border: 0;
  border-bottom: 1px solid #008495;
  border-radius: 0;
  background: transparent;
  text-transform: uppercase;
  padding-left: 0;
}

.booking-journey-prevnext-btn label {
  color: #191f29;
  font-weight: 600;
}

.add-insurance-heading {
  width: 100%;
  height: auto;
  float: left;
  font-size: 18px;
  color: #000;
  font-weight: bold;
  margin-bottom: 5px;
}

footer.mobile {
  display: none;
  background: #008495;
  /* FIXED: Remove hardware acceleration */
  -webkit-transform: none;
  transform: none;
}

footer.mobile h2 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

footer.mobile ul li {
  margin-bottom: 0.25rem;
}

footer.mobile ul li a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}

footer.mobile ul li a:hover {
  color: #007bff;
}

.booking-summary-main-bg {
  width: 100%;
  height: auto;
  background: #fff;
  border: 1px solid #008495;
  margin-bottom: 10px;
  background: #008495;
}

.booking-summary-heading {
  width: 100%;
  height: auto;
  float: left;
  font-size: 18px;
  color: #fff;
  font-weight: bold;
}

.tripDirection {
  background: #d0e2f3;
}

.tripDirection p {
  color: #008495;
  font-weight: bold;
}

.departing-txt {
  font-weight: 500;
  height: auto;
  font-size: 14px;
  color: #008495;
  margin: 0px 0;
}

.destination-time {
  font-weight: 600;
  height: auto;
  font-size: 18px;
  color: #008495;
}

.totalFare {
  background: #0f55cc;
}

.bookingSummary {
  max-height: 300px;
  overflow-y: scroll;
  cursor: pointer;
}

.bookingSummary::-webkit-scrollbar {
  width: 3px;
}

.bookingSummary::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}

.bookingSummary::-webkit-scrollbar-thumb {
  background: #ffffff;
  border-radius: 10px;
}

.stick {
  position: fixed;
  top: 10px;
  width: 342px;
}

.billMobile {
  display: none;
  background: #008495 !important;
  width: 100%;
  bottom: 0px;
  z-index: 99999;
  padding: 10px 0px;
  border: none !important;
  font-size: 1.2em;
  /* FIXED: Remove hardware acceleration */
  -webkit-transform: none;
  transform: none;
  will-change: auto;
}

.searchResultsPage .ferryBanner {
  height: auto;
  background: #0000000f;
  margin-top: -75px;
  padding: 120px 0px 40px 0px;
}

.searchResultsPage .ferryBanner.secHeight {
  height: 460px;
}

.searchResultsPage .bookingConsole {
  position: relative;
  transform: none;
  left: auto;
  top: auto;
  width: 100%;
}

.searchResultsPage .searchResults {
  height: auto;
}

.searchResultsPage .searchResults::-webkit-scrollbar {
  display: none;
}

.searchResultsPage.boatBook {
  height: auto;
}

.searchResultsPage.boatBook .ferryBanner {
  padding-bottom: 0;
}

.searchResultsPage .ferryBanner::after {
  display: none;
}

.bannerImg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.ferryName {
  width: 45%;
}

@media only screen and (max-width: 1399px) {
  .bookingCard p {
    font-size: 16px;
  }

  .bookingCard p span {
    font-size: 20px;
  }

  footer {
    background-color: #1793a3;
  }
}

@media only screen and (max-width: 1200px) {
  .bookingCard img {
    width: 140px;
  }

  .weOfferPoints h3 {
    font-size: 20px;
  }
}

@media only screen and (max-width: 1100px) {
  .testimonials {
    background: url(../images/ocean.jpg) no-repeat center / cover;
  }
}

.bannerBtns button {
  background: transparent;
  border: none;
}

.footer_links ul li a {
  text-decoration: none;
  color: #fff;
}

.nav-tabs {
  background: #008495b0;
}

.nav-tabs .nav-link {
  color: #fff;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-link.show {
  background: #008495 !important;
  color: #fff !important;
}

.lds-spinner,
.lds-spinner div,
.lds-spinner div:after {
  box-sizing: border-box;
}

.lds-spinner {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-spinner div {
  transform-origin: 40px 40px;
  animation: lds-spinner 1.2s linear infinite;
}

.lds-spinner div:after {
  content: " ";
  display: block;
  position: absolute;
  top: 3.2px;
  left: 36.8px;
  width: 6.4px;
  height: 17.6px;
  border-radius: 20%;
  background: currentColor;
}

.lds-spinner div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -1.1s;
}

.lds-spinner div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -1s;
}

.lds-spinner div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.9s;
}

.lds-spinner div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.8s;
}

.lds-spinner div:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.7s;
}

.lds-spinner div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.6s;
}

.lds-spinner div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.5s;
}

.lds-spinner div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.4s;
}

.lds-spinner div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.3s;
}

.lds-spinner div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.2s;
}

.lds-spinner div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.1s;
}

.lds-spinner div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
}

@keyframes lds-spinner {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.header-expanded .close {
  display: none !important;
}

.light_box .carousel-item {
  height: auto !important;
}

#infants:focus {
  outline: none;
  box-shadow: none;
  border-color: initial;
}

#pasanger:focus {
  outline: none;
  box-shadow: none;
  border-color: initial;
}

.dk-visible {
  display: block;
}

.mb-visible {
  display: none;
}

/* ============Responsive================ */

@media only screen and (max-width: 567px) {
  .banner .carousel-item {
    height: 100%;
  }

  .bannerDetails p {
    display: none;
  }

  .ferryName {
    width: 100%;
  }

  .downArrow {
    display: none;
  }

  .banner {
    height: 200px;
  }

  .carousel {
    height: 100%;
  }

  .carousel-inner {
    height: 100%;
  }

  .bannerDetails {
    top: 50%;
  }

  .socialIcon {
    top: 90%;
  }

  .classBtn {
    margin: 0px 0px 0px auto;
    width: 100%;
  }

  .ferryCard.ferrySearch .ferryDetails {
    display: block;
  }
}

@media only screen and (max-width: 470px) {
  #payment {
    width: 95%;
  }

  .ferryCard {
    display: block;
  }

  .testimonials {
    height: 650px;
  }

  .ferryDetails {
    margin-left: 0 !important;
    margin-top: 20px;
  }

  .ferryDetails button {
    margin-top: 15px;
  }

  .ferryDetails h4,
  .ferryDetails p {
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 360px) {
  .ferryCard.boatCard.ferrySearch .ferryDetails {
    width: 100%;
  }

  .ferryCard.ferrySearch .ferryDetails {
    display: block;
  }

  .ferryCard.ferrySearch .ferryDetails button {
    margin-top: 10px;
    margin-left: 0;
  }

  .ferryCard.ferrySearch .ferryImg img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
}

/* CRITICAL MOBILE FIXES */
@media only screen and (max-width: 767px) {
  header {
    position: fixed;
    top: 0;
    z-index: 9999;
    background-color: #fff;
    width: 100%;
    border-bottom: 1px solid #dbdbdb;
  }

  main {
    margin-top: 75px;
    padding-top: 0;
  }

  p {
    font-size: 1.2em;
  }

  .form-select {
    font-size: 1.2em;
    line-height: 2;
  }

  .navbar-brand {
    order: 1;
  }

  .tabBtns {
    justify-content: space-between;
    padding: 0 5px;
    overflow: hidden;
  }
  
  .tabBtn {
    padding: 8px 6px;
    font-size: 0.8em;
    margin: 0 1px;
    flex: 1;
    min-width: 0;
  }
  
  .tabBtn p {
    font-size: 0.75rem;
    line-height: 1.2;
  }
  
  .tabBtn img {
    width: 16px;
  }
  
  .tabBtn i {
    font-size: 0.8rem;
  }
  
  /* Ensure Available Schedule button is fully visible on mobile */
  .tabBtn3 {
    min-width: 0;
    flex: 1.1;
  }
  
  .tabBtn3 p {
    font-size: 0.65rem;
    white-space: nowrap;
    overflow: visible;
    text-overflow: unset;
    line-height: 1.1;
  }
  
  .btn-book-now {
    font-size: 1.1rem;
    padding: 15px 35px;
    letter-spacing: 1px;
    border-width: 2px;
    font-weight: bold;
  }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
  .tabBtn {
    padding: 6px 3px;
    font-size: 0.7em;
    margin: 0 1px;
  }
  
  .tabBtn p {
    font-size: 0.7rem;
    line-height: 1.1;
  }
  
  .tabBtn img {
    width: 14px;
  }
  
  .tabBtn i {
    font-size: 0.7rem;
  }
  
  .tabBtns {
    padding: 0 2px;
  }
  
  /* Give Available Schedule button slightly more space */
  .tabBtn3 {
    flex: 1.1;
  }
  
  /* Ensure Available Schedule button text is visible on small screens */
  .tabBtn3 p {
    font-size: 0.6rem !important;
    white-space: nowrap;
    overflow: visible;
    text-overflow: unset;
    line-height: 1.0;
  }

  .mt-sm-20 {
    margin-top: 20px;
  }

  .col-sm-6 {
    width: 50%;
  }

  .secHead h2 {
    font-size: 30px;
    font-weight: 700;
  }

  .mb-visible {
    display: block;
  }

  .dk-visible {
    display: none !important;
  }

  .tabs {
    padding: 10px;
  }

  .tabs label {
    font-size: 1.2em;
  }

  .processCard,
  .card-body {
    padding: 0;
  }

  .mb-text-center {
    text-align: center !important;
  }

  .nav-tabs {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .nav-tabs .nav-link {
    padding: 10px;
  }

  .nav-tabs .nav-link.active,
  .nav-tabs .nav-link.show {
    color: #fff !important;
  }

  button.accordion-button.collapsed {
    background-color: beige;
  }

  .testimonials {
    margin-top: 15px;
    padding: 30px 0 0 0;
    height: auto;
  }

  .testimonials p {
    text-align: center;
  }

  .profileInfo h3 {
    font-size: 30px;
  }

  .weOfferPoints img {
    width: 50px;
  }

  .auth-img img {
    width: 60px;
  }

  .nav-tabs .nav-link {
    border: none !important;
    border-radius: 0 !important;
  }

  .secHead h4 {
    font-size: 25px;
  }

  .secHead h5 {
    font-size: 22px;
  }

  .blogCards {
    margin-top: 10px;
    padding: 30px 0px;
  }

  .blogcard,
  .blogCardInfo {
    border-radius: 10px;
  }

  .blogCardInfo h3 {
    padding: 10px 0;
    font-size: 1.2em;
    text-align: center !important;
  }

  .blogCardInfo span {
    color: #000000;
    font-size: 1.1em;
    text-align: center !important;
  }

  .blogCardInfo a {
    font-size: 1.1em;
    text-align: center !important;
    justify-content: center;
  }

  .blogImg img {
    width: 100%;
  }

  .sectionHead h2 {
    margin-bottom: 10px !important;
    text-align: center;
    font-size: 30px;
  }

  .sectionHead p {
    text-align: center;
    color: #000;
    line-height: 1.4;
  }

  .anailable24 {
    text-align: center;
    color: #ffc107 !important;
    line-height: 1.4;
    font-size: 1.3em;
  }

  footer .accordion-button {
    background-color: transparent !important;
  }

  footer .justify-content-end {
    justify-content: center !important;
  }

  footer .accordion-body {
    background: transparent !important;
    color: #ffffff !important;
  }

  .searchResultsPage .ferryBanner {
    padding: 90px 0px 0 0px;
  }

  .tabs2 .border-bottom {
    padding: 0 !important;
  }

  .tabContainer {
    padding: 0;
  }

  .tabs input,
  .tabs select {
    background-color: beige !important;
    height: 45px;
    padding: 0 10px !important;
    width: 100% !important;
  }

  .border-end {
    border-right: 0 !important;
  }

  .searchResultsPage .ferryBanner {
    background-color: transparent !important;
  }

  .searchResultsPage {
    margin-top: 10px !important;
  }

  .searchResultsPage .col-12 {
    padding: 0 !important;
  }

  .searchResultsPage .secHead {
    margin-bottom: 10px !important;
  }

  .ferryDetails .btn,
  .proceedBtn {
    justify-content: space-around;
  }

  .ferryName {
    margin-bottom: 15px;
  }

  .ferryName h4 {
    text-align: center;
    margin-bottom: 5px !important;
  }

  .ferryName p {
    text-align: center;
    margin-bottom: 5px !important;
  }

  .contactCard .col-12 {
    padding: 0 !important;
  }

  .contactCard input {
    background-color: beige !important;
    height: 45px;
    padding: 0 10px !important;
    width: 100% !important;
    font-size: 1.1em !important;
  }

  .contactCard textarea {
    background-color: beige !important;
  }

  .contactCard .from-label {
    font-size: 1.1em !important;
  }

  .contactCard .text-end {
    text-align: center !important;
  }

  .contactInfo {
    justify-content: center !important;
  }

  .contactInfo h3,
  .contactInfo p {
    text-align: center;
  }

  .contactInfo.align-items-center {
    margin-bottom: 10px !important;
  }

  .contactInfo.align-items-center p {
    margin-bottom: 0 !important;
  }

  .blogs {
    margin-top: 100px !important;
    margin-bottom: 10px !important;
  }

  .tem-condotion p {
    text-align: center !important;
  }

  .booking-details {
    margin-bottom: 10px !important;
  }

  .travel-insurance-main-bg {
    padding: 20px 5px;
  }

  .travel-insurance-main-bg select,
  .travel-insurance-main-bg input {
    background-color: beige !important;
    height: 45px;
    padding: 0 10px !important;
    width: 100% !important;
    font-size: 1.1em !important;
  }

  .booking-journey-prevnext-btn {
    margin-bottom: 10px;
  }

  .booking-journey-prevnext-btn .col-12 {
    padding: 0 !important;
  }

  .booking-journey-prevnext-btn p {
    text-align: center;
  }

  .force-top {
    margin-top: -15px !important;
  }

  .add-insurance-heading {
    text-align: center;
  }

  .home-heading-top {
    text-align: center;
  }

  .proceedBtn {
    padding: 10px 15px;
    border-radius: 5px;
    background: #ffc107 !important;
    font-size: 1.2em;
    font-weight: 500;
    color: #000 !important;
  }

  .btn-mb-available {
    padding: 10px 15px !important;
    border-radius: 5px;
    background: #ffc107 !important;
    font-size: 1.2em;
    font-weight: 500;
    color: #000 !important;
  }

  .fa-square-whatsapp {
    color: #ffc107;
  }

  .fa-phone-square {
    color: #ffc107;
  }

  .navbar-collapse .desktop {
    text-align: center;
    padding: 40px 0;
  }

  .quoteBtn {
    padding: 10px 45px;
    font-size: 1.2em;
  }

  /* ---------- Previous Code ---------------- */

  .ferryBanner.secHeight {
    height: 1200px;
  }

  .bannerImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .testimonials {
    height: 600px;
  }

  .accordion-body {
    background: #f5f5dc;
    color: #000000;
  }

  .boatBook .bookingConsole {
    top: 50%;
  }

  .boatBook {
    height: 400px;
  }

  .ferryBanner {
    background: url("../images/ocean.jpg") no-repeat center center / auto 100%;
    height: 650px;
  }

  .searchResultsPage .ferryBanner {
    height: 400px;
  }

  .searchResultsPage .ferryBanner.ferryResults {
    height: 620px;
  }

  .searchResultsPage .ferryBanner.ferryResults.secHeight {
    height: auto;
  }

  .ourStats {
    overflow-x: scroll;
  }

  .bookingSummary {
    height: auto;
    max-height: initial;
  }

  .bookingConsole {
    top: 35%;
    bottom: auto;
    padding-bottom: 30px;
  }

  .ferryBanner.secHeight .bookingConsole {
    bottom: 25%;
  }

  .ferryCard.ferrySearch .ferryDetails {
    width: 100%;
    margin-left: 0 !important;
  }

  .ferryCard.ferrySearch .ferryImg {
    width: 100%;
  }

  .billMobile {
    display: block;
    background: #008495 !important;
    width: 100%;
    bottom: 0px;
    z-index: 99999;
    padding: 10px 0px;
    border: none !important;
    font-size: 1.2em;
  }

  .summery-btn {
    padding: 0 10px;
  }

  footer.mobile {
    display: block;
  }

  footer.mobile h2 .accordion-button {
    color: #fff;
  }

  footer.mobile .accordion-button,
  footer.mobile .accordion-flush,
  footer.mobile .accordion-item {
    background: transparent;
  }

  footer.mobile .accordion-button::after {
    background-image: url("../images/expand_white.svg") !important;
  }

  footer.mobile .accordion-button:not(.collapsed)::after {
    background-image: url("../images/collapse_white.svg") !important;
  }

  footer.desktop {
    display: none;
  }

  .ourStatsScroll {
    width: 640px;
  }

  .cardImg {
    height: 170px;
  }

  .weOfferPoints h3 {
    font-size: 1.2em;
    font-weight: 400;
  }

  .bannerBtns {
    display: none;
  }

  .socialIcon {
    right: -25px;
    left: auto;
    top: 60%;
    transform: translate(-50%, -50%);
  }

  footer {
    background-color: #1793a3;
  }

  .destinationCard img {
    width: 100% !important;
  }

  .ferryCard.ferrySearch {
    display: block;
  }

  .ferryCard.ferrySearch .ferryImg {
    margin-bottom: 25px;
  }

  .ferryCard.ferrySearch .ferryImg img {
    width: 100%;
    object-fit: cover;
    height: 100%;
  }

  .ferryCard.boatCard.ferrySearch .ferryImg {
    width: 100%;
  }

  .ferryCard.boatCard.ferrySearch .ferryDetails {
    width: 100%;
  }

  .ferryCard.boatCard.ferrySearch .ferryDetails a {
    display: block;
  }
  .table-delet-btn {
    margin-top: 0;
  }
  .secHead h3, .secHead span{
    text-align: center;
  }

  /* FIXED: Critical mobile scroll fixes */
  /* Remove problematic scroll behavior */
  html {
    scroll-behavior: auto !important;
    -webkit-overflow-scrolling: auto !important;
  }
  
  body {
    -webkit-overflow-scrolling: auto !important;
    overscroll-behavior: auto !important;
    overflow-x: hidden;
    overflow-y: auto;
  }

  /* Remove hardware acceleration on mobile */
  .billMobile, .navbar, footer.mobile, .whats-app, .phone-app {
    -webkit-transform: none !important;
    transform: none !important;
    will-change: auto !important;
  }
  
  /* Fix floating buttons positioning */
  .whats-app {
    position: fixed;
    bottom: 270px;
    right: 15px;
    top: auto !important;
    z-index: 1000;
    transition: all 0.3s ease !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #25D366 !important;
    color: white !important;
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4) !important;
    animation: whatsappPulse 2s infinite !important;
  }
  
  .phone-app {
    position: fixed;
    bottom: 210px;
    right: 15px;
    top: auto !important;
    z-index: 1000;
    transition: all 0.3s ease !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #1e90ff !important;
    color: white !important;
    box-shadow: 0 6px 15px rgba(30, 144, 255, 0.4) !important;
  }
  
  @keyframes whatsappPulse {
    0% { box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 6px 15px rgba(37, 211, 102, 0.8), 0 0 0 10px rgba(37, 211, 102, 0.1); }
    100% { box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4); }
  }

  /* FIXED: Disable all problematic animations and transforms on mobile */
  .feature-card, .booking-form-wrapper, .step-block, .info-card, .processCard {
    transition: none !important;
    transform: none !important;
    will-change: auto !important;
  }
  
  .feature-card:hover, .booking-form-wrapper:hover, .step-block:hover {
    transform: none !important;
    box-shadow: 0 4px 12px rgba(0,132,149,0.1) !important;
  }
  
  /* Remove icon animations */
  .feature-icon img, .step-block img, .bi, .fa {
    transition: none !important;
    transform: none !important;
  }
  
  .feature-card:hover .feature-icon img, .step-block:hover img {
    transform: none !important;
    filter: none !important;
  }

  /* Fix overflow issues */
  .searchResults, .bookingSummary {
    height: auto !important;
    overflow-y: visible !important;
    max-height: none !important;
  }

  /* Simplify hero section */
  .hero-section {
    padding: 40px 0 !important;
    overflow: visible !important;
  }
  
  .hero-section::before {
    display: none !important;
  }
  
  .hero-section h1 {
    font-size: 2rem !important;
    line-height: 1.3 !important;
  }

  /* Fix carousel and testimonials */
  .testimonials {
    height: auto !important;
    padding: 30px 0 !important;
    overflow: visible !important;
  }
  
  .carousel-item {
    height: auto !important;
    min-height: 300px !important;
  }

  /* Fix booking form */
  .booking-form-wrapper {
    padding: 1rem !important;
    margin: 1rem 0 !important;
    border-radius: 10px !important;
    transform: none !important;
    position: relative !important;
  }
  
  /* Mobile popup styles */
  .bookingSumBg {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
  }
  
  .bookingSumBg.show {
    display: block;
  }
  
  #payment.show {
    display: block !important;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    width: 90%;
    max-width: 400px;
    max-height: 80vh;
    overflow-y: auto;
  }
  
  .bookingConsole {
    position: relative !important;
    top: auto !important;
    bottom: auto !important;
    transform: none !important;
    width: 100% !important;
  }

  /* Emergency fix - disable all problematic properties */
  * {
    -webkit-overflow-scrolling: auto !important;
    overflow-scrolling: auto !important;
    overscroll-behavior: auto !important;
    backface-visibility: visible !important;
    -webkit-backface-visibility: visible !important;
  }
}

@media only screen and (max-width: 991px) {
  .bookingSumBg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vh;
    height: 0%;
    background: #000000bf;
    backdrop-filter: blur(2px);
    transition: all 0.3s ease 0s;
    z-index: 100000;
  }

  .bookingSumBg.show {
    height: 100%;
  }

  .booking-summary-main-bg {
    overflow-y: scroll;
    height: 415px;
  }

  .booking-summary-main-bg.boat {
    height: auto;
  }

  .searchResultsPage .ferryBanner {
    height: 430px;
  }

  .searchResultsPage .ferryBanner.secHeight {
    height: 850px;
  }

  #payment {
    position: fixed !important;
    z-index: 999999;
    width: 90%;
    left: 50%;
    top: -1000px !important;
    transform: translateX(-50%);

    transition: all 0.3s ease 0s;
  }

  #payment.show {
    top: 100px !important;
  }

  .overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #00000083;
    display: none;
    z-index: 9;
  }

  #navbarNav {
    background: transparent;
    width: 100%;
    padding: 20px;
    z-index: 9999;
    transition: all 0.4s ease 0s;
    order: 2;
    padding: 0;
  }

  #navbarNav.show {
    right: 0;
  }

  header .nav-link {
    color: #000;
    font-size: 2em !important;
    line-height: 1.4em;
    text-align: center;
  }

  header .nav-link.active {
    color: #008495 !important;
    border-bottom: none !important;
  }

  .navbar-nav {
    padding: 0 0;
    background: #fff;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
  }

  .navbar-nav li:first-child {
    margin-top: -150px;
  }

  .bannerDetails h1 {
    font-size: 40px;
  }

  .bannerDetails h1 span {
    font-size: 26px;
  }

  .bannerDetails h1 label {
    font-size: 40px;
  }

  .bookingConsole {
    top: 38%;
    bottom: auto;
  }

  .ferryBanner.secHeight {
    height: 850px;
  }

  .ferryBanner.secHeight .bookingConsole {
    bottom: 18%;
  }

  .ferryBanner {
    height: 450px;
    background: url("../images/ocean.jpg") no-repeat center center / auto 100%;
  }

  .bookingCard img {
    width: 185px;
  }
  .blogDetailsImg {
    padding: 0;
  }
  .blogDetails {
    padding: 25px;
  }
  .blogDetails h3 {
    font-size: 1.8em !important;
    text-align: center;
  }
  .blogDetails span {
    text-align: center;
  }
  .blog-details-content p {
    text-align: center;
  }
  .search-banner {
    padding: 20px 0 0;
  }
  .banner-content h2 {
    font-size: 2em;
    text-align: center;
  }
  .banner-content p {
    text-align: center;
  }
  .ticket-booked,
  .rated {
    justify-content: center;
    padding: 4px !important;
  }
  .banner-content {
    padding-bottom: 20px;
  }
  .available-schedule {
    padding-top: 20px;
  }
  .table-delet-btn button {
    margin-top: 15px;
  }
  .table-delet-btn {
    justify-content: end;
    display: flex;
    position: absolute;
    top: 0;
  }
  .trip-name {
    font-size: 1.2em;
    font-weight: 600;
    color: #dc3545;
  }
  .trip-section {
    align-items: center;
  }
  .trop-relative {
    position: relative;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
}

/* New sticky header styles - REMOVED problematic sticky behavior */
.sticky-header.scrolled {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

/* Hero Section Styles */
.hero-section {
    background: linear-gradient(135deg, #008495 0%, #00a0b7 100%);
    padding: 80px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/wave-pattern.png') repeat;
    opacity: 0.1;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-section .lead {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-features {
    margin-top: 2rem;
}

.hero-features span {
    font-size: 1.1rem;
    font-weight: 500;
}

.booking-form-wrapper {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.booking-form-header {
    margin-bottom: 2rem;
}

.booking-form-header h3 {
    color: #008495;
    font-weight: 600;
}

.booking-form-header p {
    color: #6c757d;
}

/* Updated Form Styles */
.form-select, .form-control {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-select:focus, .form-control:focus {
    border-color: #008495;
    box-shadow: 0 0 0 0.2rem rgba(0, 132, 149, 0.25);
}

.button {
    background: #008495;
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.button:hover {
    background: #006d7a;
}

/* Tab Styles */
.tabBtn {
    padding: 1rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tabBtn.active {
    background: #008495;
    color: #fff;
}

.tabBtn p {
    margin: 0;
    font-weight: 500;
}

/* Why Us Section Styles */
.why-us-section {
    background: url('http://127.0.0.1:8000/assets/images/pattern-travel-bg.svg');
    padding: 80px 0;
}

.bg-image-svg {
  background: url('http://127.0.0.1:8000/assets/images/pattern-travel-bg.svg');

}

.section-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: #008495;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 3rem;
}

/* Field alignment for search results */
.trop-relative .col-12.col-lg-3,
.trop-relative .col-12.col-lg-1 {
    display: flex;
    flex-direction: column;
}

.trop-relative label {
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
}

.trop-relative .form-select,
.trop-relative .form-control,
.trop-relative .my_date_picker {
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 8px 12px;
}

.trop-relative .form-select:focus,
.trop-relative .form-control:focus,
.trop-relative .my_date_picker:focus {
    border-color: #008495;
    box-shadow: 0 0 0 0.2rem rgba(0, 132, 149, 0.25);
}

.feature-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    /* FIXED: Remove problematic hover transforms */
    transition: box-shadow 0.3s;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* FIXED: Remove hardware acceleration */
    -webkit-transform: none;
    transform: none;
    will-change: auto;
}

.feature-card:hover, .booking-form-wrapper:hover {
    /* FIXED: Remove translateY animation */
    box-shadow: 0 12px 32px rgba(0,132,149,0.13);
    z-index: 2;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* FIXED: Remove problematic transform animation */
    transition: none;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.feature-card p {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 0;
    line-height: 1.5;
}

/* FIXED: Remove problematic AOS animations */
[data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}
[data-aos].aos-animate {
    opacity: 1;
}

/* FIXED: Simplified micro-interactions without scroll issues */
.button, .btn, .quoteBtn {
    position: relative;
    overflow: hidden;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0,132,149,0.07);
}

/* FIXED: Remove problematic transform and animations */
.feature-card, .booking-form-wrapper {
    transition: box-shadow 0.18s;
}

.feature-card:hover, .booking-form-wrapper:hover {
    box-shadow: 0 12px 32px rgba(0,132,149,0.13);
    z-index: 2;
}

/* Form field focus/hover */
.form-select, .form-control {
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.form-select:focus, .form-control:focus {
    background: #e6f7fa;
    border-color: #00a0b7;
    box-shadow: 0 0 0 2px #00a0b733;
}

/* Subtle shadow for interactive elements */
.tabBtn, .booking-form-wrapper, .feature-card {
    box-shadow: 0 2px 8px rgba(0,132,149,0.07);
}
.tabBtn.active, .tabBtn:hover {
    box-shadow: 0 4px 16px rgba(0,132,149,0.13);
    background: #e6f7fa;
    color: #008495;
}

/* FIXED: Remove all problematic social icon animations */
footer .social-icons a img, .footer_links a img {
    transition: none;
}

/* Why Us: Feature icons always visible, only card hover effect */
.feature-card .feature-icon img {
    filter: brightness(1.15) drop-shadow(0 2px 8px #00a0b7aa);
    transform: none;
    transition: transform 0.25s cubic-bezier(.4,2,.6,1), filter 0.18s;
}
.feature-card:hover .feature-icon img {
    filter: brightness(1.15) drop-shadow(0 4px 16px #00a0b7cc);
    transform: scale(1.18);
}
.why-us-section .feature-card .feature-icon img {
    transition: transform 0.25s cubic-bezier(.4,2,.6,1), filter 0.18s;
}
.why-us-section .feature-card:hover .feature-icon img {
    filter: brightness(1.15) drop-shadow(0 4px 16px #00a0b7cc);
    transform: scale(1.18);
}

/* Booking form alignment */
.booking-form-wrapper .row.mb-3 > div,
.booking-form-wrapper .row > div {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.booking-form-wrapper label {
    font-weight: 500;
    margin-bottom: 0.25rem;
}
.booking-form-wrapper .form-select,
.booking-form-wrapper .form-control {
    min-width: 120px;
    margin-bottom: 0;
}
@media (min-width: 992px) {
    .booking-form-wrapper .row.mb-3 > div,
    .booking-form-wrapper .row > div {
        flex: 1 1 0;
        min-width: 0;
        margin-right: 8px;
    }
    .booking-form-wrapper .row.mb-3 > div:last-child,
    .booking-form-wrapper .row > div:last-child {
        margin-right: 0;
    }
}

/* Info Card Section */
.info-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,132,149,0.10);
    /* FIXED: Remove transform animation */
    transition: box-shadow 0.18s;
    border: 1px solid #e0e0e0;
}
.info-card:hover {
    box-shadow: 0 12px 32px rgba(0,132,149,0.13);
}
.info-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 1rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,132,149,0.08);
}
.info-card h5 {
    color: #008495;
    font-size: 1.15rem;
}
.info-card p {
    color: #6c757d;
    font-size: 1rem;
}

/* Our Partners Section Polish */
.partner-logo {
    background: #fff;
    border-radius: 8px;
    padding: 6px 10px;
    margin: 0.5rem auto;
    width: 80px;
    height: 40px;
    object-fit: contain;
    box-shadow: 0 2px 8px rgba(0,132,149,0.08);
    display: block;
}
@media (max-width: 991px) {
    .partner-logo {
        width: 60px;
        height: 32px;
    }
}

/* Booking Search Box Alignment Fix */
.booking-form-wrapper form .row.mb-3,
.booking-form-wrapper form .row.search-bar-btn {
    flex-wrap: wrap;
    align-items: flex-end;
    margin-left: 0;
    margin-right: 0;
}
.booking-form-wrapper form .row.mb-3 > div,
.booking-form-wrapper form .row.search-bar-btn > div {
    margin-bottom: 0.5rem;
    min-width: 120px;
    flex: 1 1 0;
    padding-right: 8px;
}
.booking-form-wrapper form .row.mb-3 > div:last-child,
.booking-form-wrapper form .row.search-bar-btn > div:last-child {
    padding-right: 0;
}
.booking-form-wrapper .button, .booking-form-wrapper .btn {
    width: 100%;
    min-width: 120px;
}
@media (max-width: 991px) {
    .booking-form-wrapper form .row.mb-3 > div,
    .booking-form-wrapper form .row.search-bar-btn > div {
        min-width: 100%;
        padding-right: 0;
    }
}

/* Modern Footer Styles */
footer.modern-footer, .modern-footer {
    background: #0b2e36;
    color: #f5f7fa;
    border-top: none;
    box-shadow: 0 -2px 16px rgba(0,0,0,0.08);
    padding-top: 3rem;
    padding-bottom: 2rem;
}
footer .footer-title {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}
footer .footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
footer .footer-list li {
    color: #e0e6ea;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}
footer .footer-list a {
    color: #b2e6f7;
    text-decoration: none;
    transition: color 0.2s;
}
footer .footer-list a:hover {
    color: #fff;
    text-decoration: underline;
}
footer .footer-logos img {
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    background: #fff;
    border-radius: 8px;
    padding: 4px;
    box-shadow: 0 2px 8px rgba(0,132,149,0.08);
}
/* Footer 3-Column Layout */
.footer-left {
    text-align: left;
}
.footer-center {
    text-align: center;
}
.footer-right {
    text-align: right;
}
.footer-left .footer-logos {
    justify-content: flex-start;
}
.footer-left .footer-social {
    justify-content: flex-start;
}
.footer-center .footer-social {
    justify-content: center;
}
.footer-right .footer-social {
    justify-content: flex-end;
}

footer .footer-social {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}
footer .footer-social a {
    display: inline-block;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    /* FIXED: Remove transform animation */
    transition: none;
}
footer .footer-partners img {
    background: #fff;
    border-radius: 8px;
    padding: 4px 8px;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    width: 60px;
    height: 36px;
    object-fit: contain;
    box-shadow: 0 2px 8px rgba(0,132,149,0.08);
}
footer .footer-partners img:last-child {
    margin-right: 0;
}
footer .small.text-muted {
    color: #b2e6f7 !important;
    opacity: 0.7;
}
/* Desktop/Web view adjustments */
@media (min-width: 992px) {
    .footer-right {
        padding-right: 2rem;
    }
}

@media (max-width: 991px) {
    .footer-left, .footer-center, .footer-right {
        text-align: center !important;
        padding-right: 0 !important;
    }
    .footer-left .footer-logos {
        justify-content: center !important;
    }
    .footer-left .footer-social {
        justify-content: center !important;
    }
    footer .footer-social {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Featured Andaman modern card styles */
.featured-andaman-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
    /* FIXED: Remove transform animation */
    transition: box-shadow 0.3s;
}
.featured-andaman-card:hover {
    box-shadow: 0 8px 32px rgba(0,132,149,0.13);
}

/* Andaman Ferry Booking Info: taller blocks, visible images */
.ferry-info-block {
    min-height: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    padding: 2rem 1rem;
    margin-bottom: 1.5rem;
}
.ferry-info-block img {
    max-height: 90px;
    margin-bottom: 1rem;
    object-fit: contain;
}

/* Step for Ferry Booking: FIXED - remove hover animation */
.step-block {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    /* FIXED: Remove transform animation */
    transition: box-shadow 0.3s;
    overflow: hidden;
    position: relative;
}
.step-block:hover {
    box-shadow: 0 8px 32px rgba(0,132,149,0.13);
}
.step-block img {
    /* FIXED: Remove transform animation */
    transition: none;
}
.step-block:hover img {
    /* FIXED: Remove scale animation */
    transform: none;
}

/* Booking form: fix round trip alignment */
.booking-form-wrapper .tab-content .tab-pane.active .row {
    flex-wrap: nowrap;
    gap: 1rem;
    align-items: center;
}
.booking-form-wrapper .tab-content .tab-pane.active .row > div {
    flex: 1 1 0;
    min-width: 0;
}
@media (max-width: 991px) {
    .booking-form-wrapper .tab-content .tab-pane.active .row {
        flex-wrap: wrap;
    }
    .booking-form-wrapper .tab-content .tab-pane.active .row > div {
        flex: 1 1 100%;
        min-width: 100%;
        margin-bottom: 1rem;
    }
}

/* Footer: larger, center-aligned content */
footer.modern-footer, .modern-footer {
    font-size: 1.18rem;
    text-align: center;
    padding-left: 0;
    padding-right: 0;
}
footer .footer-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}
footer .footer-list li, footer .footer-list a {
    font-size: 1.18rem;
}
footer .footer-logos img {
    width: 130px !important;
    height: auto;
    margin: 0 0.7rem 0.7rem 0;
}
footer .footer-social a img {
    width: 36px !important;
    height: 36px !important;
}
footer .container-fluid, .modern-footer .container-fluid {
    max-width: 100vw;
    /* Remove padding override to allow Bootstrap px-5 class to work */
}
footer .row.justify-content-center.align-items-center.text-center.gy-4 > div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Andaman Ferry Booking Information: much larger images */
.ferry-info-block img, .info-card img.info-img {
    max-height: 160px !important;
    width: auto !important;
    margin-bottom: 1.5rem;
}

/* FIXED: Remove problematic step block image hover animation */
.step-block img {
    transition: none;
}
.step-block:hover img {
    transform: none;
}

/* Round trip search box: block layout for each field */
.booking-form-wrapper .tab-content .tab-pane.active .row.flex-nowrap {
    flex-wrap: wrap !important;
}
.booking-form-wrapper .tab-content .tab-pane.active .row.flex-nowrap > div {
    flex: 1 1 100%;
    min-width: 100%;
    margin-bottom: 1rem;
}

/* Tab button hover effects */
.tabBtn:hover {
    background: #00a0b7;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,132,149,0.2);
}

/* BOOK NOW Button Styles */
.btn-book-now {
    background: #ff6b35 !important;
    border: 3px solid #fff !important;
    color: #fff !important;
    font-weight: bold !important;
    font-size: 1.4rem !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    border-radius: 50px !important;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4) !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3) !important;
    z-index: 10 !important;
    display: inline-block !important;
    text-decoration: none !important;
}

.btn-book-now:hover {
    background: #ff8c42 !important;
    color: #fff !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6) !important;
    border-color: #fff !important;
    text-decoration: none !important;
}

.btn-book-now:active {
    transform: translateY(-1px) scale(1.02) !important;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5) !important;
    background: #e55a2b !important;
    color: #fff !important;
}

.btn-book-now:focus {
    outline: none !important;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4), 0 0 0 4px rgba(255, 255, 255, 0.5) !important;
    background: #ff6b35 !important;
    color: #fff !important;
}

/* Ensure BOOK NOW button is visible in ferry process section */
.modern-ferry-process-section .btn-book-now {
    background: #ff6b35 !important;
    color: #fff !important;
    border: 3px solid #fff !important;
    position: relative !important;
    z-index: 100 !important;
    margin: 20px auto !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
}

/* Ensure the button container is visible */
.modern-ferry-process-section .text-center {
    position: relative !important;
    z-index: 50 !important;
    margin: 30px 0 !important;
}

/* Override any conflicting styles for the BOOK NOW button */
a.btn-book-now,
.btn.btn-book-now {
    background: #ff6b35 !important;
    color: #fff !important;
    border: 3px solid #fff !important;
    font-weight: bold !important;
    font-size: 1.4rem !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    border-radius: 50px !important;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4) !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3) !important;
    z-index: 1000 !important;
    display: inline-block !important;
    text-decoration: none !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
    margin: 20px auto !important;
}

/* Removed pulsing animation for cleaner look */

.btn-book-now::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.4s ease;
}

.btn-book-now:hover::before {
    left: 100%;
}

.btn-book-now i {
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.btn-book-now:hover i {
    transform: scale(1.1);
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Trust Signal Enhancement */
.rated {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    min-width: fit-content;
    width: auto;
    overflow: visible;
}

.rated span {
    font-weight: 900 !important;
    color: black !important;
    font-size: 1.4rem !important;
    line-height: 1.3 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    white-space: nowrap !important;
    flex-shrink: 0;
    display: inline-block;
    overflow: visible;
    text-overflow: unset;
}

.rated img {
    height: 28px !important;
}

/* Mobile responsiveness for trust signal */
@media (max-width: 768px) {
    .rated {
        min-width: fit-content !important;
        width: auto !important;
        max-width: none !important;
        overflow: visible !important;
        flex-shrink: 0 !important;
        display: flex !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
        padding: 8px 12px !important;
        background: rgba(255, 255, 255, 0.1) !important;
        border-radius: 8px !important;
        backdrop-filter: blur(10px) !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    }
    .rated span {
        font-size: 1.1rem !important;
        line-height: 1.2 !important;
        overflow: visible !important;
        text-overflow: unset !important;
        white-space: nowrap !important;
        flex-shrink: 0 !important;
        min-width: fit-content !important;
        width: auto !important;
        word-break: keep-all !important;
    }
    .rated img {
        height: 24px !important;
        flex-shrink: 0 !important;
        margin-right: 8px !important;
    }
}

@media (max-width: 480px) {
    .rated {
        min-width: fit-content !important;
        width: auto !important;
        max-width: none !important;
        overflow: visible !important;
        flex-shrink: 0 !important;
        display: flex !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
        padding: 6px 10px !important;
        background: rgba(255, 255, 255, 0.1) !important;
        border-radius: 6px !important;
        backdrop-filter: blur(10px) !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1) !important;
    }
    .rated span {
        font-size: 1rem !important;
        line-height: 1.1 !important;
        overflow: visible !important;
        text-overflow: unset !important;
        white-space: nowrap !important;
        flex-shrink: 0 !important;
        min-width: fit-content !important;
        width: auto !important;
        word-break: keep-all !important;
    }
    .rated img {
        height: 22px !important;
        flex-shrink: 0 !important;
        margin-right: 6px !important;
    }
}

@media (max-width: 360px) {
    .rated {
        min-width: fit-content !important;
        width: auto !important;
        max-width: none !important;
        overflow: visible !important;
        flex-shrink: 0 !important;
        display: flex !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
        padding: 5px 8px !important;
        background: rgba(255, 255, 255, 0.1) !important;
        border-radius: 5px !important;
        backdrop-filter: blur(10px) !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1) !important;
    }
    .rated span {
        font-size: 0.9rem !important;
        line-height: 1.1 !important;
        overflow: visible !important;
        text-overflow: unset !important;
        white-space: nowrap !important;
        flex-shrink: 0 !important;
        min-width: fit-content !important;
        width: auto !important;
        word-break: keep-all !important;
    }
    .rated img {
        height: 20px !important;
        flex-shrink: 0 !important;
        margin-right: 5px !important;
    }
}

/* Modern Hero Features with Flexbox */
.hero-features {
    margin: clamp(1rem, 4vw, 2rem) 0;
    display: flex;
    flex-direction: column;
    gap: clamp(0.75rem, 2vw, 1.5rem);
}

.hero-features .d-flex {
    display: flex;
    align-items: center;
    gap: clamp(0.5rem, 2vw, 1rem);
    margin-bottom: 0;
}

.hero-features i {
    color: #fff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    font-size: var(--icon-size) !important;
    flex-shrink: 0;
}

.hero-features span {
    color: #fff !important;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    font-size: clamp(0.8rem, 2vw + 0.5rem, 1.1rem);
    line-height: 1.4;
}

/* Mobile Responsive Hero Section */
@media (max-width: 768px) {
    .hero-section {
        padding: 20px 15px !important;
        margin-bottom: 20px !important;
    }
    
    .hero-content h1 {
        font-size: 1.8rem !important;
        line-height: 1.3 !important;
        margin-bottom: 20px !important;
        text-align: center !important;
    }
    
    .hero-content p {
        font-size: 0.95rem !important;
        line-height: 1.4 !important;
        margin-bottom: 25px !important;
        text-align: center !important;
        padding: 0 10px !important;
    }
    
    /* Ensure parent containers don't constrain trust signal */
    .d-flex.align-items-center.mb-4 {
        flex-wrap: nowrap !important;
        overflow: visible !important;
        justify-content: center !important;
        margin-bottom: 25px !important;
    }
    
    /* Hero features alignment */
    .hero-features {
        text-align: center !important;
        margin: 25px 0 !important;
    }
    
    .hero-features .d-flex {
        justify-content: center !important;
        margin-bottom: 15px !important;
    }
    
    /* Partner section spacing */
    .hero-partners-section {
        margin: 30px 0 !important;
        padding: 20px 15px !important;
    }
    
    .hero-features {
        margin: 15px 0 !important;
    }
    
    .hero-features .d-flex {
        margin-bottom: 12px !important;
    }
    
    .hero-features i {
        font-size: 18px !important;
        margin-right: 10px !important;
    }
    
    .hero-features span {
        font-size: 0.9rem !important;
        line-height: 1.3 !important;
    }
    
    .rated {
        margin: 15px 0 !important;
        padding: 8px 12px !important;
        min-width: fit-content !important;
        width: auto !important;
        max-width: none !important;
        overflow: visible !important;
        flex-shrink: 0 !important;
        display: flex !important;
        align-items: center !important;
    }
    
    .rated img {
        height: 22px !important;
        margin-right: 8px !important;
        flex-shrink: 0 !important;
    }
    
    .rated span {
        font-size: 1rem !important;
        line-height: 1.2 !important;
        white-space: nowrap !important;
        flex-shrink: 0 !important;
        min-width: fit-content !important;
        width: auto !important;
        overflow: visible !important;
        text-overflow: unset !important;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 15px 10px !important;
        margin-bottom: 15px !important;
    }
    
    .hero-content h1 {
        font-size: 1.5rem !important;
        line-height: 1.2 !important;
        margin-bottom: 18px !important;
        text-align: center !important;
    }
    
    .hero-content p {
        font-size: 0.85rem !important;
        line-height: 1.3 !important;
        margin-bottom: 20px !important;
        text-align: center !important;
        padding: 0 5px !important;
    }
    
    /* Ensure parent containers don't constrain trust signal */
    .d-flex.align-items-center.mb-4 {
        flex-wrap: nowrap !important;
        overflow: visible !important;
        justify-content: center !important;
        margin-bottom: 20px !important;
    }
    
    /* Hero features alignment */
    .hero-features {
        text-align: center !important;
        margin: 20px 0 !important;
    }
    
    .hero-features .d-flex {
        justify-content: center !important;
        margin-bottom: 12px !important;
    }
    
    /* Partner section spacing */
    .hero-partners-section {
        margin: 25px 0 !important;
        padding: 15px 10px !important;
    }
    
    .hero-features {
        margin: 12px 0 !important;
    }
    
    .hero-features .d-flex {
        margin-bottom: 10px !important;
    }
    
    .hero-features i {
        font-size: 16px !important;
        margin-right: 8px !important;
    }
    
    .hero-features span {
        font-size: 0.8rem !important;
        line-height: 1.2 !important;
    }
    
    .rated {
        margin: 12px 0 !important;
        padding: 6px 10px !important;
        min-width: fit-content !important;
        width: auto !important;
        max-width: none !important;
        overflow: visible !important;
        flex-shrink: 0 !important;
        display: flex !important;
        align-items: center !important;
    }
    
    .rated img {
        height: 20px !important;
        margin-right: 6px !important;
        flex-shrink: 0 !important;
    }
    
    .rated span {
        font-size: 0.9rem !important;
        line-height: 1.1 !important;
        white-space: nowrap !important;
        flex-shrink: 0 !important;
        min-width: fit-content !important;
        width: auto !important;
        overflow: visible !important;
        text-overflow: unset !important;
    }
}

/* Hero Partners Section */
.hero-partners-section {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 20px 0;
    position: relative;
    z-index: 1;
}

.hero-partners-section .partners-title {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase;
    margin-bottom: 15px !important;
}

.hero-partners-section .partner-logo {
    transition: all 0.3s ease;
    opacity: 0.9;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hero-partners-section .partner-logo:hover {
    opacity: 1;
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Mobile responsiveness for hero partners */
@media (max-width: 768px) {
    .hero-partners-section {
        padding: 15px 10px;
        margin: 15px 0;
    }
    
    .hero-partners-section .partners-title {
        font-size: 0.8rem !important;
        margin-bottom: 10px !important;
    }
    
    .hero-partners-section .partner-logo {
        max-height: 45px !important;
        padding: 6px !important;
    }
}

@media (max-width: 480px) {
    .hero-partners-section {
        padding: 12px 8px;
        margin: 12px 0;
    }
    
    .hero-partners-section .partners-title {
        font-size: 0.75rem !important;
        margin-bottom: 8px !important;
        text-align: center !important;
    }
    
    .hero-partners-section .partner-logo {
        max-height: 40px !important;
        padding: 5px !important;
        margin: 2px !important;
    }
    
    .hero-partners-section .row {
        margin: 0 -2px !important;
    }
    
    .hero-partners-section .col-6 {
        padding: 0 2px !important;
    }
}

/* Modern Ferry Schedule Table Styles */
.modern-schedule-table {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.modern-schedule-table thead tr {
    background: #e6f7fa;
}
.modern-schedule-table th, .modern-schedule-table td {
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    text-align: center;
}
.modern-schedule-table tbody tr {
    transition: background 0.2s, box-shadow 0.2s;
}
.modern-schedule-table tbody tr:hover {
    background: #f0fbfd;
    box-shadow: 0 2px 12px rgba(0,132,149,0.08);
}
@media (max-width: 767px) {
    .modern-schedule-table th, .modern-schedule-table td {
        padding: 0.75rem 0.5rem;
        font-size: 1rem;
    }
}

/* Increase info-img height for better visibility */
.info-img {
    height: 100px !important;
    max-height: 100px !important;
    width: auto !important;
    object-fit: contain;
    margin-bottom: 1.25rem;
}

/* Round trip booking form: match one way block layout */
.booking-form-wrapper .tab-content .tab-pane.active .row.flex-nowrap,
.booking-form-wrapper .tab-content .tab-pane.active .row {
    flex-wrap: wrap !important;
}
.booking-form-wrapper .tab-content .tab-pane.active .row.flex-nowrap > div,
.booking-form-wrapper .tab-content .tab-pane.active .row > div {
    flex: 1 1 100%;
    min-width: 100%;
    margin-bottom: 1rem;
}

/* Booking form label color for visibility */
.booking-form-wrapper label,
.tabs label {
    color: #495057 !important;
    font-weight: 600;
}

/* Modern Contact Us Page Glassmorphism Styles */
.contact-modern-bg {
  min-height: 100vh;
  background: linear-gradient(135deg, #e0f7fa 0%, #f8fafc 100%);
  display: flex;
  align-items: center;
}

.glass-card-modern {
  background: rgba(255,255,255,0.6);
  border-radius: 24px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.10);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.25);
  transition: box-shadow 0.3s, border 0.3s;
}
.glass-card-modern:hover {
  box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.18);
  border: 1.5px solid rgba(0,132,149,0.18);
}

.form-label-modern {
  font-weight: 600;
  color: #008495;
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
.form-control-modern {
  border-radius: 12px;
  border: 1.5px solid #e0e0e0;
  background: rgba(255,255,255,0.85);
  font-size: 1.08em;
  padding: 0.75em 1em;
  transition: border 0.2s, box-shadow 0.2s;
  box-shadow: none;
}
.form-control-modern:focus {
  border: 1.5px solid #008495;
  box-shadow: 0 0 0 2px rgba(0,132,149,0.08);
  background: rgba(255,255,255,0.95);
}

.btn-modern-primary {
  background: linear-gradient(90deg, #008495 0%, #00bfae 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 1.1em;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 8px 0 rgba(0,132,149,0.10);
  transition: background 0.2s, box-shadow 0.2s;
}
.btn-modern-primary:hover, .btn-modern-primary:focus {
  background: linear-gradient(90deg, #00bfae 0%, #008495 100%);
  color: #fff;
  box-shadow: 0 4px 16px 0 rgba(0,132,149,0.18);
}

.contact-icon-modern {
  font-size: 1.5em;
  color: #008495;
  flex-shrink: 0;
  margin-top: 0.1em;
}

.social-link-modern {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0,132,149,0.08);
  color: #008495;
  font-size: 1.5em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}
.social-link-modern:hover {
  transform: scale(1.2);
  box-shadow: 0 4px 12px rgba(0,132,149,0.3);
}

/* Contact Information Section Enhancements */
.glass-card-modern .contact-icon-modern {
  transition: color 0.3s ease;
}

.glass-card-modern:hover .contact-icon-modern {
  color: #00bfae;
}

.glass-card-modern a {
  transition: color 0.3s ease;
}

.glass-card-modern a:hover {
  color: #008495 !important;
}

@media (max-width: 991px) {
  .glass-card-modern {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .contact-modern-bg {
    padding: 2rem 0;
  }
  .glass-card-modern {
    padding: 1.5rem !important;
  }
}

/* FIXED: Modernized Navbar Styles without problematic animations */
header .navbar {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,132,149,0.06);
  border-radius: 0 0 18px 18px;
  display: flex;
  align-items: center;
  z-index: 999;
  padding: 0.5rem 1rem;
  min-height: 70px;
  transition: background 0.3s;
  position: fixed;
  overflow: visible;
  top: 0;
  left: 0;
  width: 100%;
}

.navbar-nav {
  gap: 1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  white-space: nowrap;
  flex-grow: 1;
  justify-content: center;
}

header .nav-link.menuBtn {
  font-family: 'Nunito Sans', 'Inter', 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #222;
  font-size: 1rem;
  padding: 0.6rem 1rem 0.6rem 1rem;
  border-radius: 8px 8px 0 0;
  background: transparent;
  transition: color 0.18s, font-weight 0.18s;
  position: relative;
  box-shadow: none;
  margin: 0 0.1rem;
  letter-spacing: 0.01em;
  border-bottom: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

header .nav-link.menuBtn::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.18rem;
  height: 3px;
  border-radius: 2px;
  background: #00bfae;
  transform: scaleX(0);
  /* FIXED: Remove problematic transform animation */
  transition: transform 0.22s;
  z-index: 2;
}

header .nav-link.menuBtn.active,
header .nav-link.menuBtn:focus,
header .nav-link.menuBtn:hover {
  color: #008495 !important;
  font-weight: 600;
}

header .nav-link.menuBtn.active::after,
header .nav-link.menuBtn:focus::after,
header .nav-link.menuBtn:hover::after {
  transform: scaleX(1);
}

header .nav-link.menuBtn::after {
  width: 100%;
  margin: 0 auto;
}

/* Book Now button fix */
.desktop .quoteBtn, .dk-visible .quoteBtn, .btn.quoteBtn {
  white-space: nowrap;
  min-width: 120px;
  padding: 0.6rem 1.5rem !important;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 2rem;
  line-height: 1.2;
  margin-left: auto;
}

@media (max-width: 991px) {
  .navbar-nav {
    gap: 0.5rem;
    flex-direction: column;
    align-items: flex-start;
    white-space: normal;
  }
  header .nav-link.menuBtn {
    padding: 0.6rem 0.8rem;
    font-size: 0.9rem;
    border-radius: 8px 8px 0 0;
    white-space: normal;
    display: block;
    text-align: left;
  }
  .desktop .quoteBtn, .dk-visible .quoteBtn, .btn.quoteBtn {
    min-width: 120px;
    padding: 0.9rem 1.2rem !important;
    font-size: 1.08rem;
    border-radius: 1.5rem;
  }
}

/* Additional navbar spacing fixes for larger screens */
@media (min-width: 992px) and (max-width: 1200px) {
  .navbar-nav {
    gap: 0.8rem;
  }
  header .nav-link.menuBtn {
    font-size: 0.8rem;
    padding: 0.4rem 0.6rem;
  }
  .desktop .quoteBtn, .dk-visible .quoteBtn, .btn.quoteBtn {
    min-width: 110px;
    padding: 0.5rem 1.2rem !important;
    font-size: 0.95rem;
  }
}

/* Homepage Patterned Background */
.homepage-pattern-bg {
  background-color: #fafbfc;
  background-image: url('../images/pattern-travel-bg.svg');
  background-repeat: repeat;
  background-size: 340px auto;
  padding-top: 3.5rem;
  padding-bottom: 5rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .homepage-pattern-bg {
    background-size: 180px auto;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

.why-us-section .section-title {
  color: #008495 !important;
}

.why-us-section .feature-card {
  min-height: 220px;
  min-width: 220px;
  padding: 2.5rem 2rem;
  margin: 0 auto 1.5rem auto;
}

@media (max-width: 991px) {
  .why-us-section .feature-card {
    min-width: 160px;
    min-height: 160px;
    padding: 1.5rem 1rem;
  }
}

.why-us-section {
  margin-top: 3.5rem;
}

.why-us-section .row.text-center.mb-5 {
  margin-bottom: 2rem !important;
}

.why-us-section .feature-card {
  min-width: 260px;
  min-height: 240px;
  padding: 2.8rem 2.2rem;
}

@media (max-width: 991px) {
  .why-us-section .feature-card {
    min-width: 180px;
    min-height: 180px;
    padding: 1.7rem 1.1rem;
  }
}

/* FIXED: Remove problematic process card animations */
.processCard.card.step-block img {
  transition: none;
}

.processCard.card.step-block:hover img {
  transform: none;
}

/* FIXED: Remove feature card icon animations */
.why-us-section .feature-card .feature-icon img {
  transition: none;
}



.blogList .col-12,
.blogList .col-md-6,
.blogList .col-lg-3 {
  margin-bottom: 2.5rem !important;
}

/* Modern Ferry Process Section Styles */
.modern-ferry-process-section {
    background: linear-gradient(135deg, #008495 0%, #00a0b7 50%, #0891b2 100%);
    position: relative;
    overflow: hidden;
    border-radius: 0;
    color: white;
    padding: 80px 0;
}

.modern-ferry-process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.pexels.com/photos/1770809/pexels-photo-1770809.jpeg?auto=compress&cs=tinysrgb&w=1920&h=1080&fit=crop') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.modern-ferry-process-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 132, 149, 0.95) 0%, rgba(0, 160, 183, 0.9) 50%, rgba(8, 145, 178, 0.95) 100%);
    z-index: 2;
}

.modern-ferry-process-section .container {
    position: relative;
    z-index: 3;
}

.section-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 8px 24px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000;
}

.gradient-text {
    background: linear-gradient(45deg, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.85) !important;
}

.ferry-step-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.ferry-step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.ferry-step-card:hover::before {
    left: 100%;
}

.ferry-step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.18);
}

.ferry-step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffffff, #f1f5f9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    transition: all 0.3s ease;
}

.ferry-step-card:hover .ferry-step-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.ferry-step-icon i {
    font-size: 32px;
    color: #008495;
    transition: all 0.3s ease;
    z-index: 2;
}

.ferry-step-card:hover .ferry-step-icon i {
    color: #0891b2;
}

.ferry-step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #f6b42c, #ff8c00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: white;
    box-shadow: 0 4px 12px rgba(246, 180, 44, 0.4);
    z-index: 3;
}

.ferry-step-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.ferry-step-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.ferry-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.ferry-floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    animation: ferryFloat 6s ease-in-out infinite;
}

.ferry-floating-element:nth-child(1) {
    width: 20px;
    height: 20px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.ferry-floating-element:nth-child(2) {
    width: 30px;
    height: 30px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.ferry-floating-element:nth-child(3) {
    width: 15px;
    height: 15px;
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes ferryFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Enhanced variations for each card */
.ferry-step-card:nth-child(1) {
    background: rgba(255, 255, 255, 0.10);
}

.ferry-step-card:nth-child(2) {
    background: rgba(255, 255, 255, 0.14);
}

.ferry-step-card:nth-child(3) {
    background: rgba(255, 255, 255, 0.12);
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .modern-ferry-process-section {
        padding: 60px 0;
    }

    .ferry-step-card {
        padding: 30px 20px;
        margin-bottom: 2rem;
    }

    .gradient-text {
        font-size: 2.5rem !important;
    }

    /* Disable animations on mobile for performance */
    .ferry-step-card,
    .ferry-step-icon,
    .ferry-step-icon i,
    .ferry-floating-element {
        animation: none !important;
        transition: none !important;
    }

    .ferry-step-card:hover {
        transform: none !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    }

    .ferry-step-card:hover .ferry-step-icon {
        transform: none !important;
    }

    .ferry-step-card::before {
        display: none;
    }

    .ferry-floating-elements {
        display: none;
    }
}

.partner-logo-lg {
  max-width: 160px;
  min-width: 160px;
  width: 160px;
  height: 160px;
  object-fit: contain;
  display: inline-block;
}

/* Desktop Partner Row - No Gap */
@media (min-width: 769px) {
.row.partner-row {
        gap: 0 !important;
  justify-content: center !important;
    }
    
    .partner-row .col-6 {
        margin: 0 !important;
        padding: 0 0.25rem !important;
    }
    
    .partner-logo-container {
        margin: 0 !important;
        padding: 0.5rem !important;
    }
    
    .hero-partners-section .partner-logo {
        margin: 0 !important;
    }
}

/* Mobile Partner Row - Keep 2x2 Grid */
@media (max-width: 768px) {
    .row.partner-row {
        gap: 0.5rem !important;
        justify-content: center !important;
        display: flex !important;
        flex-wrap: wrap !important;
    }
    
    .partner-row .col-6 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
        width: 50% !important;
        box-sizing: border-box !important;
    }
    
    /* First row: 2 images */
    .partner-row .col-6:nth-child(1),
    .partner-row .col-6:nth-child(2) {
        margin-bottom: 1rem !important;
    }
    
    /* Second row: 2 images */
    .partner-row .col-6:nth-child(3),
    .partner-row .col-6:nth-child(4) {
        margin-bottom: 0 !important;
    }
}

/* Enhanced Mobile 2x2 Grid for Partner Logos */
@media (max-width: 768px) {
    .hero-partners-section .row.partner-row {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        align-items: flex-start !important;
    }
    
    .hero-partners-section .partner-row .col-6 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
        width: 50% !important;
        box-sizing: border-box !important;
        padding: 0.5rem !important;
    }
    
    /* Force 2x2 layout */
    .hero-partners-section .partner-row .col-6:nth-child(1),
    .hero-partners-section .partner-row .col-6:nth-child(2) {
        margin-bottom: 1rem !important;
    }
    
    .hero-partners-section .partner-row .col-6:nth-child(3),
    .hero-partners-section .partner-row .col-6:nth-child(4) {
        margin-bottom: 0 !important;
    }
}

/* Statistics Cards Responsive Alignment */
@media (max-width: 768px) {
    /* Statistics cards mobile alignment */
    .col-12.col-md-3 .d-flex {
        justify-content: center !important;
        text-align: center !important;
        flex-direction: column !important;
        gap: 1rem !important;
    }
    
    .col-12.col-md-3 .d-flex .me-3 {
        margin-right: 0 !important;
        margin-bottom: 0.5rem !important;
    }
    
    .col-12.col-md-3 .d-flex .text-start {
        text-align: center !important;
    }
    
    .col-12.col-md-3 .d-flex .fw-bold {
        text-align: center !important;
        display: block !important;
    }
    
    .col-12.col-md-3 .d-flex .text-muted {
        text-align: center !important;
        display: block !important;
    }
}

@media (max-width: 480px) {
    /* Extra small mobile adjustments */
    .col-12.col-md-3 .d-flex {
        gap: 0.75rem !important;
    }
    
    .col-12.col-md-3 .d-flex .bg-white {
        width: 50px !important;
        height: 50px !important;
    }
    
    .col-12.col-md-3 .d-flex .fw-bold.fs-4 {
        font-size: 1.5rem !important;
    }
    
    .col-12.col-md-3 .d-flex .text-muted.small {
        font-size: 0.8rem !important;
    }
}

@media (max-width: 360px) {
    /* Ultra small mobile adjustments */
    .col-12.col-md-3 .d-flex {
        gap: 0.5rem !important;
    }
    
    .col-12.col-md-3 .d-flex .bg-white {
        width: 45px !important;
        height: 45px !important;
    }
    
    .col-12.col-md-3 .d-flex .fw-bold.fs-4 {
        font-size: 1.3rem !important;
    }
    
    .col-12.col-md-3 .d-flex .text-muted.small {
        font-size: 0.75rem !important;
    }
}

/* Statistics Cards General Improvements */
@media (max-width: 768px) {
    .col-12.col-md-3 {
        margin-bottom: 1.5rem !important;
    }
    
    .col-12.col-md-3:last-child {
        margin-bottom: 0 !important;
    }
}

/* Modern Testimonials Section - Improved */
.modern-testimonials-section {
  background: linear-gradient(135deg, #fafdff 0%, #e6f7fa 100%);
  position: relative;
  overflow: hidden;
  padding-top: 2.5rem !important;
  padding-bottom: 2.5rem !important;
}
.modern-testimonial-header h2 {
  color: #008495 !important;
  font-weight: 800;
  letter-spacing: -1px;
  text-shadow: 0 2px 8px rgba(0,132,149,0.04);
}
.modern-testimonial-header p {
  color: #222 !important;
  font-weight: 500;
}
.modern-testimonial-glass-card {
  background: rgba(255,255,255,0.85);
  border-radius: 1.2rem;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.10);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  max-width: 900px;
  padding: 1.5rem 1.5rem;
}
.modern-testimonial-avatar img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.modern-testimonial-stars {
  font-size: 1.1rem;
  color: #ffc107;
  margin-bottom: 0.2rem;
}
.modern-testimonial-name {
  font-size: 1.08rem;
  margin-top: 0.3rem;
  color: #222;
  font-weight: 700;
}
.modern-testimonial-role {
  font-size: 0.97rem;
  color: #888;
}
.modern-testimonial-quote {
  background: #fff;
  border-radius: 0.9rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  min-height: 90px;
  display: flex;
  align-items: center;
  position: relative;
  font-size: 1.13rem;
  color: #222;
  font-weight: 600;
  line-height: 1.5;
}
.modern-testimonial-quote i.bi-quote {
  font-size: 2.5rem;
  left: -0.5rem;
  top: -1.2rem;
  opacity: 0.13;
  z-index: 0;
}
@media (max-width: 767px) {
  .modern-testimonials-section {
    padding-top: 1.2rem !important;
    padding-bottom: 1.2rem !important;
  }
  .modern-testimonial-glass-card {
    padding: 0.7rem 0.3rem !important;
  }
  .modern-testimonial-avatar img {
    width: 55px;
    height: 55px;
  }
  .modern-testimonial-quote {
    font-size: 1rem;
    padding: 1rem 0.5rem;
  }
}

/* --- Custom Mobile FAQ Section Fixes (added by AI) --- */
@media (max-width: 575.98px) {
  .modern-tab-container {
    width: 100% !important;
    margin-left: 0 !important;
    padding: 4px !important;
    overflow-x: auto;
  }
  .modern-nav-tabs {
    flex-direction: row !important;
    gap: 0 !important;
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start !important;
  }
  .modern-nav-link {
    min-width: 120px;
    font-size: 1rem;
    padding: 10px 8px !important;
    margin-right: 4px;
    border-radius: 10px !important;
  }
  .faq-white-container {
    padding: 1rem 0.2rem !important;
    border-radius: 1rem !important;
  }
  .modern-accordion-header {
    padding: 14px 10px !important;
  }
  .modern-accordion-body {
    padding: 14px 10px !important;
    font-size: 0.98rem !important;
  }
}
/* --- End Custom Mobile FAQ Section Fixes --- */

/* --- Custom Mobile Partner Logos Grid Fix (added by AI) --- */
@media (max-width: 575.98px) {
  .partner-row {
    display: flex !important;
    flex-wrap: wrap !important;
  }
  .partner-row > .col-6 {
    flex: 0 0 50% !important;
    max-width: 50% !important;
    width: 50% !important;
    box-sizing: border-box !important;
    padding-left: 8px !important;
    padding-right: 8px !important;
    margin-bottom: 18px !important;
  }
  .partner-logo, .partner-logo-lg {
    width: 100% !important;
    max-width: 140px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
}

/* Show WhatsApp + Call buttons on desktop too - Only target floating buttons */
.floating-buttons a[href*="wa.me"], 
.floating-buttons a[href*="api.whatsapp.com"],
.floating-buttons a[href^="tel:"],
.whats-app[href*="wa.me"], 
.whats-app[href*="api.whatsapp.com"],
.phone-app[href^="tel:"] {
    display: flex !important;   /* make sure they show */
    position: fixed !important; 
    right: 20px !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 6px rgba(0,0,0,0.3);
    z-index: 9999 !important;
}

/* Place WhatsApp above Call button - Only target floating buttons */
.floating-buttons a[href*="wa.me"], 
.floating-buttons a[href*="api.whatsapp.com"],
.whats-app[href*="wa.me"], 
.whats-app[href*="api.whatsapp.com"] {
    bottom: 230px !important;
    background: #25D366 !important;  /* WhatsApp green */
    color: white !important;
    animation: whatsappPulse 2s infinite !important;
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4) !important;
}

/* Call button at very bottom - Only target floating buttons */
.floating-buttons a[href^="tel:"],
.phone-app[href^="tel:"] {
    bottom: 170px !important;
    background: #1e90ff !important;  /* Blue */
    color: white !important;
    box-shadow: 0 6px 15px rgba(30, 144, 255, 0.4) !important;
}

/* Force WhatsApp + Call buttons to always show on ALL screens - Only target floating buttons */
.whatsapp-btn, .call-btn,
.floating-buttons a[href*="wa.me"], 
.floating-buttons a[href*="api.whatsapp.com"],
.floating-buttons a[href^="tel:"],
.whats-app[href*="wa.me"], 
.whats-app[href*="api.whatsapp.com"],
.phone-app[href^="tel:"] {
    display: flex !important;   /* make visible */
    position: fixed !important;
    right: 20px !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 6px rgba(0,0,0,0.3);
    z-index: 9999 !important;
}

/* WhatsApp button - Only target floating buttons */
.whatsapp-btn,
.floating-buttons a[href*="wa.me"], 
.floating-buttons a[href*="api.whatsapp.com"],
.whats-app[href*="wa.me"], 
.whats-app[href*="api.whatsapp.com"] {
    bottom: 180px !important;
    background: #25D366 !important; /* WhatsApp green */
    color: white !important;
}

/* Call button - Only target floating buttons */
.call-btn,
.floating-buttons a[href^="tel:"],
.phone-app[href^="tel:"] {
    bottom: 120px !important;
    background: #1e90ff !important; /* Blue */
    color: white !important;
}

/* Mobile Responsive Floating Buttons */
@media (max-width: 768px) {
    .floating-buttons {
        bottom: 20px !important;
        right: 15px !important;
        gap: 15px !important;
        z-index: 10000 !important;
    }
    
    .whatsapp-btn,
    .floating-buttons a[href*="wa.me"], 
    .floating-buttons a[href*="api.whatsapp.com"],
    .whats-app[href*="wa.me"], 
    .whats-app[href*="api.whatsapp.com"] {
        bottom: 180px !important;
        width: 55px !important;
        height: 55px !important;
        border-radius: 50% !important;
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4) !important;
        transition: all 0.3s ease !important;
        position: fixed !important;
        right: 15px !important;
    }
    
    .call-btn,
    .floating-buttons a[href^="tel:"],
    .phone-app[href^="tel:"] {
        bottom: 120px !important;
        width: 55px !important;
        height: 55px !important;
        border-radius: 50% !important;
        box-shadow: 0 4px 15px rgba(30, 144, 255, 0.4) !important;
        transition: all 0.3s ease !important;
        position: fixed !important;
        right: 15px !important;
    }
    
    .whatsapp-btn i, .call-btn i,
    .floating-buttons a i,
    .whats-app i, .phone-app i {
        font-size: 22px !important;
    }
    
    .whatsapp-btn:hover, .call-btn:hover,
    .floating-buttons a:hover {
        transform: scale(1.1) !important;
    }
    
    /* Ensure content doesn't overlap with floating buttons */
    .hero-section {
        padding-right: 80px !important;
    }
}

@media (max-width: 480px) {
    .floating-buttons {
        bottom: 15px !important;
        right: 12px !important;
        gap: 12px !important;
        z-index: 10000 !important;
    }
    
    .whatsapp-btn,
    .floating-buttons a[href*="wa.me"], 
    .floating-buttons a[href*="api.whatsapp.com"],
    .whats-app[href*="wa.me"], 
    .whats-app[href*="api.whatsapp.com"] {
        bottom: 160px !important;
        width: 50px !important;
        height: 50px !important;
        border-radius: 50% !important;
        box-shadow: 0 3px 12px rgba(37, 211, 102, 0.4) !important;
        transition: all 0.3s ease !important;
        position: fixed !important;
        right: 12px !important;
    }
    
    .call-btn,
    .floating-buttons a[href^="tel:"],
    .phone-app[href^="tel:"] {
        bottom: 100px !important;
        width: 50px !important;
        height: 50px !important;
        border-radius: 50% !important;
        box-shadow: 0 3px 12px rgba(30, 144, 255, 0.4) !important;
        transition: all 0.3s ease !important;
        position: fixed !important;
        right: 12px !important;
    }
    
    .whatsapp-btn i, .call-btn i,
    .floating-buttons a i,
    .whats-app i, .phone-app i {
        font-size: 20px !important;
    }
    
    .whatsapp-btn:hover, .call-btn:hover,
    .floating-buttons a:hover {
        transform: scale(1.1) !important;
    }
    
    /* Ensure content doesn't overlap with floating buttons */
    .hero-section {
        padding-right: 70px !important;
    }
}

/* Extra Small Mobile Optimization */
@media (max-width: 320px) {
    .hero-section {
        padding: 10px 8px !important;
        padding-right: 60px !important;
        margin-bottom: 10px !important;
    }
    
    .hero-content h1 {
        font-size: 1.3rem !important;
        line-height: 1.1 !important;
        margin-bottom: 15px !important;
        text-align: center !important;
    }
    
    .hero-content p {
        font-size: 0.8rem !important;
        line-height: 1.2 !important;
        margin-bottom: 18px !important;
        padding: 0 3px !important;
        text-align: center !important;
    }
    
    .rated {
        padding: 4px 6px !important;
        border-radius: 4px !important;
        margin-bottom: 18px !important;
    }
    
    .rated span {
        font-size: 0.85rem !important;
        line-height: 1.0 !important;
    }
    
    .rated img {
        height: 18px !important;
        margin-right: 4px !important;
    }
    
    .hero-features {
        margin: 18px 0 !important;
    }
    
    .hero-partners-section {
        margin: 20px 0 !important;
        padding: 12px 8px !important;
    }
    
    .floating-buttons {
        bottom: 10px !important;
        right: 10px !important;
        gap: 10px !important;
        z-index: 10000 !important;
    }
    
    .whatsapp-btn, .call-btn {
        width: 45px !important;
        height: 45px !important;
        position: fixed !important;
        right: 10px !important;
    }
    
    .whatsapp-btn {
        bottom: 140px !important;
    }
    
    .call-btn {
        bottom: 90px !important;
    }
    
    .whatsapp-btn i, .call-btn i {
        font-size: 18px !important;
    }
}

/* Modern Responsive Design with Relative Units */
:root {
    --hero-h1-size: clamp(1.3rem, 4vw + 1rem, 3.5rem);
    --hero-p-size: clamp(0.8rem, 2.5vw + 0.5rem, 1.3rem);
    --rated-size: clamp(0.8rem, 2.5vw + 0.5rem, 1.2rem);
    --navbar-brand-size: clamp(1rem, 2vw + 0.5rem, 1.5rem);
    --form-size: clamp(0.7rem, 1.5vw + 0.5rem, 1.1rem);
    --button-size: clamp(0.65rem, 1.5vw + 0.5rem, 1rem);
    --section-padding: clamp(1.5rem, 5vw, 5rem);
    --container-padding: clamp(0.5rem, 3vw, 2rem);
    --floating-btn-size: clamp(45px, 8vw, 65px);
    --icon-size: clamp(16px, 3vw, 24px);
}

/* Ultra Wide Desktop (1400px+) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px !important;
    }
    
    .hero-content h1 {
        font-size: var(--hero-h1-size) !important;
        line-height: 1.2 !important;
    }
    
    .hero-content p {
        font-size: var(--hero-p-size) !important;
        line-height: 1.6 !important;
    }
    
    .rated span {
        font-size: var(--rated-size) !important;
    }
    
    .hero-features i {
        font-size: var(--icon-size) !important;
    }
    
    .hero-features span {
        font-size: 1.1rem !important;
    }
}

/* Large Desktop (1200px - 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
    .hero-content h1 {
        font-size: 3rem !important;
        line-height: 1.2 !important;
    }
    
    .hero-content p {
        font-size: 1.2rem !important;
        line-height: 1.5 !important;
    }
    
    .rated span {
        font-size: 1.5rem !important;
    }
    
    .hero-features i {
        font-size: 22px !important;
    }
    
    .hero-features span {
        font-size: 1rem !important;
    }
}

/* Desktop (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .hero-content h1 {
        font-size: 2.5rem !important;
        line-height: 1.3 !important;
    }
    
    .hero-content p {
        font-size: 1.1rem !important;
        line-height: 1.4 !important;
    }
    
    .rated span {
        font-size: 1.3rem !important;
    }
    
    .hero-features i {
        font-size: 20px !important;
    }
    
    .hero-features span {
        font-size: 0.95rem !important;
    }
}

/* Tablet Landscape (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .hero-section {
        padding: 25px 20px !important;
    }
    
    .hero-content h1 {
        font-size: 2.2rem !important;
        line-height: 1.3 !important;
        margin-bottom: 18px !important;
    }
    
    .hero-content p {
        font-size: 1rem !important;
        line-height: 1.4 !important;
        margin-bottom: 22px !important;
    }
    
    .rated {
        margin-bottom: 22px !important;
        padding: 10px 14px !important;
    }
    
    .rated span {
        font-size: 1.2rem !important;
        line-height: 1.3 !important;
    }
    
    .rated img {
        height: 26px !important;
    }
    
    .hero-features {
        margin: 22px 0 !important;
    }
    
    .hero-features i {
        font-size: 19px !important;
    }
    
    .hero-features span {
        font-size: 0.95rem !important;
    }
    
    .hero-partners-section {
        margin: 25px 0 !important;
        padding: 18px 12px !important;
    }
    
    .floating-buttons {
        bottom: 25px !important;
        right: 20px !important;
    }
    
    .whatsapp-btn, .call-btn {
        width: 60px !important;
        height: 60px !important;
    }
    
    .whatsapp-btn {
        bottom: 200px !important;
    }
    
    .call-btn {
        bottom: 130px !important;
    }
}

/* Tablet Portrait (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .hero-section {
        padding: 22px 18px !important;
        margin-bottom: 18px !important;
    }
    
    .hero-content h1 {
        font-size: 2rem !important;
        line-height: 1.3 !important;
        margin-bottom: 18px !important;
    }
    
    .hero-content p {
        font-size: 0.98rem !important;
        line-height: 1.4 !important;
        margin-bottom: 22px !important;
    }
    
    .rated {
        margin-bottom: 22px !important;
        padding: 9px 13px !important;
    }
    
    .rated span {
        font-size: 1.15rem !important;
        line-height: 1.25 !important;
    }
    
    .rated img {
        height: 25px !important;
    }
    
    .hero-features {
        margin: 22px 0 !important;
    }
    
    .hero-features i {
        font-size: 18px !important;
    }
    
    .hero-features span {
        font-size: 0.92rem !important;
    }
    
    .hero-partners-section {
        margin: 28px 0 !important;
        padding: 18px 12px !important;
    }
    
    .floating-buttons {
        bottom: 18px !important;
        right: 18px !important;
    }
    
    .whatsapp-btn, .call-btn {
        width: 58px !important;
        height: 58px !important;
    }
    
    .whatsapp-btn {
        bottom: 190px !important;
    }
    
    .call-btn {
        bottom: 125px !important;
    }
}

/* Small Mobile (481px - 575px) */
@media (min-width: 481px) and (max-width: 575px) {
    .hero-section {
        padding: 18px 12px !important;
        margin-bottom: 16px !important;
    }
    
    .hero-content h1 {
        font-size: 1.7rem !important;
        line-height: 1.25 !important;
        margin-bottom: 16px !important;
    }
    
    .hero-content p {
        font-size: 0.9rem !important;
        line-height: 1.35 !important;
        margin-bottom: 20px !important;
    }
    
    .rated {
        margin-bottom: 20px !important;
        padding: 7px 11px !important;
    }
    
    .rated span {
        font-size: 1.05rem !important;
        line-height: 1.2 !important;
    }
    
    .rated img {
        height: 23px !important;
    }
    
    .hero-features {
        margin: 20px 0 !important;
    }
    
    .hero-features i {
        font-size: 17px !important;
    }
    
    .hero-features span {
        font-size: 0.88rem !important;
    }
    
    .hero-partners-section {
        margin: 24px 0 !important;
        padding: 16px 11px !important;
    }
    
    .floating-buttons {
        bottom: 16px !important;
        right: 16px !important;
    }
    
    .whatsapp-btn, .call-btn {
        width: 52px !important;
        height: 52px !important;
    }
    
    .whatsapp-btn {
        bottom: 170px !important;
    }
    
    .call-btn {
        bottom: 110px !important;
    }
}

/* Extra Small Mobile (321px - 480px) */
@media (min-width: 321px) and (max-width: 480px) {
    .hero-section {
        padding: 16px 10px !important;
        margin-bottom: 14px !important;
    }
    
    .hero-content h1 {
        font-size: 1.6rem !important;
        line-height: 1.2 !important;
        margin-bottom: 16px !important;
    }
    
    .hero-content p {
        font-size: 0.87rem !important;
        line-height: 1.3 !important;
        margin-bottom: 18px !important;
    }
    
    .rated {
        margin-bottom: 18px !important;
        padding: 6px 10px !important;
    }
    
    .rated span {
        font-size: 1rem !important;
        line-height: 1.15 !important;
    }
    
    .rated img {
        height: 22px !important;
    }
    
    .hero-features {
        margin: 18px 0 !important;
    }
    
    .hero-features i {
        font-size: 16px !important;
    }
    
    .hero-features span {
        font-size: 0.85rem !important;
    }
    
    .hero-partners-section {
        margin: 22px 0 !important;
        padding: 14px 10px !important;
    }
    
    .floating-buttons {
        bottom: 14px !important;
        right: 14px !important;
    }
    
    .whatsapp-btn, .call-btn {
        width: 50px !important;
        height: 50px !important;
    }
    
    .whatsapp-btn {
        bottom: 160px !important;
    }
    
    .call-btn {
        bottom: 100px !important;
    }
}

/* Comprehensive Navbar Responsive Design */
@media (min-width: 1400px) {
    .navbar-brand {
        font-size: 1.5rem !important;
    }
    
    .nav-link.menuBtn {
        font-size: 0.9rem !important;
        padding: 0.5rem 0.8rem !important;
    }
    
    .quoteBtn {
        font-size: 1rem !important;
        padding: 0.6rem 1.2rem !important;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .navbar-brand {
        font-size: 1.4rem !important;
    }
    
    .nav-link.menuBtn {
        font-size: 0.85rem !important;
        padding: 0.4rem 0.7rem !important;
    }
    
    .quoteBtn {
        font-size: 0.95rem !important;
        padding: 0.5rem 1.1rem !important;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .navbar-brand {
        font-size: 1.3rem !important;
    }
    
    .nav-link.menuBtn {
        font-size: 0.8rem !important;
        padding: 0.35rem 0.6rem !important;
    }
    
    .quoteBtn {
        font-size: 0.9rem !important;
        padding: 0.45rem 1rem !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .navbar-brand {
        font-size: 1.2rem !important;
    }
    
    .nav-link.menuBtn {
        font-size: 0.9rem !important;
        padding: 0.4rem 0.7rem !important;
    }
    
    .quoteBtn {
        font-size: 0.85rem !important;
        padding: 0.4rem 0.9rem !important;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .navbar-brand {
        font-size: 1.15rem !important;
    }
    
    .nav-link.menuBtn {
        font-size: 0.85rem !important;
        padding: 0.35rem 0.6rem !important;
    }
    
    .quoteBtn {
        font-size: 0.8rem !important;
        padding: 0.35rem 0.8rem !important;
    }
}

@media (min-width: 481px) and (max-width: 575px) {
    .navbar-brand {
        font-size: 1.1rem !important;
    }
    
    .nav-link.menuBtn {
        font-size: 0.8rem !important;
        padding: 0.3rem 0.5rem !important;
    }
    
    .quoteBtn {
        font-size: 0.75rem !important;
        padding: 0.3rem 0.7rem !important;
    }
}

@media (min-width: 321px) and (max-width: 480px) {
    .navbar-brand {
        font-size: 1.05rem !important;
    }
    
    .nav-link.menuBtn {
        font-size: 0.75rem !important;
        padding: 0.25rem 0.4rem !important;
    }
    
    .quoteBtn {
        font-size: 0.7rem !important;
        padding: 0.25rem 0.6rem !important;
    }
}

@media (max-width: 320px) {
    .navbar-brand {
        font-size: 1rem !important;
    }
    
    .nav-link.menuBtn {
        font-size: 0.7rem !important;
        padding: 0.2rem 0.3rem !important;
    }
    
    .quoteBtn {
        font-size: 0.65rem !important;
        padding: 0.2rem 0.5rem !important;
    }
}

/* Comprehensive Form Responsive Design */
@media (min-width: 1400px) {
    .form-control {
        font-size: 1.1rem !important;
        padding: 0.75rem 1rem !important;
    }
    
    .btn {
        font-size: 1.1rem !important;
        padding: 0.75rem 1.5rem !important;
    }
    
    .booking-form-wrapper {
        padding: 2.5rem !important;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .form-control {
        font-size: 1rem !important;
        padding: 0.7rem 0.9rem !important;
    }
    
    .btn {
        font-size: 1rem !important;
        padding: 0.7rem 1.4rem !important;
    }
    
    .booking-form-wrapper {
        padding: 2.2rem !important;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .form-control {
        font-size: 0.95rem !important;
        padding: 0.65rem 0.8rem !important;
    }
    
    .btn {
        font-size: 0.95rem !important;
        padding: 0.65rem 1.3rem !important;
    }
    
    .booking-form-wrapper {
        padding: 2rem !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .form-control {
        font-size: 0.9rem !important;
        padding: 0.6rem 0.75rem !important;
    }
    
    .btn {
        font-size: 0.9rem !important;
        padding: 0.6rem 1.2rem !important;
    }
    
    .booking-form-wrapper {
        padding: 1.8rem !important;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .form-control {
        font-size: 0.85rem !important;
        padding: 0.55rem 0.7rem !important;
    }
    
    .btn {
        font-size: 0.85rem !important;
        padding: 0.55rem 1.1rem !important;
    }
    
    .booking-form-wrapper {
        padding: 1.5rem !important;
    }
}

@media (min-width: 481px) and (max-width: 575px) {
    .form-control {
        font-size: 0.8rem !important;
        padding: 0.5rem 0.65rem !important;
    }
    
    .btn {
        font-size: 0.8rem !important;
        padding: 0.5rem 1rem !important;
    }
    
    .booking-form-wrapper {
        padding: 1.3rem !important;
    }
}

@media (min-width: 321px) and (max-width: 480px) {
    .form-control {
        font-size: 0.75rem !important;
        padding: 0.45rem 0.6rem !important;
    }
    
    .btn {
        font-size: 0.75rem !important;
        padding: 0.45rem 0.9rem !important;
    }
    
    .booking-form-wrapper {
        padding: 1.1rem !important;
    }
}

@media (max-width: 320px) {
    .form-control {
        font-size: 0.7rem !important;
        padding: 0.4rem 0.55rem !important;
    }
    
    .btn {
        font-size: 0.7rem !important;
        padding: 0.4rem 0.8rem !important;
    }
    
    .booking-form-wrapper {
        padding: 1rem !important;
    }
}

/* Comprehensive Section Responsive Design */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px !important;
    }
    
    .section-padding {
        padding: 5rem 0 !important;
    }
    
    .card {
        padding: 2rem !important;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .section-padding {
        padding: 4.5rem 0 !important;
    }
    
    .card {
        padding: 1.8rem !important;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .section-padding {
        padding: 4rem 0 !important;
    }
    
    .card {
        padding: 1.6rem !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .section-padding {
        padding: 3.5rem 0 !important;
    }
    
    .card {
        padding: 1.4rem !important;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .section-padding {
        padding: 3rem 0 !important;
    }
    
    .card {
        padding: 1.2rem !important;
    }
}

@media (min-width: 481px) and (max-width: 575px) {
    .section-padding {
        padding: 2.5rem 0 !important;
    }
    
    .card {
        padding: 1rem !important;
    }
}

@media (min-width: 321px) and (max-width: 480px) {
    .section-padding {
        padding: 2rem 0 !important;
    }
    
    .card {
        padding: 0.8rem !important;
    }
}

@media (max-width: 320px) {
    .section-padding {
        padding: 1.5rem 0 !important;
    }
    
    .card {
        padding: 0.6rem !important;
    }
}

/* Universal Responsive Utilities */
@media (max-width: 575px) {
    .d-sm-none {
        display: none !important;
    }
    
    .d-sm-block {
        display: block !important;
    }
    
    .text-sm-center {
        text-align: center !important;
    }
    
    .mb-sm-2 {
        margin-bottom: 0.5rem !important;
    }
    
    .p-sm-2 {
        padding: 0.5rem !important;
    }
}

@media (max-width: 767px) {
    .d-md-none {
        display: none !important;
    }
    
    .d-md-block {
        display: block !important;
    }
    
    .text-md-center {
        text-align: center !important;
    }
}

@media (max-width: 991px) {
    .d-lg-none {
        display: none !important;
    }
    
    .d-lg-block {
        display: block !important;
    }
    
    .text-lg-center {
        text-align: center !important;
    }
}

/* Modern Responsive Design Overrides */
.hero-section {
    padding: var(--container-padding) !important;
    margin-bottom: clamp(1rem, 3vw, 2rem) !important;
    display: flex !important;
    flex-direction: column !important;
    min-height: 100vh !important;
    justify-content: center !important;
}

.hero-content h1 {
    font-size: var(--hero-h1-size) !important;
    line-height: 1.2 !important;
    margin-bottom: clamp(1rem, 3vw, 2rem) !important;
    text-align: center !important;
    font-weight: 700 !important;
}

.hero-content p {
    font-size: var(--hero-p-size) !important;
    line-height: 1.5 !important;
    margin-bottom: clamp(1.5rem, 4vw, 2.5rem) !important;
    text-align: center !important;
    padding: 0 clamp(0.5rem, 2vw, 1rem) !important;
    max-width: 100% !important;
}

/* Trust Signal with Modern Flexbox */
.d-flex.align-items-center.mb-4 {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: nowrap !important;
    overflow: visible !important;
    margin-bottom: clamp(1.5rem, 4vw, 2.5rem) !important;
    gap: clamp(0.5rem, 2vw, 1rem) !important;
    position: relative !important;
    z-index: 1 !important;
    width: 100% !important;
}

/* Trust Signal Rating */
.rated {
    display: flex !important;
    align-items: center !important;
    gap: clamp(0.5rem, 2vw, 1rem) !important;
    padding: clamp(0.5rem, 2vw, 1rem) !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: clamp(0.5rem, 2vw, 1rem) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    flex-shrink: 0 !important;
    position: relative !important;
    z-index: 1 !important;
    width: fit-content !important;
    min-width: max-content !important;
    overflow: visible !important;
}

.rated span {
    font-size: var(--rated-size) !important;
    font-weight: 600 !important;
    color:  aliceblue !important;
    line-height: 1.3 !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) !important;
    width: fit-content !important;
    min-width: max-content !important;
    overflow: visible !important;
    text-overflow: unset !important;
}

/* Rating Text with Mobile Wrapping */
.rating-text {
    font-weight: 900 !important;
    color: black !important;
    font-size: 1.1rem !important;
    line-height: 1.3 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) !important;
    white-space: nowrap !important;
    display: inline-block !important;
    width: fit-content !important;
    min-width: max-content !important;
    overflow: visible !important;
    text-overflow: unset !important;
}

/* Mobile-specific rating text wrapping */
@media (max-width: 768px) {
    /* Center all hero content on mobile */
    .col-12.col-lg-6:first-child {
        text-align: center !important;
    }
    
    .hero-content h1 {
        text-align: center !important;
    }
    
    .hero-content p {
        text-align: center !important;
    }
    
    /* Center the rating div container */
    .d-flex.align-items-center.mb-4 {
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
    }
    
    .rating-text {
        font-size: clamp(0.9rem, 2.5vw + 0.5rem, 1.2rem) !important;
        white-space: normal !important;
        text-align: center !important;
        word-wrap: break-word !important;
        hyphens: auto !important;
        max-width: 100% !important;
        display: block !important;
    }
    
    .rated {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 0.5rem !important;
        justify-content: center !important;
        margin: 0 auto !important;
    }
    
    .rated img {
        margin-right: 0 !important;
        margin-bottom: 0.25rem !important;
    }
    
    /* Center hero features on mobile */
    .hero-features {
        align-items: center !important;
        text-align: center !important;
    }
    
    .hero-features .d-flex {
        justify-content: center !important;
        text-align: center !important;
    }
    
    /* Center partners section on mobile */
    .hero-partners-section {
        text-align: center !important;
    }
    
    .partners-title {
        text-align: center !important;
    }
    
    .partner-row {
        justify-content: center !important;
    }
    
    /* Mobile partner logos 2x2 grid */
    .partner-row .col-6 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
    
    .partner-row .col-6:nth-child(1),
    .partner-row .col-6:nth-child(2) {
        margin-bottom: 1rem !important;
    }
    
    .partner-row .col-6:nth-child(3),
    .partner-row .col-6:nth-child(4) {
        margin-bottom: 0 !important;
    }
}

@media (max-width: 480px) {
    /* Ensure center alignment on small mobile */
    .col-12.col-lg-6:first-child {
        text-align: center !important;
    }
    
    .hero-content h1 {
        text-align: center !important;
    }
    
    .hero-content p {
        text-align: center !important;
    }
    
    /* Center the rating div container */
    .d-flex.align-items-center.mb-4 {
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
    }
    
    .rating-text {
        font-size: clamp(0.8rem, 2vw + 0.5rem, 1rem) !important;
        line-height: 1.2 !important;
        padding: 0 0.5rem !important;
        text-align: center !important;
    }
    
    .rated {
        gap: 0.4rem !important;
        padding: clamp(0.5rem, 2vw, 1rem) !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        margin: 0 auto !important;
    }
    
    .hero-features {
        align-items: center !important;
        text-align: center !important;
    }
    
    .hero-features .d-flex {
        justify-content: center !important;
        text-align: center !important;
    }
    
    .hero-partners-section {
        text-align: center !important;
    }
    
    .partners-title {
        text-align: center !important;
    }
    
    .partner-row {
        justify-content: center !important;
    }
    
    /* Mobile partner logos 2x2 grid */
    .partner-row .col-6 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
    
    .partner-row .col-6:nth-child(1),
    .partner-row .col-6:nth-child(2) {
        margin-bottom: 1rem !important;
    }
    
    .partner-row .col-6:nth-child(3),
    .partner-row .col-6:nth-child(4) {
        margin-bottom: 0 !important;
    }
}

@media (max-width: 360px) {
    /* Center alignment for extra small screens */
    .col-12.col-lg-6:first-child {
        text-align: center !important;
    }
    
    .hero-content h1 {
        text-align: center !important;
    }
    
    .hero-content p {
        text-align: center !important;
    }
    
    /* Center the rating div container */
    .d-flex.align-items-center.mb-4 {
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
    }
    
    .rating-text {
        font-size: clamp(0.7rem, 1.8vw + 0.5rem, 0.9rem) !important;
        line-height: 1.1 !important;
        padding: 0 0.25rem !important;
        text-align: center !important;
    }
    
    .rated {
        gap: 0.3rem !important;
        padding: clamp(0.4rem, 1.5vw, 0.8rem) !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        margin: 0 auto !important;
    }
    
    .hero-features {
        align-items: center !important;
        text-align: center !important;
    }
    
    .hero-features .d-flex {
        justify-content: center !important;
        text-align: center !important;
    }
    
    .hero-partners-section {
        text-align: center !important;
    }
    
    .partners-title {
        text-align: center !important;
    }
    
    .partner-row {
        justify-content: center !important;
    }
    
    /* Mobile partner logos 2x2 grid */
    .partner-row .col-6 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
    
    .partner-row .col-6:nth-child(1),
    .partner-row .col-6:nth-child(2) {
        margin-bottom: 0.8rem !important;
    }
    
    .partner-row .col-6:nth-child(3),
    .partner-row .col-6:nth-child(4) {
        margin-bottom: 0 !important;
    }
}

@media (max-width: 280px) {
    /* Center alignment for ultra small screens */
    .col-12.col-lg-6:first-child {
        text-align: center !important;
    }
    
    .hero-content h1 {
        text-align: center !important;
    }
    
    .hero-content p {
        text-align: center !important;
    }
    
    /* Center the rating div container */
    .d-flex.align-items-center.mb-4 {
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
    }
    
    .rating-text {
        font-size: 0.65rem !important;
        line-height: 1.1 !important;
        padding: 0 0.1rem !important;
        text-align: center !important;
    }
    
    .rated {
        gap: 0.2rem !important;
        padding: 0.3rem !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        margin: 0 auto !important;
    }
    
    .hero-features {
        align-items: center !important;
        text-align: center !important;
    }
    
    .hero-features .d-flex {
        justify-content: center !important;
        text-align: center !important;
    }
    
    .hero-partners-section {
        text-align: center !important;
    }
    
    .partners-title {
        text-align: center !important;
    }
    
    .partner-row {
        justify-content: center !important;
    }
    
    /* Mobile partner logos 2x2 grid */
    .partner-row .col-6 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
    
    .partner-row .col-6:nth-child(1),
    .partner-row .col-6:nth-child(2) {
        margin-bottom: 0.6rem !important;
    }
    
    .partner-row .col-6:nth-child(3),
    .partner-row .col-6:nth-child(4) {
        margin-bottom: 0 !important;
    }
}

.rated img {
    height: clamp(18px, 4vw, 28px) !important;
    flex-shrink: 0 !important;
}

/* Partner Section with Modern Spacing */
.hero-partners-section {
    margin: clamp(2rem, 5vw, 3rem) 0 !important;
    padding: clamp(1rem, 3vw, 2rem) !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: clamp(1rem, 3vw, 1.5rem) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    position: relative !important;
    z-index: 1 !important;
}

/* Floating Buttons with Modern Sizing */
.floating-buttons {
    position: fixed !important;
    bottom: clamp(1rem, 3vw, 2rem) !important;
    right: clamp(1rem, 3vw, 2rem) !important;
    z-index: 10000 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: clamp(0.75rem, 2vw, 1.5rem) !important;
}

.whatsapp-btn, .call-btn {
    width: var(--floating-btn-size) !important;
    height: var(--floating-btn-size) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
    transition: all 0.3s ease !important;
    position: fixed !important;
    right: clamp(1rem, 3vw, 2rem) !important;
}

.whatsapp-btn {
    background: #25D366 !important;
    bottom: clamp(8rem, 20vw, 12rem) !important;
}

.call-btn {
    background: #1e90ff !important;
    bottom: clamp(5rem, 15vw, 8rem) !important;
}

.whatsapp-btn i, .call-btn i {
    font-size: clamp(18px, 4vw, 24px) !important;
    color: white !important;
}

/* Navbar with Modern Responsive Design */
.navbar-brand {
    font-size: var(--navbar-brand-size) !important;
}

.nav-link.menuBtn {
    font-size: clamp(0.65rem, 1.2vw + 0.4rem, 0.9rem) !important;
    padding: clamp(0.15rem, 0.8vw, 0.5rem) clamp(0.25rem, 1.2vw, 0.8rem) !important;
}

.quoteBtn {
    font-size: var(--button-size) !important;
    padding: clamp(0.2rem, 1vw, 0.6rem) clamp(0.5rem, 2vw, 1.2rem) !important;
}

/* Forms with Modern Responsive Design */
.form-control {
    font-size: var(--form-size) !important;
    padding: clamp(0.4rem, 1.5vw, 0.75rem) clamp(0.55rem, 2vw, 1rem) !important;
}

.btn {
    font-size: var(--button-size) !important;
    padding: clamp(0.4rem, 1.5vw, 0.75rem) clamp(0.8rem, 2.5vw, 1.5rem) !important;
}

.booking-form-wrapper {
    padding: clamp(1rem, 4vw, 2.5rem) !important;
    position: relative !important;
    z-index: 2 !important;
    background: #fff !important;
    border-radius: 15px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
    margin: 1rem 0 !important;
}

/* Booking Form Container */
.col-12.col-lg-6:last-child {
    position: relative !important;
    z-index: 2 !important;
}

/* Hero Section Container */
.hero-section .container {
    position: relative !important;
    z-index: 1 !important;
}

.hero-section .row {
    position: relative !important;
    z-index: 1 !important;
}

/* Left Column (Hero Content) */
.col-12.col-lg-6:first-child {
    position: relative !important;
    z-index: 1 !important;
    overflow: visible !important;
}

/* Tab Buttons - Unified Styling */
.tabBtns {
    position: relative !important;
    z-index: 3 !important;
    background: #fff !important;
    border-radius: 10px !important;
    padding: 0.5rem !important;
    margin-bottom: 1rem !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 0.25rem !important;
}

.tabBtn {
    position: relative !important;
    z-index: 4 !important;
    background: transparent !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 0.5rem 0.3rem !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 1 !important;
    min-width: fit-content !important;
    text-decoration: none !important;
    overflow: visible !important;
}

.tabBtn p {
    color: #666 !important;
    margin: 0 !important;
    font-weight: 500 !important;
    font-size: 0.75rem !important;
    white-space: nowrap !important;
    overflow: visible !important;
    text-overflow: unset !important;
    flex-shrink: 0 !important;
}

.tabBtn i {
    color: #666 !important;
    font-size: 0.9rem !important;
    margin-right: 0.3rem !important;
    flex-shrink: 0 !important;
}

.tabBtn img {
    width: 18px !important;
    height: 18px !important;
    margin-right: 0.3rem !important;
    flex-shrink: 0 !important;
}

.tabBtn .icon-active {
    display: none !important;
}

.tabBtn .icon-inactive {
    display: block !important;
}

.tabBtn.active {
    background: #008495 !important;
    color: #fff !important;
    box-shadow: 0 2px 8px rgba(0, 132, 149, 0.3) !important;
}

.tabBtn.active p {
    color: #fff !important;
    font-weight: 600 !important;
}

.tabBtn.active i {
    color: #fff !important;
}

.tabBtn.active .icon-active {
    display: block !important;
}

.tabBtn.active .icon-inactive {
    display: none !important;
}

.tabBtn:hover {
    background: rgba(0, 132, 149, 0.1) !important;
    color: #008495 !important;
}

.tabBtn:hover p {
    color: #008495 !important;
}

.tabBtn:hover i {
    color: #008495 !important;
}

/* Small Screen Specific Media Queries */
@media (max-width: 480px) {
    .hero-section {
        padding-right: clamp(4rem, 15vw, 6rem) !important;
    }
    
    .hero-content p {
        padding: 0 clamp(0.25rem, 1vw, 0.5rem) !important;
    }
    
    .hero-features .d-flex {
        flex-direction: column !important;
        text-align: center !important;
        gap: clamp(0.25rem, 1vw, 0.5rem) !important;
    }
    
    .hero-features i {
        margin-bottom: 0.25rem !important;
    }
    
    /* Mobile overlap prevention */
    .col-12.col-lg-6:first-child {
        margin-bottom: 2rem !important;
    }
    
    .booking-form-wrapper {
        margin-top: 2rem !important;
        z-index: 10 !important;
    }
    
    .rated {
        max-width: calc(100vw - 2rem) !important;
        margin: 0 auto !important;
    }
    
    /* Mobile Tab Buttons */
    .tabBtns {
        padding: 0.15rem !important;
        gap: 0.1rem !important;
        margin-bottom: 0.75rem !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
    }
    
    .tabBtn {
        padding: 0.35rem 0.15rem !important;
        flex: 1 !important;
        min-width: fit-content !important;
        flex-shrink: 0 !important;
    }
    
    .tabBtn p {
        font-size: 0.6rem !important;
        line-height: 1.2 !important;
        white-space: nowrap !important;
        overflow: visible !important;
        text-overflow: unset !important;
    }
    
    .tabBtn i {
        font-size: 0.65rem !important;
        margin-right: 0.15rem !important;
    }
    
    .tabBtn img {
        width: 12px !important;
        height: 12px !important;
        margin-right: 0.15rem !important;
    }
    
    /* Available Schedule button specific styling for mobile */
    .tabBtn3 p {
        font-size: 0.55rem !important;
        line-height: 1.1 !important;
    }
}

/* Tablet Styles */
@media (min-width: 481px) and (max-width: 768px) {
    .tabBtns {
        padding: 0.25rem !important;
        gap: 0.15rem !important;
    }
    
    .tabBtn {
        padding: 0.45rem 0.25rem !important;
        min-width: fit-content !important;
    }
    
    .tabBtn p {
        font-size: 0.7rem !important;
        line-height: 1.3 !important;
        overflow: visible !important;
        text-overflow: unset !important;
    }
    
    .tabBtn i {
        font-size: 0.75rem !important;
        margin-right: 0.2rem !important;
    }
    
    .tabBtn img {
        width: 14px !important;
        height: 14px !important;
        margin-right: 0.2rem !important;
    }
    
    .tabBtn3 p {
        font-size: 0.65rem !important;
    }
}

/* Desktop and Tablet Overlap Prevention */
@media (min-width: 769px) {
    .col-12.col-lg-6:first-child {
        padding-right: 1rem !important;
        overflow: visible !important;
    }
    
    .col-12.col-lg-6:last-child {
        padding-left: 1rem !important;
        z-index: 5 !important;
    }
    
    .rated {
        width: fit-content !important;
        min-width: max-content !important;
        margin: 0 !important;
    }
    
    .booking-form-wrapper {
        z-index: 5 !important;
        position: relative !important;
    }
    
    /* Desktop Tab Buttons */
    .tabBtns {
        padding: 0.5rem !important;
        gap: 0.5rem !important;
    }
    
    .tabBtn {
        padding: 0.75rem 1rem !important;
    }
    
    .tabBtn p {
        font-size: 0.9rem !important;
    }
    
    .tabBtn i {
        font-size: 1rem !important;
    }
    
    .tabBtn img {
        width: 20px !important;
        height: 20px !important;
    }
}

@media (max-width: 360px) {
    .hero-section {
        padding: clamp(0.5rem, 2vw, 1rem) !important;
        padding-right: clamp(3.5rem, 12vw, 5rem) !important;
    }
    
    .hero-content h1 {
        font-size: clamp(1.1rem, 5vw, 1.5rem) !important;
    }
    
    .hero-content p {
        font-size: clamp(0.7rem, 3vw, 0.9rem) !important;
    }
    
    .rated {
        flex-direction: column !important;
        text-align: center !important;
        gap: 0.5rem !important;
    }
    
    .hero-features .d-flex {
        flex-direction: column !important;
        align-items: center !important;
    }
    
    /* Extra Small Screen Tab Buttons */
    .tabBtns {
        padding: 0.1rem !important;
        gap: 0.05rem !important;
        margin-bottom: 0.5rem !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
    }
    
    .tabBtn {
        padding: 0.3rem 0.1rem !important;
        flex: 1 !important;
        min-width: fit-content !important;
        flex-shrink: 0 !important;
    }
    
    .tabBtn p {
        font-size: 0.55rem !important;
        line-height: 1.1 !important;
        white-space: nowrap !important;
        overflow: visible !important;
        text-overflow: unset !important;
    }
    
    .tabBtn i {
        font-size: 0.6rem !important;
        margin-right: 0.1rem !important;
    }
    
    .tabBtn img {
        width: 10px !important;
        height: 10px !important;
        margin-right: 0.1rem !important;
    }
    
    /* Available Schedule button for extra small screens */
    .tabBtn3 p {
        font-size: 0.5rem !important;
        line-height: 1.0 !important;
    }
}

@media (max-width: 280px) {
    .hero-section {
        padding: 0.5rem !important;
        padding-right: 3rem !important;
    }
    
    .hero-content h1 {
        font-size: 1rem !important;
        line-height: 1.1 !important;
    }
    
    .hero-content p {
        font-size: 0.65rem !important;
        line-height: 1.2 !important;
    }
    
    .rated span {
        font-size: 0.7rem !important;
    }
    
    .rated img {
        height: 16px !important;
    }
    
    /* Ultra Small Screen Tab Buttons */
    .tabBtns {
        padding: 0.05rem !important;
        gap: 0.02rem !important;
        margin-bottom: 0.4rem !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
    }
    
    .tabBtn {
        padding: 0.25rem 0.05rem !important;
        flex: 1 !important;
        min-width: fit-content !important;
        flex-shrink: 0 !important;
    }
    
    .tabBtn p {
        font-size: 0.5rem !important;
        line-height: 1.0 !important;
        white-space: nowrap !important;
        overflow: visible !important;
        text-overflow: unset !important;
    }
    
    .tabBtn i {
        font-size: 0.55rem !important;
        margin-right: 0.05rem !important;
    }
    
    .tabBtn img {
        width: 8px !important;
        height: 8px !important;
        margin-right: 0.05rem !important;
    }
    
    /* Available Schedule button for ultra small screens */
    .tabBtn3 p {
        font-size: 0.45rem !important;
        line-height: 0.9 !important;
    }
    
    .floating-buttons {
        bottom: 0.5rem !important;
        right: 0.5rem !important;
    }
    
    .whatsapp-btn, .call-btn {
        width: 40px !important;
        height: 40px !important;
        right: 0.5rem !important;
    }
    
    .whatsapp-btn {
        bottom: 5rem !important;
    }
    
    .call-btn {
        bottom: 3rem !important;
    }
}

/* Android-Specific Mobile Fixes */
@supports (-webkit-appearance: none) {
    /* WebKit-based browsers (Chrome, Safari, Edge) */
    .hero-section {
        -webkit-transform: translateZ(0) !important;
        transform: translateZ(0) !important;
    }
    
    .rated {
        -webkit-transform: translateZ(0) !important;
        transform: translateZ(0) !important;
    }
    
    .floating-buttons {
        -webkit-transform: translateZ(0) !important;
        transform: translateZ(0) !important;
    }
}

/* Android Chrome Specific Fixes */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    .hero-content h1 {
        -webkit-font-smoothing: antialiased !important;
        -moz-osx-font-smoothing: grayscale !important;
    }
    
    .rating-text {
        -webkit-font-smoothing: antialiased !important;
        -moz-osx-font-smoothing: grayscale !important;
    }
    
    .hero-features span {
        -webkit-font-smoothing: antialiased !important;
        -moz-osx-font-smoothing: grayscale !important;
    }
}

/* Android Device Specific Media Queries */
@media screen and (max-width: 480px) and (min-resolution: 1.5dppx) {
    /* High DPI Android devices */
    .hero-content h1 {
        font-size: clamp(1.2rem, 4vw + 0.5rem, 1.8rem) !important;
    }
    
    .rating-text {
        font-size: clamp(0.85rem, 2.5vw + 0.5rem, 1.1rem) !important;
    }
    
    .hero-features span {
        font-size: clamp(0.75rem, 2vw + 0.5rem, 1rem) !important;
    }
}

@media screen and (max-width: 360px) and (min-resolution: 1.5dppx) {
    /* Small high DPI Android devices */
    .hero-content h1 {
        font-size: clamp(1rem, 3.5vw + 0.5rem, 1.5rem) !important;
    }
    
    .rating-text {
        font-size: clamp(0.75rem, 2vw + 0.5rem, 1rem) !important;
    }
    
    .hero-features span {
        font-size: clamp(0.7rem, 1.8vw + 0.5rem, 0.9rem) !important;
    }
}

/* Android Navigation Menu Fixes */
@media (max-width: 768px) {
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
        border-radius: 0 0 15px 15px !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
        margin-top: 10px !important;
        padding: 1rem !important;
    }
    
    .navbar-nav {
        flex-direction: column !important;
        gap: 0.5rem !important;
        width: 100% !important;
    }
    
    .nav-link {
        padding: 0.75rem 1rem !important;
        border-radius: 8px !important;
        transition: all 0.3s ease !important;
        font-weight: 500 !important;
    }
    
    .nav-link:hover {
        background: rgba(0, 132, 149, 0.1) !important;
        color: #008495 !important;
    }
    
    .quoteBtn {
        margin-top: 1rem !important;
        width: 100% !important;
        text-align: center !important;
        padding: 0.75rem 1rem !important;
        border-radius: 8px !important;
    }
}

/* Android Touch Target Optimization */
@media (max-width: 768px) {
    .nav-link, .quoteBtn, .whatsapp-btn, .call-btn {
        min-height: 44px !important;
        min-width: 44px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .floating-buttons {
        touch-action: manipulation !important;
    }
    
    .whatsapp-btn, .call-btn {
        -webkit-tap-highlight-color: transparent !important;
        tap-highlight-color: transparent !important;
    }
}

/* Android Viewport Height Fixes */
@media (max-width: 768px) {
    .hero-section {
        min-height: 100vh !important;
        min-height: -webkit-fill-available !important;
    }
    
    html, body {
        height: -webkit-fill-available !important;
    }
}

/* Android Font Rendering Fixes */
@media (max-width: 768px) {
    body {
        -webkit-font-smoothing: antialiased !important;
        -moz-osx-font-smoothing: grayscale !important;
        text-rendering: optimizeLegibility !important;
    }
    
    .hero-content h1,
    .rating-text,
    .hero-features span,
    .nav-link {
        -webkit-font-smoothing: antialiased !important;
        -moz-osx-font-smoothing: grayscale !important;
        text-rendering: optimizeLegibility !important;
    }
}

/* Android Scroll Behavior */
@media (max-width: 768px) {
    html {
        scroll-behavior: smooth !important;
        -webkit-overflow-scrolling: touch !important;
    }
    
    body {
        -webkit-overflow-scrolling: touch !important;
        overflow-scrolling: touch !important;
    }
}

/* Android Input and Form Fixes */
@media (max-width: 768px) {
    input, select, textarea {
        -webkit-appearance: none !important;
        appearance: none !important;
        border-radius: 8px !important;
        font-size: 16px !important; /* Prevents zoom on Android */
    }
    
    .form-control {
        -webkit-appearance: none !important;
        appearance: none !important;
        border-radius: 8px !important;
    }
}

/* Android Button Fixes */
@media (max-width: 768px) {
    .btn {
        -webkit-appearance: none !important;
        appearance: none !important;
        border-radius: 8px !important;
        -webkit-tap-highlight-color: transparent !important;
        tap-highlight-color: transparent !important;
    }
}






/* --- End Custom Mobile Partner Logos Grid Fix --- */