/*
Theme Name: Trekking Theme
Theme URI: https://trekkingtravels.com
Author: Trekking Travels & Tours
Author URI: https://trekkingtravels.com
Description: A custom WordPress theme for Trekking Travels & Tours travel agency. Features a single-page scrolling layout with custom travel package management.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: trekking-theme
*/

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #1e3a8a;
    --secondary-blue: #3b82f6;
    --accent-orange: #FF7D00;
    --light-orange: #FF9D33;
    --header-footer-bg: #156163;
    --header-footer-dark: #2a5a6a;
    --header-footer-darker: #1E6B66;
    --dark-text: #1f2937;
    --light-text: #6b7280;
    --white: #ffffff;
    --light-bg: #f9fafb;
    --border-color: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

/* ============================================
   PRELOADER
   ============================================ */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 50px;
    height: 50px;
    border: 4px solid var(--border-color);
    border-top-color: var(--accent-orange);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #156163;
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.25rem 0;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo {
    display: flex;
    align-items: center;
    height: 90px;
    padding: 1rem 0;
}

.navbar-logo img,
.navbar-logo .custom-logo-link img {
    height: 90px;
    width: auto;
    max-width: 400px;
    object-fit: contain;
}

.navbar-logo .custom-logo-link {
    display: flex;
    align-items: center;
    height: 100%;
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.navbar-menu li a {
    color: var(--white);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.navbar-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-orange);
    transition: width 0.3s ease;
}

.navbar-menu li a:hover::after,
.navbar-menu li a.active::after {
    width: 100%;
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.navbar-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    height: 50vh;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-background.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    width: 100%;
    padding: 1.5rem;
        padding-left: 1rem;
        padding-right: 1rem;
    animation: fadeInUp 1s ease;
    }

/* ============================================
   BANNER SECTION
   ============================================ */
.banner-section {
    background: transparent;
    padding: 3rem 2rem;
    width: 100%;
    margin-top: 3rem;
    box-sizing: border-box;
}

.banner-section .container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.banner-content {
    position: relative;
    background: #156163;
    min-height: 400px !important;
    height: 400px !important;
    padding: 2rem;
    border-radius: 12px;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    overflow: visible;
    margin-bottom: 0;
}

.banner-carousel-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 100%;
}

.banner-item-content {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: visible;
    z-index: 1;
}

.banner-left-content {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: flex-start;
    z-index: 10;
    width: calc(50% - 1rem);
    max-width: calc(50% - 1rem);
    height: 100%;
}

.banner-text-content {
    text-align: right;
    align-self: center;
    max-width: 50%;
    margin-left: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-left: 1rem;
    padding-top: 5rem;
    padding-bottom: 1rem;
    padding-right: 0;
    box-sizing: border-box;
    overflow: hidden;
    min-width: 0;
}

.banner-promo-badge {
    position: absolute;
    top: 0;
    right: 0;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    background: var(--accent-orange);
    color: var(--white);
    border-radius: 0 12px 0 50px;
    font-size: 0.875rem !important;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    width: fit-content;
    z-index: 100;
    margin: 0;
    box-sizing: border-box;
    visibility: visible !important;
    opacity: 1 !important;
}

.banner-image-box {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.banner-header {
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    margin: 0 0 0.75rem 0;
    line-height: 1.3;
    text-align: right;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    box-sizing: border-box;
}

.banner-subtext {
    font-size: clamp(0.7rem, 1.2vw, 0.95rem);
    color: var(--white);
    opacity: 0.95;
    margin: 0 0 1rem 0;
    line-height: 1.5;
    text-align: right;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    box-sizing: border-box;
}

.banner-location {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
    color: var(--white);
    opacity: 0.9;
    font-size: 1rem;
}

.banner-location-icon {
    flex-shrink: 0;
    color: var(--white);
    opacity: 0.9;
}

.banner-location-name {
    font-weight: 500;
}

.banner-book-button {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: var(--accent-orange);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    z-index: 20;
    white-space: nowrap;
    flex-shrink: 0;
    animation: beat 2s ease-in-out infinite;
}

.banner-book-button:hover {
    background: var(--light-orange);
    animation: beat 1s ease-in-out infinite;
}

@keyframes beat {
    0%, 100% {
        transform: translateX(-50%) scale(1);
    }
    10%, 30% {
        transform: translateX(-50%) scale(1.05);
    }
    20%, 40% {
        transform: translateX(-50%) scale(1);
    }
    50% {
        transform: translateX(-50%) scale(1.08);
    }
    60% {
        transform: translateX(-50%) scale(1);
    }
}

.banner-book-button svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.banner-book-button:hover svg {
    transform: translateX(4px);
}

/* Banner Carousel */
.banner-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
    transform: translateX(20px);
    pointer-events: none;
    overflow: visible;
}

.banner-carousel-item.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.banner-carousel-item.active .banner-promo-badge {
    opacity: 1 !important;
    visibility: visible !important;
}

.banner-carousel-item .banner-image-box {
    width: 100%;
    height: 100%;
}

.banner-carousel-dots {
    position: relative;
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
    z-index: 30;
    padding: 1.5rem 0 0 0;
    margin: 0 auto;
    background: transparent;
    border: none;
    box-shadow: none;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    flex-wrap: nowrap;
}

.banner-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    flex-shrink: 0;
    min-width: 10px;
}

