/* Ensure Carousel Visibility */
#reviews-carousel {
    display: block;
    width: 100%;
    min-height: 300px;
    /* Force height */
    opacity: 1 !important;
    /* Force opacity */
}

#reviews-carousel .owl-stage-outer {
    min-height: 300px;
    padding-bottom: 20px;
    /* Space for shadow */
}

#reviews-carousel .owl-item {
    min-height: 300px;
    height: 100%;
}


/* Premium Typography */
html {
    scroll-behavior: smooth;
}

body {
    /* User Requested Styles */
    letter-spacing: 0.06rem !important;
    /* Adding important to override any bootstrap defaults */
    line-height: calc(1 + 0.8 / var(--font-body-scale));
    font-family: var(--font-body-family) !important;
    font-style: var(--font-body-style);
    font-weight: var(--font-body-weight);

    overflow-x: hidden;
    /* Prevent horizontal scroll */
    -webkit-overflow-scrolling: touch;
    /* Momentum scrolling for iOS */
}

h1,
h2,
h3,
h4,
h5,
h6,
.heading-section h2,
/* Brand Colors - Merging User's Vars */
:root {
    --primary-orange: #FF6600;
    /* User's orange */
    --text-black: #222;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.3);

    --ocean-blue: #006994;
    --ocean-blue-dark: #004d6d;
    --ocean-blue-light: #0088c2;
    --sunset-orange: #FF6B35;
    /* Keep for other elements if needed, or map to primary-orange */
    --sunset-orange-dark: #e55a2b;
    --sunset-orange-light: #ff8555;

    /* Font Variables */
    --font-heading-family: 'Montserrat', sans-serif;
    /* Premium Sans Serif for Headings */
    --font-body-family: 'Open Sans', sans-serif;
    /* Clean Sans-serif for Body */
    --font-body-style: normal;
    --font-body-weight: 400;
    --font-body-scale: 1.0;
}

/* Navbar Container - Restructured for Flat Luxury Design */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 4%;
    /* Full width with comfortable side padding */
    height: 90px;
    /* Taller, more commanding height */

    position: fixed;
    width: 100%;
    /* Full width */
    top: 0;
    left: 0;
    z-index: 1030;
    /* Ensure navbar stays on top */
    transform: none;
    border-radius: 0;
    /* Remove rounded corners */

    /* Flat Professional Design */
    background: #ffffff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
    /* Subtle, premium shadow */
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);

    z-index: 1051;
    /* Must be higher than overlay (1040) */
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Scrolled State (Sticky) - slightly compressed */
.navbar.scrolled {
    height: 90px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Full Width Container override */
.navbar .container-fluid {
    width: 100%;
    padding: 0;
    max-width: 1400px;
    /* Max constraint for ultra-wide screens */
    margin: 0 auto;
}

/* Destination Filter Bar - Sticky */
.sticky-filter-bar {
    position: sticky;
    z-index: 900;
    top: 90px;
    /* Matches navbar height */
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 0;
    margin-left: -15px;
    margin-right: -15px;
    width: calc(100% + 30px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: top 0.4s ease;
}

.navbar.scrolled~.container .sticky-filter-bar,
.navbar.scrolled~.premium-experience-grid .sticky-filter-bar {
    top: 70px;
    /* Matches scrolled navbar height */
}

/* Premium Pill Filters */
.filter-btn {
    border-radius: 50px !important;
    padding: 8px 24px !important;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    margin: 0 5px;
    border: 1px solid #e2e8f0;
    background: transparent;
    color: #4a5568;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: #f8f9fa;
    border-color: #cbd5e0;
    color: #2d3748;
    transform: translateY(-1px);
}

.filter-btn.active {
    background: var(--ocean-blue) !important;
    color: white !important;
    border-color: var(--ocean-blue) !important;
    box-shadow: 0 4px 12px rgba(0, 105, 148, 0.2);
}

/* Scrollable container for mobile */
@media (max-width: 768px) {
    .sticky-filter-bar {
        overflow-x: auto;
        white-space: nowrap;
        padding: 10px 15px;
        /* Add horizontal padding */
        display: block;
        /* Default block for scroll */
        -webkit-overflow-scrolling: touch;
    }

    .sticky-filter-bar::-webkit-scrollbar {
        display: none;
    }

    .sticky-filter-bar .col-md-12 {
        display: inline-flex;
        /* Inline flex for row behavior */
        padding: 0;
        width: auto;
    }

    /* Ultra-Compact buttons for mobile */
    .filter-btn {
        padding: 6px 16px !important;
        font-size: 0.8rem;
        margin-right: 8px !important;
        margin-left: 0 !important;
        white-space: nowrap;
    }
}

/* Logo Section */
.logo-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    /* Ensure it takes full height of navbar */
}

.nav-logo {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    width: auto;
    /* Max-height is controlled inline (80px) but we can override for scroll */
}

/* Shrink logo slightly on scroll for a refined feel */
.navbar.scrolled .nav-logo {
    max-height: 70px !important;
}

/* Navigation Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    /* Generous spacing */
    margin-bottom: 0;
    padding: 0;
}

.nav-links li a {
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    color: #2d3748 !important;
    /* Dark Slate */
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    position: relative;
    padding: 30px 0;
    /* Increase clickable area vertically */
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: var(--ocean-blue) !important;
}

/* Subtle Underline Animation */
.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 25px;
    /* Positioned correctly within padding */
    left: 0;
    background-color: var(--sunset-orange);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

.nav-links li a.active {
    color: #1a202c !important;
    font-weight: 600;
}

/* User Actions */
.user-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    min-width: 180px;
    /* Ensure space */
    justify-content: flex-end;
}

.login-link,
.logout-link,
.profile-nav-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #4a5568 !important;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    transition: color 0.2s ease;
    cursor: pointer;
}

.login-link:hover,
.logout-link:hover,
.profile-nav-link:hover {
    color: var(--ocean-blue) !important;
}

.user-profile-minimal {
    display: flex;
    align-items: center;
    gap: 15px;
}

.welcome-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #718096;
}

.welcome-text strong {
    color: #2d3748;
    font-weight: 600;
}

/* Burger Menu */
.burger {
    display: none;
    cursor: pointer;
    z-index: 1100;
    position: relative;
    /* Crucial for z-index to work */
}

.burger div {
    width: 24px;
    height: 2px;
    background-color: #2d3748;
    margin: 5px;
    transition: all 0.3s ease;
}

/* Mobile Responsive Adjustments */
@media screen and (max-width: 1024px) {
    .nav-links {
        gap: 20px;
    }
}

