/* kashmir-tour-offer.css */
:root {
    --navy: #0a1a2d;
    --dark-navy: #06121f;
    --gold: #d4af37;
    --light-gold: #f4e4a6;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --text-light: #6c757d;
    --text-dark: #333333;
    --accent-blue: #1e3a5f;
    --accent-green: #2e7d32;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
    padding-bottom: 80px; /* Add padding for mobile sticky CTA */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--navy);
}

.glass-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 25px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: linear-gradient(rgba(10, 26, 45, 0.85), rgba(10, 26, 45, 0.8)), 
                url('https://kashmirtourtravel.com/images/kashmir-tour-travel-corporate-tour.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 26, 45, 0.7) 0%, rgba(212, 175, 55, 0.1) 100%);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 10;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--light-gold);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-tagline {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 2.5rem;
    color: var(--light-gold);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-buttons .btn {
    margin: 0 10px;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, #b8941f 100%);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--navy);
}

.glow-btn {
    position: relative;
    overflow: hidden;
}

.glow-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.glow-btn:hover::before {
    left: 100%;
}

/* Section Styling */
section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
}

/* Card Components */
.feature-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(212, 175, 55, 0.1);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold) 0%, #b8941f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.feature-card h4 {
    margin-bottom: 15px;
    color: var(--navy);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.season-card, .destination-card, .hotel-card, .houseboat-card, .religious-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.season-card:hover, .destination-card:hover, .hotel-card:hover, .houseboat-card:hover, .religious-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.season-image, .destination-image, .hotel-image, .houseboat-image, .religious-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.season-content, .destination-content, .hotel-content, .houseboat-content, .religious-content {
    padding: 25px;
}

.season-icon {
    width: 50px;
    height: 50px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 15px;
}

.season-card h4, .destination-card h4, .hotel-card h4, .houseboat-card h4, .religious-card h4 {
    margin-bottom: 10px;
    color: var(--navy);
}

.season-card p, .destination-card p, .hotel-card p, .houseboat-card p, .religious-card p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.season-card ul {
    list-style: none;
    padding: 0;
}

.season-card ul li {
    padding: 5px 0;
    color: var(--text-light);
    position: relative;
    padding-left: 20px;
}

.season-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

.destination-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.destination-highlights span {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Package Tabs */
.package-tabs .nav-pills .nav-link {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--gold);
    margin: 0 10px;
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.package-tabs .nav-pills .nav-link.active {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

.package-tabs .nav-pills .nav-link:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
}

/* Itinerary Timeline */
.itinerary-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.itinerary-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gold);
}

.timeline-item {
    display: flex;
    margin-bottom: 30px;
    position: relative;
}

.timeline-day {
    width: 60px;
    height: 60px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    margin-right: 30px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.timeline-content {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    flex: 1;
}

.timeline-content h5 {
    color: var(--navy);
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* Inclusion Cards */
.inclusion-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    border-top: 4px solid transparent;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.inclusion-card.positive {
    border-top-color: #28a745;
}

.inclusion-card.negative {
    border-top-color: #dc3545;
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.card-header i {
    font-size: 2rem;
    margin-right: 15px;
}

.inclusion-card.positive .card-header i {
    color: #28a745;
}

.inclusion-card.negative .card-header i {
    color: #dc3545;
}

.card-header h4 {
    margin: 0;
    color: var(--navy);
}

.inclusion-list {
    list-style: none;
    padding: 0;
}

.inclusion-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    color: var(--text-light);
}

.inclusion-list li i {
    margin-right: 10px;
    font-size: 0.9rem;
}

.inclusion-card.positive .inclusion-list li i {
    color: #28a745;
}

.inclusion-card.negative .inclusion-list li i {
    color: #dc3545;
}

/* Pricing Cards */
.pricing-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--gold);
}

.pricing-header {
    margin-bottom: 25px;
}

.pricing-header h4 {
    color: var(--navy);
    margin-bottom: 15px;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--gold);
    margin-bottom: 5px;
    transition: all 0.5s ease;
}

.price span {
    font-size: 1rem;
    color: var(--text-light);
}

