/* =============================================
   1. FONTS & IMPORTS
   ============================================= */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900");

/* =============================================
   2. GLOBAL RESET
   ============================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Comprehensive element reset */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q,
s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,
figure, header, nav, section, article, aside, footer, figcaption {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
}

header, nav, section, article, aside, footer, hgroup {
    display: block;
}

/* =============================================
   3. BASE LAYOUT & TYPOGRAPHY
   ============================================= */
html {
    scroll-behavior: smooth;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #0f172a;
    background-color: #fff;
    overflow-x: hidden;
    padding-top: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    margin-top: 0px;
    margin-bottom: 0px;
    color: #2a2a2a;
    font-weight: 700;
}

/* Text Elements */
p {
    font-size: 15px;
    line-height: 30px;
}

a {
    color: #22b3c1;
    text-decoration: none !important;
}

/* Lists */
ul, li {
    padding: 0;
    margin: 0;
    list-style: none;
}

ul {
    margin-bottom: 0px;
}

/* Media */
img {
    width: 100%;
    overflow: hidden;
}

/* =============================================
   4. UTILITIES / CLEARFIX
   ============================================= */
.clearfix {
    display: inline-block;
}

.clearfix:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

html[xmlns] .clearfix {
    display: block;
}

* html .clearfix {
    height: 1%;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.main-header {
    background: #0b1d2a;
    color: #fff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* =========================
   HEADER
========================= */

/* Logo */
.logo a {
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    text-decoration: none;
}

.site-header .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.site-header .logo img {
    display: block;
    width: 100%;
    max-width: 180px;
    height: auto;
    object-fit: contain;
}

.logo img {
    height: 56px;
    width: auto;
    display: block;
}

/* Large tablet / small laptop */
@media (max-width: 991px) {
    .site-header .logo img {
        max-width: 150px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .site-header .logo img {
        max-width: 130px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .site-header .logo img {
        max-width: 110px;
    }
}

/* Navigation */
.nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 8px;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 30px;
    min-width: 160px;
    overflow: hidden;
    border-radius: 5px;
    background: #fff;
    color: #000;
}

.dropdown-menu li a {
    display: block;
    padding: 10px;
    color: #000;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* Buttons */
.btn-book {
    padding: 8px 15px;
    border-radius: 5px;
    background: #ffb400;
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

/* Site Header */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    color: #fff;
    background: #00000070;
}

/* Overlay */
.overlay {
    position: fixed;
    inset: 0;
    z-index: 998;
    background: rgba(15, 23, 42, 0.55);
    opacity: 0;
    visibility: hidden;
    transition: 0.25s ease;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Header Sections */
.header-top,
.header-bottom {
    width: 100%;
}

.header-top {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.header-bottom {
    padding: 16px 0;
}

/* Header Layout */
.header-top .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    justify-items: stretch;
}

.header-bottom-wrap {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

/* Helpline */
.helpline-box {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    text-decoration: none;
}

.icon-box {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    font-size: 18px;
}

.header-top .helpline-box .icon-box {
    background: #00c2ff;
    color: #fff;
}

.wrapper {
    display: flex;
    flex-direction: column;
}

.helpline-title {
    font-size: 12px;
    opacity: 0.8;
}

.helpline-number {
    font-size: 15px;
    font-weight: 700;
}

/* Header Button Group */
.header-btn-group {
    display: flex;
    align-items: center;
}

/* Navigation Buttons */
.nav-open-btn,
.nav-close-btn {
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}

.nav-open-btn {
    display: none;
}

/* Social Icons */
.social-list {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.social-link {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.social-link ion-icon {
    font-size: 18px;
}

/* Navbar */
.navbar {
    display: flex;
    align-items: center;
}

.navbar-top {
    display: none;
}

.navbar-list {
    display: flex;
    align-items: center;
    gap: 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.navbar-link {
    position: relative;
    padding: 0 10px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
}

.navbar-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #00c2ff;
    transition: 0.25s ease;
}

.navbar-link:hover::after {
    width: 100%;
}

.desktop-book-btn {
    display: inline-flex;
}

/* =========================
   MOBILE HEADER
========================= */
@media (max-width: 991px) {
    .btn {
        width: 100%;
        max-width: 150px;
    }

    /* Header Top Layout */
    .header-top-wrap {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    /* Left: Phone Icon Only */
    .header-top-wrap .helpline-box {
        flex: 0 0 42px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .header-top-wrap .helpline-box .wrapper {
        display: none;
    }

    .header-top-wrap .helpline-box .icon-box {
        margin: 0;
    }

    /* Container */
    .header-top .container {
        display: flex;
        align-items: center;
        justify-items: stretch;
        grid-template-columns: repeat(3, 1fr);
    }

    /* Center: Logo */
    .header-top-wrap .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .header-top-wrap .logo img {
        height: 44px;
    }

    /* Header Bottom */
    .header-bottom {
        padding: 10px 0;
        border-bottom: 1px solid hsla(0, 0%, 100%, 0.1);
    }

    /* Right: Hamburger */
    .header-btn-group {
        margin-left: auto;
        display: flex;
        align-items: center;
    }

    .nav-open-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        padding: 0;
    }

    /* Mobile Navbar */
    .navbar {
        position: fixed !important;
        top: 0;
        right: -100%;
        z-index: 999;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        width: 300px;
        max-width: 85%;
        overflow-y: auto;
        background: #fff;
        visibility: hidden;
        pointer-events: none;
        transition: right 0.25s ease-in-out;
    }

    .navbar.active {
        right: 0;
        visibility: visible;
        pointer-events: all;
    }

    .navbar-list {
        flex: 1;
        display: flex;
        flex-direction: column;
        margin: 0;
        padding: 10px 0;
        list-style: none;
    }

    .navbar-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 20px;
        border-bottom: 1px solid #eee;
    }

    .navbar-top .logo img {
        height: 48px;
    }

    .nav-close-btn {
        border: none;
        background: none;
        color: #111;
        font-size: 28px;
    }

    /* Mobile Menu Items */
    .navbar-list li {
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .navbar-link {
        display: block;
        padding: 16px 20px;
        color: #111827;
        font-size: 16px;
        text-decoration: none;
    }

    .navbar-link:hover {
        background: #f8fafc;
        color: #0b6bcb;
    }
}
 
/* =========================
   Featured Packages
========================= */
.section {
    padding: 72px 0;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
}

.eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #0b6bcb;
    margin-bottom: 8px;
}

.section-head h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.1;
    color: #0f172a;
}

.section-subtitle {
    margin: 10px 0 0;
    color: #64748b;
}

.boat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.boat-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(2, 8, 23, 0.08);
    border: 1px solid rgba(148, 163, 184, 0.16);
    transition: transform .25s ease, box-shadow .25s ease;
}

.boat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(2, 8, 23, 0.12);
}

.boat-card-media {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #e2e8f0;
}

.boat-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}

.boat-card:hover .boat-card-media img {
    transform: scale(1.05);
}

.boat-price {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(15, 23, 42, 0.88);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 12px;
    border-radius: 999px;
    backdrop-filter: blur(6px);
}

.boat-card-body {
    padding: 18px;
}

.boat-card-top {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 12px;
}

.boat-card h3 {
    margin: 0;
    font-size: 20px;
    line-height: 1.25;
}

.boat-card h3 a {
    color: #0f172a;
    text-decoration: none;
}

.boat-card h3 a:hover {
    color: #0b6bcb;
}

.boat-meta {
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 700;
    color: #0b6bcb;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    padding: 7px 10px;
    border-radius: 999px;
}

.boat-desc {
    margin: 12px 0 18px;
    color: #475569;
    line-height: 1.7;
    min-height: 48px;
}

.boat-card-actions {
    display: flex;
    gap: 10px;
}

/* Responsive */
@media (max-width: 1024px) {
    .boat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

    .section-head {
        flex-direction: column;
        align-items: start;
    }

    .boat-grid {
        grid-template-columns: 1fr;
    }

    .boat-card-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}
/* =========================
   HERO SECTION
========================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 20px 100px;
    background: url('/images/hero-image.webp') no-repeat center center/cover;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(2, 6, 23, 0.72),
        rgba(2, 6, 23, 0.55)
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    color: #fff;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: capitalize;
    color: #fbbf24;
    margin: 30px 18px;
}

.hero-title {
    font-size: clamp(2.4rem, 6vw, 4.8rem);
    line-height: 1.1;
    font-weight: 800;
    margin: 0 0 20px;
    color: #fff;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.hero-text {
    max-width: 760px;
    margin: 0 auto 28px;
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.92);
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-bottom: 34px;
}

.hero-features span {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(8px);
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
    .hero {
        min-height: 85vh;
        padding: 120px 20px 80px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-text {
        font-size: 1rem;
        line-height: 1.7;
    }

    .hero-features {
        gap: 10px;
    }

    .hero-features span {
        font-size: 13px;
        padding: 8px 12px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }

    .btn {
        width: 100%;
    }
}
.hero-content-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}

/* =========================
   BUTTONS
========================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    padding: 14px 22px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    transition: all .25s ease;
}

.packages-section .btn-primary {
    background: #00c2ff;
    color: #ffffff;
    border: 2px solid #00c2ff;
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.28);
}

.packages-section .btn-primary:hover {
    border: 2px solid #00a6dd;
    background: #00a6dd;
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* FOOTER SECTION START*/
.footer {
  background: #0b1d2a;
  color: #fff;
  font-family: Arial, sans-serif;
}

.footer a {
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s;
}

.footer a:hover {
  color: #00c2ff;
}

.footer-top {
  padding: 60px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-top .container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

/* Brand */
.footer-brand {
  flex: 1;
  min-width: 250px;
}

.footer-brand img {
  max-width: 180px;
  margin-bottom: 10px;
}

.footer-text {
  opacity: 0.8;
  line-height: 1.6;
  text-align: center;
}

/* Contact */
.footer-contact {
  flex: 1;
  min-width: 250px;
}

.contact-title {
  font-size: 18px;
  margin-bottom: 10px;
}

.contact-text {
  opacity: 0.7;
  margin-bottom: 15px;
}

.footer-contact {
    color: #fff;
}

.contact-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-text {
    opacity: 0.75;
    margin-bottom: 15px;
    font-size: 14px;
}

/* List reset */
.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Contact item */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    line-height: 1.5;
}

/* Icon styling */
.contact-item span {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    font-size: 14px;
    flex-shrink: 0;
}

/* Links */
.contact-item a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
    font-size: 14px;
}

.contact-item a:hover {
    color: #00c2ff;
}

/* Address styling */
.contact-item address {
    font-style: normal;
    font-size: 14px;
    opacity: 0.85;
}

/* Mobile spacing improvement */
@media (max-width: 768px) {
    .contact-item {
        margin-bottom: 12px;
    }
}

/* CTA */
.footer-form {
  flex: 1;
  min-width: 250px;
}

.form-text {
  margin-bottom: 15px;
  opacity: 0.8;
}

.header-bottom .btn-primary {
    background: #00c2ff;
    color: #ffffff;
    border: 2px solid #00c2ff;
}
.header-bottom .btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: 0.3s ease;
}
.header-bottom .btn-primary:hover {
    background: #00a6dd;
    border-color: #00a6dd;
    color: #ffffff;
}
.header-bottom .btn-primary:active {
    background: #00a6dd;
    border-color: #00a6dd;
    color: #ffffff;
}
.header-bottom .btn:hover {
    transform: translateY(-2px);
}
@media (min-width: 768px) {
    .header-bottom .btn {
        width: auto;
        min-width: 180px;
    }
}
/* BOTTOM */
.footer-bottom {
  padding: 20px;
  background: #08141d;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 14px;
  opacity: 0.8;
}

.footer-links {
  list-style: none;
  display: flex;
  gap: 15px;
  padding: 0;
}

/* ==================================================
   WhatsApp Widget
================================================== */

.whatsapp-widget{
    position:fixed;
    right:12px;
    bottom:75px;
    z-index:99999;
}

/* ==================================================
   Floating Button
================================================== */

.whatsapp-btn{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#25D366;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:30px;
    box-shadow:0 8px 20px rgba(0,0,0,.25);
    transition:.3s;
    animation:pulse 1.8s infinite;
}

.whatsapp-btn:hover{
    background:#1ebe5d;
    color:#fff;
    transform:scale(1.08);
}

.whatsapp-btn ion-icon{
    font-size:32px;
}

/* ==================================================
   Tooltip
================================================== */

.whatsapp-tooltip{
    position:absolute;
    right:75px;
    bottom:14px;
    background:#fff;
    color:#333;
    font-size:14px;
    font-weight:500;
    padding:10px 14px;
    border-radius:20px;
    white-space:nowrap;
    box-shadow:0 5px 15px rgba(0,0,0,.15);

    opacity:0;
    visibility:hidden;
    transform:translateX(10px);

    transition:all .25s ease;
}

.whatsapp-tooltip::after{
    content:'';
    position:absolute;
    top:50%;
    right:-6px;
    width:12px;
    height:12px;
    background:#fff;
    transform:translateY(-50%) rotate(45deg);
}

/* ==================================================
   QR Popup
================================================== */

.whatsapp-qr{
    position:absolute;
    right:0;
    bottom:75px;
    width:240px;
    background:#fff;
    border-radius:15px;
    padding:15px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.20);
    opacity:0;
    visibility:hidden;
    transform:translateY(10px);
    transition:all .3s ease;
}

.whatsapp-logo{
    max-width:100px;
    max-height:100px;
    display:block;
    margin:0 auto 10px;
}

.qr-message{
    font-size:15px;
    font-weight:600;
    color:#333;
    margin-bottom:10px;
}

.qr-code{
    margin-bottom:12px;
}

.qr-code svg{
    width:180px;
    height:180px;
}

/* ==================================================
   Chat Button
================================================== */

.chat-btn{
    display:block;
    background:#25D366;
    color:#fff;
    text-decoration:none;
    padding:10px;
    border-radius:8px;
    font-size:14px;
    font-weight:600;
    transition:.3s;
}

.chat-btn:hover{
    background:#1ebe5d;
    color:#fff;
}

.footer .chat-btn:hover,
.footer  .chat-btn:focus {
    background: #1ebe5d;
    color: #fff;
    transform: scale(1.08);
}

.footer .whatsapp-btn:hover,
.footer  .whatsapp-btn:focus {
    background: #1ebe5d;
    color: #fff;
    transform: scale(1.08);
}

.footer  .whatsapp-float ion-icon {
    font-size: 30px;
    color: inherit;
    transition: color 0.3s ease;
}

/* ==================================================
   Hover Behaviour
================================================== */

@media (hover:hover){

    .whatsapp-widget:hover .whatsapp-tooltip{
        opacity:1;
        visibility:visible;
        transform:translateX(0);
    }

    .whatsapp-widget:hover .whatsapp-qr{
        opacity:1;
        visibility:visible;
        transform:translateY(0);
    }
}

/* ==================================================
   Pulse Animation
================================================== */

@keyframes pulse{
    0%{
        box-shadow:0 0 0 0 rgba(37,211,102,.5);
    }
    70%{
        box-shadow:0 0 0 15px rgba(37,211,102,0);
    }
    100%{
        box-shadow:0 0 0 0 rgba(37,211,102,0);
    }
}
/* FOOTER SECTION END*/
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}
.footer-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
}