@media screen and (max-width: 991px) {
    .navbar {
        height: 85px;
        padding: 0 20px;
    }

    .filter-btn {
        padding: 6px 16px !important;
    }

    /* Floating Card Mobile Menu - Editorial Style */
    .nav-links {
        position: absolute;
        top: 95px;
        /* Below navbar with slight gap */
        right: 16px;
        /* Inset from right */
        left: 16px;
        /* Inset from left */
        width: auto;
        /* Fluid width within insights */
        height: auto;
        /* Fit content */
        background-color: #ffffff;

        display: flex;
        flex-direction: column;
        align-items: flex-start;
        /* Left align for editorial feel */
        justify-content: flex-start;

        padding: 6px 0;
        border-radius: 12px;
        /* Soft rounding */
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        /* Soft premium shadow */
        border: 1px solid rgba(0, 0, 0, 0.04);

        transform: translateY(-10px);
        /* Start slightly up */
        opacity: 0;
        visibility: hidden;
        transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        /* Smooth easing */

        z-index: 1060;
        /* Increased to ensure it's above everything */

        /* Fix for tall menus/small screens */
        max-height: calc(100vh - 100px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-links li {
        width: 100%;
        margin: 0;
        opacity: 1;
        /* Always visible inside container */
        transform: none;
        /* No individual staggering needed for simple card */
    }

    .nav-links li a {
        font-family: 'Inter', sans-serif !important;
        /* Clean sans-serif */
        font-size: 0.95rem !important;
        /* Smaller, more modern text */
        color: #1a202c !important;
        /* Dark Navy */
        padding: 8px 16px;
        /* Compact touch target */
        display: block;
        font-weight: 500;
        text-align: left;
        border-radius: 6px;
        margin: 0 4px;
        /* Inset hover effect */
        transition: background 0.2s ease, color 0.2s ease;
    }

    .nav-links li a:active,
    .nav-links li a:hover {
        background-color: #f7fafc;
        /* Subtle grey hover */
        color: var(--ocean-blue) !important;
    }

    .nav-links li a::after {
        display: none;
    }

    /* Active State for Menu */
    .nav-active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .user-actions {
        display: none;
    }

    .burger {
        display: block;
    }
}

/* Nav Active - Floating Menu */
.nav-active {
    transform: translateY(0);
}



/* Overlay - still needed for click-out logic but visually subtle/invisible if desired. 
   User asked primarily for floating card feel. We can make overlay transparent or subtle.
*/
/* Mobile Menu Overlay - Invisible but captures clicks */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: transparent;
    z-index: 1040;
    /* Below menu (1050) but above content */
    display: none;
}

.overlay-active {
    display: block;
}

/* Burger Animation Toggles */
.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
    background-color: #1a202c;
}

.toggle .line2 {
    opacity: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
    background-color: #1a202c;
}

/* Mobile User Info */
/* Mobile User Info */
.mobile-user-info {
    display: none;
    /* Hidden by default (Desktop) */
}

@media screen and (max-width: 991px) {

    /* Hide Desktop User Actions strictly */
    .user-actions {
        display: none !important;
    }

    .mobile-user-info {
        display: flex;
        align-items: center;
        width: 100%;
        padding: 12px 16px;
        /* Compact padding */
        margin-bottom: 5px;
        /* Compact margin */
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        background-color: #f8fafc;
        /* Slight bg distinction */
        border-radius: 12px 12px 0 0;
    }

    .mobile-user-icon {
        font-size: 1.8rem;
        /* Smaller icon */
        color: var(--ocean-blue);
        margin-right: 12px;
    }

    .mobile-user-details {
        display: flex;
        flex-direction: column;
    }

    .mobile-user-info .greeting {
        font-family: 'Inter', sans-serif;
        font-size: 0.85rem;
        color: #718096;
        display: block;
        margin-bottom: 2px;
    }

    .mobile-user-info .username {
        font-family: 'Playfair Display', serif;
        font-size: 1.1rem;
        /* Compact font */
        color: var(--ocean-blue-dark);
        font-weight: 700;
        display: block;
        line-height: 1.2;
    }
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
    opacity: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Override primary colors */
.btn-primary {
    background: var(--sunset-orange) !important;
    border-color: var(--sunset-orange) !important;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4) !important;
    font-weight: 600 !important;
}

.btn-primary:hover {
    background: var(--sunset-orange-dark) !important;
    border-color: var(--sunset-orange-dark) !important;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6) !important;
    transform: translateY(-2px);
}

.btn-white {
    background: #fff !important;
    border: 2px solid #fff !important;
    color: var(--ocean-blue) !important;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3) !important;
    font-weight: 600 !important;
}

.btn-white:hover {
    background: transparent !important;
    border: 2px solid #fff !important;
    color: #fff !important;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.5) !important;
    transform: translateY(-2px);
}

.ftco_navbar {
    background: var(--ocean-blue) !important;
}

.navbar-brand span {
    color: var(--sunset-orange);
}

.nav-link:hover {
    color: var(--sunset-orange) !important;
}

.nav-item.active .nav-link {
    color: var(--sunset-orange) !important;
}

/* Fix Login Button Visibility on Scroll */
.ftco-navbar-light.scrolled .btn-outline-light {
    color: var(--sunset-orange) !important;
    border-color: var(--sunset-orange) !important;
}

.ftco-navbar-light.scrolled .btn-outline-light:hover {
    background: var(--sunset-orange) !important;
    color: #fff !important;
}

/* Hero Section */
.hero-wrap {
    position: relative;
}

.hero-wrap .subheading {
    color: var(--sunset-orange);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-wrap h1 {
    font-size: 50px;
    color: #fff;
    font-weight: 700;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8);
}

.hero-wrap .caps {
    font-size: 18px;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

/* Hero Video Background */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-video-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
    display: none;
}

/* Show fallback if video fails to load */
.hero-wrap:not(:has(video)) .hero-video-fallback,
.hero-video[poster]~.hero-video-fallback {
    display: block;
}

/* Ensure content is above video */
.hero-wrap .overlay {
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.65) !important;
}

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


/* Hero Statistics */
.hero-stat {
    text-align: center;
    padding: 20px;
}

.hero-stat .icon-circle {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid var(--sunset-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: all 0.3s ease;
}

.hero-stat .icon-circle span {
    font-size: 32px;
    color: var(--sunset-orange);
}

.hero-stat:hover .icon-circle {
    background: var(--sunset-orange);
    transform: scale(1.1);
}

.hero-stat:hover .icon-circle span {
    color: #fff;
}

.hero-stat h3 {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
}

.hero-stat p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Request Form */
.request-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.request-form h2 {
    color: var(--ocean-blue);
    margin-bottom: 20px;
}

/* Services Section */
.services-section .subheading {
    color: var(--sunset-orange);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.services-1.color-1 {
    background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--ocean-blue-dark) 100%);
}

.services-1.color-2 {
    background: linear-gradient(135deg, var(--sunset-orange) 0%, var(--sunset-orange-dark) 100%);
}

.services-1.color-3 {
    background: linear-gradient(135deg, var(--ocean-blue-light) 0%, var(--ocean-blue) 100%);
}

.services-1.color-4 {
    background: linear-gradient(135deg, var(--sunset-orange-light) 0%, var(--sunset-orange) 100%);
}

/* Destinations */
.project-wrap .price {
    background: var(--sunset-orange);
}

.project-wrap h3 a:hover {
    color: var(--ocean-blue);
}

.project-wrap .location {
    color: var(--ocean-blue);
}