.banner-carousel-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.banner-carousel-dot.active {
    background: var(--accent-orange);
    width: 24px;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .banner-section {
        padding: 1rem 0.75rem;
        margin-top: 1rem;
    }

    .banner-section .container {
        padding: 0 0.75rem;
    }

    .banner-content {
        min-height: 200px !important;
        height: 200px !important;
        padding: 0.875rem;
    }

    .banner-text-content {
        max-width: 50%;
        padding-left: 0.5rem;
        padding-top: 3rem;
        padding-bottom: 1rem;
        padding-right: 0;
        box-sizing: border-box;
        max-height: 100%;
        overflow: hidden;
    }

    .banner-header {
        font-size: 1rem;
        margin: 0 0 0.3rem 0;
        line-height: 1.2;
    }

    .banner-subtext {
        font-size: 0.55rem;
        margin: 0 0 0.4rem 0;
        line-height: 1.2;
    }
    
    .banner-location {
        font-size: 0.5rem;
        margin-top: 0.3rem;
    }

    .banner-promo-badge {
        position: absolute;
        top: 0;
        right: 0;
        padding: 0.25rem 0.625rem;
        font-size: 0.6rem !important;
        margin: 0;
        z-index: 25;
        border-radius: 0 12px 0 30px;
    }

    .banner-location {
        font-size: 0.7rem;
        margin-top: 0.4rem;
        gap: 0.3rem;
    }

    .banner-location-icon {
        width: 12px;
        height: 12px;
    }

    .banner-left-content {
        width: calc(50% - 0.5rem);
        max-width: calc(50% - 0.5rem);
    }
    
    .banner-carousel-dots {
        padding: 1rem 0 0 0;
        gap: 0.35rem;
        max-width: 100%;
        overflow: hidden;
        margin: 0 auto;
        display: flex;
        justify-content: center;
    }

    .banner-carousel-dot {
        width: 7px;
        height: 7px;
    }

    .banner-carousel-dot.active {
        width: 18px;
    }

    .banner-book-button {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
        white-space: nowrap;
        flex-shrink: 0;
        gap: 0.35rem;
        bottom: 0.75rem;
    }

    .banner-book-button svg {
        width: 12px;
        height: 12px;
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .banner-section {
        padding: 0.75rem 0.5rem;
        margin-top: 0.75rem;
    }

    .banner-section .container {
        padding: 0 0.5rem;
    }

    .banner-content {
        min-height: 180px !important;
        height: 180px !important;
        padding: 0.75rem;
    }

    .banner-header {
        font-size: 0.9rem;
        margin: 0 0 0.25rem 0;
        line-height: 1.2;
    }

    .banner-subtext {
        font-size: 0.5rem;
        margin: 0 0 0.3rem 0;
        line-height: 1.2;
    }
    
    .banner-location {
        font-size: 0.45rem;
        margin-top: 0.25rem;
    }

    .banner-promo-badge {
        position: absolute;
        top: 0;
        right: 0;
        padding: 0.2rem 0.5rem;
        font-size: 0.55rem !important;
        margin: 0;
        z-index: 25;
        border-radius: 0 12px 0 25px;
    }

    .banner-location {
        font-size: 0.65rem;
        margin-top: 0.3rem;
        gap: 0.25rem;
    }

    .banner-location-icon {
        width: 10px;
        height: 10px;
    }

    .banner-left-content {
        width: calc(50% - 0.375rem);
        max-width: calc(50% - 0.375rem);
        gap: 0.4rem;
    }
    
    .banner-text-content {
        padding-left: 0.375rem;
        padding-top: 2.5rem;
        padding-bottom: 1rem;
        padding-right: 0;
        box-sizing: border-box;
        max-height: 100%;
        overflow: hidden;
    }
    
    .banner-carousel-dots {
        padding: 0.75rem 0 0 0;
        gap: 0.3rem;
        max-width: 100%;
        overflow: hidden;
        margin: 0 auto;
        display: flex;
        justify-content: center;
    }

    .banner-carousel-dot {
        width: 6px;
        height: 6px;
    }

    .banner-carousel-dot.active {
        width: 16px;
    }

    .banner-book-button {
        padding: 0.4rem 0.75rem;
        font-size: 0.7rem;
        white-space: nowrap;
        flex-shrink: 0;
        gap: 0.3rem;
        bottom: 0.5rem;
    }

    .banner-book-button svg {
        width: 10px;
        height: 10px;
        flex-shrink: 0;
    }
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

/* Filter Bar */
.hero-filter-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.1rem;
    padding: 0.3rem 0.6rem;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    margin-bottom: 1rem;
    flex-wrap: nowrap;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.filter-links-desktop {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.1rem;
    flex-wrap: nowrap;
}

.filter-link {
    color: var(--white);
    text-decoration: none;
    padding: 0.2rem 0.4rem;
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Mobile Dropdown - Hidden by default */
.filter-dropdown-mobile {
    display: none;
    width: fit-content;
    min-width: fit-content;
    padding: 0.6rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23FFFFFF' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
    padding-right: 2.5rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.filter-dropdown-mobile:focus {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    outline: none;
}

.filter-dropdown-mobile option {
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
}

.filter-link:hover {
    color: #FF7D00;
}

.filter-link.active {
    color: #FF7D00;
    font-weight: 600;
}

/* Main Search Bar */
.hero-search-container {
    display: flex;
    background: var(--white);
    border-radius: 50px;
    overflow: visible;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.hero-search-input-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0.7rem 1rem;
    gap: 0.6rem;
    position: relative;
}

.search-icon {
    color: var(--light-text);
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.hero-search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 0.85rem;
    color: var(--dark-text);
    background: transparent;
    font-family: inherit;
}

.hero-search-input::placeholder {
    color: var(--light-text);
    font-size: 0.85rem;
}

/* Search Suggestions Dropdown */
.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-top: 0.5rem;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    width: 100%;
    box-sizing: border-box;
}

.suggestion-item {
    padding: 0.75rem 1rem;
    cursor: pointer;
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.2s ease;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover,
.suggestion-item.active {
    background-color: var(--light-bg);
}

.suggestion-item.no-results {
    color: var(--light-text);
    cursor: default;
    text-align: center;
    font-style: italic;
}

.suggestion-item.no-results:hover {
    background-color: transparent;
}

.suggestion-title {
    font-weight: 500;
    color: var(--dark-text);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.suggestion-title strong {
    color: #FF7D00;
    font-weight: 600;
}

.suggestion-location {
    font-size: 0.8rem;
    color: var(--light-text);
}

.suggestion-location strong {
    color: #FF7D00;
    font-weight: 600;
}

.hero-search-button {
    padding: 0.7rem 2rem;
    background: #156163;
    color: var(--white);
    border: none;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50px;
}

.hero-search-button:hover {
    background: #0f4a4c;
    transform: scale(1.02);
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--accent-orange);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--light-orange);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 5rem 2rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--header-footer-bg);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #4b5563;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
    box-sizing: border-box;
}

/* ============================================
   SUGGESTIONS SECTION (PACKAGES)
   ============================================ */
.suggestions {
    background: var(--white);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* ============================================
   ALL PACKAGES SECTION
   ============================================ */
.all-packages-section {
    background: var(--light-bg);
    padding: 5rem 2rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.all-packages-section .packages-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
    width: 100%;
    gap: 2rem;
}

.all-packages-section .product-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 0;
    box-shadow: none !important;
    border: 1px solid #e5e7eb;
}

.all-packages-section .product-card:hover {
    box-shadow: none !important;
    border: 1px solid #e5e7eb;
    transform: none;
}

.all-packages-section .product-image-wrapper {
    width: 28%;
    min-width: 250px;
    height: 200px;
    border-radius: 20px 0 0 20px;
    flex-shrink: 0;
    overflow: hidden;
}

.all-packages-section .product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: auto;
}

.all-packages-section .product-content {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.75rem;
}

.all-packages-section .product-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.all-packages-section .product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-top: 0.5rem;
}

