@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

@font-face {
    font-family: 'Neue Montreal';
    src: url('https://globosoft.org/2026/05/moon-stone/__assets/fonts/NeueMontreal-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Neue Montreal';
    src: url('https://globosoft.org/2026/05/moon-stone/__assets/fonts/NeueMontreal-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Neue Montreal';
    src: url('https://globosoft.org/2026/05/moon-stone/__assets/fonts/NeueMontreal-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

:root {
    --primary: #C51F33;
    --primary-light: #E63946;
    --secondary: #721C24;
    --dark: #1A1A1A;
    --light: #F8F9FA;
    --text: #333333;
    --text-muted: #6C757D;
    --white: #FFFFFF;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-main: 'Neue Montreal', 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text);
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 30px 0;
    transition: var(--transition);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.logo-container {
    padding: 15px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-container img {
    height: 100px;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: var(--white);
    font-weight: 400;
    font-size: 18px;
    opacity: 0.9;
    font-family: 'Poppins';
    text-transform: capitalize;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--white);
    border-bottom: 2px solid var(--white);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.contact-info {
    text-align: right;
    font-size: 13px;
    font-weight: 300;
    color: #fff;
}

.contact-info div {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-end;
    margin-bottom: 4px;
}

.btn-plan {
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.btn-plan:hover {
    background: var(--white);
    color: var(--primary);
}

/* Hero Section / Banner */
.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--white);
    padding-top: 100px;
}

.btn {
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary {
    background: #D82B2F;
    color: var(--white);
    font-weight: 500;
    font-family: 'Poppins';
}

.btn-primary:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

/* Consolidated Hero Styles */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--white);
    text-align: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-inner {
    height: 60vh;
    min-height: 400px;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.hero-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 20px 40px;
}

.hero h1 {
    font-size: 53px;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.1;
    max-width: 900px;
    /* margin-left: auto; */
    /* margin-right: auto; */
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-family: 'Poppins';
    text-align: left;
}

.hero p.subtitle {
    font-size: 19px;
    max-width: 700px;
    margin-bottom: 50px;
    opacity: 0.95;
    /* margin-left: auto; */
    margin-right: auto;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    font-family: 'Poppins';
    font-weight: 300;
    text-align: left;
}

/* Slider Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 150;
    /* Ensure it's above everything including search-banner */
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.4);
}

.arrow-left {
    left: 40px;
}

.arrow-right {
    right: 40px;
}

/* Search Bar New Style */
.search-banner {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    background: #d7d8dd;
    padding: 8px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    width: 90%;
    max-width: 850px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
    z-index: 100;
    /* Ensure it's above hero-content */
}

.search-field {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 25px;
    border-right: 1px solid #f0f0f0;
    position: relative;
    z-index: 101;
}

.search-field:nth-child(2) {
    border-right: none;
    max-width: 280px;
}

.search-field i {
    color: #666666;
    margin-right: 15px;
    font-size: 18px;
}

.search-field input,
.search-field select {
    border: none;
    outline: none;
    padding: 18px 0;
    width: 100%;
    font-size: 15px;
    font-weight: 500;
    color: var(--dark);
    background: transparent;
    cursor: pointer;
    font-family: 'Poppins';
}

.search-banner .btn-search {
    background: var(--primary);
    color: var(--white);
    padding: 18px 45px;
    border-radius: 12px;
    font-weight: 400;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins';
}

.search-banner .btn-search:hover {
    background: var(--secondary);
    transform: scale(1.02);
}

/* Banner Footer */
.banner-footer {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
    z-index: 50;
}

.social-banner {
    display: flex;
    gap: 20px;
}

.social-banner a {
    color: var(--white);
    font-size: 18px;
    opacity: 0.8;
}

.location-banner {
    color: var(--white);
    font-size: 12px;
    opacity: 0.7;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Sections */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 36px;
    color: #630606;
    margin-bottom: 10px;
    font-family: 'Poppins';
    font-weight: 500;
}

.section-header p {
    color: #333333;
    font-family: 'Poppins';
}

/* Traveler Stories New Style */
.testimonials-section {
    padding: 100px 0;
    background: #FCE4E6;
    position: relative;
    overflow: hidden;
}

.testimonial-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.testimonial-info-side {
    min-width: 350px;
    padding-top: 20px;
}

.testimonial-info-side h2 {
    font-size: 42px;
    color: #630606;
    margin-bottom: 15px;
    font-weight: 500;
    font-family: 'Poppins';
}

.testimonial-info-side p {
    font-size: 16px;
    color: #333333;
    line-height: 1.4;
    margin-bottom: 40px;
    font-family: 'Poppins';
    font-weight: 400;
}

.small-testimonial-card {
    background: var(--white);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 320px;
}

.small-testimonial-card .user-img {
    width: 50px;
    height: 50px;
}

.small-testimonial-card h3 {
    font-size: 16px;
    margin-bottom: 0;
    color: #000000;
    font-weight: 500;
}

.testimonial-slider-side {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.testimonial-grid {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 20px 0;
}

.testimonial-card {
    min-width: 350px;
    background: var(--white);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.user-img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    overflow: hidden;
}

.user-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-info h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 2px;
    display: flex;
    font-weight: 400;
}

.rating {
    margin-left: auto;
    color: #FFD700;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.trip-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 15px;
}

.trip-gallery img {
    width: 100%;
    height: 70px;
    border-radius: 8px;
    object-fit: cover;
}

@media (max-width: 1100px) {
    .testimonial-layout {
        flex-direction: column;
    }

    .testimonial-info-side {
        min-width: 100%;
    }
}

/* Vertical Package Cards */
.pkg-card-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.pkg-card {
    background: var(--white);
    border-radius: 15px;
    padding: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.pkg-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.pkg-card-img {
    height: 320px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
}

.pkg-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pkg-card-footer {
    padding: 5px 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pkg-card-footer h3 {
    font-size: 15px;
    color: var(--secondary);
    font-weight: 500;
    line-height: 22px;
    max-width: 100%;
    font-family: 'Poppins';
}

.pkg-card-footer .arrow-icon {
    color: #333;
    font-size: 14px;
    opacity: 0.6;
}

@media (max-width: 1200px) {
    .pkg-card-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .pkg-card-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* Stats Section New Style */
.stats-section {
    padding: 100px 0;
    position: relative;
}

.stats-container {
    background: #FCE4E6;
    border-radius: 20px;
    padding: 80px 40px 60px;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.stats-badge {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: #D82B2F;
    color: var(--white);
    padding: 15px 50px;
    border-radius: 12px;
    font-size: 24px;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: 0 10px 20px rgba(197, 31, 51, 0.2);
    font-family: 'Poppins';
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 30px;
}

.stat-item h3 {
    font-size: 36px;
    color: var(--secondary);
    margin-bottom: 5px;
    font-weight: 700;
}

.stat-item p {
    font-size: 14px;
    color: #333333;
    line-height: 1.3;
    font-weight: 400;
    font-family: 'Poppins';
}

/* Popular Destinations Section */
.section-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.section-top .section-header {
    text-align: left;
    margin-bottom: 0;
}

.btn-view-all {
    background: var(--primary);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 400;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins';
}

.dest-card-grid {
    display: flex;
    gap: 35px;
    overflow-x: auto;
    padding-bottom: 30px;
    scrollbar-width: none;
    /* Firefox */
}

.dest-card-grid::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.dest-card {
    min-width: 320px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: relative;
    transition: var(--transition);
}

.dest-card:hover {
    transform: translateY(-5px);
}

.dest-card-img {
    height: 240px;
    position: relative;
}

.dest-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.common-arrow {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 14px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 10;
    cursor: pointer;
    transition: var(--transition);
}

.common-arrow:hover {
    background: var(--primary);
    color: var(--white);
}

.common-prev {
    left: 80px;
}

.common-next {
    right: 80px;
}
@media (max-width: 1200px) {
    .common-prev {
        left: 10px;
    }

    .common-next {
        right: 10px;
    }
}

.dest-card-body {
    padding: 20px;
}

.dest-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 13px;
    color: #333333;
}

.dest-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dest-title-row h3 {
    font-size: 20px;
    color: #630606;
    font-weight: 500;
}

.dest-price {
    font-weight: 700;
    font-size: 18px;
    color: var(--dark);
}

.dest-slider-container {
    position: relative;
    position: relative;
    padding: 60px 0;
    margin-top: 20px;
}

.slider-progress-bg {
    width: 100%;
    height: 2px;
    background: #EAEAEA;
    position: absolute;
    bottom: 0;
    left: 0;
}

.slider-progress-active {
    position: absolute;
    top: -1px;
    /* Align with the dashed border */
    left: 10%;
    width: 15%;
    height: 3px;
    background: var(--primary);
    transition: var(--transition);
}

/* Footer */
footer {
    background: var(--secondary);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-links h4 {
    margin-bottom: 25px;
    font-size: 20px;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a:hover {
    padding-left: 5px;
    color: #FFB3C1;
}

.newsletter input {
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    border: none;
    margin-bottom: 15px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 14px;
}

/* CTA Banner New Style */
.cta-banner {
    background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url('../img/Your\ Next\ Adventure\ Awaits.png');
    background-size: cover;
    background-position: center;
    padding: 80px 60px;
    border-radius: 20px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    overflow: hidden;
}

.cta-left {
    flex: 1;
    z-index: 2;
}

.cta-logo {
    margin-bottom: 30px;
}

.cta-logo img {
    height: 60px;
}

.cta-left h2 {
    font-size: 42px;
    color: #630606;
    margin-bottom: 15px;
    font-weight: 400;
    font-family: 'Poppins';
}

.cta-left p {
    font-size: 16px;
    color: #333333;
    max-width: 500px;
    margin-bottom: 30px;
    line-height: 1.5;
    font-family: 'Poppins';
}

.cta-right {
    text-align: center;
    z-index: 2;
}

.offer-label {
    font-size: 25px;
    font-weight: 700;
    color: #630606;
    margin-bottom: 10px;
}

.timer-box {
    background: #D82B2F;
    color: var(--white);
    padding: 20px 40px;
    border-radius: 12px;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 2px;
    box-shadow: 0 10px 25px rgba(197, 31, 51, 0.3);
}

@media (max-width: 992px) {
    .cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 60px 30px;
    }

    .cta-left p {
        margin: 0 auto 30px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Services Section New Style */
.services-section {
    padding: 100px 0;
    background: #fff;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.service-card {
    background: var(--white);
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-img {
    height: 140px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h3 {
    font-size: 18px;
    color: #333333;
    margin-bottom: 12px;
    font-weight: 500;
    font-family: 'Poppins';
}

.service-card p {
    font-size: 13px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
    font-family: 'Poppins';
}

.read-more-link {
    color: var(--dark);
    font-weight: 500;
    font-size: 13px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Poppins';

}

.read-more-link:hover {
    color: var(--primary);
}

@media (max-width: 1200px) {
    .service-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .service-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* Testimonial specific arrow adjustment */
.testimonial-slider-side .common-prev {
    left: 0px;
}

.testimonial-slider-side .common-next {
    right: 0px;
}

/* Plan Journey Section New Style */
.plan-journey-section {
    padding: 100px 0;
    background: #fff;
}

.plan-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: auto;
    margin: 0 auto;
    gap: 200px;
}

.plan-img-left,
.plan-img-right {
    flex: 1;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
}

.plan-img-left img,
.plan-img-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.plan-content-box {
    position: absolute;
    z-index: 5;
    background: #D82B2F;
    color: var(--white);
    padding: 60px 40px;
    border-radius: 15px;
    text-align: center;
    max-width: 700px;
    box-shadow: 0 20px 50px rgba(197, 31, 51, 0.3);
}

.plan-content-box h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 400;
}

.plan-content-box p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
    font-weight: 200;
}

.btn-plan-now {
    background: var(--white);
    color: var(--dark);
    padding: 12px 35px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

@media (max-width: 992px) {
    .plan-container {
        flex-direction: column;
    }

    .plan-content-box {
        position: static;
        max-width: 100%;
        margin-top: -50px;
    }

    .plan-img-left,
    .plan-img-right {
        width: 100%;
        height: 300px;
    }
}

/* Footer Redesign New Style */
footer {
    background: #630606;
    color: var(--white);
    padding: 80px 0 30px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    margin-top: -30px;
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 500;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.8;
}

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    font-size: 14px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    color: var(--white);
    font-size: 18px;
    transition: var(--transition);
}

.social-links a:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 200;
}

.footer-links a::before .footer-links a:hover {
    opacity: 1;
    padding-left: 5px;
}

.subscribe-form {
    display: flex;
    background: var(--white);
    padding: 5px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.subscribe-form input {
    flex: 1;
    border: none;
    padding: 10px 15px;
    outline: none;
    font-size: 14px;
}

.btn-search {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 10px 25px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
}

.map-box {
    border-radius: 10px;
    overflow: hidden;
    height: 100px;
    margin-bottom: 20px;
}

.map-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.globosoft-logo {
    text-align: right;
    margin-top: 20px;
}

.globosoft-logo img {
    height: 30px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    margin-top: 40px;
    font-size: 13px;
}

.globosoft-branding {
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0.9;
}

.globosoft-text {
    font-size: 11px;
    letter-spacing: 1px;
    font-weight: 300;
    text-align: right;
}

.globosoft-text i {
    color: #fff;
    font-size: 10px;
}

.globosoft-divider {
    width: 1px;
    height: 35px;
    background: rgba(255,255,255,0.3);
}

.globosoft-logo {
    filter: brightness(0) invert(1);
    height: 32px;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Subscribe Form Refinement */
.subscribe-form {
    background: #fff !important;
    border-radius: 10px !important;
    padding: 5px !important;
    display: flex !important;
}

.subscribe-form input {
    background: transparent !important;
    color: #333 !important;
}

.subscribe-form input::placeholder {
    color: #999;
}

.btn-search {
    background: #C51F33 !important;
    border-radius: 8px !important;
}

/* Footer Column 4 Style Refinement */
.footer-col p {
    font-size: 16px !important;
    font-weight: 400 !important;
    margin-bottom: 15px !important;
    color: #fff !important;
    opacity: 1 !important;
    font-family: 'Poppins';
}

.subscribe-form {
    height: 45px !important;
}

.btn-search {
    font-size: 17px !important;
    padding: 13px 35px !important;
}

/* Footer Text Refinement */
.footer-col p {
    font-weight: 600;
    opacity: 1 !important;
    margin-bottom: 15px;
}

.map-box {
    border: 2px solid rgba(255, 255, 255, 0.1);
}

/* Utility Classes for Inner Pages */
.hero-inner {
    height: 40vh !important;
}

.hero-overlay {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
}

.section-padding {
    padding: 100px 0;
}

.section-padding-top {
    padding-top: 100px;
}

.section-padding-bottom {
    padding-bottom: 100px;
}

.bg-light-pink {
    background: #FCE4E6 !important;
}

.text-secondary {
    color: var(--secondary) !important;
}

.text-primary {
    color: var(--primary) !important;
}

.text-center {
    text-align: center !important;
}

.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

.w-100 {
    width: 100% !important;
}

.rounded-30 {
    border-radius: 30px !important;
}

.shadow-premium {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08) !important;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gap-60 {
    gap: 60px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.p-0 {
    padding: 0 !important;
}

.bg-white {
    background: #fff !important;
}

.max-700 {
    max-width: 700px !important;
}

/* Responsive Utility Updates */
@media (max-width: 992px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 {
        font-size: 48px;
    }

    .section-padding {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {

    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-inner {
        height: 30vh !important;
    }

    .inner-layout {
        flex-direction: column;
    }
}

.inner-layout {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

@media (max-width: 992px) {
    .blog-layout {
        grid-template-columns: 1fr !important;
    }
}

/* Sticky Header Styles */
header.sticky {
    background: #630606;
    padding: 0px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    position: fixed;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

/* Card & Grid Refinements */
.dest-card {
    border: none;
    transition: var(--transition);
}

.dest-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.dest-card-img img {
    transition: transform 0.6s ease;
}

.dest-card:hover .dest-card-img img {
    transform: scale(1.1);
}

.btn-view-all {
    transition: var(--transition);
    cursor: pointer;
}

.btn-view-all:hover {
    background: var(--secondary);
    transform: scale(1.05);
}

/* Blog Page Refinements */
.card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid #f0f0f0;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.blog-layout aside>div {
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.blog-layout aside>div:hover {
    transform: translateX(5px);
    background: #fff !important;
    border-color: var(--primary);
}

/* Badge Style */
.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary);
    color: #fff;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(197, 31, 51, 0.3);
    z-index: 5;
}

@media (max-width: 768px) {
    .experience-badge {
        position: static;
        margin-top: 20px;
        transform: none;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 992px) {
    .stat-bar-mobile {
        border-radius: 30px !important;
        grid-template-columns: repeat(2, 1fr) !important;
        padding: 40px 20px !important;
    }
}

/* Dark Navigation for White Pages */
header.dark-nav .nav-links a {
    color: #333 !important;
}

header.dark-nav .contact-info {
    color: #333 !important;
}

header.dark-nav .btn-plan {
    background: #721C24;
    color: var(--white);
    padding: 15px 35px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    border: none;
    box-shadow: 0 10px 20px rgba(114, 28, 36, 0.2);
}

header.dark-nav .logo-container {
    box-shadow: none;
    border: 1px solid #eee;
}


section.hero.hero-inner.hero-overlay.inner {
    height: 50vh !important;
}

/* Package Listing Redesign */
.filter-container {
    background: rgba(248, 249, 250, 0.8);
    backdrop-filter: blur(10px);
    padding: 15px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    border: none;
    background: transparent;
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: solid 1px #3333334d;
}

.filter-btn.active {
    background: var(--secondary);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(114, 28, 36, 0.2);
}

.package-card-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.package-card-v2 {
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.package-card-v2:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.pkg-img-v2 {
    height: 400px;
    position: relative;
    overflow: hidden;
}

.pkg-img-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.package-card-v2:hover .pkg-img-v2 img {
    transform: scale(1.1);
}

.pkg-badge-v2 {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--secondary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.pkg-content-v2 {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pkg-duration-v2 {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 15px;
}

.pkg-title-v2 {
    font-size: 28px;
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.pkg-footer-v2 {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
    margin-top: auto;
}

.pkg-price-v2 .label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

.pkg-price-v2 .amount {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 5px;
}

.pkg-price-v2 .amount span {
    font-size: 16px;
    opacity: 0.8;
}

.btn-detail-v2 {
    color: var(--secondary);
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-detail-v2:hover {
    gap: 15px;
}

/* Package Detail Page Updates */
.places-to-see {
    margin-top: 80px;
}

.places-tabs {
    display: flex;
    gap: 40px;
    border-bottom: 1px solid #eee;
    margin-bottom: 40px;
    overflow-x: auto;
    scrollbar-width: none;
}

.places-tabs::-webkit-scrollbar {
    display: none;
}

.place-tab {
    padding: 15px 0;
    font-weight: 700;
    color: var(--text-muted);
    cursor: pointer;
    position: relative;
    font-size: 18px;
    white-space: nowrap;
}

.place-tab.active {
    color: var(--secondary);
}

.place-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
}

.place-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: center;
}

.place-name {
    font-size: 42px;
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 20px;
}

.place-desc {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.8;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

@media (max-width: 992px) {
    .package-card-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .package-layout-grid {
        grid-template-columns: 1fr !important;
    }

    .sidebar-v2 {
        margin-top: 40px;
    }

    .sidebar-v2>div {
        position: static !important;
    }

    .place-content {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 768px) {
    .package-card-grid-v2 {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Flatpickr Custom Theme */
.flatpickr-calendar {
    background: #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid #f0f0f0;
    border-radius: 15px;
    padding: 10px;
    font-family: var(--font-main);
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.prevMonthDay.selected,
.flatpickr-day.nextMonthDay.selected,
.flatpickr-day.prevMonthDay.startRange,
.flatpickr-day.nextMonthDay.startRange,
.flatpickr-day.prevMonthDay.endRange,
.flatpickr-day.nextMonthDay.endRange {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
}

.flatpickr-months .flatpickr-month {
    color: var(--secondary);
    fill: var(--secondary);
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
    font-weight: 700;
}

.flatpickr-weekday {
    color: var(--text-muted);
    font-weight: 700;
}

section#packages {
    padding: 50px;
}

section.stats-section {
    padding: 50px;
}

section#destinations {
    padding: 50px;
}

section#international-packages {
    padding: 50px;
}

section#honeymoon-packages {
    padding: 50px;
}

section.services-section {
    padding: 50px;
}

section.testimonials-section {
    padding: 50px;
}

section.section-padding.tur {
    padding: 0;
    padding-bottom: 70px;
}

section.pt-0 {
    padding: 50px 50px 0px 50px;
}

.dest-slider-container {
    padding-top: 20px;
}


.testimonial-card h3 {
    font-weight: 500;
    font-size: 22px;
    padding-bottom: 10px;
}

h1.us {
    text-align: center;
    max-width: initial;
}

/* Contact Page Styles */
.hero-contact-bg {
    background-image: url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?auto=format&fit=crop&q=80&w=1200');
}

.contact-title {
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-desc {
    margin-bottom: 40px;
    color: var(--text-muted);
}

.contact-info-list {
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #FCE4E6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item-title {
    margin-bottom: 5px;
}

.contact-item-text {
    font-size: 14px;
    color: var(--text-muted);
}

.contact-card {
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: none;
}

.contact-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-input {
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #ddd;
    outline: none;
}

.contact-textarea {
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #ddd;
    outline: none;
    height: 150px;
}

.contact-submit {
    padding: 18px;
    justify-content: center;
    border: none;
    cursor: pointer;
}

.contact-map-container {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.map-iframe {
    border: 0;
    width: 100%;
    height: 100%;
}

/* About Page Styles */
.hero-about-bg {
    background-image: url('https://images.unsplash.com/photo-1542314831-068cd1dbfeeb?auto=format&fit=crop&q=80&w=1200');
}

.hero-subtitle-sm {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 14px;
    margin-bottom: 10px;
}

/* About Page - Story Section */
.about-story-grid {
    align-items: center;
}

.about-img-wrapper {
    position: relative;
}

.about-img-container {
    overflow: hidden;
    height: 500px;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-badge {
    bottom: -20px;
    right: -20px;
    padding: 30px 40px;
}

.about-badge-number {
    font-size: 48px;
    margin-bottom: 0;
    font-weight: 700;
}

.about-badge-text {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
}

.about-story-title {
    font-size: 48px;
    margin-bottom: 30px;
    line-height: 1.1;
    font-weight: 400;
}

.about-story-desc {
    font-size: 16px;
    color: #121314;
    line-height: 1.8;
    font-weight: 400;
    margin-bottom: 25px;
    font-family: 'Poppins';
}

.about-story-desc:last-child {
    margin-bottom: 0;
}

/* About Page - Stats Section */
.about-stats-section {
    padding: 0;
    margin-bottom: 50px;
}

.about-stats-container {
    padding: 80px 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 30px;
    box-shadow: 0 10px 40px rgba(114, 28, 36, 0.05);
}

.about-stat-number {
    font-size: 48px;
    color: var(--secondary);
    margin-bottom: 5px;
    font-weight: 800;
}

.about-stat-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #721C24;
    letter-spacing: 1px;
}

/* About Page - Why Choose Us */
.about-why-section {
    background: #fff;
}

.about-why-header {
    margin-bottom: 35px;
}

.about-why-title {
    font-size: 48px;
    font-weight: 700;
}

.about-why-grid {
    gap: 40px;
}

/* About Feature Cards */
.about-feature-card {
    padding: 60px 40px;
    text-align: center;
    border: none;
    background: #fff;
    box-shadow: 0 15px 45px rgb(0 0 0 / 11%);
    border-radius: 25px;
    border: solid 1px #0000001f;
}

.about-feature-icon-wrapper {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 30px;
}

.about-feature-icon-1 {
    color: #FF9800;
    filter: drop-shadow(0 0 10px rgba(255, 152, 0, 0.3));
}

.about-feature-icon-2 {
    color: #4CAF50;
    filter: drop-shadow(0 0 10px rgba(76, 175, 80, 0.3));
}

.about-feature-icon-3 {
    color: #2196F3;
    filter: drop-shadow(0 0 10px rgba(33, 150, 243, 0.3));
}

.about-feature-title {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #1A1A1A;
}

.about-feature-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
}

/* Fix for Inner Pages Hero Alignment */
.hero-inner h1,
.hero-inner h2,
.hero-inner h3,
.hero-inner p,
.hero-inner .hero-subtitle-sm {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Banner Backgrounds */
.hero-services-bg {
    background-image: url('https://images.unsplash.com/photo-1599839619722-39751411ea63?auto=format&fit=crop&q=80&w=1200');
}

.hero-packages-bg {
    background-image: url('https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?auto=format&fit=crop&q=80&w=1200');
}

.hero-blog-bg {
    background-image: url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?auto=format&fit=crop&q=80&w=1200');
}

.hero-blog-detail-bg {
    background-image: url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&q=80&w=1400');
}

/* General Utilities */
.mb-20 {
    margin-bottom: 20px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

/* Blog Listing Page Styles */
.blog-layout-grid {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 50px;
}

@media (max-width: 992px) {
    .blog-layout-grid {
        grid-template-columns: 1fr;
    }
}

.blog-main-feed {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.blog-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.blog-card-img-wrapper {
    height: 350px;
    overflow: hidden;
}

.blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img {
    transform: scale(1.05);
}

.blog-card-body {
    padding: 35px 40px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 500;
}

.blog-meta i {
    margin-right: 5px;
}

.blog-post-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
    line-height: 1.3;
}

.blog-post-excerpt {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Sidebar Styles */
.sidebar-widget {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.03);
    margin-bottom: 30px;
}

.sidebar-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a1a1a;
    position: relative;
    padding-bottom: 12px;
}

.sidebar-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.search-input-wrapper {
    display: flex;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 15px 20px;
    padding-right: 50px;
    border: 1px solid #eee;
    border-radius: 10px;
    outline: none;
    font-family: inherit;
    transition: border-color 0.3s;
}

.search-input:focus {
    border-color: var(--primary);
}

.search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--primary);
    font-size: 18px;
    cursor: pointer;
    padding: 10px;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 15px;
}

.category-list li:last-child {
    margin-bottom: 0;
}

.category-link {
    display: flex;
    justify-content: space-between;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
}

.category-link:hover {
    color: var(--primary);
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-link {
    background: #f8f9fa;
    color: var(--text-muted);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid #eee;
}

.tag-link:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

section.section-padding.about-why-section {
    padding-top: 0;
    padding-bottom: 80px;
}

/* Package Detail Page Styles */
.hero-package-detail {
    height: 50vh;
    background-image: url('https://images.unsplash.com/photo-1467269204594-9661b134dd2b?auto=format&fit=crop&q=80&w=1200');
}

.hero-package-content {
    text-align: center;
    max-width: 1400px;
    padding: 0 40px;
    margin: 0 auto;
}

.hero-package-badge {
    background: var(--primary);
    color: var(--white);
    padding: 8px 25px;
    border-radius: 30px;
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.hero-package-title {
    font-size: 64px;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 0;
}

.package-detail-section {
    background: #fff;
}

.package-layout-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
}

.overview-container {
    margin-bottom: 50px;
}

.section-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 30px;
}

.meta-bar {
    display: flex;
    gap: 30px;
    margin-bottom: 35px;
    background: #F9F9F9;
    padding: 25px 35px;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.meta-icon-wrapper {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.meta-icon {
    color: var(--primary);
}

.meta-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 700;
    display: block;
}

.meta-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}

.overview-text {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.8;
}

.places-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 35px;
}

.places-tabs {
    display: flex;
    gap: 40px;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 40px;
}

.place-tab {
    padding: 15px 0;
    font-weight: 700;
    color: var(--text-muted);
    cursor: pointer;
    position: relative;
    font-size: 16px;
    transition: var(--transition);
}

.place-tab.active {
    color: var(--secondary) !important;
}

.place-tab.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
}

.place-pane-content {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: flex-start;
}

.place-img-wrapper {
    height: 220px;
    overflow: hidden;
    background: #eee;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
}

.place-img-wrapper-no-shadow {
    height: 220px;
    overflow: hidden;
    background: #eee;
    border-radius: 20px;
}

.place-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.place-title {
    font-size: 28px;
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 15px;
}

.place-desc {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.8;
}

.gallery-section {
    margin-top: 80px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    height: 240px;
    border-radius: 15px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.booking-sidebar-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 35px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: sticky;
    top: 120px;
}

.booking-header {
    margin-bottom: 30px;
}

.booking-subtitle {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
}

.booking-price {
    font-size: 42px;
    margin: 10px 0;
    font-weight: 800;
    color: var(--dark);
}

.booking-price-unit {
    font-size: 15px;
    color: var(--text-muted);
    font-weight: 500;
}

.form-group-mb20 {
    margin-bottom: 20px;
}

.form-group-mb25 {
    margin-bottom: 25px;
}

.form-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
    color: var(--secondary);
}

.form-input,
.form-select {
    width: 100%;
    padding: 14px 18px;
    border-radius: 10px;
    border: 1px solid #eee;
    outline: none;
    background: #fdfdfd;
    font-family: inherit;
    font-size: 14px;
}

.form-select {
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23666%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22/%3E%3C/svg%3E');
    background-repeat: no-repeat;
    background-position: right 15px top 50%;
    background-size: 10px auto;
}

.booking-submit-btn {
    padding: 16px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    border: none;
    cursor: pointer;
}

.assistance-box {
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #FFF5F6;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #FCE4E6;
}

.assistance-icon {
    font-size: 18px;
    color: var(--primary);
}

.assistance-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--secondary);
}

.assistance-text {
    font-size: 11px;
    color: var(--text-muted);
}

h1.hero-package-title.euro {
    text-align: center;
    max-width: initial;
}

section#destinations\ one,
section#international-packages\ one,
section#honeymoon-packages\ one {
    padding-bottom: 0;
    padding-top: 10px;
}

section#destinations\ two,
section#international-packages\ two,
section#honeymoon-packages\ two {
    padding-top: 0;
}

.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: var(--secondary);
    margin-left: 15px;
}

/* --- Blog Detail Page Specific Styles --- */
.blog-detail-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 80px;
}

.article-content {
    font-size: 18px;
    line-height: 1.9;
    color: #444;
}

.article-lead {
    font-size: 22px;
    color: var(--secondary);
    font-weight: 500;
    margin-bottom: 40px;
    line-height: 1.6;
}

.article-image-container {
    margin: 50px 0;
}

.article-main-image {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.article-image-caption {
    font-size: 14px;
    color: var(--text-muted);
    text-align: center;
    margin-top: 15px;
}

.article-heading {
    font-size: 32px;
    color: var(--secondary);
    font-weight: 700;
    margin: 50px 0 25px;
}

.article-quote {
    margin: 50px 0;
    padding: 40px;
    background: #FDF4F5;
    border-left: 5px solid var(--primary);
    border-radius: 0 20px 20px 0;
    font-style: italic;
    font-size: 24px;
    color: var(--secondary);
    font-weight: 500;
}

.article-gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 50px 0;
}

.article-gallery-image {
    width: 100%;
    border-radius: 20px;
}

.article-share-section {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.share-links-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.share-label {
    font-weight: 700;
    color: var(--secondary);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.share-icons {
    display: flex;
    gap: 10px;
}

.share-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    transition: 0.3s;
}

.share-icon:hover {
    background: var(--secondary);
    color: #fff;
}

.article-tags {
    display: flex;
    gap: 10px;
}

.tag-pill {
    background: #f5f5f5;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

/* Sidebar Specific Styles */
.sidebar-sticky-wrapper {
    position: sticky;
    top: 120px;
}

.sidebar-author-card {
    background: #F9F9F9;
    padding: 35px;
    border-radius: 30px;
    margin-bottom: 40px;
    text-align: center;
}

.author-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.author-name {
    font-size: 20px;
    color: var(--secondary);
    margin-bottom: 10px;
}

.author-bio {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
}

.author-link {
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
}

.author-link i {
    font-size: 12px;
    margin-left: 5px;
}

.recent-posts-title {
    font-size: 22px;
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 25px;
}

.recent-posts-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.recent-post-item {
    display: flex;
    gap: 15px;
    text-decoration: none;
}

.recent-post-item:hover .recent-post-title {
    color: var(--primary);
}

.recent-post-img-wrapper {
    min-width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
}

.recent-post-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.recent-post-item:hover .recent-post-img {
    transform: scale(1.1);
}

.recent-post-title {
    font-size: 15px;
    color: var(--secondary);
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 5px;
    transition: var(--transition);
}

.recent-post-date {
    font-size: 12px;
    color: var(--text-muted);
}