.duration {
    color: var(--text-light);
    font-size: 0.9rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.pricing-features li {
    padding: 8px 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-features li i {
    color: var(--gold);
    margin-right: 8px;
}

/* CTA Section */
.section-cta {
    background: linear-gradient(135deg, var(--navy) 0%, var(--dark-navy) 100%);
    color: var(--white);
    text-align: center;
    padding: 100px 0;
}

.cta-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--light-gold);
}

.contact-info {
    color: var(--light-gold);
    margin-top: 30px;
}

.contact-info p {
    margin-bottom: 5px;
}

/* Group Size Toggle */
.group-size-toggle {
    margin-bottom: 40px;
}

.group-size-toggle .btn-group {
    flex-wrap: wrap;
    justify-content: center;
}

.group-size-toggle .btn {
    margin: 5px;
    border: 2px solid var(--gold);
    color: var(--text-light);
    border-radius: 30px;
    padding: 10px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.group-size-toggle .btn-check:checked + .btn,
.group-size-toggle .btn.active {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

.group-size-toggle .btn:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cta-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-btn.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.cta-btn.call {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.cta-btn.pdf {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border: none;
    cursor: pointer;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Tour Type Cards */
.tour-type-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 30px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    z-index: 1;
}

.tour-type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.tour-type-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold) 0%, #b8941f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
}

.tour-type-card h4 {
    margin-bottom: 15px;
    color: var(--navy);
}

.tour-type-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Hotel & Houseboat Specific */
.hotel-rating {
    color: var(--gold);
    margin-bottom: 10px;
}

.hotel-features, .houseboat-features {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.hotel-features li, .houseboat-features li {
    padding: 5px 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
}

.hotel-features li i, .houseboat-features li i {
    color: var(--gold);
    margin-right: 8px;
    font-size: 0.9rem;
}

.houseboat-location, .religious-location {
    color: var(--gold);
    margin-bottom: 10px;
    font-weight: 500;
}

/* Route Map */
.route-map-container {
    position: relative;
    margin: 40px 0;
    padding: 20px;
    background: linear-gradient(135deg, rgba(10, 26, 45, 0.05) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: 15px;
}

.route-map {
    width: 100%;
    height: 300px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 800 300"><path d="M50,150 C150,50 250,250 350,150 C450,50 550,250 650,150 C750,50 750,250 650,250" stroke="%23d4af37" stroke-width="4" fill="none" stroke-dasharray="10,5"/><circle cx="50" cy="150" r="10" fill="%23d4af37"/><circle cx="350" cy="150" r="10" fill="%23d4af37"/><circle cx="650" cy="150" r="10" fill="%23d4af37"/><text x="50" y="180" text-anchor="middle" fill="%230a1a2d" font-family="Arial" font-size="14">Srinagar</text><text x="350" y="180" text-anchor="middle" fill="%230a1a2d" font-family="Arial" font-size="14">Gulmarg</text><text x="650" y="180" text-anchor="middle" fill="%230a1a2d" font-family="Arial" font-size="14">Pahalgam</text></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.route-details {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 20px;
}

.route-point {
    text-align: center;
    flex: 1;
    min-width: 150px;
    padding: 15px;
}

.route-point h5 {
    color: var(--navy);
    margin-bottom: 10px;
}

.route-point p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.badge-item {
    text-align: center;
    width: 120px;
}

.badge-icon {
    width: 60px;
    height: 60px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    color: white;
    font-size: 1.5rem;
}

.badge-item p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 0;
}

/* Mobile Sticky CTA - FIXED */
.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 15px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.mobile-sticky-cta .btn {
    flex: 1;
    margin: 0;
    padding: 10px 15px;
    font-size: 0.9rem;
    white-space: nowrap;
}

/* PDF Watermark */
.pdf-watermark {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    font-size: 8rem;
    color: rgba(212, 175, 55, 0.1);
    pointer-events: none;
    z-index: -1;
    font-weight: bold;
    white-space: nowrap;
    display: none;
}

/* Religious Card Specific */
.religious-description {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.religious-season {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
}

/* Specialized Sections */
.section-why-kashmir,
.section-seasons,
.section-route-map,
.section-destinations,
.section-packages,
.section-inclusions,
.section-hotels,
.section-houseboats,
.section-pricing,
.section-trust,
.section-tour-types,
.section-religious {
    background-color: var(--light-bg) !important;
    position: relative;
    z-index: 1;
}

.section-cta {
    background: linear-gradient(135deg, var(--navy) 0%, var(--dark-navy) 100%) !important;
}

/* Responsive Grid Fixes */
.row {
    display: flex !important;
    flex-wrap: wrap !important;
    margin-right: -15px;
    margin-left: -15px;
}

.col-md-6, .col-lg-3, .col-lg-4, .col-md-6 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    flex: 0 0 auto;
}

@media (min-width: 768px) {
    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 992px) {
    .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-lg-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

/* Visibility Fixes */
.card-container {
    margin-bottom: 30px;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    height: auto !important;
}

.btn-group-toggle .btn {
    margin-bottom: 10px;
}

.feature-card,
.season-card,
.destination-card,
.pricing-card,
.hotel-card,
.houseboat-card,
.tour-type-card,
.inclusion-card,
.religious-card {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    position: relative !important;
    transform: none !important;
}

.tab-content .tab-pane {
    display: none;
}

.tab-content .tab-pane.active {
    display: block;
}

.tab-content .tab-pane.show {
    display: block;
}

/* Print Styles */
@media print {
    .sticky-cta,
    .mobile-sticky-cta {
        display: none !important;
    }
    
    .pdf-watermark {
        display: block;
    }
    
    .btn {
        display: none !important;
    }
    
    section {
        padding: 40px 0;
    }
    
    .hero-section {
        height: auto;
        padding: 80px 0;
    }
}

/* NEW STYLES FOR ENHANCEMENTS */

/* Corporate Premium Styling */
.corporate-premium {
    border: 2px solid var(--gold);
    position: relative;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.corporate-premium::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--gold), transparent, var(--gold));
    border-radius: 17px;
    z-index: -1;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        opacity: 0.5;
    }
    to {
        opacity: 1;
    }
}