/* Base button style inside footer CTA */
.footer-form .btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: 0.3s ease;
}

/* Primary booking button */
.footer-form .btn-primary {
    background: #00c2ff;
    color: #ffffff;
    border: 2px solid #00c2ff;
}

/* Secondary buttons */
.footer-form .btn:not(.btn-primary) {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.4);
    color: #fff;
}

/* Hover effects */
.footer-form .btn:hover {
    transform: translateY(-2px);
}

.footer-form .btn-primary:hover {
    background: #00a6dd;
    border-color: #00a6dd;
    color: #ffffff;
}

.footer-form .btn:not(.btn-primary):hover {
    border-color: #00c2ff;
    color: #00c2ff;
}

/* Copyright */
.copyright {
    margin: 0;
    font-size: 14px;
    opacity: 0.8;
}

/* Tablet and above */
@media (min-width: 768px) {
    .footer-form {
        align-items: flex-start;
    }

    .footer-form .btn {
        width: auto;
        min-width: 180px;
    }
}
/* Mobile responsiveness */
@media (max-width: 768px) {
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}
.footer-top .container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

/* Each column */
.footer-brand,
.footer-contact,
.footer-form {
    flex: 1;
    min-width: 250px;
}

/* MOBILE VERSION */
@media (max-width: 768px) {

    .footer-top .container {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .footer-brand,
    .footer-contact,
    .footer-form {
        width: 100%;
        max-width: 400px;
    }

    /* Center contact items */
    .contact-item {
        justify-content: center;
    }

    /* Center CTA buttons */
    .footer-form {
        align-items: center;
    }

    .footer-form .btn {
        width: 100%;
    }

    .footer-contact ul {
        padding: 0;
    }
}
.footer-brand .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.footer-brand .logo img {
    max-width: 150px;
    height: auto;
}
@media (max-width: 768px) {
    .footer-brand {
        text-align: center;
    }

    .footer-brand .logo {
        justify-content: center;
    }
}
/* =========================
   PACKAGE SECTION
========================= */

.package-related .owl-dots {
    display: none;
}

.packages-detail {
    position: relative;
    padding-top: 40px;
    z-index: 1;
}
.packages-detail h2 {
    text-transform: uppercase;
}
.packages-detail p {
    text-align: justify; 
}

.packages-detail .btn-whatsapp {
    max-width: 100%;
}

.slider-content {
    margin-top: 0 !important;
    top: 0 !important;
    transform: none !important;
}
.section-subtitle {
    color: #0b6bcb;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 8px;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 10px;
}

.section-text {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #64748b;
    line-height: 1.6;
}
/* =========================
   HERO-SECTION
========================= */
.hero-section {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;

    /* Full screen */
    min-height: 100vh;

    /* Content alignment */
    display: flex;
    align-items: center;

    /* Push hero below fixed header */
    padding-top: calc(
        var(--header-top-height, 60px) +
        var(--header-bottom-height, 80px)
    );
}

/* =========================
   PACKAGE LIST
========================= */
.package-list {
    list-style: none;
    display: grid;
    gap: 30px;
}

/* =========================
   CARD
========================= */
.package-card {
    display: grid;
    grid-template-columns: 1.2fr 1.5fr 0.8fr;
    background: hsl(0, 0%, 98%);;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* IMAGE */
.card-banner {
    height: 100%;
}

.card-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}

/* CONTENT */
.card-content {
    padding: 30px;
}

.card-title {
    font-size: 22px;
    margin-bottom: 12px;
    color: #0f172a;
    text-transform: uppercase;
}

.card-text {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 18px;
    text-align: justify;
}

/* META */

.card-meta {
    background: var(--white);
    max-width: stretch;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 0;
    margin: 0;
    list-style: none;
    padding: 8px;
    box-shadow: 0 0 5px hsla(0, 0%, 0%, 0.15);
    border-radius: 50px;
    justify-content: space-evenly;
}

.card-meta li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-meta li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 4px;
    right: -9px;
    bottom: 4px;
    width: 1px;
    background: hsla(0, 0%, 0%, 0.3);
}

