:root {
    --primary: #c49a2b;
    --primary-dark: #b3891f;
    --secondary: #1e2a3a;
    --dark: #0a1a2b;
    --light: #f8f5f0;
    --text: #4a4a4a;
    --white: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --shadow-sm: 0 5px 20px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 40px rgba(196, 154, 43, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--secondary);
}

/* Navbar Styles */
.navbar {
    background-color: rgba(10, 26, 43, 0.95) !important;
    backdrop-filter: blur(10px);
    padding: 12px 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.navbar.scrolled {
    padding: 8px 0;
    background-color: var(--dark) !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 45px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar.scrolled .logo-img {
    height: 40px;
}

.nav-link {
    color: var(--white) !important;
    font-weight: 400;
    margin: 0 12px;
    position: relative;
    font-size: 0.95rem;
    padding: 8px 0 !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-btn {
    background: var(--primary);
    color: var(--white) !important;
    padding: 8px 20px !important;
    border-radius: 50px;
    margin-left: 15px;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(196, 154, 43, 0.3);
}

.nav-btn::after {
    display: none;
}

.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 12px;
}

/* Hero Section */
.itinerary-hero {
    height: 80vh;
    min-height: 600px;
    background: linear-gradient(rgb(0 0 0 / 42%), rgba(0, 0, 0, 0)), url(banner.png);
    background-size: cover;
    background-position: center;
    /*background-attachment: fixed;*/
    display: flex;
    align-items: center;
    color: var(--white);
    position: relative;
}

.itinerary-hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, #ffffff4f, transparent);
}

.itinerary-hero-content {
    max-width: 900px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.itinerary-hero h1 {
    font-size: clamp(2rem, 6vw, 3.5rem);
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.tour-badge {
    display: inline-block;
    background: var(--primary);
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 1rem;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(196, 154, 43, 0.3);
}

.tour-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.highlight-item i {
    color: var(--primary);
    font-size: 1.2rem;
}

/* Section Padding */
.section-padding {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary);
}

.section-title p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Itinerary Timeline */
.itinerary-timeline {
    position: relative;
    padding: 20px 0;
}

.itinerary-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary), rgba(196, 154, 43, 0.2));
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    padding-left: 100px;
    margin-bottom: 50px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-day {
    position: absolute;
    left: 0;
    top: 0;
    width: 80px;
    height: 80px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 10px 20px rgba(196, 154, 43, 0.3);
    border: 3px solid var(--white);
}

.timeline-day span {
    font-size: 1.3rem;
    line-height: 1.2;
}

.timeline-day small {
    font-size: 0.8rem;
    opacity: 0.9;
}

