:root {
    --primary-dark: #0d1b2a;
    --primary-light: #1b4965;
    --accent-sky: #62b6cb;
    --accent-orange: #f39c12;
    --light-bg: #ffffff;
    --dark-text: #333333;
    --success-color: #2ecc71;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
}

body {
    background-color: #f8f9fa;
    color: var(--dark-text);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', 'Cairo', sans-serif;
    font-weight: 700;
}

/* ===== Navbar Styles ===== */
.navbar {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(10px);
    padding: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(98, 182, 203, 0.1);
}

.navbar.scrolled {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.navbar-brand {
    padding: 10px 0;
    transition: all 0.4s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-logo {
    height: 120px;
    width: auto;
    object-fit: contain;
    transition: all 0.4s ease;
}

.navbar.scrolled .navbar-logo {
    height: 70px;
}

.navbar-nav {
    gap: 5px;
}

.navbar-nav .nav-link {
    color: var(--dark-text) !important;
    font-weight: 600;
    font-size: 1rem;
    padding: 25px 18px !important;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.4s ease;
    position: relative;
}

.navbar.scrolled .navbar-nav .nav-link {
    padding: 15px 18px !important;
}

.navbar-nav .nav-link .nav-icon {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover .nav-icon {
    transform: translateY(-3px);
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-sky), var(--accent-orange));
    transition: all 0.4s ease;
    transform: translateX(50%);
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    width: 80%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--accent-sky) !important;
    background: linear-gradient(180deg, transparent 0%, rgba(98, 182, 203, 0.05) 100%);
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 15px;
}

.nav-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.login-btn {
    background: linear-gradient(135deg, var(--accent-sky), var(--primary-light));
    color: white !important;
    box-shadow: 0 4px 15px rgba(98, 182, 203, 0.3);
}

.login-btn:hover {
    transform: translateY(-2px);
}

.logout-btn {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white !important;
}

.admin-btn {
    background: linear-gradient(135deg, var(--accent-orange), #e67e22);
    color: white !important;
}

.navbar-toggler {
    border: 2px solid var(--accent-sky);
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    background-color: rgba(98, 182, 203, 0.1);
    border-color: var(--accent-orange);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(98, 182, 203, 0.25);
    outline: none;
}

.navbar-toggler-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: none !important;
}

.navbar-toggler-icon i {
    color: var(--accent-sky);
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.navbar-toggler:hover .navbar-toggler-icon i {
    color: var(--accent-orange);
    transform: rotate(90deg);
}

/* ===== Trip Hero Modern ===== */
.trip-hero-modern {
    position: relative;
    min-height: 70vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay-modern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 27, 42, 0.85) 0%, rgba(27, 73, 101, 0.75) 100%);
}

.trip-hero-modern .container {
    position: relative;
    z-index: 2;
}

.hero-content-modern {
    text-align: center;
    padding: 100px 0;
}