/* PRICE */
.card-price {
    background: #22b3c1;
    color: #fff;
    display: grid;
    place-content: center;
    text-align: center;
    padding: 25px;
}

/* discount badge */
.card-price .discount-badge {
    display: inline-block;
    background: #dc3545;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 30px;
    margin-bottom: 12px;
}

/* old price left + save right */
.card-price .price-row {
    display: flex;
    justify-content: inherit;
    align-items: center;
    gap: 10px;
    width: 100%;
    margin-bottom: 6px;
}

/* old price */
.card-price .old-price {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    text-decoration: line-through;
    margin: 0;
}

/* save text */
.card-price .text-success {
    font-size: 13px;
    color: #ffd400 !important;
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
}

/* main price */
.card-price .price {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.2;
}

.card-price .price span {
    display: inline;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
}

/* buttons */
.card-price .btn-wrapper {
    display: flex;
    gap: 10px;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
}

.card-price .btn {
    flex: 1;
    max-width: 220px;
    padding: 12px 20px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

/* button style */
.card-price .btn-primary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.card-price .btn-primary:hover,
.card-price .btn-primary:focus,
.card-price .btn-primary:active,
.card-price .btn-primary.active,
.card-price .btn-check:checked + .btn-primary,
.card-price .btn:first-child:active {
    background-color: #fff !important;
    color: #0b6bcb !important;
    border-color: #fff !important;
    box-shadow: none !important;
}
.packages-section .btn-primary:active,
.card-price .btn:first-child:active{
    background: #00c2ff !important;
    color: #ffffff;
    border: 2px solid #00c2ff !important;
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.28) !important;
}
/* =========================
   BUTTON
========================= */
.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 12px 18px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1024px) {
    .package-card {
        grid-template-columns: 1fr 1.2fr;
    }

    .card-price {
        grid-column: 1 / -1;
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .package-card {
        grid-template-columns: 1fr;
    }

    .card-content {
        padding: 20px;
    }

    .card-price {
        padding: 20px;
    }

    .section-title {
        font-size: 28px;
    }
    
    .package-list {
        padding: 0px;
    }
}
.package-card .card-title {
    margin-bottom: 15px;
}
.booking-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 9999;
}