/* Package Cards */
.package-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.package-img {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.package-content {
    padding: 25px;
}

.package-duration {
    display: inline-block;
    background: var(--ocean-blue);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.package-card h3 {
    color: var(--ocean-blue);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.package-card p {
    color: #666;
    margin-bottom: 20px;
}

.package-price {
    color: var(--sunset-orange);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Testimonials */
.testimony-wrap {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.testimony-wrap .name {
    color: var(--ocean-blue);
    font-weight: 700;
    margin: 0;
}

.testimony-wrap .position {
    color: var(--sunset-orange);
    font-size: 14px;
}

.user-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 3px solid var(--sunset-orange);
}

/* Headings */
.heading-section .subheading {
    color: var(--sunset-orange);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.heading-section h2 {
    color: var(--ocean-blue);
    font-size: 40px;
    font-weight: 700;
}

.heading-section-white h2 {
    color: #fff !important;
}

/* Footer */
.ftco-footer {
    background: var(--ocean-blue-dark);
}

.ftco-footer .ftco-heading-2 {
    color: #fff;
}

.ftco-footer a:hover {
    color: var(--sunset-orange) !important;
}

.ftco-footer-social li a {
    background: var(--sunset-orange);
}

.ftco-footer-social li a:hover {
    background: var(--sunset-orange-dark);
}

/* Gallery Styles */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 30px;
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 105, 148, 0.9) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

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

.gallery-caption {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

/* Contact Form */
.contact-form .form-control:focus {
    border-color: var(--ocean-blue);
    box-shadow: 0 0 0 0.2rem rgba(0, 105, 148, 0.25);
}

.contact-info-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid var(--sunset-orange);
}

.contact-info-item .icon {
    color: var(--ocean-blue);
    font-size: 30px;
    margin-bottom: 15px;
}

.contact-info-item h3 {
    color: var(--ocean-blue);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Review Section */
.review-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.review-rating {
    color: var(--sunset-orange);
    font-size: 20px;
    margin-bottom: 15px;
}

.review-author {
    color: var(--ocean-blue);
    font-weight: 700;
    margin-top: 15px;
}

/* Filter Buttons */
.filter-btn {
    border-radius: 30px;
    padding: 8px 25px;
    margin: 5px;
    transition: all 0.3s ease;
}

/* Destination Details - Premium Redesign */
.destination-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 60px;
    width: 100%;
}

@media (max-width: 991.98px) {
    .destination-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        /* Slightly smaller gap on tablets if needed, but 30px is fine too. Keeping 30px for "Equal" request? User said equal. 20px is equal horiz/vert. */
        gap: 30px;
    }
}

@media (max-width: 767.98px) {
    .destination-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.destination-detail {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    /* Soft, premium shadow */
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    /* Smooth hover lift */
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    /* Equal height cards */
    display: flex;
    flex-direction: column;
}

.destination-detail:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.destination-detail-img {
    height: 220px;
    /* Reference Image Ratio */
    background-size: cover;
    background-position: center;
    border-radius: 16px 16px 0 0;
    position: relative;
    overflow: hidden;
}

/* Card Badges */
.card-badge {
    position: absolute;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.card-badge.category {
    top: 15px;
    right: 15px;
    background: var(--sunset-orange);
    color: #fff;
}

.card-badge.rating {
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    gap: 5px;
}

.card-badge.rating i {
    color: var(--sunset-orange);
    font-size: 0.8rem;
}

.destination-detail-content {
    padding: 20px 25px;
    /* Clean padding */
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.destination-detail h2 {
    color: #333;
    /* Darker title text */
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1.3;
}

.destination-detail .location {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0;
    /* No heavy margin */
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.destination-detail .location span {
    color: var(--sunset-orange);
    font-size: 1rem;
}

/* Explore Link */
.explore-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ocean-blue);
    text-decoration: none;
    align-self: flex-end;
    /* Align right */
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
    margin-top: 20px;
    /* Spacing from location */
}

.explore-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.explore-link:hover {
    color: var(--ocean-blue-dark);
}

.explore-link:hover i {
    transform: translateX(4px);
}

/* Premium Card: Hide Description Text */
.destination-detail p:not(.location) {
    display: none;
}

.destination-detail p.location {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    font-family: 'Assistant', sans-serif;
}

.destination-detail h4 {
    font-size: 16px;
    color: var(--ocean-blue-dark);
    font-weight: 700;
    margin-bottom: 15px;
    margin-top: auto;
    /* Push to bottom if content varies */
    text-transform: uppercase;
    letter-spacing: 1px;
}

.destination-detail ul {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-bottom: 20px;
}

.destination-detail ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: #666;
    font-size: 14px;
}

.destination-detail ul li::before {
    content: '•';
    color: var(--sunset-orange);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 18px;
    line-height: 1;
}

/* Tablet Media Query (2 Columns) */
@media (max-width: 991px) {
    .destination-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Media Query (1 Column) handled by general mobile-first styles or added here if specific overrides needed */
@media (max-width: 767px) {
    .destination-grid {
        grid-template-columns: 1fr;
    }

    .destination-detail-img {
        height: 220px;
    }

    .destination-detail-content {
        padding: 25px;
    }
}

/* CSS for reviews */
.btn-read-more {
    z-index: 999;
    /* High z-index */
    position: relative;
    /* Essential for z-index to work */
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 5px;
    text-decoration: underline;
}

/* Star Rating */
.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    font-size: 30px;
    gap: 5px;
}

.star-rating input[type="radio"] {
    display: none;
}

.star-rating label {
    color: #ddd;
    cursor: pointer;
    padding: 0 5px;
    transition: color 0.2s;
}

.star-rating label:hover,
.star-rating label:hover~label,
.star-rating input[type="radio"]:checked~label {
    color: var(--sunset-orange);
}

/* ========================================
   DESTINATION MODAL STYLES (MODERN)
   ======================================== */

/* Modal Overlay */
.modal-overlay {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    /* Prevent body scroll interaction */
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    align-items: center;
    /* Center on desktop */
    justify-content: center;
    /* Center on desktop */
}

.modal-overlay.show {
    opacity: 1;
    display: flex;
    /* Activate flex centering */
}

/* Modal Content Container */
.modal-overlay .modal-content {
    background-color: #fff;
    margin: 0;
    padding: 0;
    border: none;
    width: 90%;
    max-width: 900px;
    height: 85vh;
    /* Fixed height for consistency */
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    font-family: 'Poppins', sans-serif;

    /* Desktop Animation: Scale Up */
    opacity: 0;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
}

.modal-overlay.show .modal-content {
    opacity: 1;
    transform: scale(1);
}

/* Close Button (Floating) */
.close-modal-float {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.close-modal-float:hover {
    background: #fff;
    color: var(--sunset-orange);
    transform: rotate(90deg);
}

/* Modal Body - Scrollable Content Area */
.modal-overlay .modal-body {
    padding: 0;
    overflow-y: auto;
    flex-grow: 1;
    /* Hide scrollbar for cleaner look but keep functionality */
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
}

.modal-overlay .modal-body::-webkit-scrollbar {
    width: 6px;
}

.modal-overlay .modal-body::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}

/* Modal Header (Hero Section) */
.popup-header {
    height: 40%;
    /* Top 40% */
    min-height: 300px;
    position: relative;
    color: #fff;
    flex-shrink: 0;
}

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

/* Floating Badge */
.popup-badge-float {
    position: absolute;
    top: 25px;
    left: 25px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--ocean-blue-dark);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 15;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 6px;
}

.popup-badge-float i {
    color: var(--sunset-orange);
}

/* Header Text Overlay */
.popup-header-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.popup-header h2 {
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-family: 'Playfair Display', serif;
}

.popup-location {
    font-size: 16px;
    opacity: 0.9;
    margin-top: 5px;
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Tab Navigation */
.popup-nav-container {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 10;
    padding: 0 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.popup-tabs {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 30px;
}

.tab-link {
    padding: 18px 0;
    cursor: pointer;
    color: #888;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.tab-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--sunset-orange);
    transition: width 0.3s ease;
    border-radius: 3px 3px 0 0;
}

.tab-link:hover {
    color: var(--ocean-blue);
}

.tab-link.active {
    color: var(--ocean-blue-dark);
    font-weight: 600;
}

.tab-link.active::after {
    width: 100%;
}

/* Tab Content */
.popup-content-grid {
    padding: 40px;
}

.tab-pane {
    display: none;
    animation: fadeSlideUp 0.4s ease forwards;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Typography & Content Sections */
.popup-section h3 {
    font-size: 20px;
    color: var(--ocean-blue-dark);
    font-weight: 600;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.popup-section p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 15px;
}

.attraction-list,
.activity-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
    margin-top: 10px;
}

.attraction-item,
.activity-item {
    background: #fff;
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid #eee;
    font-weight: 500;
    color: #444;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.attraction-item::before {
    content: '🏛️';
}

.activity-item::before {
    content: '✨';
}

.attraction-item:hover,
.activity-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-color: var(--ocean-blue-light);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .modal-overlay {
        align-items: flex-end;
        /* Align to bottom for sheet effect */
    }

    .modal-overlay .modal-content {
        width: 100%;
        max-width: 100%;
        height: 90vh;
        /* Taller on mobile */
        border-radius: 20px 20px 0 0;
        margin: 0;

        /* Mobile Animation: Slide Up */
        opacity: 1;
        /* Always opacity 1 when show, handled by transform */
        transform: translateY(100%);
        transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    }

    .modal-overlay.show .modal-content {
        transform: translateY(0);
    }

    .popup-header {
        height: 35%;
        min-height: 200px;
    }

    .popup-header h2 {
        font-size: 28px;
    }

    .popup-nav-container {
        padding: 0 20px;
        overflow-x: auto;
    }

    .popup-tabs {
        width: max-content;
        gap: 20px;
    }

    .popup-content-grid {
        padding: 25px 20px;
        padding-bottom: 80px;
        /* Space for bottom interaction */
    }

    .attraction-list,
    .activity-list {
        grid-template-columns: 1fr;
    }
}

.popup-section p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 12px;
}

/* Lists - Full width on mobile */
.attraction-list,
.activity-list {
    grid-template-columns: 1fr;
    gap: 12px;
}

.attraction-item,
.activity-item {
    padding: 16px;
    font-size: 15px;
    border-left-width: 4px;
}

/* Info Box - Better mobile layout */
.popup-info-box {
    padding: 20px;
    margin-top: 20px;
    position: static;
}

.popup-info-box h3 {
    font-size: 18px;
    margin-bottom: 15px;
    position: static;
}

.info-row {
    margin-bottom: 16px;
    padding: 12px;
    background: #fff;
    border-radius: 8px;
}

.info-row i {
    font-size: 20px;
    margin-right: 12px;
}

.info-row strong {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-row span {
    font-size: 16px;
    font-weight: 600;
}

/* Gallery - 2 columns on mobile */
.gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.gallery-grid img {
    height: 150px;
    border-radius: 8px;
}

/* Modal Body - Better scrolling on mobile */
.modal-overlay .modal-body {
    max-height: calc(100vh - 0px);
    -webkit-overflow-scrolling: touch;
}

/* Add padding to bottom for better scrolling experience */
.popup-content-grid::after {
    content: '';
    display: block;
    height: 40px;
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .popup-header {
        height: 180px;
    }

    .popup-header h2 {
        font-size: 20px;
    }

    .tab-link {
        padding: 14px 16px;
        font-size: 14px;
        min-height: 52px;
    }

    .popup-content-grid {
        padding: 15px 12px;
    }

    .popup-section h3 {
        font-size: 18px;
    }

    .gallery-grid img {
        height: 120px;
    }

    /* Single column gallery on very small screens */
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid img {
        height: 200px;
    }
}

/* ========================================
   MOBILE-FIRST RESPONSIVE STYLES
   ======================================== */

/* Mobile Devices (up to 576px) */
@media (max-width: 576px) {

    /* Typography */
    .hero-wrap h1 {
        font-size: 28px !important;
        line-height: 1.3;
    }

    .hero-wrap .subheading {
        font-size: 14px;
        letter-spacing: 1px;
    }

    .hero-wrap .caps {
        font-size: 14px;
    }

    .heading-section h2 {
        font-size: 24px !important;
        line-height: 1.3;
    }

    .heading-section .subheading {
        font-size: 13px;
    }

    /* Navigation */
    .navbar-brand {
        font-size: 20px !important;
    }

    .navbar-brand span {
        font-size: 11px !important;
    }

    /* Buttons - Touch Friendly */
    .btn {
        padding: 12px 24px !important;
        font-size: 14px !important;
        min-height: 44px;
    }

    .btn-block {
        width: 100%;
    }

    /* Request Form */
    .request-form {
        padding: 20px;
        margin: 15px;
    }

    .request-form h2 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .request-form .form-control {
        font-size: 16px;
        padding: 12px;
        min-height: 44px;
    }

    /* Services Cards */
    .services-1 {
        margin-bottom: 20px;
        padding: 30px 20px !important;
    }

    .services-1 .icon {
        font-size: 50px !important;
    }

    .services-1 h3 {
        font-size: 18px;
    }

    /* Package Cards */
    .package-card {
        margin-bottom: 20px;
    }

    .package-img {
        height: 220px;
    }

    .package-content {
        padding: 20px;
    }

    .package-card h3 {
        font-size: 20px;
    }

    .package-price {
        font-size: 20px;
    }

    .package-card ul {
        font-size: 14px;
    }

    /* Destination Cards */
    .destination-detail-img {
        height: 250px;
    }

    .destination-detail-content {
        padding: 25px 20px;
    }

    .destination-detail h2 {
        font-size: 24px;
    }

    .destination-highlight {
        padding: 10px 15px;
        font-size: 13px;
        margin: 5px 5px 5px 0;
    }

    /* Gallery */
    .gallery-item img {
        height: 250px;
    }

    .filter-btn {
        font-size: 12px !important;
        padding: 8px 12px !important;
        margin: 3px !important;
    }

    /* Contact Info */
    .contact-info-item {
        padding: 20px;
        margin-bottom: 15px;
    }

    .contact-info-item .icon {
        font-size: 24px;
    }

    .contact-info-item h3 {
        font-size: 16px;
    }

    /* Review Cards */
    .review-card {
        padding: 20px;
        margin-bottom: 20px;
    }

    .review-rating {
        font-size: 16px;
    }

    .review-card p {
        font-size: 14px;
    }
}



/* -------------------------------- */
/* PREMIUM GLASSMORPHISM NAVBAR    */
/* -------------------------------- */

.ceylon-premium-navbar {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.4s ease;
    background: transparent;
    /* Start transparent */
}

/* Scrolled State (Sticky) */
.ceylon-premium-navbar.scrolled {
    background: rgba(0, 0, 0, 0.8) !important;
    /* Darker background on scroll */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 0;
    /* Shrink slightly */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.ceylon-premium-navbar.awake {
    margin-top: 0;
    /* Override any template hiding */
    transform: translateY(0);
}

/* Logo Styles */
.navbar-brand {
    display: flex;
    font-family: var(--font-heading-family) !important;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}

.brand-text {
    font-size: 24px;
    font-weight: 700;
    color: #fff !important;
    letter-spacing: 1px;
}

.brand-tagline {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--sunset-orange);
    margin-top: 2px;
    font-family: var(--font-body-family);
    font-weight: 600;
}

/* Navigation Links */
.ceylon-premium-navbar .nav-link {
    font-family: var(--font-body-family);
    font-weight: 600;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 8px 16px !important;
    position: relative;
    transition: color 0.3s ease;
}

/* Hover Effect - Sliding Underline */
.ceylon-premium-navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    /* Match padding */
    width: 0;
    height: 2px;
    background: var(--sunset-orange);
    transition: width 0.3s ease;
}

.ceylon-premium-navbar .nav-link:hover {
    color: #fff !important;
}

.ceylon-premium-navbar .nav-link:hover::after,
.ceylon-premium-navbar .nav-item.active .nav-link::after {
    width: calc(100% - 32px);
    /* Match padding */
}

.ceylon-premium-navbar .nav-item.active .nav-link {
    color: var(--sunset-orange) !important;
}

/* User Profile Section */
.nav-user-profile {
    display: flex;
    align-items: center;
    margin-left: 20px;
    padding-left: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.welcome-text {
    font-size: 14px;
    color: #fff;
    margin-right: 15px;
    font-weight: 500;
}

.btn-auth-nav {
    border: 1px solid var(--sunset-orange);
    color: var(--sunset-orange) !important;
    background: transparent;
    padding: 6px 18px;
    border-radius: 50px;
    /* Pill shape */
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-auth-nav:hover {
    background: var(--sunset-orange);
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

/* Mobile Adjustments */
@media (max-width: 991.98px) {
    .ceylon-premium-navbar {
        background: rgba(0, 0, 0, 0.9) !important;
        /* Solid dark for readability on mobile open */
        padding: 10px 0;
    }

    .navbar-collapse {
        background: #1a1a1a;
        margin-top: 15px;
        border-radius: 8px;
        padding: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .nav-user-profile {
        border-left: none;
        margin-left: 0;
        padding-left: 0;
        padding-top: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 10px;
        flex-direction: column;
        align-items: flex-start;
    }

    .welcome-text {
        margin-bottom: 10px;
        display: block;
    }
}

/* WhatsApp Button Style */
.btn-whatsapp {
    background: #25D366 !important;
    border-color: #25D366 !important;
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4) !important;
    font-weight: 600 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-whatsapp:hover {
    background: #128C7E !important;
    border-color: #128C7E !important;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6) !important;
    color: #fff !important;
    transform: translateY(-2px);
}

/* Package Duration Style */
.package-duration {
    display: inline-block;
    padding: 5px 15px;
    background: var(--sunset-orange) !important;
    color: #fff;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* -------------------------------- */
/* PREMIUM CONTACT FORM ACTIONS    */
/* -------------------------------- */

.action-area-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
}

/* Primary "Send Message" Button */
.btn-premium-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 56px;
    /* Mobile friendly height */
    background: linear-gradient(135deg, var(--sunset-orange) 0%, var(--sunset-orange-dark) 100%) !important;
    color: white !important;
    border: none !important;
    border-radius: 12px;
    font-family: var(--font-body-family);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.25);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.btn-premium-primary i {
    margin-right: 12px;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.btn-premium-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, var(--sunset-orange-light) 0%, var(--sunset-orange) 100%) !important;
}

.btn-premium-primary:hover i {
    transform: translateX(-3px) scale(1.1);
}

.btn-premium-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.2);
}

/* Divider */
.action-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    margin: 5px 0;
}

.divider-line {
    height: 1px;
    width: 30px;
    background-color: rgba(0, 0, 0, 0.1);
    display: block;
}

.divider-text {
    padding: 0 10px;
    font-size: 12px;
    text-transform: uppercase;
    color: #999;
    font-weight: 500;
    letter-spacing: 1px;
}

/* Secondary "WhatsApp" Button */
.btn-premium-secondary {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px;
    background: #fff !important;
    color: #25D366 !important;
    border: 2px solid rgba(37, 211, 102, 0.15) !important;
    border-radius: 12px;
    font-family: var(--font-body-family);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.btn-premium-secondary .btn-label {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 2px;
}

.btn-premium-secondary .btn-label i {
    margin-right: 8px;
    font-size: 18px;
}

.btn-premium-secondary .btn-subtext {
    font-size: 11px;
    color: #888;
    font-weight: 500;
}

.btn-premium-secondary:hover {
    background: #f0fdf4 !important;
    /* Very light green hint */
    border-color: #25D366 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.1);
}

.btn-premium-secondary:hover .btn-label {
    color: #128C7E !important;
}

/* Mobile Adjustments for Action Area */
@media (max-width: 576px) {
    .btn-premium-primary {
        font-size: 15px;
    }

    .btn-premium-secondary .btn-label {
        font-size: 14px;
    }
}

/* -------------------------------- */
/* TESTIMONIALS EDIT/DELETE UI      */
/* -------------------------------- */

.review-card {
    position: relative;
    /* Context for absolute positioning of menu */
}

.review-actions-menu {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
}

.btn-icon-menu {
    background: transparent;
    border: none;
    color: #ccc;
    font-size: 18px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.btn-icon-menu:hover,
.btn-icon-menu:focus {
    background-color: rgba(0, 0, 0, 0.05);
    color: #333;
    outline: none;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    top: 35px;
    background-color: #fff;
    min-width: 140px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.15);
    z-index: 20;
    /* Higher than menu button */
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    animation: fadeIn 0.2s;
}

/* Show the dropdown menu (use JS to add this class) */
.show {
    display: block;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: black;
    padding: 10px 16px;
    text-decoration: none;
    display: block;
    font-size: 13px;
    transition: background 0.2s;
    font-family: var(--font-body-family);
    display: flex;
    align-items: center;
    gap: 8px;
}

.dropdown-content a i {
    width: 16px;
    text-align: center;
    color: #777;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
    color: var(--sea-blue);
}

.dropdown-content a:hover i {
    color: var(--sea-blue);
}

.dropdown-content a:last-child:hover {
    background-color: #fff5f5;
    color: #dc3545;
}

.dropdown-content a:last-child:hover i {
    color: #dc3545;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Custom Modal Styles */
.custom-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(2px);
}

.custom-modal-content {
    background-color: #ffffff;
    margin: 10% auto;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    color: #aaa;
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    transition: color 0.2s;
    cursor: pointer;
}

.close-modal:hover,
.close-modal:focus {
    color: #333;
    text-decoration: none;
}

.custom-modal h3 {
    margin-top: 0;
    margin-bottom: 20px;
    font-family: var(--font-heading-family);
    color: var(--sea-blue);
    font-size: 24px;
}

.custom-modal .form-group label {
    font-weight: 600;
    color: #555;
    margin-bottom: 8px;
    display: block;
}

.custom-modal .form-control {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 10px;
    width: 100%;
    font-family: inherit;
}

.custom-modal .form-control:focus {
    border-color: var(--sea-blue);
    outline: none;
}

.custom-modal .btn-primary {
    background: var(--sea-blue) !important;
    border: none !important;
    margin-top: 15px;
    font-weight: 600;
}

.custom-modal .btn-primary:hover {
    background: var(--sea-blue-dark) !important;
}

/* ------------------------------------------- */
/* PREMIUM TESTIMONIAL CAROUSEL - BRAND COLORS */
/* Color Distribution: White 70-75%, Ocean Blue 18-22%, Sunset Orange 3-5% */
/* ------------------------------------------- */

/* Carousel Container */
.premium-testimonial-carousel {
    position: relative;
    padding: 40px 0;
    overflow: hidden;
    perspective: 1000px;
    width: 100%;
    /* Mask for fade effect on edges */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.testimonial-viewport {
    width: 100%;
    margin: 0 auto;
    overflow: visible;
    padding: 40px 0;
}

.testimonial-track {
    display: flex;
    gap: 30px;
    /* Space between cards */
    width: max-content;
    /* Ensure it fits all children */
    animation: scroll-horizontal 60s linear infinite;
    /* Ensure hardware acceleration */
    transform: translate3d(0, 0, 0);
    will-change: transform;
}

/* Keyframes for moving left */
@keyframes scroll-horizontal {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
        /* Move half the length */
    }
}

/* Pause on Hover */
.premium-testimonial-carousel:hover .testimonial-track {
    animation-play-state: paused;
}

.testimonial-track:active {
    cursor: grabbing;
}

/* Glassmorphism Card - DARK OCEAN BACKGROUND */
.testimonial-card-premium {
    flex: 0 0 350px;
    background: linear-gradient(135deg, #2c5f6f, #1e4450);
    /* Dark ocean gradient */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 35px;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    opacity: 0.75;
    /* Inactive state */
    transform: scale(0.92);
    user-select: none;
    min-height: 380px;
    display: flex;
    flex-direction: column;
}

/* Active Slide - Enhanced */
.testimonial-card-premium.active {
    background: linear-gradient(135deg, #2c5f6f, #1e4450);
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 1;
    transform: scale(1);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    z-index: 2;
}

/* Hover Effect */
.testimonial-card-premium.active:hover {
    transform: scale(1) translateY(-8px);
    box-shadow:
        0 16px 50px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.15);
}

/* Gradient Border Effect - Subtle */
.testimonial-card-premium::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card-premium.active::before {
    opacity: 1;
}

/* Quote Icon - GOLD COLOR */
.testimonial-card-premium .quote-icon {
    font-size: 48px;
    color: #d4a574;
    /* Gold/tan color like in image */
    margin-bottom: 25px;
    opacity: 0.9;
    line-height: 1;
}

/* Review Text - WHITE */
.testimonial-card-premium .review-text {
    font-size: 16px;
    font-style: normal;
    color: #ffffff;
    /* White text */
    line-height: 1.7;
    margin-bottom: auto;
    /* Push user info to bottom */
    display: -webkit-box;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

/* User Section - At Bottom */
.testimonial-card-premium .user-info {
    display: flex;
    align-items: center;
    border-top: none;
    padding-top: 25px;
    margin-top: 20px;
}

/* Avatar - Circular Photo */
.testimonial-card-premium .avatar {
    width: 56px;
    height: 56px;
    background: #ffffff;
    border-radius: 50%;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--ocean-blue);
    font-family: var(--font-heading-family);
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

/* User Details - WHITE TEXT */
.testimonial-card-premium .details {
    flex: 1;
}

.testimonial-card-premium .details h4 {
    font-family: var(--font-heading-family);
    font-size: 17px;
    font-weight: 600;
    margin: 0 0 4px 0;
    color: #ffffff;
    /* White name */
    line-height: 1.2;
}

.testimonial-card-premium .details span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    /* Light gray/white */
    display: block;
    line-height: 1.5;
}

.testimonial-card-premium .details .country {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    /* Slightly brighter for country */
    display: block;
    margin-top: 2px;
}

.testimonial-card-premium .details .country i {
    margin-right: 4px;
    font-size: 12px;
}

.testimonial-card-premium .details .tour-package {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    display: block;
    margin-top: 2px;
}

/* Stars - SUNSET ORANGE - Top Right */
.testimonial-card-premium .rating-stars {
    position: absolute;
    top: 40px;
    right: 35px;
    color: var(--sunset-orange);
    /* Sunset Orange */
    font-size: 16px;
}

.testimonial-card-premium .rating-stars i {
    margin-left: 2px;
    filter: drop-shadow(0 2px 4px rgba(255, 107, 53, 0.3));
}

/* Navigation Controls - Ocean Blue Primary */
.carousel-controls {
    display: none !important;
}

/* Arrow Buttons - Ocean Blue with Sunset Orange Hover */
.nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--ocean-blue);
    /* Ocean Blue (18-22%) */
    background: #ffffff;
    /* White background */
    color: var(--ocean-blue);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 105, 148, 0.1);
}

.nav-btn:hover {
    background: var(--sunset-orange);
    /* Sunset Orange hover (3-5%) */
    color: #ffffff;
    border-color: var(--sunset-orange);
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.25);
}