/* Pagination Styles */
.packages-pagination {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 4rem;
    padding: 2.5rem 1rem;
    flex-wrap: wrap;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100%;
    background: var(--light-bg);
    border-radius: 12px;
    clear: both;
}

.pagination-btn {
    padding: 0.875rem 1.75rem;
    background: transparent;
    color: var(--header-footer-bg) !important;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease, transform 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    visibility: visible !important;
    opacity: 1 !important;
    min-width: 120px;
}

.pagination-btn:hover {
    background: transparent;
    color: var(--header-footer-dark) !important;
    transform: translateY(-2px);
    box-shadow: none;
}

.pagination-btn.disabled {
    background: transparent;
    color: #9ca3af !important;
    cursor: not-allowed;
    border: none;
    opacity: 0.6;
}

.pagination-btn.disabled:hover {
    transform: none;
    box-shadow: none;
    background: transparent;
    color: #9ca3af !important;
}

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    padding: 0.5rem;
    border-radius: 50px;
    border: none;
}

.pagination-number {
    padding: 0.625rem 1rem;
    background: transparent;
    color: var(--dark-text) !important;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    min-width: 40px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    visibility: visible !important;
    opacity: 1 !important;
}

.pagination-number:hover {
    background: transparent;
    color: var(--header-footer-bg) !important;
}

.pagination-number.active {
    background: transparent;
    color: var(--header-footer-bg) !important;
    border-radius: 8px;
    font-weight: 700;
}

.pagination-dots {
    padding: 0.625rem 0.5rem;
    color: var(--light-text) !important;
    font-weight: 600;
}

.pagination-dots {
    padding: 0.75rem 0.5rem;
    color: var(--light-text);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    transition: opacity 0.3s ease;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    cursor: pointer;
    display: block;
    text-decoration: none;
    color: inherit;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.product-card[data-package-id] {
    cursor: pointer;
}

.product-card:hover,
.product-card[data-package-id]:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    text-decoration: none;
    color: inherit;
}

.product-image-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-text);
    margin: 0;
    line-height: 1.3;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rating-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-text);
}

.rating-stars {
    display: flex;
    gap: 2px;
    align-items: center;
}

.star {
    width: 16px;
    height: 16px;
}

.star-filled {
    color: #fbbf24;
}

.star-half {
    color: #fbbf24;
}

.star-empty {
    color: #e5e7eb;
    stroke-width: 1.5;
}

.product-price {
    font-size: 0.9rem;
    color: var(--light-text);
    margin: 0;
    margin-top: auto;
    font-weight: 500;
}

/* ============================================
   WHY CHOOSE SECTION
   ============================================ */
.why-choose {
    background: #FFF7ED;
    padding: 5rem 2rem;
}

.why-choose .section-title {
    color: var(--header-footer-bg);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.why-choose .section-subtitle {
    color: #6b7280;
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 3rem;
    max-width: 800px;
}

.features-carousel-container {
    margin-top: 3rem;
    margin-bottom: 4rem;
}

.features-carousel-wrapper {
    overflow: hidden;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.feature-item {
    background-color: #FFFFFF !important;
    background: #FFFFFF !important;
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.feature-item:hover {
    background-color: #FFFFFF !important;
    background: #FFFFFF !important;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    background: #FFEDD5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon {
    width: 32px;
    height: 32px;
    color: #F37024 !important;
}

.feature-icon path {
    fill: #F37024 !important;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--header-footer-bg);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.feature-description {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Statistics Bar */
.stats-bar {
    background: #FFFFFF !important;
    background-color: #FFFFFF !important;
    border-radius: 16px !important;
    padding: 2rem 1.5rem !important;
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    grid-auto-flow: row !important;
    gap: 1rem !important;
    margin-top: 3rem;
    margin-bottom: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 100%;
    overflow: visible;
    box-sizing: border-box;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0 0.5rem;
    gap: 0.25rem;
    min-width: 0;
    overflow: visible;
    box-sizing: border-box;
}

.stat-number {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: #FF7D00 !important;
    margin: 0;
    padding: 0;
    line-height: 1.2;
    display: block;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    white-space: nowrap;
}

.stat-label {
    font-size: 0.75rem !important;
    color: #6B7280 !important;
    font-weight: 400 !important;
    display: block;
    line-height: 1.2 !important;
    margin: 0;
    padding: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    white-space: nowrap;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    background: var(--white);
    padding: 5rem 2rem;
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.testimonials-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-section .section-title {
    color: var(--header-footer-bg);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.testimonials-section .section-subtitle {
    color: #6b7280;
    font-size: 1.1rem;
    font-weight: 400;
}

.testimonials-carousel-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 2rem 0;
}

.testimonials-carousel {
    display: flex;
    gap: 2rem;
    animation: scrollTestimonials 60s linear infinite;
    will-change: transform;
}

@keyframes scrollTestimonials {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.testimonial-card {
    flex: 0 0 400px;
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-color);
}

.testimonial-avatar-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--header-footer-bg);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
}

.testimonial-author-info {
    flex: 1;
}

.testimonial-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-text);
    margin: 0 0 0.25rem 0;
}

.testimonial-date {
    font-size: 0.875rem;
    color: var(--light-text);
    margin: 0;
}

/* Pause animation on hover */
.testimonials-carousel-wrapper:hover .testimonials-carousel {
    animation-play-state: paused;
}

/* Responsive Design for Why Choose Section */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stats-bar {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        grid-auto-flow: row !important;
        gap: 0.75rem !important;
        padding: 2rem 1.5rem !important;
    }
}