.booking-modal.active {
    display: flex;
}

.booking-modal-content {
    width: 100%;
    max-width: 480px;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    animation: modalFade 0.25s ease;
}

.input-icon {
    position: relative;
    width: 100%;
}

.input-icon input {
    width: 100%;
    padding: 12px 40px 12px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    outline: none;
    background: #fff;
}

.input-icon input:focus {
    border-color: #007bff;
}

.input-icon .icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    pointer-events: none;
    color: #666;
}

.input-icon input {
    height: 45px;
    background: #f9f9f9;
    transition: 0.2s ease;
}

.input-icon input:focus {
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0,123,255,0.1);
}

@keyframes modalFade {
    from {
        transform: translateY(20px) scale(0.98);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* HEADER */
.booking-modal-header {
    background: linear-gradient(135deg, #22b3c1, #0a58ca);
    color: #fff;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.booking-modal-header h2 {
    font-size: 18px;
    font-weight: 600;
}

.booking-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

.booking-close:hover {
    background: rgba(255, 255, 255, 0.35);
}

/* FORM */
#bookingForm {
    padding: 20px;
}

.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #333;
}

/* INPUTS */
.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #22b3c1;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15);
}

/* SUBMIT BUTTON */
.booking-submit {
    width: 100%;
    margin-top: 10px;
    padding: 12px;
    border: none;
    border-radius: 10px;
    background: #22b3c1;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.booking-submit:hover {
    background: #0b5ed7;
    transform: translateY(-1px);
}