.nav-btn:active {
    transform: scale(0.95);
}

/* Progress Bar - Ocean Blue → Sunset Orange Gradient */
.progress-container {
    width: 220px;
    height: 5px;
    background: rgba(0, 105, 148, 0.1);
    /* Light Ocean Blue background */
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(to right, var(--ocean-blue), var(--sunset-orange));
    /* Ocean Blue → Sunset Orange */
    width: 0%;
    transition: width 0.3s ease-out;
    border-radius: 3px;
    box-shadow: 0 0 8px rgba(255, 107, 53, 0.4);
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .testimonial-card-premium {
        flex: 0 0 85vw;
        opacity: 1;
        transform: scale(1) !important;
        padding: 30px 25px;
    }

    .testimonial-card-premium.active {
        border: 2px solid var(--ocean-blue);
        box-shadow: 0 6px 25px rgba(0, 105, 148, 0.15);
    }

    .testimonial-viewport {
        padding: 20px 0;
    }

    .testimonial-track {
        gap: 20px;
    }

    .progress-container {
        width: 140px;
    }

    .nav-btn {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }
}

/* Three-dot Action Menu - WHITE FOR DARK BACKGROUND */
.testimonial-card-premium .review-actions-menu {
    top: 20px;
    right: 20px;
}

.testimonial-card-premium .btn-icon-menu {
    color: rgba(255, 255, 255, 0.7);
    /* White for dark background */
    opacity: 0.7;
    transition: all 0.2s;
}