.corporate-badge {
    background: var(--navy);
    color: var(--gold);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
    border: 1px solid var(--gold);
}

/* Trust Section Enhancements */
.trust-global {
    font-size: 1.1rem;
    color: var(--gold) !important;
    font-weight: 600;
    margin-top: 10px;
}

.trust-expansion {
    font-size: 1rem;
}

/* Tour Micro Benefits */
.tour-micro-benefit {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: 15px;
    display: inline-block;
}

/* Corporate Conversion Text */
.corporate-conversion {
    margin: 20px 0;
}

.corporate-text {
    color: var(--light-gold);
    font-size: 1.1rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 25px;
    display: inline-block;
}

/* Image Lazy Loading */
img[data-src] {
    opacity: 0;
    transition: opacity 0.3s;
}

img.lazy-loaded {
    opacity: 1;
}

/* PACKAGE CARD STYLES */
.package-card {
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.package-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    background: var(--accent-blue);
    z-index: 1;
}

.package-badge.corporate {
    background: var(--navy);
}

.package-badge.luxury {
    background: var(--gold);
    color: var(--navy);
}

.package-icon {
    font-size: 2.5rem;
    color: var(--accent-blue);
    margin-bottom: 15px;
    text-align: center;
}

.package-card h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    text-align: center;
}

.package-duration {
    color: var(--text-light);
    font-weight: 500;
    text-align: center;
    margin-bottom: 15px;
}

.package-description {
    color: var(--text-light);
    text-align: center;
    margin-bottom: 20px;
    flex-grow: 1;
}

.package-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 20px;
}

.package-highlights span {
    background: rgba(30, 58, 95, 0.1);
    color: var(--accent-blue);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.package-price {
    text-align: center;
    margin-bottom: 20px;
}

.price-from {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
}

.price-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-blue);
}