/* MOBILE */
@media (max-width: 480px) {
    .booking-modal-content {
        border-radius: 12px;
    }

    .booking-modal-header h2 {
        font-size: 16px;
    }
}
/* 
---------------------------------------------
Banner Style
--------------------------------------------- 
*/

#section-1 {
  margin-top: 0px;
  height: 100vh;
  min-height: 700px;
  color: #fff;
  background-color: #222;
  position: relative;
}
#section-1 .content-slider {
  position: relative;
  width: 100%;
  height: 100%;
}
#section-1 .content-slider input {
  display: none;
}
#section-1 .content-slider .slider {
  position: relative;
  width: inherit;
  height: inherit;
  overflow: hidden;
}
#section-1 .content-slider .slider .banner {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 0;
  width: inherit;
  height: inherit;
  text-align: center;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  transition: all 0.5s ease;
}
#section-1 .more-info {
  margin-top: 60px;
  background-color: #fff;
  padding: 30px 60px;
  border-radius: 61px;
  position: absolute;
  width: 80%;
  left: 10%;
  bottom: 130px;
  display: inline-block;
}
#section-1 .more-info i {
  color: #22b3c1;
  font-size: 24px;
  width: 60px;
  height: 60px;
  display: inline-block;
  text-align: center;
  line-height: 58px;
  border: 1px solid #22b3c1;
  border-radius: 50%;
  float: left;
  margin-right: 20px;
}
#section-1 .more-info h4 {
  text-align: left;
  font-size: 20px;
  color: #22b3c1;
  font-weight: 700;
  line-height: 28px;
}
#section-1 .more-info h4 span {
  font-size: 15px;
  color: #afafaf;
  font-weight: 400;
}
#section-1 .main-button {
  margin-top: 8px;
  text-align: right;
}
#section-1 .main-button a:hover {
  background-color: #22b3c1;
  border-color: #22b3c1;
  color: #fff;
  opacity: 0.8;
}
#section-1 .content-slider .slider .banner .banner-inner-wrapper {
  height: 100%;
  box-sizing: border-box;
}
#section-1 .content-slider .slider .banner .banner-inner-wrapper .main-caption {
  position: absolute;
  width: 100%;
  top: 40%;
  transform: translateY(-50%);
}
#section-1 .content-slider .slider .banner .banner-inner-wrapper h2 {
  font-weight: 500;
  font-size: 20px;
  color: #fff;
  margin-bottom: 20px;
}
#section-1 .content-slider .slider .banner .banner-inner-wrapper h1 {
  font-size: 50px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 30px;
}
#section-1 .content-slider .slider .banner .banner-inner-wrapper .learn-more-button a:hover {
  color: #22b3c1;
  border-color: #22b3c1;
  transition: 0.3s;
}
#section-1 .content-slider nav {
  position: absolute;
  bottom: 30px;
  width: 100%;
  z-index: 10;
  text-align: center;
}
#section-1 .content-slider nav .controls {
  display: block;
  width: 70%;
  margin: 0 auto;
  font-family: Montserrat, sans-serif;
  color: #fff;
}
#section-1 .content-slider nav .controls label {
  position: relative;
  display: inline-block;
  width: 19.5%;
  height: 3.1em;
  overflow: hidden;
  margin: 0 1em;
  padding-top: 1em;
  text-align: left;
  text-transform: uppercase;
  font-family: Montserrat, sans-serif;
  font-size: 1em;
  color: #f6eac5;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s;
}
#section-1 .content-slider nav .controls label .progressbar {
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: #f6eac5;
  z-index: 100;
}
#section-1 .content-slider nav .controls label .progressbar .progressbar-fill {
  position: inherit;
  width: inherit;
  height: inherit;
  margin-left: -100%;
  background: #22b3c1;
}
#section-1 .content-slider nav .controls label span.text {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  display: inline-block;
  width: 100%;
}
#section-1 .content-slider nav .controls label:hover {
  color: #22b3c1;
}
#section-1 .content-slider #banner1:checked ~ .slider #top-banner-1,
#section-1 .content-slider #banner2:checked ~ .slider #top-banner-2,
#section-1 .content-slider #banner3:checked ~ .slider #top-banner-3,
#section-1 .content-slider #banner4:checked ~ .slider #top-banner-4 {
  opacity: 1;
  z-index: 1;
}
#section-1 .content-slider #banner1:checked ~ nav label:nth-of-type(1),
#section-1 .content-slider #banner2:checked ~ nav label:nth-of-type(2),
#section-1 .content-slider #banner3:checked ~ nav label:nth-of-type(3),
#section-1 .content-slider #banner4:checked ~ nav label:nth-of-type(4) {
  cursor: default;
  color: #fff;
  transition: all 0.5s;
}
#section-1 .content-slider #banner1:checked ~ nav label:nth-of-type(1) .progressbar,
#section-1 .content-slider #banner2:checked ~ nav label:nth-of-type(2) .progressbar,
#section-1 .content-slider #banner3:checked ~ nav label:nth-of-type(3) .progressbar,
#section-1 .content-slider #banner4:checked ~ nav label:nth-of-type(4) .progressbar {
  background: #fff;
}
#section-1 .content-slider #banner1:checked ~ nav label:nth-of-type(1) .progressbar-fill,
#section-1 .content-slider #banner2:checked ~ nav label:nth-of-type(2) .progressbar-fill,
#section-1 .content-slider #banner3:checked ~ nav label:nth-of-type(3) .progressbar-fill,
#section-1 .content-slider #banner4:checked ~ nav label:nth-of-type(4) .progressbar-fill {
  animation: progressBarFill 5s linear;
}
/* Animations */
@keyframes progressBarFill {
  from {
    margin-left: -100%;
  }
  to {
    margin-left: 0;
  }
}
.main-button a {
    font-size: 14px;
    color: #fff;
    background-color: #22b3c1;
    border: 1px solid #22b3c1;
    padding: 12px 30px;
    display: inline-block;
    border-radius: 25px;
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    transition: all .3s;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}
.border-button a {
    font-size: 14px;
    color: #22b3c1;
    background-color: transparent;
    border: 1px solid #22b3c1;
    padding: 12px 30px;
    display: inline-block;
    border-radius: 25px;
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    transition: all .3s;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}
/* 
---------------------------------------------
Responsive Style Banner
--------------------------------------------- 
*/
@media (max-width: 767px) {
  #section-1 .content-slider .slider .banner .banner-inner-wrapper {
    padding-top: 120px;
  }
  #section-1 .content-slider .slider .banner .banner-inner-wrapper h2 {
    font-size: 15px;
  }
  #section-1 .content-slider .slider .banner .banner-inner-wrapper h1 {
    font-size: 36px;
  }
  #section-1 .more-info {
    padding: 30px;
    margin-top: 30px !important;
    border-radius: 23px;
    bottom: 110px;
    width: 95%;
    left: 2.5%;
  }
  #section-1 .more-info i {
    width: 36px;
    height: 36px;
    line-height: 34px;
    font-size: 18px;
    margin-right: 10px;
    margin-top: 8px;
  }
  #section-1 .more-info h4 {
    font-size: 14px !important;
  }
  #section-1 .content-slider nav .controls label { 
    width: 7% !important;
  }
}
@media (max-width: 992px) {
  #section-1 .more-info {
    margin-top: 60px;
  }
  #section-1 .more-info h4 span {
    font-size: 15px;
  }
  #section-1 .more-info h4 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  #section-1 .main-button {
    text-align: left;
  }
  #section-1 .content-slider nav .controls label {
    width: 15%;
  }
}
@media (max-width: 1200px) {
  #section-1 .more-info h4 span {
    font-size: 12px;
  }
  #section-1 .more-info h4 {
    font-size: 15px;
  } 
} 
.package-card {
    border-radius: 14px;
    transition: 0.3s ease;
    background: #fff;
}