.testimonial-card-premium .btn-icon-menu:hover {
    opacity: 1;
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
}

.testimonial-card-premium .dropdown-content {
    top: 40px;
    right: 0;
    background: #ffffff;
    /* White dropdown */
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.testimonial-card-premium .dropdown-content a {
    color: #333;
    /* Dark text on white dropdown */
}

.testimonial-card-premium .dropdown-content a:hover {
    background-color: rgba(0, 105, 148, 0.05);
    color: var(--ocean-blue);
}

.testimonial-card-premium .dropdown-content a:hover i {
    color: var(--ocean-blue);
}

/* Section Heading - Ocean Blue */
.testimony-section .heading-section h2 {
    color: var(--ocean-blue);
}

.testimony-section .heading-section .subheading {
    color: var(--sunset-orange);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 13px;
    font-weight: 600;
}

/* ========================================= */
/* PREMIUM CARD STYLING - SYSTEM PAGES */
/* Brand Colors: White 70-75%, Ocean Blue 18-22%, Sunset Orange 3-5% */
/* ========================================= */

/* Service Info Cards - Services Page */
.contact-info-item {
    background: #ffffff;
    /* White background (70-75%) */
    border: 1px solid rgba(0, 105, 148, 0.1);
    /* Subtle Ocean Blue border */
    border-radius: 16px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    height: 100%;
}

.contact-info-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(0, 105, 148, 0.12);
    /* Ocean Blue shadow */
    border-color: var(--ocean-blue);
}