.trip-badge-modern {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(98, 182, 203, 0.3);
    border: 2px solid rgba(98, 182, 203, 0.6);
    border-radius: 50px;
    color: var(--accent-sky);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.trip-title-modern {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 30px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.trip-meta-modern {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    color: white;
    font-weight: 600;
    font-size: 1.05rem;
}

.meta-item i {
    font-size: 1.2rem;
    color: var(--accent-sky);
}

/* ===== Trip Details Section Modern ===== */
.trip-details-section-modern {
    padding: 80px 0 100px;
    background: linear-gradient(180deg, white 0%, #f8f9fa 100%);
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

/* ===== Trip Gallery Modern ===== */
.trip-gallery-modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}

.trip-gallery-modern .carousel-item img {
    height: 500px;
    object-fit: cover;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(98, 182, 203, 0.9);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
}

.trip-gallery-modern:hover .carousel-control-prev,
.trip-gallery-modern:hover .carousel-control-next {
    opacity: 1;
}

.carousel-control-prev {
    right: 20px;
    left: auto;
}

.carousel-control-next {
    left: 20px;
    right: auto;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--accent-sky);
}

/* ===== Trip Overview Modern ===== */
.trip-overview-modern {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}

.section-title-modern {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
}

.section-title-modern i {
    color: var(--accent-sky);
}

.trip-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

/* ===== Trip Highlights Modern ===== */
.trip-highlights-modern {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}

.highlight-item-modern {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(98, 182, 203, 0.05);
    border-radius: 12px;
    border-right: 4px solid var(--accent-sky);
    transition: all 0.3s ease;
}

.highlight-item-modern:hover {
    background: rgba(98, 182, 203, 0.1);
    transform: translateX(-5px);
}

.highlight-item-modern i {
    font-size: 1.3rem;
    color: var(--success-color);
    flex-shrink: 0;
}

.highlight-item-modern span {
    font-weight: 600;
    color: var(--primary-dark);
}

/* ===== Pricing Card Modern ===== */
.pricing-card-modern {
    background: white;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    overflow: hidden;
    top: 100px;
}

.pricing-header {
    background: linear-gradient(135deg, var(--accent-sky), var(--primary-light));
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.pricing-header i {
    font-size: 1.8rem;
    color: white;
}

.pricing-header h3 {
    font-size: 1.5rem;
    color: white;
    margin: 0;
}

.price-display-modern {
    text-align: center;
    padding: 35px 30px;
    background: linear-gradient(135deg, rgba(98, 182, 203, 0.05), rgba(243, 156, 18, 0.05));
    border-bottom: 2px solid #e0e0e0;
}

.price-label-modern {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 15px;
    font-weight: 600;
}

.price-amount-modern {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.old-price {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
}

.new-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-orange);
}

.current-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.discount-badge {
    display: inline-block;
    padding: 6px 15px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-details-modern {
    padding: 30px;
}

.pricing-item-modern {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-item-modern:last-child {
    border-bottom: none;
}

.item-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(98, 182, 203, 0.1), rgba(243, 156, 18, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.item-icon i {
    font-size: 1.2rem;
    color: var(--accent-sky);
}

.item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.item-label {
    font-size: 0.85rem;
    color: #999;
}

.item-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.btn-book-trip-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: calc(100% - 60px);
    margin: 0 30px 30px;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--accent-orange), #e67e22);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(243, 156, 18, 0.3);
    text-decoration: none;
}

.btn-book-trip-modern:hover {
    background: linear-gradient(135deg, #e67e22, #d35400);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(243, 156, 18, 0.4);
    color: white;
}

.btn-book-trip-modern i {
    font-size: 1.2rem;
}

/* ===== Trip Info Card Modern ===== */
.trip-info-card-modern {
    background: white;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    overflow: hidden;
}

.info-header {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-header i {
    font-size: 1.8rem;
    color: white;
}

.info-header h3 {
    font-size: 1.5rem;
    color: white;
    margin: 0;
}

.info-items-modern {
    padding: 30px;
}

.info-item-modern {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: rgba(98, 182, 203, 0.05);
    border-radius: 15px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.info-item-modern:last-child {
    margin-bottom: 0;
}

.info-item-modern:hover {
    background: rgba(98, 182, 203, 0.1);
    transform: translateX(-5px);
}

.info-icon-modern {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-sky), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon-modern i {
    font-size: 1.3rem;
    color: white;
}

.info-content-modern {
    flex: 1;
}

.info-content-modern h5 {
    font-size: 1rem;
    color: var(--primary-dark);
    margin-bottom: 5px;
    font-weight: 700;
}

.info-content-modern p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

/* ===== Contact Card Modern ===== */
.contact-card-modern {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.contact-icon-modern {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: pulse 2s infinite;
}

.contact-icon-modern i {
    font-size: 2.5rem;
    color: white;
}

.contact-card-modern h4 {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 10px;
}

.contact-card-modern p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

.contact-buttons-modern {
    display: flex;
    gap: 10px;
}

.contact-btn-modern {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.contact-btn-modern.whatsapp {
    background: #25D366;
    color: white;
}

.contact-btn-modern.whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.contact-btn-modern.phone {
    background: white;
    color: var(--primary-dark);
}

.contact-btn-modern.phone:hover {
    background: var(--accent-sky);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(98, 182, 203, 0.4);
}

/* ===== Footer ===== */
.footer {
    background-color: var(--light-bg);
    color: var(--dark-text);
    padding-top: 80px;
    border-top: 1px solid #eee;
}

.footer-logo {
    height: 150px;
    width: auto;
    object-fit: contain;
}

.footer h5 {
    color: var(--primary-dark);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer h5:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--accent-orange);
    bottom: 0;
}

[dir="rtl"] .footer h5:after {
    right: 0;
}

[dir="ltr"] .footer h5:after {
    left: 0;
}

.footer-links a {
    color: var(--dark-text);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-orange);
    padding-right: 5px;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-left: 10px;
    color: var(--dark-text);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--accent-orange);
    color: white;
    transform: translateY(-5px);
}

.copyright {
    background-color: rgba(0, 0, 0, 0.03);
    padding: 20px 0;
    margin-top: 60px;
    text-align: center;
}

.maay {
    color: chocolate;
    text-decoration: none;
    font-weight: 600;
}

.maay:hover {
    color: var(--accent-sky);
}

/* ===== Responsive Design ===== */

/* ========================================
   RESPONSIVE MEDIA QUERIES - TRIP DETAILS PAGE
   ======================================== */

/* Nest Hub Max (1280x800) */
@media (min-width: 1200px) and (max-width: 1366px) and (max-height: 850px) {
    /* Navbar */
    .navbar {
        padding: 0 !important;
    }

    .navbar-logo {
        height: 28px;
    }

    .navbar-brand {
        padding: 2px 0;
    }

    .navbar-nav .nav-link {
        font-size: 0.55rem;
        padding: 4px 4px !important;
    }

    .navbar-nav .nav-link .nav-icon {
        font-size: 0.8rem;
    }

    .nav-action-btn {
        padding: 2px 5px;
        font-size: 0.55rem;
    }

    .nav-action-btn i {
        font-size: 0.8rem;
    }

    .navbar-actions {
        padding: 0 8px;
        gap: 5px;
    }

    /* Hero Section */
    .trip-hero-modern {
        min-height: 55vh;
    }

    .hero-content-modern {
        padding: 70px 0;
    }

    .trip-badge-modern {
        padding: 8px 20px;
        font-size: 0.85rem;
        margin-bottom: 18px;
    }

    .trip-title-modern {
        font-size: 2.5rem;
        margin-bottom: 22px;
    }

    .trip-meta-modern {
        gap: 20px;
    }

    .meta-item {
        padding: 10px 20px;
        font-size: 0.95rem;
    }

    .meta-item i {
        font-size: 1.1rem;
    }

    /* Gallery */
    .trip-gallery-modern .carousel-item img {
        height: 380px;
    }

    .carousel-video-wrapper {
        height: 380px;
    }

    .video-play-btn {
        width: 65px;
        height: 65px;
    }

    .video-play-btn i {
        font-size: 1.7rem;
    }

    .video-label {
        font-size: 0.95rem;
    }

    /* Details Section */
    .trip-details-section-modern {
        padding: 60px 0 80px;
        margin-top: -40px;
    }

    .trip-overview-modern,
    .trip-highlights-modern {
        padding: 32px;
        margin-bottom: 32px;
    }

    .section-title-modern {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .trip-description {
        font-size: 0.95rem;
    }

    .highlight-item-modern {
        padding: 12px 16px;
    }

    .highlight-item-modern i {
        font-size: 1.2rem;
    }

    .highlight-item-modern span {
        font-size: 0.9rem;
    }

    /* Pricing Card */
    .pricing-card-modern {
        margin-bottom: 25px;
    }

    .pricing-header,
    .info-header {
        padding: 20px 25px;
    }

    .pricing-header i,
    .info-header i {
        font-size: 1.5rem;
    }

    .pricing-header h3,
    .info-header h3 {
        font-size: 1.3rem;
    }

    .price-display-modern {
        padding: 28px 25px;
    }

    .price-label-modern {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }

    .old-price {
        font-size: 1.1rem;
    }

    .new-price,
    .current-price {
        font-size: 2.2rem;
    }

    .discount-badge {
        padding: 5px 12px;
        font-size: 0.8rem;
    }

    .pricing-details-modern,
    .info-items-modern {
        padding: 25px;
    }

    .pricing-item-modern,
    .info-item-modern {
        padding: 15px;
        margin-bottom: 12px;
    }

    .item-icon,
    .info-icon-modern {
        width: 40px;
        height: 40px;
    }

    .item-icon i,
    .info-icon-modern i {
        font-size: 1.1rem;
    }

    .item-label {
        font-size: 0.8rem;
    }

    .item-value {
        font-size: 0.9rem;
    }

    .info-content-modern h5 {
        font-size: 0.9rem;
    }

    .info-content-modern p {
        font-size: 0.85rem;
    }

    .btn-book-trip-modern {
        width: calc(100% - 50px);
        margin: 0 25px 25px;
        padding: 12px 25px;
        font-size: 1rem;
    }

    /* Contact Card */
    .contact-card-modern {
        padding: 28px 25px;
    }

    .contact-icon-modern {
        width: 65px;
        height: 65px;
        margin-bottom: 16px;
    }

    .contact-icon-modern i {
        font-size: 2.2rem;
    }

    .contact-card-modern h4 {
        font-size: 1.2rem;
    }

    .contact-card-modern p {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }

    .contact-btn-modern {
        padding: 10px 18px;
        font-size: 0.85rem;
    }

    /* Offer Cards */
    .offer-alert-card-modern {
        padding: 20px;
        margin-bottom: 20px;
        gap: 16px;
    }

    .offer-alert-icon {
        width: 50px;
        height: 50px;
    }

    .offer-alert-icon i {
        font-size: 1.7rem;
    }

    .offer-alert-content h4 {
        font-size: 1.1rem;
    }

    .offer-alert-content p {
        font-size: 0.8rem;
    }

    .offer-countdown {
        padding: 6px 12px;
    }

    .offer-countdown span {
        font-size: 0.8rem;
    }

    .offer-description-card-modern {
        margin-bottom: 20px;
    }

    .offer-desc-header {
        padding: 16px 20px;
    }

    .offer-desc-header h5 {
        font-size: 1.05rem;
    }

    .offer-desc-body {
        padding: 20px;
    }

    .offer-desc-body p {
        font-size: 0.9rem;
    }

    .price-display-modern.offer-active {
        padding: 25px;
    }

    .old-price-section .old-price {
        font-size: 1.15rem;
    }

    .new-price-section .new-price {
        font-size: 1.75rem;
    }

    .savings-display {
        padding: 16px;
        margin-bottom: 12px;
    }

    .savings-amount {
        font-size: 1.3rem;
    }

    .discount-percentage {
        width: 52px;
        height: 52px;
        font-size: 1.15rem;
    }
}

/* Large Tablets (992px - 1199px) */
@media (max-width: 1199px) {
    /* Navbar */
    .navbar {
        padding: 0 !important;
    }

    .navbar-logo {
        height: 60px;
    }

    .navbar-brand {
        padding: 3px 0;
    }

    .navbar-nav .nav-link {
        font-size: 0.55rem;
        padding: 8px 8px !important;
    }

    .nav-action-btn {
        padding: 4px 5px;
        font-size: 0.75rem;
    }

    .navbar-actions {
        padding: 0 10px;
    }

    /* Content */
    .trip-title-modern {
        font-size: 3rem;
    }
}

/* iPad Pro & Tablets (768px - 991px) */
@media (max-width: 991px) {
    /* Navbar */
    .navbar {
        padding: 0 !important;
    }

    .navbar-logo {
        height: 35px;
    }

    .navbar-brand {
        padding: 2px 0;
    }

    .navbar-nav .nav-link {
        font-size: 0.65rem;
        padding: 6px 6px !important;
    }

    .nav-action-btn {
        padding: 3px 6px;
        font-size: 0.65rem;
    }

    .navbar-actions {
        padding: 0 8px;
        gap: 6px;
    }
    
    .navbar-collapse {
        background: white;
        margin-top: 15px;
        padding: 20px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .navbar-nav {
        gap: 0;
    }
    
    .navbar-collapse .navbar-nav .nav-link {
        padding: 15px 20px !important;
        border-radius: 10px;
        margin-bottom: 5px;
        font-size: 1rem;
    }
    
    .navbar-nav .nav-link::before {
        display: none;
    }
    
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        background: linear-gradient(90deg, rgba(98, 182, 203, 0.1), rgba(243, 156, 18, 0.1));
        transform: translateX(-5px);
    }
    
    .navbar-collapse .navbar-actions {
        flex-direction: column;
        width: 100%;
        padding: 15px 0 0 0;
        gap: 10px;
        border-top: 2px solid rgba(98, 182, 203, 0.2);
        margin-top: 15px;
    }
    
    .navbar-collapse .nav-action-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 1rem;
    }

    /* Content */
    .trip-title-modern {
        font-size: 2.5rem;
    }
    
    .pricing-card-modern,
    .trip-info-card-modern,
    .contact-card-modern {
        position: static;
        margin-bottom: 30px;
    }

    .carousel-video-wrapper {
        height: 400px;
    }
}
/* Nest Hub & Landscape Tablets (768px - 1024px, height ≤ 900px) */
@media (min-width: 768px) and (max-width: 1024px) and (max-height: 900px) {
    /* Navbar */
    .navbar {
        padding: 0 !important;
    }

    .navbar-logo {
        height: 32px;
    }

    .navbar-brand {
        padding: 2px 0;
    }

    .navbar-nav .nav-link {
        font-size: 0.6rem;
        padding: 5px 5px !important;
    }

    .nav-action-btn {
        padding: 3px 6px;
        font-size: 0.6rem;
    }

    .navbar-actions {
        padding: 0 8px;
        gap: 5px;
    }

    /* Hero */
    .trip-hero-modern {
        min-height: 48vh;
    }

    .hero-content-modern {
        padding: 60px 0;
    }

    .trip-badge-modern {
        padding: 7px 18px;
        font-size: 0.8rem;
        margin-bottom: 16px;
    }

    .trip-title-modern {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .trip-meta-modern {
        gap: 18px;
    }

    .meta-item {
        padding: 9px 18px;
        font-size: 0.9rem;
    }

    .meta-item i {
        font-size: 1rem;
    }

    /* Gallery */
    .trip-gallery-modern .carousel-item img {
        height: 320px;
    }

    .carousel-video-wrapper {
        height: 320px;
    }

    .video-play-btn {
        width: 58px;
        height: 58px;
    }

    .video-play-btn i {
        font-size: 1.5rem;
    }

    .video-label {
        font-size: 0.9rem;
    }

    .carousel-indicators-custom {
        bottom: 12px;
        padding: 7px 12px;
        gap: 7px;
    }

    .carousel-indicators-custom button {
        width: 11px;
        height: 11px;
    }

    /* Details */
    .trip-details-section-modern {
        padding: 55px 0 70px;
        margin-top: -35px;
    }

    .trip-overview-modern,
    .trip-highlights-modern {
        padding: 28px;
        margin-bottom: 28px;
    }

    .section-title-modern {
        font-size: 1.4rem;
        margin-bottom: 18px;
    }

    .trip-description {
        font-size: 0.9rem;
    }

    .highlight-item-modern {
        padding: 11px 15px;
    }

    .highlight-item-modern i {
        font-size: 1.1rem;
    }

    .highlight-item-modern span {
        font-size: 0.85rem;
    }

    /* Pricing */
    .pricing-card-modern {
        margin-bottom: 22px;
    }

    .pricing-header,
    .info-header {
        padding: 18px 22px;
    }

    .pricing-header i,
    .info-header i {
        font-size: 1.4rem;
    }

    .pricing-header h3,
    .info-header h3 {
        font-size: 1.2rem;
    }

    .price-display-modern {
        padding: 25px 22px;
    }

    .price-label-modern {
        font-size: 0.8rem;
        margin-bottom: 11px;
    }

    .old-price {
        font-size: 1rem;
    }

    .new-price,
    .current-price {
        font-size: 2rem;
    }

    .discount-badge {
        padding: 4px 11px;
        font-size: 0.75rem;
    }

    .pricing-details-modern,
    .info-items-modern {
        padding: 22px;
    }

    .pricing-item-modern,
    .info-item-modern {
        padding: 14px;
        margin-bottom: 11px;
    }

    .item-icon,
    .info-icon-modern {
        width: 38px;
        height: 38px;
    }

    .item-icon i,
    .info-icon-modern i {
        font-size: 1rem;
    }

    .item-label {
        font-size: 0.75rem;
    }

    .item-value {
        font-size: 0.85rem;
    }

    .info-content-modern h5 {
        font-size: 0.85rem;
    }

    .info-content-modern p {
        font-size: 0.8rem;
    }

    .btn-book-trip-modern {
        width: calc(100% - 44px);
        margin: 0 22px 22px;
        padding: 11px 22px;
        font-size: 0.95rem;
    }

    /* Contact */
    .contact-card-modern {
        padding: 25px 22px;
    }

    .contact-icon-modern {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .contact-icon-modern i {
        font-size: 2rem;
    }

    .contact-card-modern h4 {
        font-size: 1.1rem;
    }

    .contact-card-modern p {
        font-size: 0.8rem;
        margin-bottom: 18px;
    }

    .contact-btn-modern {
        padding: 9px 16px;
        font-size: 0.8rem;
    }

    /* Offers */
    .offer-alert-card-modern {
        padding: 18px;
        margin-bottom: 18px;
        gap: 14px;
    }

    .offer-alert-icon {
        width: 48px;
        height: 48px;
    }

    .offer-alert-icon i {
        font-size: 1.5rem;
    }

    .offer-alert-content h4 {
        font-size: 1rem;
    }

    .offer-alert-content p {
        font-size: 0.75rem;
    }

    .offer-countdown {
        padding: 5px 11px;
    }

    .offer-countdown span {
        font-size: 0.75rem;
    }

    .offer-description-card-modern {
        margin-bottom: 18px;
    }

    .offer-desc-header {
        padding: 14px 18px;
    }

    .offer-desc-header h5 {
        font-size: 1rem;
    }

    .offer-desc-body {
        padding: 18px;
    }

    .offer-desc-body p {
        font-size: 0.85rem;
    }

    .price-display-modern.offer-active {
        padding: 22px;
    }

    .old-price-section .old-price {
        font-size: 1.05rem;
    }

    .new-price-section .new-price {
        font-size: 1.6rem;
    }

    .savings-display {
        padding: 14px;
        margin-bottom: 11px;
    }

    .savings-amount {
        font-size: 1.2rem;
    }

    .discount-percentage {
        width: 48px;
        height: 48px;
        font-size: 1.05rem;
    }
}

/* Nest Hub (1024x600) */
@media (min-width: 1000px) and (max-width: 1100px) and (max-height: 650px) {
    /* Navbar */
    .navbar {
        padding: 0 !important;
    }

    .navbar-logo {
        height: 30px;
    }

    .navbar-brand {
        padding: 2px 0;
    }

    .navbar-nav .nav-link {
        font-size: 0.6rem;
        padding: 5px 4px !important;
    }

    .nav-action-btn {
        padding: 2px 5px;
        font-size: 0.6rem;
    }

    .navbar-actions {
        padding: 0 6px;
        gap: 4px;
    }

    /* Hero */
    .trip-hero-modern {
        min-height: 42vh;
    }

    .hero-content-modern {
        padding: 50px 0;
    }

    .trip-badge-modern {
        padding: 6px 16px;
        font-size: 0.75rem;
        margin-bottom: 14px;
    }

    .trip-title-modern {
        font-size: 1.9rem;
        margin-bottom: 18px;
    }

    .trip-meta-modern {
        gap: 15px;
    }

    .meta-item {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .meta-item i {
        font-size: 0.95rem;
    }

    /* Gallery */
    .trip-gallery-modern .carousel-item img {
        height: 280px;
    }

    .carousel-video-wrapper {
        height: 280px;
    }

    .video-play-btn {
        width: 52px;
        height: 52px;
    }

    .video-play-btn i {
        font-size: 1.3rem;
    }

    .video-label {
        font-size: 0.85rem;
    }

    .carousel-indicators-custom {
        bottom: 10px;
        padding: 6px 10px;
        gap: 6px;
    }

    .carousel-indicators-custom button {
        width: 10px;
        height: 10px;
    }

    /* Details */
    .trip-details-section-modern {
        padding: 45px 0 60px;
        margin-top: -30px;
    }

    .trip-overview-modern,
    .trip-highlights-modern {
        padding: 25px;
        margin-bottom: 25px;
    }

    .section-title-modern {
        font-size: 1.25rem;
        margin-bottom: 16px;
    }

    .trip-description {
        font-size: 0.85rem;
    }

    .highlight-item-modern {
        padding: 10px 13px;
    }

    .highlight-item-modern i {
        font-size: 1rem;
    }

    .highlight-item-modern span {
        font-size: 0.8rem;
    }

    /* Pricing */
    .pricing-card-modern {
        margin-bottom: 20px;
    }

    .pricing-header,
    .info-header {
        padding: 16px 20px;
    }

    .pricing-header i,
    .info-header i {
        font-size: 1.3rem;
    }

    .pricing-header h3,
    .info-header h3 {
        font-size: 1.1rem;
    }

    .price-display-modern {
        padding: 22px 20px;
    }

    .price-label-modern {
        font-size: 0.75rem;
        margin-bottom: 10px;
    }

    .old-price {
        font-size: 0.95rem;
    }

    .new-price,
    .current-price {
        font-size: 1.8rem;
    }

    .discount-badge {
        padding: 4px 10px;
        font-size: 0.7rem;
    }

    .pricing-details-modern,
    .info-items-modern {
        padding: 20px;
    }

    .pricing-item-modern,
    .info-item-modern {
        padding: 12px;
        margin-bottom: 10px;
    }

    .item-icon,
    .info-icon-modern {
        width: 35px;
        height: 35px;
    }

    .item-icon i,
    .info-icon-modern i {
        font-size: 0.95rem;
    }

    .item-label {
        font-size: 0.7rem;
    }

    .item-value {
        font-size: 0.8rem;
    }

    .info-content-modern h5 {
        font-size: 0.8rem;
    }

    .info-content-modern p {
        font-size: 0.75rem;
    }

    .btn-book-trip-modern {
        width: calc(100% - 40px);
        margin: 0 20px 20px;
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    /* Contact */
    .contact-card-modern {
        padding: 22px 20px;
    }

    .contact-icon-modern {
        width: 55px;
        height: 55px;
        margin-bottom: 13px;
    }

    .contact-icon-modern i {
        font-size: 1.8rem;
    }

    .contact-card-modern h4 {
        font-size: 1rem;
    }

    .contact-card-modern p {
        font-size: 0.75rem;
        margin-bottom: 16px;
    }

    .contact-btn-modern {
        padding: 8px 15px;
        font-size: 0.75rem;
    }

    /* Offers */
    .offer-alert-card-modern {
        padding: 16px;
        margin-bottom: 16px;
        gap: 12px;
    }

    .offer-alert-icon {
        width: 45px;
        height: 45px;
    }

    .offer-alert-icon i {
        font-size: 1.4rem;
    }

    .offer-alert-content h4 {
        font-size: 0.95rem;
    }

    .offer-alert-content p {
        font-size: 0.7rem;
    }

    .offer-countdown {
        padding: 4px 10px;
    }

    .offer-countdown span {
        font-size: 0.7rem;
    }

    .offer-description-card-modern {
        margin-bottom: 16px;
    }

    .offer-desc-header {
        padding: 12px 16px;
    }

    .offer-desc-header h5 {
        font-size: 0.95rem;
    }

    .offer-desc-body {
        padding: 16px;
    }

    .offer-desc-body p {
        font-size: 0.8rem;
    }

    .price-display-modern.offer-active {
        padding: 20px;
    }

    .old-price-section .old-price {
        font-size: 1rem;
    }

    .new-price-section .new-price {
        font-size: 1.5rem;
    }

    .savings-display {
        padding: 12px;
        margin-bottom: 10px;
    }

    .savings-amount {
        font-size: 1.1rem;
    }

    .discount-percentage {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

/* Mobile & Small Tablets (576px - 767px) */
@media (max-width: 767px) {
    /* Navbar */
    .navbar-logo {
        height: 70px;
    }
    
    /* Hero */
    .trip-hero-modern {
        min-height: 50vh;
    }
    
    .trip-title-modern {
        font-size: 2rem;
    }
    
    .trip-meta-modern {
        flex-direction: column;
        gap: 15px;
    }
    
    /* Details */
    .trip-details-section-modern {
        padding: 60px 0 80px;
    }
    
    .trip-gallery-modern .carousel-item img {
        height: 300px;
    }

    .carousel-video-wrapper {
        height: 300px;
    }

    .video-play-btn {
        width: 60px;
        height: 60px;
    }
    
    .video-play-btn i {
        font-size: 1.5rem;
    }
    
    .video-label {
        font-size: 0.9rem;
    }
    
    .carousel-indicators-custom {
        bottom: 10px;
        padding: 6px 10px;
        gap: 6px;
    }
    
    .carousel-indicators-custom button {
        width: 10px;
        height: 10px;
    }
    
    .trip-overview-modern,
    .trip-highlights-modern {
        padding: 30px 20px;
    }
    
    .section-title-modern {
        font-size: 1.5rem;
    }
    
    .pricing-card-modern,
    .trip-info-card-modern {
        margin-bottom: 20px;
    }
    
    .pricing-header,
    .info-header {
        padding: 20px 25px;
    }
    
    .pricing-details-modern,
    .info-items-modern {
        padding: 25px 20px;
    }
    
    .contact-buttons-modern {
        flex-direction: column;
    }
    
    .contact-btn-modern {
        width: 100%;
    }

    /* Offers */
    .offer-alert-card-modern {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .offer-alert-icon {
        margin: 0 auto;
    }
    
    .offer-desc-header {
        padding: 15px 20px;
    }
    
    .offer-desc-header h5 {
        font-size: 1.1rem;
    }
    
    .offer-desc-body {
        padding: 20px;
    }
    
    .offer-desc-body p {
        font-size: 0.95rem;
    }
    
    .price-display-modern.offer-active {
        padding: 20px;
    }
    
    .new-price-section .new-price {
        font-size: 1.6rem;
    }
    
    .savings-display {
        flex-direction: column;
        text-align: center;
    }
    
    .savings-amount {
        font-size: 1.3rem;
    }
    
    .discount-percentage {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
}

/* Mobile Phones (< 576px) */
@media (max-width: 575px) {
    /* Navbar */
    .navbar-logo {
        height: 60px;
    }

    .navbar-nav .nav-link {
        font-size: 0.95rem;
        padding: 12px 15px !important;
    }

    .nav-action-btn {
        font-size: 0.9rem;
        padding: 10px 18px;
    }

    /* Hero */
    .trip-title-modern {
        font-size: 1.8rem;
    }
    
    /* Pricing */
    .new-price,
    .current-price {
        font-size: 2rem;
    }
    
    .pricing-card-modern,
    .trip-info-card-modern,
    .contact-card-modern {
        padding: 0;
    }
    
    .pricing-header h3,
    .info-header h3 {
        font-size: 1.3rem;
    }
    
    .btn-book-trip-modern {
        width: calc(100% - 40px);
        margin: 0 20px 20px;
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .info-item-modern {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .info-icon-modern {
        margin: 0 auto;
    }
    
    .pricing-item-modern {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .item-icon {
        margin: 0 auto;
    }

    /* Offers */
    .offer-alert-content h4 {
        font-size: 1.1rem;
    }
    
    .offer-desc-header {
        padding: 12px 15px;
    }
    
    .offer-desc-header h5 {
        font-size: 1rem;
    }
    
    .offer-desc-body {
        padding: 15px;
    }
    
    .offer-desc-body p {
        font-size: 0.9rem;
    }
    
    .old-price-section .old-price {
        font-size: 1.1rem;
    }
    
    .new-price-section .new-price {
        font-size: 1.4rem;
    }
}

/* Extra Small Phones (< 400px) */
@media (max-width: 399px) {
    .trip-title-modern {
        font-size: 1.6rem;
    }

    .new-price,
    .current-price {
        font-size: 1.8rem;
    }

    .pricing-header h3,
    .info-header h3 {
        font-size: 1.2rem;
    }

    .btn-book-trip-modern {
        font-size: 0.95rem;
    }

    .offer-alert-content h4 {
        font-size: 1rem;
    }

    .new-price-section .new-price {
        font-size: 1.3rem;
    }
}


/* Offer Alert Card Modern */
.offer-alert-card-modern {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
    display: flex;
    gap: 20px;
    align-items: center;
    animation: pulse-alert 2s infinite;
}

@keyframes pulse-alert {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
    }
    50% {
        box-shadow: 0 10px 40px rgba(231, 76, 60, 0.5);
    }
}

.offer-alert-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    animation: fire-pulse 1.5s infinite;
}

@keyframes fire-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.offer-alert-icon i {
    font-size: 2rem;
    color: white;
}

.offer-alert-content h4 {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 5px;
}

.offer-alert-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
}

.offer-countdown {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: inline-flex;
}

.offer-countdown i {
    color: white;
    font-size: 1rem;
}

.offer-countdown span {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

/* ===== Offer Description Card Modern ===== */
.offer-description-card-modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
    border: 2px solid rgba(243, 156, 18, 0.3);
}

.offer-desc-header {
    background: linear-gradient(135deg, var(--accent-orange), #e67e22);
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.offer-desc-header i {
    font-size: 1.5rem;
    color: white;
}

.offer-desc-header h5 {
    font-size: 1.2rem;
    color: white;
    margin: 0;
    font-weight: 700;
}

.offer-desc-body {
    padding: 25px;
}

.offer-desc-body p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

/* ===== Offer Active Price Display ===== */
.price-display-modern.offer-active {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.05), rgba(243, 156, 18, 0.05));
    padding: 30px;
    border-bottom: 2px solid rgba(231, 76, 60, 0.2);
}

.offer-type-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--accent-orange), #e67e22);
    border-radius: 25px;
    margin-bottom: 25px;
}

.offer-type-badge i {
    color: white;
    font-size: 1.1rem;
}

.offer-type-badge span {
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
}

.price-comparison {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.old-price-section,
.new-price-section {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 15px;
    border-radius: 12px;
}

.old-price-section {
    background: rgba(0, 0, 0, 0.03);
}

.new-price-section {
    background: linear-gradient(135deg, rgba(98, 182, 203, 0.1), rgba(243, 156, 18, 0.1));
    border: 2px solid var(--accent-orange);
}

.old-price-section .label,
.new-price-section .label {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

.old-price-section .old-price {
    font-size: 1.3rem;
    color: #999;
    text-decoration: line-through;
    font-weight: 600;
}

.new-price-section .new-price {
    font-size: 2rem;
    color: var(--accent-orange);
    font-weight: 700;
}

.arrow-down {
    text-align: center;
    color: var(--accent-orange);
    font-size: 1.5rem;
    animation: bounce-arrow 2s infinite;
}

@keyframes bounce-arrow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(5px);
    }
}

.savings-display {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    border-radius: 15px;
    margin-bottom: 15px;
}

.savings-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.savings-icon i {
    font-size: 1.5rem;
    color: white;
}

.savings-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.savings-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
}

.savings-amount {
    font-size: 1.5rem;
    color: white;
    font-weight: 700;
}

.discount-percentage {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: #2ecc71;
    flex-shrink: 0;
}

.featured-offer-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--accent-orange), #e67e22);
    border-radius: 12px;
}

.featured-offer-badge i {
    color: white;
    font-size: 1.1rem;
}

.featured-offer-badge span {
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

/* ===== Carousel Video Styles ===== */
.carousel-video-item {
    background: #000;
}

.carousel-video-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.carousel-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
    display: block;
}

.carousel-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 27, 42, 0.6) 0%, rgba(27, 73, 101, 0.4) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.4s ease;
    z-index: 5;
}

.carousel-video-overlay:hover {
    background: linear-gradient(135deg, rgba(13, 27, 42, 0.4) 0%, rgba(27, 73, 101, 0.3) 100%);
}

.carousel-video-overlay.playing {
    opacity: 0;
    pointer-events: none;
}

.carousel-video-wrapper:hover .carousel-video-overlay.playing {
    opacity: 1;
    pointer-events: auto;
    background: rgba(0, 0, 0, 0.3);
}

.video-play-btn {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-sky), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(98, 182, 203, 0.5);
}

.carousel-video-overlay:hover .video-play-btn {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(98, 182, 203, 0.7);
}

.video-play-btn i {
    font-size: 2rem;
    color: white;
    margin-left: 5px;
}

.video-label {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Iframe Wrapper inside carousel */
.carousel-iframe-wrapper {
    width: 100%;
    height: 100%;
    background: #000;
}

.carousel-iframe-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Custom Carousel Indicators */
.carousel-indicators-custom {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 15;
    padding: 8px 15px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 25px;
}

.carousel-indicators-custom button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.7);
    background: transparent;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-indicators-custom button.active {
    background: white;
    border-color: white;
    transform: scale(1.3);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.8), 0 0 15px rgba(98, 182, 203, 0.6);
}

.carousel-indicators-custom button.video-indicator {
    width: auto;
    min-width: 32px;
    height: 15px;
    border-radius: 12px;
    padding: 0 2px;
    background: rgba(98, 182, 203, 0.7);
    border-color: var(--accent-sky);
}

.carousel-indicators-custom button.video-indicator.active {
    background: white;
    border-color: white;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.8), 0 0 15px rgba(98, 182, 203, 0.6);
}

.carousel-indicators-custom button.video-indicator.active i {
    color: var(--accent-sky);
}

.carousel-indicators-custom button.video-indicator i {
    font-size: 10px;
    color: white;
}

/* ===== Trip Itinerary Styles ===== */
.trip-itinerary-modern {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(98, 182, 203, 0.1);
}

.itinerary-day-item {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.itinerary-day-item:hover {
    border-color: var(--accent-sky);
    box-shadow: 0 5px 15px rgba(98, 182, 203, 0.1);
}

.itinerary-day-button {
    background: white;
    border: none;
    padding: 20px 25px;
    font-weight: 600;
    color: var(--primary-dark);
    transition: all 0.3s ease;
}

.itinerary-day-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--accent-sky), var(--primary-light));
    color: white;
    box-shadow: none;
}

.itinerary-day-button:focus {
    box-shadow: none;
    border: none;
}

.day-header-content {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.day-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-sky), var(--primary-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.itinerary-day-button:not(.collapsed) .day-number {
    background: white;
    color: var(--accent-sky);
}

.day-title {
    font-size: 1.1rem;
    font-weight: 600;
    text-align: right;
}

.itinerary-day-body {
    padding: 30px;
    background: #f8f9fa;
}

.itinerary-activity {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    border-right: 4px solid var(--accent-sky);
    transition: all 0.3s ease;
}

.itinerary-activity:hover {
    transform: translateX(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.itinerary-activity:last-child {
    margin-bottom: 0;
}

.activity-time {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-sky);
    font-weight: 600;
    font-size: 0.95rem;
    min-width: 120px;
    flex-shrink: 0;
}

.activity-time i {
    font-size: 1rem;
}

.activity-content {
    flex: 1;
}

.activity-title {
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.activity-description {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Responsive Itinerary */
@media (max-width: 768px) {
    .trip-itinerary-modern {
        padding: 25px 20px;
    }
    
    .day-header-content {
        gap: 15px;
    }
    
    .day-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .day-title {
        font-size: 1rem;
    }
    
    .itinerary-day-body {
        padding: 20px;
    }
    
    .itinerary-activity {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
    }
    
    .activity-time {
        min-width: auto;
        justify-content: flex-start;
    }
    
    .activity-title {
        font-size: 1rem;
    }
    
    .activity-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .itinerary-day-button {
        padding: 15px 20px;
    }
    
    .day-header-content {
        gap: 12px;
    }
    
    .day-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .day-title {
        font-size: 0.95rem;
    }
}

/* PUSHED NAVBAR TOGGLER GLOBALLY TO FIX ALL PAGES */
.navbar-toggler {
    border: 2px solid var(--accent-sky) !important;
    padding: 8px 12px !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    background-color: transparent !important;
}

.navbar-toggler:hover {
    background-color: rgba(98, 182, 203, 0.1) !important;
    border-color: var(--accent-orange) !important;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(98, 182, 203, 0.25) !important;
    outline: none !important;
}

.navbar-toggler-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-image: none !important;
}

.navbar-toggler-icon i {
    color: var(--accent-sky) !important;
    font-size: 1.3rem !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
}

.navbar-toggler:hover .navbar-toggler-icon i {
    color: var(--accent-orange) !important;
    transform: rotate(90deg) !important;
}