.package-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.package-img {
    height: 180px;
    overflow: hidden;
}

.package-img img {
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

.package-card:hover .package-img img {
    transform: scale(1.05);
}
.package-image img {
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

.package-info {
    padding: 20px;
    border-radius: 12px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}

.info-item i {
    color: #198754;
    width: 20px;
}

.cities-town .slider-content {
  min-height: 100%;
  max-height: 100%;
  position: relative;
  margin: 50px 0;
  background-color: #fff;
  border-radius: 23px;
  padding: 30px 60px;
  box-shadow: 0px 0px 15px rgba(0,0,0,0.15);
}

.cities-town .slider-content h2 {
  font-size: 30px;
  margin-bottom: 30px;
}

.cities-town .slider-content h2 em {
  font-style: normal;
  color: #22b3c1;
}
.cities-town .slider-content .sub-heading {
  font-size: 1rem;
}
.cities-town .slider-content .item .thumb {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.cities-town .slider-content .item .thumb h4 {
  position: absolute;
  left: 30px;
  bottom: 30px;
  font-size: 20px;
  color: #fff;
}

.cities-town .owl-nav {
  position: absolute;
  top: -80px;
  right: 0;
}

.cities-town .owl-nav .owl-next span {
  display: none;
}

.cities-town .owl-nav .owl-next::after {
  font-family: "FontAwesome";
  content: '\f061'; 
  color: #cdcdcd;
  font-size: 20px;
  transition: all .3s;
}

.cities-town .owl-nav .owl-prev span {
  display: none;
}

.cities-town .owl-nav .owl-prev::after {
  font-family: "FontAwesome";
  content: '\f060'; 
  color: #cdcdcd;
  margin-right: 15px;
  font-size: 20px;
  transition: all .3s;
}

.package-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 12px 0;
    margin-bottom: 14px;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
    font-size: 15px;
    font-weight: 700;
    color: #222;
}

.package-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    position: relative;
    padding: 0 10px;
}

/* separator */
.package-meta span:not(:last-child)::after {
    content: "|";
    position: absolute;
    right: -4px;
    color: #bbb;
    font-weight: 400;
}

.package-meta i {
    font-size: 15px;
}

.cities-town .owl-nav .owl-prev:hover::after,
.cities-town .owl-nav .owl-next:hover::after {
  color: #22b3c1;
}
.card-body .booking-actions {
    display: flex !important;
    justify-items: center;
    justify-content: center;
}

.card-body .booking-actions .view-details {
    background: #00c2ff;
    color: #ffffff;
    border: 2px solid #00c2ff;
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.28);
}