.contact-info-item .icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--ocean-blue-light), var(--ocean-blue));
    /* Ocean Blue (18-22%) */
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 105, 148, 0.2);
    transition: all 0.3s ease;
}

.contact-info-item:hover .icon {
    background: linear-gradient(135deg, var(--sunset-orange), var(--sunset-orange-dark));
    /* Sunset Orange hover (3-5%) */
    transform: scale(1.08);
}

.contact-info-item .icon span {
    font-size: 28px;
    color: #ffffff;
    /* White icon */
}

.contact-info-item h3 {
    font-family: var(--font-heading-family);
    font-size: 20px;
    font-weight: 600;
    color: var(--ocean-blue);
    /* Ocean Blue heading (18-22%) */
    margin-bottom: 12px;
}

.contact-info-item p,
.contact-info-item a {
    color: #666;
    /* Muted gray text */
    font-size: 15px;
    line-height: 1.6;
}

.contact-info-item a:hover {
    color: var(--sunset-orange);
    /* Sunset Orange link hover (3-5%) */
}

/* Destination Cards - Destinations Page */
.destination-card,
.ftco-destination {
    background: #ffffff;
    border: 1px solid rgba(0, 105, 148, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.destination-card:hover,
.ftco-destination:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(0, 105, 148, 0.12);
    border-color: var(--ocean-blue);
}

.destination-card .text,
.ftco-destination .text {
    padding: 25px;
    background: #ffffff;
}

.destination-card h3,
.ftco-destination h3 {
    font-family: var(--font-heading-family);
    font-size: 22px;
    font-weight: 600;
    color: var(--ocean-blue);
    /* Ocean Blue (18-22%) */
    margin-bottom: 10px;
}

.destination-card .price,
.ftco-destination .price {
    color: var(--sunset-orange);
    /* Sunset Orange (3-5%) */
    font-weight: 600;
    font-size: 16px;
}

.destination-card .rating,
.ftco-destination .rating {
    color: var(--sunset-orange);
}

/* Package Cards - Packages Page */
.package-card,
.ftco-tour-item {
    background: #ffffff;
    border: 1px solid rgba(0, 105, 148, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.package-card:hover,
.ftco-tour-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(0, 105, 148, 0.12);
    border-color: var(--ocean-blue);
}

.package-card .text,
.ftco-tour-item .text {
    padding: 25px;
}

.package-card h3,
.ftco-tour-item h3 {
    font-family: var(--font-heading-family);
    font-size: 22px;
    font-weight: 600;
    color: var(--ocean-blue);
    /* Ocean Blue (18-22%) */
    margin-bottom: 15px;
}

.package-card .price,
.ftco-tour-item .price {
    color: var(--ocean-blue);
    font-weight: 700;
    font-size: 24px;
}

.package-card .btn,
.ftco-tour-item .btn {
    background: var(--ocean-blue);
    border-color: var(--ocean-blue);
    color: #ffffff;
    transition: all 0.3s ease;
}

.package-card .btn:hover,
.ftco-tour-item .btn:hover {
    background: var(--sunset-orange);
    /* Sunset Orange hover (3-5%) */
    border-color: var(--sunset-orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

/* Service Feature Lists */
.list-unstyled li i.fa-check {
    color: var(--sunset-orange) !important;
    /* Sunset Orange checkmarks (3-5%) */
    margin-right: 10px;
}

/* Section Headings - Universal */
.heading-section h2 {
    color: var(--ocean-blue);
    /* Ocean Blue (18-22%) */
    font-family: var(--font-heading-family);
}

.heading-section .subheading {
    color: var(--sunset-orange);
    /* Sunset Orange (3-5%) */
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 13px;
    font-weight: 600;
}

/* Image Overlays */
.ftco-destination .overlay,
.ftco-tour-item .overlay,
.destination-card .overlay,
.package-card .overlay {
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 105, 148, 0.7) 100%);
    /* Ocean Blue gradient */
}

/* Buttons - Universal Premium Style */
.btn-primary {
    background: var(--ocean-blue);
    border-color: var(--ocean-blue);
    color: #ffffff;
    font-weight: 500;
    padding: 12px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--sunset-orange);
    /* Sunset Orange hover (3-5%) */
    border-color: var(--sunset-orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

/* Gallery Items */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 30px rgba(0, 105, 148, 0.15);
}

.gallery-item .overlay {
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 105, 148, 0.8) 100%);
}