@media (max-width: 768px) {
    .why-choose {
        padding: 4rem 1.5rem;
    }
    
    .why-choose .section-title {
        font-size: 2rem;
    }
    
    .why-choose .section-subtitle {
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .feature-item {
        background-color: #FFFFFF !important;
        background: #FFFFFF !important;
        padding: 2rem 1.5rem;
    }
    
    .stats-bar {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        grid-auto-flow: row !important;
        gap: 0.5rem !important;
        padding: 1.5rem 0.75rem !important;
        border-radius: 12px;
    }
    
    .stat-item {
        padding: 0 0.25rem !important;
        display: flex !important;
        flex-direction: column !important;
        width: auto !important;
        min-width: 0 !important;
    }
    
    .stat-number {
        font-size: 1.75rem !important;
    }
    
    .stat-label {
        font-size: 0.65rem !important;
        line-height: 1.2 !important;
    }

    .testimonials-section {
        padding: 3rem 1rem;
    }

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

    .testimonials-section .section-subtitle {
        font-size: 1rem;
    }

    .testimonials-carousel {
        gap: 1.5rem;
    }

    .testimonial-card {
        flex: 0 0 320px;
        padding: 1.5rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .stats-bar {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        grid-auto-flow: row !important;
        gap: 0.25rem !important;
        padding: 1rem 0.5rem !important;
        border-radius: 12px;
    }
    
    .stat-item {
        padding: 0 0.125rem !important;
        display: flex !important;
        flex-direction: column !important;
        width: auto !important;
        min-width: 0 !important;
        flex: 1 1 0 !important;
    }
    
    .stat-number {
        font-size: 1.25rem !important;
    }
    
    .stat-label {
        font-size: 0.55rem !important;
        line-height: 1.2 !important;
    }

    .testimonials-section {
        padding: 2.5rem 1rem;
    }

    .testimonials-section .section-title {
        font-size: 1.75rem;
    }

    .testimonials-section .section-subtitle {
        font-size: 0.95rem;
    }

    .testimonials-carousel {
        gap: 1rem;
    }

    .testimonial-card {
        flex: 0 0 280px;
        padding: 1.25rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

    .testimonial-avatar,
    .testimonial-avatar-placeholder {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .testimonial-name {
        font-size: 0.9rem;
    }

    .testimonial-date {
        font-size: 0.8rem;
    }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    background: var(--light-bg);
    padding: 5rem 2rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Left Column: Text & Features */
.about-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--header-footer-bg);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.about-paragraph {
    color: var(--light-text);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.feature-card {
    background: #FFFFFF;
    border-radius: 50px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.feature-icon-circle {
    width: 32px;
    height: 32px;
    background: #FF7D00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-text {
    color: var(--dark-text);
    font-size: 1rem;
    font-weight: 500;
}

.feature-text-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.feature-description-small {
    color: var(--light-text);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    font-weight: 400;
}

/* Right Column: Podcast & Video */
.about-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.podcast-heading {
    font-size: 2rem;
    font-weight: 700;
    color: var(--header-footer-bg);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.microphone-icon {
    color: var(--header-footer-bg);
}

.podcast-description {
    color: var(--light-text);
    font-size: 1rem;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 1rem;
}

.video-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #E5E7EB;
    border-radius: 12px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.play-button {
    width: 80px;
    height: 80px;
    background: #FFFFFF;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

.play-button svg {
    margin-left: 4px;
}

.youtube-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #FF7D00;
    color: #FFFFFF;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.3s ease, transform 0.3s ease;
    align-self: center;
}

.youtube-button:hover {
    background: #EA580C;
    transform: translateY(-2px);
}

/* Team Members Section */
.team-members-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid rgba(21, 97, 99, 0.1);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.team-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--header-footer-bg);
    text-align: center;
    margin-bottom: 2.5rem;
    line-height: 1.2;
    width: 100%;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
}

.team-members-carousel-container {
    margin-top: 2rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.team-members-carousel-wrapper {
    overflow: hidden;
    position: relative;
}

.team-members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    min-width: 0;
}

.team-member-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

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

.team-member-image-wrapper {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #f3f4f6;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.team-member-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-member-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.team-member-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-text);
    margin: 0;
    line-height: 1.3;
    width: 100%;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
}

.team-member-title {
    font-size: 0.95rem;
    color: var(--header-footer-bg);
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    width: 100%;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
}

.team-member-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.75rem;
    align-items: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.team-member-email,
.team-member-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--light-text);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    width: 100%;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
    overflow: hidden;
    justify-content: center;
    flex-wrap: wrap;
}

.team-member-email:hover,
.team-member-phone:hover {
    color: var(--header-footer-bg);
}

.team-member-email svg,
.team-member-phone svg {
    flex-shrink: 0;
    color: var(--header-footer-bg);
}

@media (max-width: 768px) {
    .team-members-carousel-wrapper {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .team-members-carousel-wrapper::-webkit-scrollbar {
        display: none;
    }
    
    .team-members-grid {
        display: flex;
        flex-direction: row;
        gap: 1.5rem;
        grid-template-columns: none;
        padding-bottom: 1rem;
    }
    
    .team-member-card {
        flex: 0 0 calc(100% - 1rem);
        max-width: calc(100% - 1rem);
        min-width: 0;
        scroll-snap-align: start;
        margin-left: 0.5rem;
        overflow: hidden;
    }
    
    .team-member-card:last-child {
        margin-right: 0.5rem;
    }
    
    .team-member-image-wrapper {
        width: 120px;
        height: 120px;
    }
    
    .team-section-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .team-carousel-dots {
        display: flex;
    }
}

@media (max-width: 480px) {
    .team-members-carousel-wrapper {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .team-members-carousel-wrapper::-webkit-scrollbar {
        display: none;
    }
    
    .team-members-grid {
        display: flex;
        flex-direction: row;
        gap: 1.25rem;
        grid-template-columns: none;
        padding-bottom: 1rem;
    }
    
    .team-member-card {
        flex: 0 0 calc(100% - 2rem);
        max-width: calc(100% - 2rem);
        min-width: 0;
        scroll-snap-align: start;
        margin-left: 1rem;
        overflow: hidden;
    }
    
    .team-member-card:last-child {
        margin-right: 1rem;
    }
    
    .team-members-section {
        margin-top: 3rem;
        padding-top: 2rem;
    }
    
    .team-carousel-dots {
        display: flex;
    }
}

.arrow-icon {
    width: 20px;
    height: 20px;
}

/* Team Carousel Dots */
.team-carousel-dots {
    display: none !important;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 0.5rem;
    min-height: 20px;
    width: 100%;
}

.team-carousel-dots.show {
    display: flex !important;
}

.team-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d1d5db;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    flex-shrink: 0;
}

.team-carousel-dot:hover {
    background: #9ca3af;
}

.team-carousel-dot.active {
    background: #FF7D00;
    width: 24px;
    border-radius: 4px;
}

/* Features Carousel Dots */
.features-carousel-dots {
    display: none !important;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 0.5rem;
    min-height: 20px;
    width: 100%;
}

.features-carousel-dots.show {
    display: flex !important;
}

.features-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d1d5db;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    flex-shrink: 0;
}

.features-carousel-dot:hover {
    background: #9ca3af;
}

.features-carousel-dot.active {
    background: #FF7D00;
    width: 24px;
    border-radius: 4px;
}

/* Responsive Design for About Section */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-heading {
        font-size: 2rem;
        text-align: center;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .about-paragraph {
        text-align: center;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .about-left {
        align-items: center;
    }
    
    .about-features {
        align-items: center;
    }
    
    .feature-card {
        justify-content: center;
        text-align: center;
    }
    
    .feature-text-content {
        align-items: center;
        text-align: center;
    }
    
    .podcast-heading {
        font-size: 1.75rem;
        text-align: center;
    }
    
    .podcast-description {
        text-align: center;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .video-placeholder {
        margin-bottom: 1.5rem;
    }
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    background: #F3F4F6;
    padding: 2rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.contact .section-title {
    color: var(--header-footer-bg);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.contact .section-subtitle {
    color: var(--light-text);
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    margin-top: 3rem;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    max-width: 100%;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    justify-items: stretch;
    align-items: start;
}

/* Contact Details Card */
.contact-details-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0;
    overflow: hidden;
}

.contact-card-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--header-footer-bg);
    margin-bottom: 1rem;
    text-align: center;
    width: 100%;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
}

.contact-card-intro {
    color: var(--light-text);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: center;
    width: 100%;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.contact-icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-content {
    flex: 1;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.contact-item-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
    text-align: left;
    width: 100%;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
}

.contact-item-text {
    color: var(--light-text);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    text-align: left;
    width: 100%;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
}

/* Contact Form Card */
.contact-form-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0;
    overflow: hidden;
}

.contact-form {
    margin-top: 1.5rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.form-group {
    margin-bottom: 1.5rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.form-row .form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-text);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    max-width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: #FFFFFF;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
    overflow: hidden;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #FF7D00;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9CA3AF;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
    overflow-wrap: break-word;
    word-wrap: break-word;
    overflow-y: auto;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23374151' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.btn-submit {
    width: 100%;
    max-width: 100%;
    padding: 1rem 2rem;
    background: #FF7D00;
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-submit:hover {
    background: #EA580C;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.paper-plane-icon {
    width: 20px;
    height: 20px;
}

/* Responsive Design for Contact Section */
@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr 1.5fr;
        gap: 1.5rem;
        min-width: 0;
    }
    
    .contact-details-card,
    .contact-form-card {
        padding: 2rem 1.5rem;
        min-width: 0;
        max-width: 100%;
    }
    
    .contact-card-heading {
        font-size: 1.35rem;
    }
    
    .contact-card-intro {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 3rem 1rem;
    }
    
    .contact .section-title {
        font-size: 2rem;
    }
    
    .contact .section-subtitle {
        font-size: 1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        margin-left: auto;
        margin-right: auto;
    }
    
    .contact-card-heading {
        font-size: 1.25rem;
    }
    
    .contact-card-heading,
    .contact-card-intro {
        text-align: center;
        padding-left: 0;
        padding-right: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
        max-width: 100%;
    }
    
    .contact-item-content {
        text-align: center;
        width: 100%;
        max-width: 100%;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
        width: 100%;
        max-width: 100%;
    }
    
    .form-row .form-group {
        margin-bottom: 1.5rem;
        width: 100%;
        max-width: 100%;
    }
    
    .contact-details-card,
    .contact-form-card {
        padding: 2rem 1.5rem;
        width: 100%;
        min-width: 0;
        max-width: 100%;
        box-sizing: border-box;
        margin: 0 auto;
    }
    
    .contact-form {
        width: 100%;
        max-width: 100%;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .btn-submit {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
}

/* ============================================
   MAP SECTION
   ============================================ */
.map-section {
    padding: 2rem;
    background: var(--light-bg);
}

.map-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ============================================
   CORPORATE CLIENTS SECTION
   ============================================ */
.corporate-clients-section {
    background: var(--light-bg);
    padding: 3rem 2rem;
    overflow: hidden;
}

.corporate-clients-title {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--header-footer-bg);
    margin-bottom: 2rem;
}

.corporate-clients-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    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);
}

.corporate-clients-track {
    display: flex;
    gap: 4rem;
    animation: scroll-logos 30s linear infinite;
    width: fit-content;
}

.corporate-client-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    width: 150px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.corporate-client-logo:hover {
    opacity: 1;
}

.corporate-client-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.corporate-client-logo:hover img {
    filter: grayscale(0%);
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .corporate-clients-section {
        padding: 2rem 1rem;
    }
    
    .corporate-clients-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .corporate-clients-track {
        gap: 3rem;
    }
    
    .corporate-client-logo {
        height: 60px;
        width: 120px;
    }
}

@media (max-width: 480px) {
    .corporate-clients-section {
        padding: 1.5rem 0.75rem;
    }
    
    .corporate-clients-title {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .corporate-clients-track {
        gap: 2rem;
    }
    
    .corporate-client-logo {
        height: 50px;
        width: 100px;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #156163;
    color: rgba(255, 255, 255, 0.9);
    padding: 4rem 2rem 1.5rem;
}

.footer-main {
    margin-bottom: 3rem;
}

/* Zone 1: Main Navigation & Socials */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    padding: 1rem;
}

.footer-logo img,
.footer-logo .custom-logo-link img {
    height: 90px;
    width: auto;
    max-width: 400px;
    object-fit: contain;
}

.footer-logo .custom-logo-link {
    display: flex;
    align-items: center;
}

.footer-social-icons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    padding-left: 1rem;
}

.social-icon-btn {
    width: 40px;
    height: 40px;
    background: var(--header-footer-darker);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon-btn:hover {
    background: #FF7D00;
    transform: translateY(-2px);
}

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

.footer-column-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links li {
    margin: 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    line-height: 1.2;
}

.footer-links a:hover {
    color: #FFFFFF;
}

/* Zone 2: Accreditation Banner */
.footer-accreditation-wrapper {
    width: 100%;
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    margin-bottom: 0;
    background: #FFFFFF;
    padding: 2rem 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    box-sizing: border-box;
    position: relative;
    left: 0;
    right: 0;
    min-height: auto;
}

.accreditation-header {
    text-align: left;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-text);
    text-transform: none;
    letter-spacing: 1px;
    margin: 0;
    padding: 0;
    white-space: nowrap;
    display: flex;
    align-items: center;
    align-self: center;
    height: auto;
    line-height: 1.1;
}

.accreditation-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: center;
    height: 100%;
    align-self: center;
}

.accreditation-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.accreditation-logo {
    max-width: 90px;
    max-height: 48px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.accreditation-logo.travelport-logo {
    max-width: 135px;
    max-height: 72px;
}

.accreditation-label {
    font-size: 0.875rem;
    color: var(--light-text);
    text-align: center;
    margin: 0;
}

/* Zone 3: Copyright Bar */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-text,
.made-by-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.2;
}

/* Responsive Design for Footer */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 1.5rem 1.5rem;
        text-align: center;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        align-items: center;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-social-icons {
        justify-content: center;
    }
    
    .footer-column {
        align-items: center;
        text-align: center;
    }
    
    .footer-column-title {
        text-align: center;
    }
    
    .footer-links {
        align-items: center;
    }
    
    .footer-links li {
        text-align: center;
    }
    
    .footer-accreditation-wrapper {
        margin: 0 auto;
        padding: 1.5rem 1rem;
        flex-direction: column;
        gap: 1.25rem;
        width: 100%;
        max-width: 75%;
        box-sizing: border-box;
    }
    
    .accreditation-header {
        text-align: center;
        font-size: 0.875rem;
        line-height: 1.1;
    }
    
    .accreditation-logos {
        gap: 1.25rem;
    }
    
    .accreditation-logo {
        max-width: 75px;
        max-height: 40px;
    }
    
    .accreditation-logo.travelport-logo {
        max-width: 112px;
        max-height: 60px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
        align-items: center;
    }
    
    .copyright-text,
    .made-by-text {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer {
        text-align: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-brand {
        grid-column: 1;
        align-items: center;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-social-icons {
        justify-content: center;
    }
    
    .footer-column {
        align-items: center;
        text-align: center;
    }
    
    .footer-column-title {
        text-align: center;
        line-height: 1.2;
    }
    
    .footer-links {
        align-items: center;
    }
    
    .footer-links a {
        line-height: 1.2;
    }
    
    .footer-links li {
        text-align: center;
    }
    
    .footer-accreditation-wrapper {
        margin: 0 auto;
        padding: 1rem 0.75rem;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 80%;
        box-sizing: border-box;
    }
    
    .accreditation-header {
        font-size: 0.75rem;
        text-align: center;
        line-height: 1.1;
    }
    
    .accreditation-logos {
        gap: 0.75rem;
    }
    
    .accreditation-logo {
        max-width: 60px;
        max-height: 32px;
    }
    
    .accreditation-logo.travelport-logo {
        max-width: 90px;
        max-height: 48px;
    }
    
    .footer-bottom {
        text-align: center;
        align-items: center;
    }
    
    .copyright-text,
    .made-by-text {
        text-align: center;
        line-height: 1.2;
    }
}

/* ============================================
   MODAL
   ============================================ */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    overflow-y: auto;
    padding: 2rem;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--white);
    border-radius: 10px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--accent-orange);
    transform: rotate(90deg);
}