.card-body .booking-actions .btn {
    min-width: 115px; 
    transform: translateY(-2px);
}

.card-body .booking-actions .view-details:hover {
    border: 2px solid #00a6dd;
    background: #00a6dd;
}

/* DEFAULT = MOBILE FIRST */
.btn-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.btn-wrapper .btn {
    flex: 1;
}

/* DESKTOP OVERRIDE */
@media (min-width: 768px) {
    .btn-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .btn-wrapper .btn {
        width: 180px;
        flex: unset;
    }
}
.go-top.active {
    opacity: 0.8;
    transform: translateY(0);
    visibility: visible;
}

.go-top {
    position: fixed;
    bottom: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 22px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    opacity: 0;
    transform: translateY(10px);
    visibility: hidden;
    transition: 0.3s ease;
}

.go-top ion-icon {
    color: #000;
}

.card-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.discount-badge {
    background: #e53935;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 30px;
}

.old-price {
    font-size: 14px;
    color: #888;
    text-decoration: line-through;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: #111;
}
.owl-nav button {
    display: none;
    position: absolute;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5) !important;
    color: #fff !important;
    font-size: 30px !important;
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

.owl-nav .owl-prev {
    left: 10px;
}

.owl-nav .owl-next {
    right: 10px;
}

.owl-dots {
    text-align: center;
    margin-top: 10px;
}