.gallery-item h3 {
    color: #ffffff;
    font-family: var(--font-heading-family);
}

/* About Page - Team Cards */
.team-card,
.ftco-team {
    background: #ffffff;
    border: 1px solid rgba(0, 105, 148, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.team-card:hover,
.ftco-team:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(0, 105, 148, 0.12);
    border-color: var(--ocean-blue);
}

.team-card .text,
.ftco-team .text {
    padding: 20px;
    background: #ffffff;
}

.team-card h3,
.ftco-team h3 {
    color: var(--ocean-blue);
    font-family: var(--font-heading-family);
    font-weight: 600;
}

.team-card .position,
.ftco-team .position {
    color: var(--sunset-orange);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Stats/Counter Sections */
.ftco-counter {
    background: #ffffff;
    border: 1px solid rgba(0, 105, 148, 0.1);
    border-radius: 16px;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.ftco-counter:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(0, 105, 148, 0.12);
    border-color: var(--ocean-blue);
}

.ftco-counter .number {
    color: var(--ocean-blue);
    font-weight: 700;
    font-size: 48px;
}

.ftco-counter span {
    color: #666;
    font-size: 16px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {

    .contact-info-item,
    .destination-card,
    .package-card,
    .team-card,
    .ftco-counter {
        margin-bottom: 20px;
    }

    .contact-info-item .icon {
        width: 60px;
        height: 60px;
    }

    .contact-info-item .icon span {
        font-size: 24px;
    }
}

/* ========================================= */
/* EDIT REVIEW MODAL STYLING */
/* ========================================= */

.custom-modal {
    display: none;
    position: fixed;
    z-index: 1050;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.custom-modal-content {
    background-color: #ffffff;
    margin: 10% auto;
    padding: 30px;
    border: 1px solid rgba(0, 105, 148, 0.1);
    width: 90%;
    max-width: 500px;
    border-radius: 16px;
    position: relative;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.custom-modal-content h3 {
    color: var(--ocean-blue);
    font-family: var(--font-heading-family);
    margin-bottom: 20px;
    font-size: 24px;
}

.custom-modal-content .close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.custom-modal-content .close-modal:hover {
    color: var(--sunset-orange);
}

.custom-modal-content .form-group {
    margin-bottom: 20px;
}

.custom-modal-content .form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
    font-size: 14px;
}

.custom-modal-content .form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(0, 105, 148, 0.2);
    border-radius: 8px;
    font-size: 14px;
    font-family: var(--font-body-family);
    transition: border-color 0.3s;
}

.custom-modal-content .form-control:focus {
    outline: none;
    border-color: var(--ocean-blue);
    box-shadow: 0 0 0 3px rgba(0, 105, 148, 0.1);
}

.custom-modal-content textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

/* Edit Modal Button - Ocean Blue */
.custom-modal-content .btn {
    width: 100%;
    padding: 14px 20px;
    background: var(--ocean-blue) !important;
    border: none !important;
    color: #ffffff !important;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.custom-modal-content .btn:hover {
    background: var(--sunset-orange) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.custom-modal-content .btn:active {
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .custom-modal-content {
        margin: 20% auto;
        padding: 25px;
        width: 95%;
    }

    .custom-modal-content h3 {
        font-size: 20px;
    }
}

/* 
/* 
=============================================
   Dual-Row Horizontal Marquee
=============================================
*/

/* Marquee Section */
.marquee-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 60px 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
    /* Space between rows */
}

/* Track Wrapper */
.marquee-track-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    /* Mask for fade effect */
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.marquee-track {
    display: flex;
    gap: 30px;
    width: max-content;
    will-change: transform;
}

/* Animations */
@keyframes scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes scroll-right {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

.animate-left {
    animation: scroll-left 60s linear infinite;
}

.animate-right {
    animation: scroll-right 60s linear infinite;
}

/* Pause on Hover (Global for section) */
.marquee-section:hover .marquee-track {
    animation-play-state: paused;
}

/* Card Styling for Marquee */
.testimonial-card-premium {
    /* flex: 0 0 400px; REMOVED for Carousel responsiveness */
    /* Fixed width for horizontal */
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.04);
    min-height: 250px;
    /* Enforce min-height */
    height: 100%;
    /* Match Owl Item height */
    margin: 0;
    /* Margin handled by Owl Carousel */
    transform: none;
    opacity: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

/* Inner Elements */
.testimonial-card-premium .quote-icon {
    font-size: 32px;
    color: var(--sunset-orange);
    opacity: 0.8;
    margin-bottom: 20px;
}

.testimonial-card-premium .review-text {
    font-size: 16px;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Read More Button */
.btn-read-more {
    background: none;
    border: none;
    color: var(--ocean-blue);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0;
    margin-left: 5px;
    cursor: pointer;
    text-decoration: underline;
    transition: color 0.2s;
}

.btn-read-more:hover {
    color: var(--sunset-orange);
}

.testimonial-card-premium .user-info {
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 20px;
    margin-top: auto;
}

.testimonial-card-premium .avatar {
    width: 50px;
    height: 50px;
    background: #f3f4f6;
    color: var(--ocean-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 15px;
    flex-shrink: 0;
}

.testimonial-card-premium .details h4 {
    font-size: 16px;
    color: #111827;
    margin-bottom: 2px;
    font-weight: 600;
}

.testimonial-card-premium .details span {
    font-size: 13px;
    color: #6b7280;
}

.testimonial-card-premium .rating-stars {
    position: absolute;
    top: 30px;
    right: 30px;
    color: #fbbf24;
    /* Gold/Yellow */
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .testimonial-card-premium {
        flex: 0 0 300px;
        padding: 20px;
    }
}

/* Three Dots Menu Button */
.testimonial-card-premium .review-actions-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}

.testimonial-card-premium .btn-icon-menu {
    background: transparent;
    border: none;
    color: #9ca3af;
    /* Gray */
    font-size: 18px;
    cursor: pointer;
    transition: color 0.2s;
    padding: 5px;
}

.testimonial-card-premium .btn-icon-menu:hover {
    color: var(--ocean-blue);
    /* Ocean blue on hover */
}

/* Premium Cancel Button */
.btn-outline-cancel {
    background: transparent;
    border: 1px solid #d1d5db;
    color: #6b7280;
    font-weight: 500;
    padding: 12px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-left: 10px;
}

.btn-outline-cancel:hover {
    background: #fef2f2;
    border-color: #ef4444;
    color: #ef4444;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.1);
}

/* Bento Grid Gallery Styles */
.bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    height: 600px;
    margin-bottom: 40px;
}

.bento-small-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    height: 100%;
}

.bento-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.8) 100%);
    transition: background 0.3s ease;
}