.price-per {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* MODAL STYLES */
.modal-content {
    border-radius: 15px;
    overflow: hidden;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.modal-header {
    background: var(--accent-blue);
    color: white;
    border-bottom: none;
    padding: 20px 25px;
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.5rem;
}

.btn-close {
    filter: invert(1);
    opacity: 0.8;
}

.btn-close:hover {
    opacity: 1;
}

.modal-body {
    padding: 25px;
}

.modal-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 20px 25px;
}

/* Modal Tabs */
.modal-body .nav-pills {
    margin-bottom: 25px;
}

.modal-body .nav-pills .nav-link {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--accent-blue);
    margin: 0 5px;
    border-radius: 30px;
    padding: 8px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.modal-body .nav-pills .nav-link.active {
    background: var(--accent-blue);
    color: white;
    border-color: var(--accent-blue);
}

.modal-body .nav-pills .nav-link:hover:not(.active) {
    background: rgba(30, 58, 95, 0.1);
    color: var(--accent-blue);
}

/* Modal Timeline */
.modal-body .timeline-item {
    display: flex;
    margin-bottom: 25px;
    position: relative;
}

.modal-body .timeline-item::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 0;
    bottom: -25px;
    width: 2px;
    background: var(--accent-blue);
    opacity: 0.3;
}

.modal-body .timeline-item:last-child::before {
    display: none;
}

.modal-body .timeline-day {
    background: var(--accent-blue);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 20px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.modal-body .timeline-content {
    flex-grow: 1;
}

.modal-body .timeline-content h5 {
    color: var(--accent-blue);
    margin-bottom: 5px;
}

/* Modal Inclusion Cards */
.modal-body .inclusion-card {
    margin-bottom: 20px;
}

.modal-body .inclusion-card .card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.modal-body .inclusion-card .card-header i {
    font-size: 1.5rem;
    color: var(--accent-green);
}

.modal-body .inclusion-card .card-header h4 {
    margin: 0;
    color: var(--navy);
}

.modal-body .inclusion-list, 
.modal-body .hotel-features {
    list-style: none;
    padding: 0;
}

.modal-body .inclusion-list li, 
.modal-body .hotel-features li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.modal-body .inclusion-list li i, 
.modal-body .hotel-features li i {
    color: var(--accent-green);
    margin-right: 10px;
}

/* Modal Pricing Table */
.modal-body .pricing-table-container {
    overflow-x: auto;
}

.modal-body .table {
    border-radius: 10px;
    overflow: hidden;
}

.modal-body .table thead {
    background: var(--accent-blue);
    color: white;
}

.modal-body .table th {
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .sticky-cta {
        display: none !important;
    }
    
    .cta-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .itinerary-timeline::before {
        left: 25px;
    }
    
    .timeline-day {
        width: 50px;
        height: 50px;
        margin-right: 20px;
        font-size: 0.9rem;
    }

    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }
    
    .mobile-sticky-cta {
        display: flex;
        padding: 12px 15px;
        padding-bottom: max(12px, env(safe-area-inset-bottom));
    }
    
    .route-details {
        flex-direction: column;
    }
    
    .route-point {
        margin-bottom: 15px;
    }
    
    .corporate-text {
        font-size: 0.9rem;
        padding: 8px 15px;
    }
    
    .trust-global {
        font-size: 0.9rem;
    }
    
    body {
        padding-bottom: 90px; /* Increased padding for mobile sticky CTA */
    }

    /* Modal responsive adjustments */
    .modal-body .timeline-item::before {
        left: 20px;
    }
    
    .modal-body .timeline-day {
        width: 40px;
        height: 40px;
        margin-right: 15px;
        font-size: 0.8rem;
    }
    
    .modal-body .nav-pills .nav-link {
        display: block;
        margin: 5px 0;
    }
}

@media (min-width: 769px) {
    .mobile-sticky-cta {
        display: none !important;
    }
    
    .sticky-cta {
        display: flex;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .package-tabs .nav-pills .nav-link {
        display: block;
        margin: 5px 0;
    }
    
    .corporate-premium::before {
        animation: none;
    }
    
    .mobile-sticky-cta {
        flex-wrap: nowrap;
    }
    
    .mobile-sticky-cta .btn {
        font-size: 0.8rem;
        padding: 8px 10px;
    }

    /* Modal mobile adjustments */
    .modal-dialog {
        margin: 10px;
    }
    
    .modal-body {
        padding: 15px;
    }
    
    .modal-header, .modal-footer {
        padding: 15px 20px;
    }
}

/* Performance Optimizations */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .corporate-premium::before {
        animation: none;
    }
}

/* Safe area support for modern devices */
@supports(padding: max(0px)) {
    .mobile-sticky-cta {
        padding-bottom: max(15px, env(safe-area-inset-bottom));
    }
}