/* Base Styles */
:root {
    --primary-blue: #2c3e50;
    --primary-teal: #1a6b84;
    --secondary-orange: #e67e22;
    --accent-orange: #d35400;
    --light-gray: #ecf0f1;
    --dark-gray: #34495e;
    --medium-gray: #7f8c8d;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --border-radius: 10px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --day-highlight: #e8f4fc;
    --day-border: #3498db;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #f9f9f9;
    background-color: var(--light-gray);
}

.container {
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation Bar - Updated to match first code */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 40px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.85);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 15px 40px;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.nav-left, .nav-center, .nav-right {
    flex: 1;
    display: flex;
    align-items: center;
}

.nav-left {
    justify-content: flex-start;
    gap: 10px;
}

.nav-center {
    justify-content: center;
}

.nav-right {
    justify-content: flex-end;
    gap: 10px;
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo img {
    height: 100px;
    transition: all 0.3s ease;
}

.navbar.scrolled .logo img {
    height: 70px;
}

.tab {
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    padding: 10px 15px;
    white-space: nowrap;
}

.tab:hover {
    color: var(--secondary-orange);
}

.tab::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-orange);
    transition: width 0.3s ease;
}

.tab:hover::after {
    width: 100%;
}

.contact-tab {
    background-color: var(--primary-teal);
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.contact-tab:hover {
    background-color: var(--accent-orange);
    color: white;
}

.contact-tab::after {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-teal);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background-color: white;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.mobile-menu.show {
    display: flex;
}

.mobile-tab {
    padding: 12px 0;
    color: var(--dark-gray);
    text-decoration: none;
    border-bottom: 1px solid #eee;
    transition: all 0.3s;
}

.mobile-tab:hover {
    color: var(--secondary-orange);
    padding-left: 10px;
}

/* Hero Header */
.package-hero-header {
    margin-top: 0px;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 70vh;
    max-height: 600px;
    overflow: hidden;
}

#hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding-bottom: 60px;
    color: white;
}

#package-title {
    font-size: 3rem;
    margin: 0 0 10px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

#package-subtitle {
    font-size: 1.5rem;
    margin: 0 0 20px;
    font-weight: 300;
    opacity: 0.9;
}

.hero-meta {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.duration-badge, .price-badge {
    background-color: rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    padding: 8px 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

/* Back Button */
.back-container {
    padding: 30px 0 20px;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    padding: 8px 15px;
    border-radius: var(--border-radius);
}

.back-btn:hover {
    color: var(--accent-orange);
    background-color: rgba(0,0,0,0.05);
}

/* Package Content */
.package-main-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.package-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 40px;
    margin-bottom: 30px;
}

.section-title {
    color: var(--primary-blue);
    font-size: 1.8rem; /*About this Experience*/
    margin-top: 0;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title i {
    color: var(--secondary-orange);
}

.package-description {
    line-height: 1.8;
    font-size: 1.1rem; /*About this Experience Small Text*/
}

.package-description p {
    margin-bottom: 20px;
}

/* Itinerary */
.itinerary-simple {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.itinerary-day {
    display: flex;
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.day-image-container {
    flex: 0 0 40%;
    overflow: hidden;
}

.day-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.itinerary-day:hover .day-image-container img {
    transform: scale(1.05);
}

.day-content-wrapper {
    flex: 1;
    padding: 30px;
}

.day-title {
    color: var(--primary-blue);
    font-size: 1.5rem; /*Day Title Font size*/
    margin-top: 0;
    margin-bottom: 20px;
    padding: 15px 20px;
    background-color: var(--day-highlight);
    border-left: 5px solid var(--day-border);
    border-radius: 5px;
}

.day-content {
    line-height: 1.7;
    font-size: 1.1rem; /*Day Paragraph*/
}

















/* CTA Section */
.cta-section {
    background-color: var(--primary-blue);
    color: white;
    padding: 60px 0;
    border-radius: var(--border-radius);
    margin: 60px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2rem;
    margin-top: 0;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--secondary-orange);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-teal);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background-color: rgba(255,255,255,0.1);
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
}

/* Footer - Updated to match first code */
.footer {
    background-color: var(--primary-blue);
    color: white;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--secondary-orange), var(--primary-teal));
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.footer-links, .footer-center, .footer-contact {
    flex: 1;
    min-width: 390px;
    margin-bottom: 20px;
    padding: 0 30px;
}

.footer-links {
    margin-left: 150px;
}

.footer-links h3, .footer-contact h3 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after, .footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--secondary-orange);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.footer-links li:hover {
    transform: translateX(5px);
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: var(--secondary-orange);
    padding-left: 5px;
}

.footer-links a i {
    margin-right: 10px;
    font-size: 0.9rem;
    color: var(--secondary-orange);
    transition: all 0.3s;
}

.footer-links a:hover i {
    transform: rotate(360deg);
}