.bento-card:hover::before {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.9) 100%);
}

.bento-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    color: white;
    z-index: 2;
}

.bento-overlay h3 {
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    font-size: 24px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.bento-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin-bottom: 0;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    max-height: 0;
}

.bento-card:hover .bento-overlay p {
    opacity: 1;
    transform: translateY(0);
    max-height: 50px;
    /* Reveal text */
}

/* Icon in top right */
.bento-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    z-index: 2;
    transition: all 0.3s ease;
}

.bento-card:hover .bento-icon {
    background: white;
    color: #F96D00;
    /* Primary Color */
}

.bento-icon.orange-bg {
    background: #F96D00;
}

.bento-card:hover .bento-icon.orange-bg {
    background: white;
    color: #F96D00;
}


/* Large Card Specifics */
.bento-large .bento-overlay h3 {
    font-size: 36px;
}

/* Responsive */
@media (max-width: 991.98px) {
    .bento-grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    .bento-large {
        height: 400px;
    }

    .bento-small-grid {
        height: auto;
        grid-template-rows: 300px 300px;
        /* Stack rows */
    }
}

@media (max-width: 767.98px) {
    .bento-small-grid {
        grid-template-columns: 1fr;
        /* 1 col on mobile */
        grid-template-rows: repeat(4, 250px);
    }

    .bento-overlay h3 {
        font-size: 20px;
    }

    .bento-large .bento-overlay h3 {
        font-size: 28px;
    }
}