/* Google Fonts: Poppins for body, Playfair Display for headings */
:root {
    --primary-color: #00AEEF;
    /* Cyan */
    --primary-dark: #0071BC;
    --primary-light: #5BC0DE;
    --secondary-color: #F5A623;
    /* Yellow-Orange */
    --dark-color: #212529;
    --light-color: #f8f9fa;
    --text-muted: #6c757d;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

/* Base Styles */
html,
body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-color);
    overflow-x: hidden;
    width: 100vw;
    max-width: 100%;
    background-color: #fafafa;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
    font-family: 'Playfair Display', serif;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

/* Custom Utility Classes */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.text-soft-primary {
    color: var(--primary-light) !important;
}

.bg-soft-primary {
    background-color: rgba(0, 174, 239, 0.1) !important;
}

.text-warning {
    color: #fbc02d !important;
}

.tracking-wider {
    letter-spacing: 0.1em;
}

.py-6 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.section-bg {
    background-color: #f0f4f8;
    /* Soft blue-gray */
}

.max-w-700 {
    max-width: 700px;
}

.hover-primary:hover {
    color: var(--primary-color) !important;
}

.bg-white-10 {
    background-color: rgba(255, 255, 255, 0.1);
}

.logo-img {
    height: 85px;
    transition: all 0.4s ease;
    object-fit: contain;
}

.glass-nav.scrolled .logo-img {
    height: 65px;
}

/* Navbar */
.glass-nav {
    background: rgba(0, 0, 0, 9%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
}

.glass-nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
}

.glass-nav.scrolled .nav-link {
    color: var(--dark-color) !important;
}

.glass-nav.scrolled .navbar-toggler-icon {
    filter: invert(1) grayscale(100%) brightness(0);
}

.glass-nav.scrolled .nav-link.active {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0.5rem;
    position: relative;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

.glass-nav:not(.scrolled) .nav-link.active::after {
    background-color: #fff;
}

.logo-text-small {
    font-size: 0.8rem;
    display: block;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin-top: -5px;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: zoomInOut 20s infinite alternate linear;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(26, 54, 93, 0.6) 0%, rgba(0, 0, 0, 0.8) 100%);
}

@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.carousel-caption {
    z-index: 10;
    top: 0;
    bottom: 0;
    padding-top: 80px;
    /* Offset for fixed header */
}

.carousel-indicators {
    bottom: 30px;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 6px;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    background-color: transparent;
    border-color: var(--primary-color);
    transform: scale(1.2);
}

.global-trust-badge {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 20;
    background: rgba(26, 54, 93, 0.85);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    animation: slideInRight 0.5s ease forwards;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* About Section */
.about-image-composition {
    height: 500px;
}

.about-image-composition .img-main {
    width: 80%;
    height: 80%;
    object-fit: cover;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}

.about-image-composition .img-overlap {
    width: 60%;
    height: 60%;
    object-fit: cover;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
}

.experience-badge {
    position: absolute;
    bottom: 40px;
    right: -20px;
    z-index: 3;
    min-width: 160px;
    background-color: var(--secondary-color) !important;
}

/* Packages Section (Card Grid) */
.package-card {
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

.card-img-top-wrapper img {
    transition: transform 0.5s ease;
}

.package-card:hover .card-img-top-wrapper img {
    transform: scale(1.1);
}

.bg-soft-primary {
    background-color: rgba(227, 93, 40, 0.1) !important;
}

/* Gallery Section */
.gallery-item {
    cursor: pointer;
    height: 250px;
}

.gallery-item img {
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(227, 93, 40, 0.8);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay i {
    transform: translateY(0);
}

/* Booking Section */
.booking-shape-1 {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-light), var(--primary-color));
    top: -100px;
    left: -100px;
    opacity: 0.1;
    filter: blur(40px);
}

.booking-shape-2 {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    bottom: -150px;
    right: -100px;
    opacity: 0.1;
    filter: blur(60px);
}

.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(227, 93, 40, 0.25);
}