.timeline-content {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(196, 154, 43, 0.1);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.timeline-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.timeline-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.timeline-content:hover .timeline-image img {
    transform: scale(1.05);
}

.timeline-details {
    padding: 25px;
}

.timeline-details h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.timeline-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline-details ul li {
    margin-bottom: 12px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.timeline-details ul li i {
    color: var(--primary);
    margin-top: 3px;
    font-size: 1rem;
}

/* Why Choose Us Cards */
.why-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
    border: 1px solid rgba(196, 154, 43, 0.1);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-icon {
    width: 90px;
    height: 90px;
    background: rgba(196, 154, 43, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.why-card:hover .why-icon {
    background: var(--primary);
    transform: rotateY(180deg);
}

.why-card:hover .why-icon i {
    color: var(--white);
}

.why-icon i {
    font-size: 2.5rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.why-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.why-card p {
    color: #666;
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Testimonials Slider */
.testimonials-section {
    background: linear-gradient(135deg, var(--light) 0%, #f0e9dd 100%);
}

.testimonial-slider {
    padding: 20px 10px 50px;
}

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-md);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(196, 154, 43, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-rating {
    color: #ffc107;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
    position: relative;
    padding: 0 15px;
}

.testimonial-text::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 20px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 1.3rem;
    box-shadow: 0 5px 15px rgba(196, 154, 43, 0.2);
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 0;
}

.read-more-btn {
    background: none;
    border: none;
    color: var(--primary);
    font-weight: 500;
    cursor: pointer;
    padding: 5px 0;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    color: var(--primary-dark);
    gap: 8px;
}

.full-text {
    display: none;
    margin-top: 10px;
}

.full-text.show {
    display: block;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: var(--primary) !important;
    background: var(--white);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary);
    color: var(--white) !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.2rem !important;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(196, 154, 43, 0.3) !important;
    opacity: 1 !important;
}

.swiper-pagination-bullet-active {
    background: var(--primary) !important;
    width: 25px;
    border-radius: 5px;
}

/* Contact Form */
.contact-section {
    background: linear-gradient(135deg, var(--dark) 0%, #1a2a3a 100%);
    color: var(--white);
}

.contact-section .section-title h2 {
    color: var(--white);
}

.contact-section .section-title p {
    color: rgba(255, 255, 255, 0.8);
}

.contact-form {
    background: var(--white);
    padding: 50px;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
}

.form-label {
    font-weight: 500;
    color: var(--secondary);
    margin-bottom: 8px;
}

.form-control,
.form-select {
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    padding: 12px 18px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(196, 154, 43, 0.15);
}

.btn-primary {
    background-color: var(--primary);
    border: none;
    padding: 14px 35px;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(196, 154, 43, 0.3);
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(196, 154, 43, 0.2);
}

/* Popup Form */
.popup-form {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.popup-form.show {
    display: flex;
    opacity: 1;
}

.popup-content {
    width: 90%;
    max-width: 450px;
    background: var(--white);
    border-radius: 30px;
    padding: 40px;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.popup-form.show .popup-content {
    transform: scale(1);
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-popup:hover {
    background: rgba(196, 154, 43, 0.1);
    color: var(--primary);
}

.popup-content h3 {
    text-align: center;
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.popup-content p {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

.floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: 15px 30px;
    font-weight: 500;
    box-shadow: 0 10px 30px rgba(196, 154, 43, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(196, 154, 43, 0.4);
}

.floating-btn i {
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 20px;
}

.footer h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
    border-color: var(--primary);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #aaa;
}

/* Responsive */
@media (max-width: 991px) {
    .navbar-collapse {
        background: var(--dark);
        padding: 20px;
        border-radius: 15px;
        margin-top: 15px;
    }

    .nav-btn {
        margin-left: 0;
        text-align: center;
    }

    .itinerary-timeline::before {
        left: 25px;
    }

    .timeline-item {
        padding-left: 70px;
    }

    .timeline-day {
        width: 65px;
        height: 65px;
    }

    .timeline-day span {
        font-size: 16px;
    }

    .timeline-day small {
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 70px 0;
    }

    .tour-highlights {
        gap: 15px;
    }

    .highlight-item {
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    .timeline-image {
        height: 200px;
    }

    .timeline-details {
        padding: 20px;
    }

    .timeline-details h3 {
        font-size: 1.2rem;
    }

    .contact-form {
        padding: 30px;
    }

    .floating-btn {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .floating-btn span {
        display: none;
    }

    .floating-btn i {
        font-size: 1.3rem;
        margin: 0;
    }
}

@media (max-width: 480px) {
    
     .itinerary-hero-content {
        margin-top: 62px;
    } 

    .tour-highlights {
        margin-top: 20px;
    }

    
    .itinerary-hero {
        min-height: 500px;
    }

    .timeline-item {
        padding-left: 0;
    }

    .timeline-day {
        position: relative;
        margin-bottom: 10px;
    }

    .timeline-day small {
        display: none;
    }

    .itinerary-timeline::before {
        display: none;
    }

    .timeline-content {
        margin-top: 10px;
    }

    .timeline-image {
        height: 180px;
    }

    .popup-content {
        padding: 30px 20px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }
}

/* Animation Classes */
.hover-zoom {
    transition: transform 0.3s ease;
}

.hover-zoom:hover {
    transform: scale(1.02);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}