.owl-dot span {
    width: 10px;
    height: 10px;
    background: #ccc;
    display: block;
    border-radius: 50%;
    margin: 5px;
}

.owl-dot.active span {
    background: #000;
}
/* Right About Image */
#about .col-lg-6 img {
    width: 90%;
    max-width: 100%;
    height: auto;
    display: inline-block;
    vertical-align: middle;
    box-sizing: border-box;
    border-radius: 8px;
    box-shadow: 11px 11px 10px 0px rgba(0, 0, 0, 0.5);
}

.price-badge {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.price-content {
    display: flex;
    flex-direction: column;
}

.old-price {
    color: #aaa;
    font-size: 14px;
    text-decoration: line-through;
}

.new-price {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    animation: pulsePrice 1.5s infinite;
}

.save-text {
    color: #28a745;
    font-size: 12px;
    margin-top: 2px;
}

/* subtle Airbnb-style pulse */
@keyframes pulsePrice {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}
.video-box {
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

.video-box:hover {
    opacity: 0.85;
    transform: scale(1.02);
}
.gallery-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.gallery-item img {
    transition: 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.03);
}
img {
    filter: blur(0px);
    transition: filter 0.3s;
}
img.lazy {
    filter: blur(10px);
}
.video-thumb {
    position: relative;
    cursor: pointer;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(0,0,0,0.25);
    transition: 0.3s;
}

.video-thumb:hover .video-overlay {
    background: rgba(0,0,0,0.4);
}

.play-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;

    background: rgba(255,255,255,0.9);
    color: #000;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;
    font-weight: bold;
}
/* ==========================================
   BIG HERO PRICE BOX
========================================== */
.hero-price-box {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px;
    border-radius: 20px;
    background: linear-gradient(135deg, #e1f1ff, #ffffff);
    border: 2px solid #00c2ff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.hero-price-box::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 140px;
    height: 140px;
    background: rgb(162 229 251 / 8%);
    border-radius: 50%;
}

.price-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #00c2ff, #579abf21);
    color: #fff;
    font-size: 30px;
    box-shadow: 0 8px 20px rgb(128 217 250);
    z-index: 1;
}

.price-details {
    flex: 1;
    z-index: 1;
}

.price-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ff5722;
    margin-bottom: 6px;
}

.hero-price {
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.old-price-text {
    font-size: 15px;
    color: #666;
    margin-bottom: 10px;
}

.old-price-text del {
    color: #999;
    font-weight: 600;
}

.save-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: #e8f5e9;
    color: #2e7d32;
    font-size: 13px;
    font-weight: 700;
    border: 1px solid #c8e6c9;
}

/* Mobile */
@media (max-width: 576px) {
    .hero-price-box {
        padding: 20px;
        gap: 14px;
    }

    .price-icon {
        width: 56px;
        height: 56px;
        min-width: 56px;
        font-size: 24px;
    }

    .hero-price {
        font-size: 32px;
    }

    .old-price-text {
        font-size: 14px;
    }

    .save-badge {
        font-size: 12px;
        padding: 5px 12px;
    }
}
.package-gallery {
    position: relative;
    z-index: 1;
}

.package-gallery .gallery-content {
    min-height: 100%;
    max-height: 100%;
    position: relative;
    margin: 50px 0;
    background-color: #fff;
    border-radius: 23px;
    padding: 30px 60px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
}
#mainImage {
    transition: opacity 0.2s ease;
}

.thumb-wrapper {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 5px;
}

.thumb-image {
    cursor: pointer;
    height: 100px;
    object-fit: cover;
    border-radius: 6px;
    flex: 0 0 auto;

    /* auto shrink logic */
    width: clamp(100px, calc(100% / 8), 120px);
}
.map-card {
    position: relative;
    border-radius: 16px;
}