.modal-body {
    padding: 2rem;
}

.modal-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.modal-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
}

.modal-title {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.modal-info {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.modal-info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--light-text);
}

.modal-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 1.5rem;
}

.modal-description {
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.btn-book-now {
    width: 100%;
    padding: 1rem;
    background: var(--accent-orange);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-book-now:hover {
    background: var(--light-orange);
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--accent-orange);
    color: var(--white);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.back-to-top.visible {
    display: flex;
}

.back-to-top:hover {
    background: var(--light-orange);
    transform: translateY(-5px);
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 50px;
    height: 50px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: whatsappPulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes whatsappPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    }
}

.whatsapp-float:hover {
    background: #20BA5A;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    animation: none;
}

.whatsapp-float svg {
    width: 24px;
    height: 24px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    /* Center align all text and add padding in mobile */
    .section-title,
    .section-subtitle,
    .about-heading,
    .about-paragraph,
    .package-title,
    .package-description-text,
    .section-heading,
    .column-heading,
    .contact-card-heading,
    .contact-card-intro,
    .contact-item-title,
    .contact-item-text,
    .podcast-heading,
    .podcast-description,
    .feature-title,
    .feature-description,
    .product-title,
    .product-price,
    .package-location {
        text-align: center;
        padding-left: 1rem;
        padding-right: 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .section {
        padding-left: 1rem;
        padding-right: 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .navbar-menu {
        position: fixed;
        top: 55px;
        left: -100%;
        width: 100%;
        background: #156163;
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow);
        transition: left 0.3s ease;
    }

    .navbar-menu.active {
        left: 0;
    }

    .navbar-toggle {
        display: flex;
    }

    .navbar-logo {
        height: 80px;
        padding: 0.75rem;
    }

    .navbar-logo img,
    .navbar-logo .custom-logo-link img {
        max-width: 300px;
    }

    .hero {
        height: 12.5vh;
        min-height: 80px;
    }

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

    .hero-filter-bar {
        padding: 0;
        border-radius: 25px;
        width: fit-content;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        background: rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(15px) saturate(180%);
        -webkit-backdrop-filter: blur(15px) saturate(180%);
        border: 1px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }

    .filter-links-desktop {
        display: none;
    }

    .filter-dropdown-mobile {
        display: block;
    }

    .filter-link {
        font-size: 0.75rem;
        padding: 0.2rem 0.5rem;
        white-space: nowrap;
    }

    .hero {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hero-content {
        padding-left: 0;
        padding-right: 0;
        width: 100%;
        box-sizing: border-box;
    }

    .hero-search-container {
        flex-direction: row;
        border-radius: 50px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
        margin-left: 0;
        margin-right: 0;
    }

    .hero-search-input-wrapper {
        padding: 0.6rem;
        border-radius: 50px;
        flex: 1;
        min-width: 0;
        box-sizing: border-box;
    }

    .hero-search-input {
        width: 100%;
        box-sizing: border-box;
    }

    .hero-search-button {
        border-radius: 50px;
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
        flex-shrink: 0;
        white-space: nowrap;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

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


    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .product-title,
    .product-price,
    .product-rating {
        text-align: center;
        justify-content: center;
    }

    .features-carousel-container {
        margin-bottom: 3rem;
    }
    
    .features-carousel-wrapper {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .features-carousel-wrapper::-webkit-scrollbar {
        display: none;
    }

    .features-grid {
        display: flex;
        flex-direction: row;
        gap: 1.25rem;
        grid-template-columns: none;
        padding-bottom: 1rem;
    }
    
    .feature-item {
        flex: 0 0 calc(100% - 1rem);
        max-width: calc(100% - 1rem);
        scroll-snap-align: start;
        margin-left: 0.5rem;
    }
    
    .feature-item:last-child {
        margin-right: 0.5rem;
    }
    
    .features-carousel-dots {
        display: flex;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .modal-content {
        margin: 1rem;
    }

    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-float {
        bottom: 1rem;
        left: 1rem;
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
}


@media (max-width: 480px) {
    .contact {
        padding: 2rem 0.75rem;
    }
    
    .contact .section-title {
        font-size: 1.75rem;
    }
    
    .contact .section-subtitle {
        font-size: 0.95rem;
    }
    
    .contact-content {
        gap: 1.5rem;
        margin-top: 2rem;
        min-width: 0;
    }
    
    .contact-details-card,
    .contact-form-card {
        padding: 1.5rem 1rem;
        min-width: 0;
        max-width: 100%;
    }
    
    .contact-card-heading {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .contact-card-intro {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-item {
        gap: 0.75rem;
    }
    
    .contact-icon-circle {
        width: 40px;
        height: 40px;
    }
    
    .contact-item-title {
        font-size: 0.95rem;
    }
    
    .contact-item-text {
        font-size: 0.875rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 0.9rem;
        padding: 0.75rem 0.875rem;
    }
    
    .form-group textarea {
        min-height: 120px;
    }
    
    .btn-submit {
        font-size: 0.95rem;
        padding: 0.875rem 1.5rem;
    }
    
    .navbar-logo {
        height: 50px;
        padding: 0.5rem;
    }

    .navbar-logo img,
    .navbar-logo .custom-logo-link img {
        height: 50px;
        max-width: 180px;
    }

    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-float {
        bottom: 1rem;
        left: 1rem;
        width: 50px;
        height: 50px;
    }

    .hero {
        min-height: 350px;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .hero-filter-bar {
        padding: 0;
        border-radius: 25px;
        width: fit-content;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        background: rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(15px) saturate(180%);
        -webkit-backdrop-filter: blur(15px) saturate(180%);
        border: 1px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }

    .filter-links-desktop {
        display: none;
    }

    .filter-dropdown-mobile {
        display: block;
        font-size: 0.85rem;
        padding: 0.55rem 1rem;
        padding-right: 2.5rem;
    }

    .filter-link {
        font-size: 0.7rem;
        padding: 0.2rem 0.4rem;
        white-space: nowrap;
    }

    .hero {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hero-content {
        padding-left: 0;
        padding-right: 0;
        width: 100%;
        box-sizing: border-box;
    }

    .hero-search-container {
        border-radius: 50px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
        margin-left: 0;
        margin-right: 0;
    }

    .hero-search-input-wrapper {
        padding: 0.6rem;
        border-radius: 50px;
        flex: 1;
        min-width: 0;
        box-sizing: border-box;
    }

    .hero-search-input {
        width: 100%;
        box-sizing: border-box;
    }

    .hero-search-button {
        border-radius: 50px;
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
        flex-shrink: 0;
        white-space: nowrap;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .all-packages-section .product-card {
        flex-direction: column;
    }
    
    .all-packages-section .product-image-wrapper {
        width: 100%;
        min-width: auto;
        height: 180px;
        border-radius: 20px 20px 0 0;
    }
    
    .all-packages-section .product-content {
        padding: 1rem;
        gap: 0.5rem;
    }
    
    .all-packages-section .product-title {
        font-size: 1.1rem;
        margin-bottom: 0.25rem;
    }
    
    .all-packages-section .product-price {
        font-size: 1rem;
        margin-top: 0.25rem;
    }
    
    .product-image-wrapper {
        height: 180px;
    }
    
    .product-content {
        padding: 1rem;
        gap: 0.5rem;
    }
    
    .product-title {
        font-size: 1.1rem;
    }
    
    .all-packages-section .product-title {
        font-size: 1.25rem;
    }
    
    .packages-pagination {
        gap: 0.5rem;
    }
    
    .pagination-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .pagination-number {
        padding: 0.6rem 0.75rem;
        min-width: 40px;
        font-size: 0.9rem;
    }
    
    .product-title,
    .product-price,
    .product-rating {
        text-align: center;
        justify-content: center;
    }
    
    .product-content {
        align-items: center;
    }

    .section {
        padding: 3rem 1.5rem;
    }
    
    .package-header-info,
    .package-rating-badge,
    .package-location {
        text-align: center;
        align-items: center;
        justify-content: center;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .navbar-container {
        padding: 1rem;
    }
}

/* ============================================
   PACKAGE VIEW PAGE
   ============================================ */
.package-view {
    padding-top: 80px;
}

.package-view-container {
    width: 100%;
}

/* Package Header */
.package-header {
    padding: 2rem 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.package-header-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.package-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin: 0;
    line-height: 1.2;
}

.package-rating-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.star-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.star-filled {
    color: #fbbf24;
    font-size: 1.25rem;
}

.star-half {
    color: #fbbf24;
    font-size: 1.25rem;
}

.star-empty {
    color: #e5e7eb;
    font-size: 1.25rem;
}

.rating-value {
    font-weight: 600;
    color: var(--dark-text);
    margin-left: 0.5rem;
}

.rating-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: #156163;
    color: var(--white);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.package-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--light-text);
    font-size: 1rem;
}

.location-icon {
    color: var(--light-text);
    flex-shrink: 0;
}

/* Image Gallery Section - Two Column Layout */
.package-image-gallery-container {
    padding: 2rem 0;
    background: var(--light-bg);
}

.package-image-gallery-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    border-radius: 20px;
    overflow: hidden;
}

/* Left Column: First Image (50%) */
.package-main-image-section {
    width: 100%;
}

/* Right Column: Second Image (50%) */
.package-second-image-section {
    width: 100%;
}

.package-second-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.package-second-image-wrapper:hover {
    transform: scale(1.01);
}

.package-second-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

.view-more-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 10;
}

.view-more-overlay:hover {
    background: rgba(0, 0, 0, 0.8);
}

.view-more-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    text-align: center;
}

.view-more-text {
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.view-more-count {
    font-size: 0.95rem;
    opacity: 0.9;
}

.package-main-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.package-main-image-wrapper:hover {
    transform: scale(1.01);
}

.package-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

/* Thumbnail Grid: Remaining Images (shown after View More) */
.package-thumbnail-grid-section {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.thumbnail-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    position: relative;
    flex: 1;
    min-height: 0;
}

.thumbnail-row.middle-row {
    position: relative;
}

.package-thumbnail-item {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-thumbnail-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.package-thumbnail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

.thumbnail-view-more-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    border-radius: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 10;
    grid-column: 1 / -1;
    grid-row: 1;
}

.thumbnail-view-more-overlay:hover {
    background: rgba(0, 0, 0, 0.8);
}

.view-more-text {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.view-more-count {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Gallery Carousel Modal */
.gallery-carousel-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.gallery-carousel-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
}

.gallery-carousel-container {
    position: relative;
    width: 90%;
    max-width: 1200px;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.gallery-carousel-image-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-carousel-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.gallery-carousel-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    z-index: 2;
}

.gallery-carousel-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.gallery-carousel-prev,
.gallery-carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    z-index: 2;
}

.gallery-carousel-prev {
    left: 20px;
}

.gallery-carousel-next {
    right: 20px;
}

.gallery-carousel-prev:hover,
.gallery-carousel-next:hover {
    background: rgba(255, 255, 255, 0.2);
}

.gallery-carousel-prev:disabled,
.gallery-carousel-next:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.gallery-carousel-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    z-index: 2;
}

/* Main Content Layout */
.package-content-container {
    padding: 3rem 0;
    background: var(--white);
}

.package-content-grid {
    display: grid;
    grid-template-columns: 65% 35%;
    gap: 3rem;
    align-items: start;
}

.package-main-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.package-section {
    width: 100%;
}

.section-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
}

/* Description */
.package-description-text {
    color: var(--light-text);
    line-height: 1.8;
    font-size: 1rem;
}

.package-description-text p {
    margin-bottom: 1rem;
}

/* Amenities Grid */
.amenities-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.amenity-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: var(--light-bg);
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
}

.amenity-card:hover {
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.1);
}

.amenity-icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.amenity-icon-circle svg {
    width: 20px;
    height: 20px;
}

.amenity-name {
    font-weight: 500;
    color: var(--dark-text);
    font-size: 0.95rem;
}

/* Inclusions & Exclusions */
.inclusions-exclusions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.column-heading {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.inclusions-list,
.exclusions-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.inclusions-list li,
.exclusions-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--light-text);
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.6;
}

.check-icon {
    color: #156163;
    flex-shrink: 0;
    margin-top: 2px;
}

.cross-icon {
    color: #ef4444;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Please Note */
.please-note-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.please-note-list li {
    padding-left: 1.5rem;
    position: relative;
    color: var(--light-text);
    font-size: 0.95rem;
    line-height: 1.6;
}

.please-note-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: bold;
    font-size: 1.25rem;
}

/* Similar Packages */
.similar-packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.similar-package-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

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

.similar-package-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.similar-package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.similar-package-card:hover .similar-package-image img {
    transform: scale(1.05);
}

.similar-package-content {
    padding: 1rem;
}

.similar-package-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-text);
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

.similar-package-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    color: var(--light-text);
}

/* Booking Widget Sidebar */
.package-sidebar {
    position: relative;
}

.booking-widget {
    position: sticky;
    top: 100px;
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.booking-price {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-orange);
    display: block;
}

.booking-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-booking {
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--secondary-blue);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--secondary-blue);
    border-color: var(--secondary-blue);
}