/* Contact Section */
.contact-icon-box {
    width: 60px;
    height: 60px;
    font-size: 24px;
}

/* Footer */
.footer{
    background-color: rgb(33 37 41 / 82%) !important;
}
.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-links a {
    text-decoration: none;
    width: 40px;
    height: 40px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color) !important;
    transform: translateY(-3px);
}

/* Responsive Adjustments */
@media (max-width: 1199px) {
    .display-2 {
        font-size: 3.5rem;
    }
}

@media (max-width: 991px) {
    .about-image-composition {
        height: 400px;
    }

    .experience-badge {
        position: absolute;
        bottom: 20px;
        right: 0;
        margin: 0;
        transform: scale(0.9);
        transform-origin: right bottom;
    }

    .glass-nav {
        background: rgba(0, 0, 0, 9%);
    }

    .glass-nav .navbar-toggler-icon {
        filter: invert(1) grayscale(100%) brightness(0);
    }

    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .glass-nav .nav-link {
        color: var(--dark-color) !important;
    }

    .display-2 {
        font-size: 3rem;
    }

    .display-5 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .py-6 {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }

    .global-trust-badge {
        top: auto;
        bottom: 20px;
        right: 20px;
        font-size: 0.7rem;
        padding: 0.35rem 0.7rem;
    }

    .about-image-composition {
        height: 350px;
    }

    .hero-section {
        min-height: 500px;
    }

    .display-2 {
        font-size: 2.5rem;
    }

    .display-5 {
        font-size: 2rem;
    }

    .carousel-caption {
        padding-top: 60px;
    }

    .carousel-caption h1 {
        margin-bottom: 1rem !important;
    }

    .carousel-caption .lead {
        font-size: 1.25rem !important;
        margin-bottom: 2rem !important;
    }

    .carousel-caption .btn {
        padding: 0.75rem 2rem !important;
        font-size: 1rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .footer {
        text-align: center;
    }

    .footer .social-links {
        justify-content: center;
    }

    .footer-links li {
        display: flex;
        justify-content: center;
    }

    .footer-links .d-flex.align-items-start {
        justify-content: center;
    }

    .footer .navbar-brand {
        display: flex !important;
        justify-content: center;
    }

    .bg-white.p-5 {
        padding: 3rem !important;
    }
}

@media (max-width: 575px) {
    .py-6 {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }

    .global-trust-badge {
        top: auto;
        bottom: 10px;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        width: max-content;
        font-size: 0.6rem;
        padding: 0.25rem 0.6rem;
        text-align: center;
        animation: none;
        /* remove slideInRight */
    }

    .about-image-composition {
        height: 280px;
        margin-bottom: 20px;
    }

    .experience-badge {
        bottom: 10px;
        right: 10px;
        transform: scale(0.7);
        transform-origin: right bottom;
        min-width: 120px;
        padding: 1rem !important;
    }

    .experience-badge h2 {
        font-size: 2rem;
    }

    .display-2 {
        font-size: 2rem;
    }

    .hero-section {
        min-height: 400px;
    }

    .carousel-caption {
        padding-top: 50px;
        padding-bottom: 2rem !important;
    }

    .carousel-caption .lead {
        font-size: 1.1rem !important;
        margin-bottom: 1.5rem !important;
    }

    .btn-lg {
        padding: 0.6rem 1.5rem !important;
        font-size: 0.9rem;
    }

    .bg-white.p-5 {
        padding: 2rem !important;
    }

    .col-lg-6.px-lg-5 {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .contact-card {
        padding: 0.75rem !important;
    }

    .contact-icon-box {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .contact-info h5 {
        font-size: 1.1rem;
    }

    .contact-info p {
        font-size: 0.85rem;
    }
}

/* Floating WhatsApp Icon */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-whatsapp:hover {
    background-color: #128c7e;
    color: #FFF;
    transform: scale(1.1);
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 30px;
    }
}