.footer-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    margin-bottom: 25px;
    transition: all 0.5s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-logo img {
    max-width: 180px;
    height: auto;
}

.footer-contact {
    position: relative;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-item i {
    margin-right: 15px;
    color: var(--secondary-orange);
    font-size: 1.1rem;
    min-width: 20px;
    text-align: center;
    margin-top: 3px;
}

.contact-item div {
    flex: 1;
}

.contact-item h4 {
    margin: 0 0 5px;
    color: white;
    font-size: 1rem;
}

.contact-item p, .contact-item a {
    color: rgba(255,255,255,0.7);
    margin: 0;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s;
}

.contact-item a:hover {
    color: var(--secondary-orange);
}

.social-media {
    display: flex;
    gap: 12px;
    margin-top: 25px;
    justify-content: flex-start;
}

.social-media a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

.social-media a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--secondary-orange), var(--accent-orange));
    opacity: 0;
    transition: all 0.3s;
}

.social-media a:hover::after {
    opacity: 1;
}

.social-media a i {
    position: relative;
    z-index: 1;
}

.social-media a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 25px 0;
    text-align: center;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.1);
}

.footer-bottom .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-bottom p {
    margin: 0 0 15px;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s;
    position: relative;
    padding: 0 5px;
}

.footer-legal a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--secondary-orange);
    transition: width 0.3s;
}

.footer-legal a:hover {
    color: var(--secondary-orange);
}

.footer-legal a:hover::after {
    width: 100%;
}

/* Footer decorations */
.footer-decoration {
    position: absolute;
    opacity: 0.05;
    z-index: 0;
}

.footer-decoration.shape-1 {
    top: 50px;
    left: 5%;
    font-size: 10rem;
    color: var(--secondary-orange);
}

.footer-decoration.shape-2 {
    bottom: 100px;
    right: 10%;
    font-size: 8rem;
    color: var(--primary-teal);
}

/* Loading State */
.loading-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.loading-spinner {
    border: 5px solid #f3f3f3;
    border-top: 5px solid var(--secondary-orange);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 1200px) {
    #package-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 1024px) {
    
    #package-title {
    font-size: 2rem;
    margin: 0 0 10px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

#package-subtitle {
    font-size: 1rem;
    margin: 0 0 20px;
    font-weight: 300;
    opacity: 0.9;
}







.navbar {
        padding: 15px 20px;
    }
    
    .logo img {
        height: 50px;
    }
    
    .navbar.scrolled .logo img {
        height: 40px;
    }

    .mobile-menu-toggle {
        display: block;
    }
    

    .itinerary-day {
        flex-direction: column;
    }
    
    .day-image-container {
        flex: 0 0 250px;
    }





    
}

@media (max-width: 768px) {
   
   .section-title {font-size: 1.2rem; /*About this Experience*/  }
.package-description {line-height: 1.7;    font-size: 0.8rem; /*About this Experience Small Text*/}
.day-title {font-size: 1rem; /*Day Title Font size*/}
.day-content {line-height: 1.7;font-size: 0.8rem; /*Day Paragraph*/}
   
   
   
   
    #package-title {
    font-size: 1.5rem;
    margin: 0 0 10px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

#package-subtitle {
    font-size: 0.8rem;
    margin: 0 0 20px;
    font-weight: 300;
    opacity: 0.9;
}



   .nav-left, .nav-right {
        display: none;
    }
   
   .mobile-menu-toggle {
        display: block;
    }
   
    #package-title {
        font-size: 2rem;
    }
    
    .package-card {
        padding: 25px;
    }
    
   
    
    .footer-links, .footer-center, .footer-contact {
        flex: 100%;
        max-width: 100%;
        text-align: center;
        padding: 0 15px;
    }
    
    .footer-links {
        margin-left: 0;
    }
    
    .footer-links h3::after, .footer-contact h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .footer-links li {
        margin-bottom: 0;
    }
    
    .footer-links a:hover {
        padding-left: 0;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .social-media {
        justify-content: center;
    }

.cta-section {
        padding: 50px 20px;
        margin: 40px 0;
    }

    .cta-content h2 {
        font-size: 1.7rem;
    }

    .cta-content p {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .btn-large {
        padding: 12px 25px;
    }


















}

@media (max-width: 576px) {
   
    
    #package-title {
        font-size: 1.8rem;
    }
    
    .package-card {
        padding: 20px;
    }
    
    
    
    .footer-legal {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-legal a {
        padding: 5px 0;
    }
    
    .footer-legal a::after {
        bottom: 0;
    }
}

/* Add these to your stylesheet */
.day-content p.compact {
    margin-bottom: 0.5em;
}
.day-content p.normal {
    margin-bottom: 1em;
}
.day-content p.wide {
    margin-bottom: 1.5em;
    line-height: 1.6;
}

/* HIDE THE PRICE */
.price-badge {
  display: none;
}