.btn-secondary:hover {
    background: var(--secondary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-tertiary {
    background: #156163;
    color: var(--white);
}

.btn-tertiary:hover {
    background: #156163;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(21, 97, 99, 0.3);
}

/* Booking Testimonial */
.booking-testimonial {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

.testimonial-rating .star-filled {
    font-size: 1rem;
    color: #fbbf24;
}

.testimonial-rating .star-empty {
    font-size: 1rem;
    color: #e5e7eb;
}

.testimonial-quote {
    font-size: 0.95rem;
    color: var(--light-text);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.testimonial-name {
    font-size: 0.875rem;
    color: var(--dark-text);
    font-weight: 600;
    margin: 0;
}

/* Responsive Design for Package View */
@media (max-width: 1024px) {
    .package-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .package-sidebar {
        order: -1;
    }
    
    .booking-widget {
        position: relative;
        top: 0;
    }
    
    .inclusions-exclusions-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .similar-packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .package-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

@media (max-width: 768px) {
    .package-title {
        font-size: 2rem;
        text-align: center;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .package-header-info {
        text-align: center;
        align-items: center;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .package-rating-badge {
        justify-content: center;
    }
    
    .package-location {
        justify-content: center;
    }
    
    .package-description-text {
        text-align: center;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .section-heading {
        text-align: center;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .column-heading {
        text-align: center;
    }
    
    .inclusions-list,
    .exclusions-list {
        align-items: center;
    }
    
    .inclusions-list li,
    .exclusions-list li {
        justify-content: center;
    }
    
    .package-image-gallery-wrapper {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .package-second-image-section {
        margin-top: 0;
    }
    
    .view-more-text {
        font-size: 1.1rem;
    }
    
    .view-more-count {
        font-size: 0.85rem;
    }
    
    .package-thumbnail-grid-section {
        flex-direction: row;
        overflow-x: auto;
        gap: 0.75rem;
        padding-bottom: 0.5rem;
    }
    
    .thumbnail-row {
        flex: 0 0 120px;
        min-width: 120px;
    }
    
    .package-thumbnail-item {
        aspect-ratio: 1;
    }
    
    .package-content-container {
        padding: 2rem 0;
    }
    
    .package-main-content {
        gap: 2rem;
    }
    
    .section-heading {
        font-size: 1.25rem;
    }
    
    .amenities-grid {
        gap: 0.75rem;
    }
    
    .amenity-card {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
    }
    
    .amenity-icon-circle {
        width: 32px;
        height: 32px;
    }
    
    .amenity-icon-circle svg {
        width: 16px;
        height: 16px;
    }
    
    .similar-packages-grid {
        grid-template-columns: 1fr;
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    .gallery-carousel-container {
        width: 95%;
        height: 85vh;
    }
    
    .gallery-carousel-prev,
    .gallery-carousel-next {
        width: 48px;
        height: 48px;
    }
    
    .gallery-carousel-prev {
        left: 10px;
    }
    
    .gallery-carousel-next {
        right: 10px;
    }
    
    .gallery-carousel-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
    }
    
}

@media (max-width: 480px) {
    .package-header {
        padding: 1.5rem 0;
    }
    
    .package-title {
        font-size: 1.75rem;
    }
    
    .package-image-gallery-container {
        padding: 1.5rem 0;
    }
    
    .package-image-gallery-wrapper {
        border-radius: 16px;
    }
    
    .package-main-image-wrapper {
        border-radius: 16px;
    }
    
    .package-main-image {
        border-radius: 16px;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-widget {
        padding: 1.5rem;
    }
    
    .gallery-carousel-counter {
        bottom: 20px;
        font-size: 0.875rem;
        padding: 0.4rem 1rem;
    }
    
}

