@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&display=swap');

:root {
    --primary-orange: rgba(242, 127, 12, 1);
    --primary-orange-hover: #d47a00;
    --primary-dark: #1E5A96;
    --dark-teal: #1E5A96;
    --dark-teal-light: #004a6e;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --bg-light: #f9f9f9;
    --font-main: 'Cairo', sans-serif;
    --font-heading: 'Cairo', sans-serif;
    --transition: all 0.3s ease;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    display: block;
}

/* .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
} */

.d-flex {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

.align-center {
    align-items: center;
}

.btn {
    display: inline-block;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    padding: 8px 24px;
    gap: 10px;
    border-radius: 10px;
}

.btn-primary {
    background-color: var(--primary-dark);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
}

.btn-pill {
    background-color: transparent;
    border: 1px solid #ddd;
    color: var(--text-dark);
    border-radius: 50px;
    padding: 10px 25px;
    font-size: 0.9rem;
    font-weight: 500;
}

.btn-pill:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
}

/* Top Bar */
.top-bar {
    background-color: var(--dark-teal);
    color: var(--white);
    padding: 12px 0;
    font-size: 0.85rem;
}

.top-info span {
    font-weight: 400;
}

.top-actions {
    font-weight: 400;
    gap: 22px;
}

.lang-selector, .currency-selector {
    cursor: pointer;
    transition: var(--transition);
}

.lang-selector:hover, .currency-selector:hover {
    color: var(--primary-orange);
}
.top-social {
    display: flex;
    gap: 15px;
}

.top-social a {
    width: 22px;
    height: 22px;
    background: rgba(255, 255, 255, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
}
.top-social a i {
    color: rgba(6, 63, 92, 1);
}
.top-social a:hover {
    background: var(--primary-orange);
    color: var(--white);
}


/* Header */
.main-header {
    background-color: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo h1 {
    font-size: 1.8rem;
    letter-spacing: -1px;
    white-space: nowrap;
    color: var(--dark-teal);
}

.nav-links ul {
    display: flex;
}

.nav-links li {
    margin: 0 12px;
}

.nav-links a {
    font-weight: 400;
    color: var(--text-light);
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-links a:hover, .nav-links a.active {
    color: var(--dark-teal);
    font-weight: 600;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--dark-teal);
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 80vh;
    min-height: 500px;
    /* Background removed, handled by img */
    overflow: hidden;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.hero-section .swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.hero-content h1 {
    font-family: 'Cormorant Garamond', sans-serif;
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); */
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.hero-nav {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 10;
    pointer-events: none; /* Allow clicking through empty space */
}

.hero-nav button {
    pointer-events: auto; /* Re-enable pointer events for buttons */
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid var(--white);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
}

.hero-nav button:hover {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
}

.section-padding {
    padding: 80px 0;
}

/* Global Section Refinements */
.title-underline {
    width: 285px;
    height: 24px;
    position: absolute;
    background: url(/img/shape.svg);
    bottom: 0;
}

.title-underline-left {
    width: 60px;
    height: 3px;
    background: var(--primary-orange);
    margin: 15px 0 25px;
    position: relative;
}

.title-underline-left::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 10px;
    background: rgba(242, 140, 0, 0.1);
    left: 0;
    bottom: -5px;
    border-radius: 50%;
}

.swiper-horizontal {
    padding: 10px 0;
}
/* Swiper Navigation Custom */
.swiper-nav-buttons {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-top: 40px;
}

.swiper-nav-buttons .swiper-button-prev,
.swiper-nav-buttons .swiper-button-next {
    position: static;
    width: 45px;
    height: 45px;
    border: 1px solid #ddd;
    border-radius: 50%;
    color: var(--dark-teal);
    margin: 0;
}

.swiper-nav-buttons .swiper-button-prev::after,
.swiper-nav-buttons .swiper-button-next::after {
    font-size: 1.1rem;
}

.swiper-nav-buttons .swiper-button-prev:hover,
.swiper-nav-buttons .swiper-button-next:hover {
    border-color: rgba(30, 90, 150, 1);
    color: rgba(30, 90, 150, 1);
}

/* Why Choose Us? V2 */
.why-choose-us {
    position: relative;
    background-color: #EEF6FE;
}
.features-grid-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.feature-image-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 450px;
    box-shadow: var(--shadow);
}

.feature-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.feature-overlay-v2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px 16px;
    background: linear-gradient(to top, var(--primary-orange) 0%, rgba(242, 140, 0, 0.7) 25%, transparent 50%);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    transition: var(--transition);
}
.feature-overlay-v2:hover {
    background: linear-gradient(to top, var(--primary-orange) 0%, rgba(242, 140, 0, 0.7) 40%, transparent 90%);
}

.feature-overlay-v2 h3 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 20px;
    line-height: 99.21%;
    color: #FFFFFF;
    margin-bottom: 10px;
    width: 78%;
}

.feature-overlay-v2 p {
    font-family: var(--font-heading);
    font-weight: 450;
    font-size: 14px;
    line-height: 99.21%;
    color: rgba(255, 255, 255, 0.7);
}

.feature-image-card:hover img {
    transform: scale(1.05);
}

.bg-light {
    background-color: var(--bg-light);
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.mt-40 {
    margin-top: 40px;
}

.btn-sm {
    padding: 8px 15px;
    font-size: 0.85rem;
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* Section Header & Slider Nav */
.section-header {
    margin-bottom: 40px;
}

.gallery-section{
    background-color: #FFF6EE;
}
/* Global Navigation Styles for Swiper */
.dest-prev, .dest-next, .pk-prev, .pk-next, .blog-prev, .blog-next, .gallery-prev, .gallery-next, .google-prev, .google-next, .trip-prev, .trip-next {
    position: static !important;
    width: 45px !important;
    height: 45px !important;
    background: var(--dark-teal);
    border: 1px solid #eee;
    border-radius: 50%;
    color: var(--white) !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    margin: 0 !important;
    transition: var(--transition);
}

.dest-prev::after, .dest-next::after, .pk-prev::after, .pk-next::after, .blog-prev::after, .blog-next::after, .gallery-prev::after, .gallery-next::after, .google-prev::after, .google-next::after, .trip-prev::after, .trip-next::after {
    font-family: swiper-icons;
    font-size: 1.1rem !important;
    font-weight: 900;
}

.dest-prev::after, .pk-prev::after, .blog-prev::after, .gallery-prev::after, .google-prev::after, .trip-prev::after {
    content: 'prev';
}

.dest-next::after, .pk-next::after, .blog-next::after, .gallery-next::after, .google-next::after, .trip-next::after {
    content: 'next';
}

.dest-prev:hover, .dest-next:hover, .pk-prev:hover, .pk-next:hover, .blog-prev:hover, .blog-next:hover, .gallery-prev:hover, .gallery-next:hover, .google-prev:hover, .google-next:hover, .trip-prev:hover, .trip-next:hover {
    background: var(--white);
    color: rgba(30, 90, 150, 1) !important;
    border-color: rgba(30, 90, 150, 1);
    transform: scale(1.05);
}

/* Positioning for header navs */
.swiper-nav-buttons .dest-prev, .swiper-nav-buttons .dest-next, 
.swiper-nav-buttons .pk-prev, .swiper-nav-buttons .pk-next,
.swiper-nav-buttons .blog-prev, .swiper-nav-buttons .blog-next {
    /* These are inside a d-flex container in the header */
    position: relative !important;
}

/* Absolute Positioning for Gallery and Reviews (Sides of Slider) */
.gallery-section .swiper, .reviews-section .swiper {
    position: relative;
}

.gallery-prev, .gallery-next, .google-prev, .google-next, .trip-prev, .trip-next {
    position: absolute !important;
    top: 50%;
    /* transform: translateY(-50%); */
    z-index: 10;
}

/* Specific side offsets */
.gallery-prev, .google-prev, .trip-prev { left: 10px; }
.gallery-next, .google-next, .trip-next { right: 10px; }

@media (max-width: 1300px) {
    .gallery-prev, .google-prev, .trip-prev { left: 10px; }
    .gallery-next, .google-next, .trip-next { right: 10px; }
}

/* Destinations Section V2 */
.dest-card-v2 {
    position: relative;
    height: 410px;
    border-radius: 16px;
    overflow: hidden;
}

.dest-card-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.dest-card-v2:hover img {
    transform: scale(1.05);
}
.dest-overlay-v2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(181.01deg, rgba(0, 0, 0, 0) 0.87%, rgba(0, 0, 0, 0.35) 48.99%);
    transition: var(--transition);
    padding: 40px 22px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-end;
    gap: 10px;
}
.dest-info-v2 {
    color: var(--white);
}

.dest-info-v2 h3 {
    font-family: Cormorant Garamond;
    font-weight: 600;
    font-size: 32px;
    line-height: 100%;
    vertical-align: middle;
    color: #FFFFFF;
    margin-bottom: 30px;
}

.dest-info-v2 span {
    font-size: 0.85rem;
    opacity: 0.9;
}

.btn-dest-packages {
    width: 100%;
    border-radius: 4px;
    background: var(--primary-orange);
    padding: 8px;
    text-decoration: none;
    transition: var(--transition);

    font-family: var(--font-heading);
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 23px;
    text-align: center;
    color: #FFFFFF;
}

.btn-dest-packages:hover {
    background: var(--primary-orange-hover);
}

/* Packages Section V2 */
.package-card-v2 {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0px 4px 7px 0px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.package-card-v2:hover {
    box-shadow: 0px 4px 7px 0px rgba(0, 0, 0, 0.15);
}
.pk-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: 22px 22px 0 0;
}

.pk-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.pk-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #e63946;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 1;
}

.pk-tag {
    background: rgba(6, 63, 92, 0.1);
    color: var(--text-dark);
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 10px;
}

.pk-tag i {
    color: var(--primary-orange);
    margin-right: 5px;
}

.pk-content-v2 {
    padding: 16px 18px 18px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pk-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.pk-content-v2 h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.15rem;
    line-height: 1.3;
    color: #383838;
    margin: 0;
    flex: 1;
    min-width: 0;
}

.pk-content-v2 h3 a {
    color: inherit;
    text-decoration: none;
}

.pk-content-v2 h3 a:hover {
    color: var(--primary-dark);
}

.pk-rating {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 0.9rem;
    color: #e67e22;
    flex-shrink: 0;
}

.pk-rating i {
    font-size: 0.85rem;
}

.pk-content-v2 .package-text {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 0.8rem;
    line-height: 1.4;
    color: rgba(0, 0, 0, 0.7);
    height: 36px;
    overflow: hidden;
}

.pk-meta-v2 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 0.8rem;
    line-height: 1.3;
    color: rgba(0, 0, 0, 0.75);
}

.pk-meta-v2 .pk-location i {
    margin-right: 4px;
    color: var(--text-dark);
}

.pk-meta-v2 .pk-sep {
    opacity: 0.6;
    font-size: 0.75rem;
}

.pk-footer-v2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 12px;
    margin-top: auto;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.btn-book-now {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1E5A96;
    color: #fff !important;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.btn-book-now:hover {
    background: #164a7a;
    color: #fff !important;
}

.btn-book-now i {
    font-size: 0.75rem;
}

.pk-price-v2 {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.pk-footer-v2 .price-label {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 0.7rem;
    line-height: 1.2;
    color: rgba(0, 0, 0, 0.6);
    text-transform: lowercase;
}

.pk-footer-v2 .price-value {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.2;
    color: #063F5C;
}

.btn-orange {
    background: rgba(30, 90, 150, 1);
    color: var(--white);
    border-radius: 10px;
    padding: 16px 24px;
    font-family: Cormorant Garamond;
    font-weight: 700;
    font-size: 18px;
    line-height: 130%;
    text-align: center;
    vertical-align: middle;
}

.btn-orange:hover {
    opacity: 0.8;
    background: rgba(30, 90, 150, 1);
    color: var(--white);
}

.btn-outline-v2 {
    display: inline-block;
    border: 1px solid #ddd;
    color: var(--text-dark);
    border-radius: 50px;
    padding: 12px 40px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline-v2:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
}

.package-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.package-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-orange);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.package-body {
    padding: 25px;
}

.package-body h3 {
    color: var(--dark-teal);
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.package-body p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.package-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 0.85rem;
}

.package-meta .price {
    color: var(--primary-orange);
}

.package-meta .price strong {
    font-size: 1.2rem;
}


/* Gallery Section Styles */
.gallery-section {
    background-color: #fff;
    padding-bottom: 80px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.gallery-item img {
    width: 100%;
    height: 185px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 991px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        height: auto;
        grid-auto-rows: 300px;
    }
    .gallery-col-4, .gallery-col-5 {
        grid-column: span 1;
    }
    .gallery-col-2, .gallery-col-4 {
        height: 100%; /* In grid cell */
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }
    .gallery-col {
        height: 300px;
    }
    .gallery-col-2, .gallery-col-4 {
         height: 600px;
    }
}

/* FAQ Section V2 */
.faq-grid-v2 {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.faq-collage {
    position: relative;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(12, 1fr);
    height: 500px;
}

.collage-main {
    grid-column: 1 / 10;
    grid-row: 1 / 11;
    position: relative;
    z-index: 1;
}

.collage-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.collage-sub {
    grid-column: 6 / 13;
    grid-row: 5 / 13;
    position: relative;
    z-index: 2;
}

.collage-sub img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    border: 8px solid var(--white);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.badge-google, .badge-tripadvisor {
    position: absolute;
    background: var(--dark-teal);
    color: var(--white);
    padding: 10px 15px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    z-index: 3;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.badge-google {
    bottom: 20px;
    left: -20px;
}

.badge-tripadvisor {
    top: 20px;
    right: -20px;
}

.badge-google img, .badge-tripadvisor img {
    width: 20px;
    height: 20px;
}

.accordion-v2 {
    margin-top: 30px;
}

.accordion-item-v2 {
    border: 1px solid rgba(13, 24, 81, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 1);
    margin-bottom: 20px;
    overflow: hidden;
}

.accordion-header-v2 {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.accordion-header-v2 h3 {
    font-size: 1rem;
    color: #444;
    font-weight: 600;
}

.accordion-header-v2 .icon {
    font-size: 0.9rem;
    color: #333;
}

.accordion-body-v2 {
    padding-bottom: 20px;
    display: none;
}

.accordion-item-v2.active .accordion-body-v2 {
    display: block;
}

.accordion-item-v2.active .accordion-header-v2 h3 {
    color: var(--text-dark);
}

.accordion-item-v2.active {
    background: #f4f4f4;
    border-radius: 20px;
    padding: 10px 10px 0 20px;
    border-bottom: none;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

.accordion-item-v2.active .accordion-header-v2 {
    padding-top: 0;
}

.accordion-item-v2::after {
    content: '';
    display: block;
    width: 100%;
    height: 10px;
    background: var(--dark-teal);
}

.accordion-item-v2.active::after {
    padding-bottom: 0;
}

/* Reviews Section V2 */
.platform-row-v2 {
    margin-top: 40px;
}

.platform-header-v2 {
    margin-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
}

.platform-logo-v2 {
    height: 35px;
}

.review-card-v2 {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #eee;
    height: 100%;
    transition: var(--transition);
}

.review-card-v2:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-color: #ddd;
}

.rev-header {
    margin-bottom: 20px;
    gap: 15px;
}

.rev-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.rev-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rev-user-info h4 {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.verified-badge {
    font-size: 0.9rem;
}

.rev-stars {
    font-size: 0.85rem;
}

.rev-content p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.read-more {
    color: var(--text-dark);
    font-weight: 700;
    text-decoration: underline;
    margin-left: 5px;
}

.mt-60 {
    margin-top: 60px;
}

/* Swiper Navigation for Reviews */
.google-reviews-swiper, .tripadvisor-reviews-swiper {
    padding: 10px 5px 40px;
    position: relative;
}

.google-prev, .google-next, .trip-prev, .trip-next {
    width: 40px !important;
    height: 40px !important;
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 50%;
    color: var(--text-dark) !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.google-prev::after, .google-next::after, .trip-prev::after, .trip-next::after {
    font-size: 1rem !important;
}

.google-prev:hover, .google-next:hover, .trip-prev:hover, .trip-next:hover {
    background: var(--primary-orange);
    color: var(--white) !important;
    border-color: var(--primary-orange);
}

/* Reviews Section V3 - Client words (design only) */
.reviews-section-v3 {
    background: #F4F7FC;
}

.reviews-section-v3 .reviews-section-header {
    text-align: center;
    margin-bottom: 40px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.reviews-section-v3 .reviews-section-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: clamp(26px, 3.5vw, 36px);
    line-height: 1.25;
    color: #264669;
    margin-bottom: 12px;
}

.reviews-section-v3 .reviews-section-subtitle {
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

.reviews-section-v3 .reviews-slider-wrap .google-reviews-swiper {
    padding: 0 0 20px;
}

/* About Us Page Redesign */
.section-title-serif {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.2;
}

.about-text {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}

.trust-badge-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    border: 1px solid #eee;
    padding: 10px 20px;
    border-radius: 10px;
    width: 200px;
}

.badge-icon {
    font-size: 24px;
}

.tp-green { color: #00b67a; }
.ta-green { color: #34e0a1; }

.badge-text strong {
    display: block;
    font-size: 14px;
    color: rgba(62, 217, 157, 1); /* Brand Blue */
}

.badge-text small {
    display: block;
    color: #666;
}

.stars-sm {
    font-size: 10px;
}

/* Our Values Section */
.bg-light-blue {
    background-color: #F0F8FF;
}

.our-values-section {
    padding: 80px 0;
}

.value-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.value-card p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(0, 0, 0, 1);
    margin-bottom: 0;
}
.reviews-section-v3 .review-card-v3 {
    background: #FFFFFF;
    padding: 26px 22px 22px;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    height: 100%;
    position: relative;
}

.review-card-quote-icon {
    position: absolute;
    top: 18px;
    right: 22px;
    font-family: Georgia, serif;
    font-size: 56px;
    line-height: 1;
    color: #DDDDDD;
    font-weight: 700;
}

.reviews-section-v3 .review-card-head {
    margin-bottom: 16px;
    gap: 12px;
}

.reviews-section-v3 .review-card-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.reviews-section-v3 .review-card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviews-section-v3 .review-card-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #333333;
    margin: 0 0 2px 0;
}

.reviews-section-v3 .review-card-role {
    font-size: 0.8rem;
    color: #888888;
}

.reviews-section-v3 .review-card-text p {
    font-size: 0.9rem;
    color: #555555;
    line-height: 1.6;
    margin: 0 0 14px 0;
}

.reviews-section-v3 .review-card-stars {
    color: #EF5411;
    font-size: 14px;
}

.reviews-section-v3 .reviews-nav-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 28px;
}

.reviews-section-v3 .google-prev,
.reviews-section-v3 .google-next {
    position: relative !important;
    top: auto !important;
    transform: none !important;
    left: auto !important;
    right: auto !important;
    width: 44px !important;
    height: 44px !important;
    margin: 0 !important;
}

.reviews-section-v3 .google-prev {
    background: transparent !important;
    border: 2px solid #6A97D6 !important;
    color: #6A97D6 !important;
    box-shadow: none !important;
}

.reviews-section-v3 .google-next {
    background: #264669 !important;
    border: 2px solid #264669 !important;
    color: #FFFFFF !important;
    box-shadow: none !important;
}

.reviews-section-v3 .google-prev::after,
.reviews-section-v3 .google-next::after {
    font-size: 0.9rem !important;
}

.reviews-section-v3 .reviews-pagination {
    position: relative !important;
    bottom: auto !important;
    display: flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
}

.reviews-section-v3 .reviews-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #D0D0D0;
    opacity: 1;
    margin: 0 !important;
}

.reviews-section-v3 .reviews-pagination .swiper-pagination-bullet-active {
    width: 22px;
    border-radius: 4px;
    background: #264669;
}

/* Blog Section V2 */
.blog-swiper {
    padding: 20px 5px;
}

.blog-card-v2 {
    background: var(--white);
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(13, 24, 81, 0.2);
    height: 100%;
}

.blog-img-v2 {
    height: 250px;
    border-radius: 15px;
    margin: 10px;
    overflow: hidden;
}

.blog-img-v2 img {
    width: 100%;
    height: 208px;
    object-fit: cover;
}

.blog-content-v2 {
    padding: 20px 10px 35px;
}

.blog-content-v2 h3 {
    font-size: 1.35rem;
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: 15px;
    font-family: var(--font-heading);
    font-weight: 700;
}

.blog-content-v2 .blog-content-v2-desc {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.6;
}

.blog-prev, .blog-next {
    color: var(--dark-teal) !important;
    width: 50px !important;
    height: 50px !important;
    border: 1px solid #ddd;
    border-radius: 50%;
}

/* Blog Section V3 - Our Latest Blog (Figma specs) */
.blog-section-v3 {
    background: #EEF6FE;
}

.blog-section-v3 .container {
    max-width: 1250px;
}

.blog-section-v3-header {
    text-align: center;
    margin-bottom: 24px;
    max-width: 716px;
    margin-left: auto;
    margin-right: auto;
}

.blog-section-v3-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: clamp(26px, 3.5vw, 36px);
    line-height: 1.25;
    color: #1E5A96;
    margin-bottom: 16px;
}

.blog-section-v3-subtitle {
    font-size: 0.95rem;
    color: #363636;
    line-height: 1.6;
    margin: 0;
}

.blog-grid-v3 {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 56px;
}

.blog-grid-v3-main {
    flex: 1;
    min-width: 280px;
}

.blog-grid-v3-side {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media (max-width: 900px) {
    .blog-grid-v3 {
        flex-direction: column;
    }
}

.blog-card-v3 {
    display: block;
    background: #FFFFFF;
    overflow: hidden;
    height: 100%;
    transition: var(--transition);
    border: 1px solid #E7E7E7;
    border-radius: 20px;
}

.blog-card-v3--large {
    padding: 21px;
}

.blog-card-v3:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.blog-card-v3-img-wrap {
    position: relative;
    overflow: hidden;
}

.blog-card-v3--large .blog-card-v3-img-wrap {
    aspect-ratio: 454/259;
    margin-bottom: 0;
}

.blog-card-v3--large .blog-card-v3-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.blog-card-v3-tag {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: #1E5A96;
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 4px;
}

.blog-card-v3--small .blog-card-v3-tag {
    position: static;
    display: inline-block;
    margin-bottom: 8px;
    width: fit-content;
}

.blog-card-v3-body {
    padding: 0;
}

.blog-card-v3--large .blog-card-v3-body {
    padding: 14px 0 0 0;
}

.blog-card-v3-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #020615;
    margin: 0 0 14px 0;
    line-height: 1.35;
}

.blog-card-v3--large .blog-card-v3-title {
    font-size: 1.25rem;
}

.blog-card-v3-title a,
.blog-card-v3:hover .blog-card-v3-title {
    color: inherit;
}

.blog-card-v3-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.8rem;
    color: #353D44;
}

.blog-card-v3-meta i {
    margin-right: 6px;
}

/* Small card: image left, body right */
.blog-card-v3--small {
    display: flex;
    flex-direction: row;
    padding: 21px;
}

.blog-card-v3--small .blog-card-v3-img-wrap {
    flex: 0 0 262px;
    min-width: 0;
    min-height: 170px;
}

.blog-card-v3--small .blog-card-v3-img-wrap img {
    width: 100%;
    height: 100%;
    min-height: 170px;
    object-fit: cover;
    border-radius: 12px;
}

.blog-card-v3--small .blog-card-v3-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 0 0 12px;
}

.blog-section-v3-cta {
    text-align: center;
    font-size: 0.95rem;
    color: #363636;
    margin: 0;
}

.blog-section-v3-cta a {
    color: #1E5A96;
    text-decoration: underline;
}

.blog-section-v3-cta a:hover {
    color: #153a6b;
}

/* Member / Trusted Partners Section (Figma) */
.member-section-container {
    max-width: 1216px;
}

.member-section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 32px;
}

.member-section-heading {
    max-width: 716px;
    margin-bottom: 24px;
}

.member-section-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: clamp(26px, 3.5vw, 36px);
    line-height: 1.25;
    color: #1E5A96;
    margin-bottom: 16px;
}

.member-section-subtitle {
    font-size: 0.95rem;
    color: #363636;
    line-height: 1.6;
    margin: 0;
}

.member-section-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #EAEAEA;
    border-radius: 9999px;
    padding: 9px 25px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #1E5A96;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.member-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.member-card {
    flex: 1;
    min-width: 260px;
    max-width: 280px;
    background: #FFFFFF;
    border-top: 3px solid var(--member-border, #00529B);
    border-radius: 12px;
    padding: 28px 24px 24px;
    box-shadow: 0 3.87px 24.2px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.member-card-logo {
    width: 112px;
    height: 112px;
    border-radius: 50%;
    background: #FFFFFF;
    overflow: hidden;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-card-logo img {
    width: 96px;
    height: 96px;
    object-fit: contain;
}

.member-card-logo-placeholder {
    font-size: 2rem;
    font-weight: 700;
    color: var(--member-org-color);
}

.member-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0E172A;
    margin: 0 0 12px 0;
}

.member-card-org {
    font-size: 0.95rem;
    color: var(--member-org-color);
    margin: 0 0 12px 0;
}

.member-card-divider {
    width: 100%;
    border: none;
    border-top: 1px solid #1E5A96;
    margin: 0 0 19px 0;
}

.member-card-badge {
    background: var(--member-badge-bg);
    border: 1px solid #E9E9E9;
    border-radius: 4px;
    padding: 5px 9px;
    font-size: 0.8rem;
    color: var(--member-org-color);
}

@media (max-width: 900px) {
    .member-cards {
        flex-direction: column;
        align-items: center;
    }
    .member-card {
        max-width: 100%;
    }
}

/* Callback / Request form section (Figma) */
.callback-section-container {
    max-width: 1250px;
}

.callback-section-header {
    margin-bottom: 40px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.callback-section-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: clamp(26px, 3.5vw, 36px);
    line-height: 1.25;
    color: #1E5A96;
    margin-bottom: 16px;
}

.callback-section-subtitle {
    font-size: 0.95rem;
    color: #363636;
    line-height: 1.6;
    margin: 0;
}

.callback-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.callback-form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.callback-field {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.callback-field--half {
    flex: 1;
    min-width: 280px;
}

.callback-field--third {
    flex: 1;
    min-width: 200px;
}

.callback-field--full {
    flex: 1 1 100%;
}

.callback-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #000000;
}

.callback-asterisk {
    color: #1E5A96;
}

.callback-input,
.callback-textarea {
    width: 100%;
    background: #FFFFFF;
    border: 1px solid #D0D5DD;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.95rem;
    color: #363636;
    font-family: inherit;
    transition: var(--transition);
}

.callback-input {
    height: 54px;
}

.callback-input::placeholder,
.callback-textarea::placeholder {
    color: #363636;
}

.callback-input:focus,
.callback-textarea:focus {
    outline: none;
    border-color: #1E5A96;
}

.callback-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.callback-input-wrap .callback-input {
    padding-right: 48px;
}

.callback-input-icon {
    position: absolute;
    right: 16px;
    color: #8F9BB3;
    font-size: 1rem;
    pointer-events: none;
}

.callback-textarea {
    min-height: 112px;
    resize: vertical;
}

.callback-stepper {
    display: flex;
    align-items: center;
    gap: 0;
    background: #FFFFFF;
    border: 1px solid #D0D5DD;
    border-radius: 8px;
    padding: 12px 16px;
    height: 45px;
}

.callback-stepper-btn {
    width: 20px;
    height: 20px;
    border: none;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
    flex-shrink: 0;
    transition: var(--transition);
}

.callback-stepper-minus {
    background: #BADBFF;
    color: #FFFFFF;
}

.callback-stepper-plus {
    background: #1E5A96;
    color: #FFFFFF;
}

.callback-stepper-plus:hover {
    background: #153a6b;
}

.callback-stepper-input {
    flex: 1;
    min-width: 0;
    border: none;
    background: transparent;
    font-size: 0.95rem;
    color: #344054;
    text-align: center;
    -moz-appearance: textfield;
}

.callback-stepper-input::-webkit-outer-spin-button,
.callback-stepper-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.callback-form-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-top: 8px;
}

.callback-submit {
    background: #1E5A96;
    color: #FFFFFF;
    border: none;
    border-radius: 16px;
    padding: 16px 24px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.callback-submit:hover {
    background: #153a6b;
}

@media (max-width: 768px) {
    .callback-field--half,
    .callback-field--third {
        min-width: 100%;
    }
}

.blog-prev::after, .blog-next::after {
    font-size: 1.2rem !important;
}

.blog-prev:hover, .blog-next:hover {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    color: var(--white) !important;
}

/* Gallery Section V2 */
.gallery-swiper {
    padding: 40px 0;
    /* overflow: visible !important; */
}

.gallery-card-v2 {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    height: 450px;
    transition: transform 0.4s ease;
}

.gallery-card-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-card-v2:hover {
    transform: translateY(-10px);
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 2px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-card-v2:hover .play-overlay {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    transform: translate(-50%, -50%) scale(1.1);
}

.gallery-nav-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.gallery-nav-wrap .swiper-button-prev,
.gallery-nav-wrap .swiper-button-next {
    position: static !important;
    margin: 0;
    width: 45px;
    height: 45px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    color: var(--dark-teal) !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-nav-wrap .swiper-button-prev::after,
.gallery-nav-wrap .swiper-button-next::after {
    font-size: 1rem !important;
    font-weight: bold;
}

.gallery-nav-wrap .swiper-pagination {
    position: static;
    width: auto;
    display: flex;
    gap: 8px;
}

.gallery-nav-wrap .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #D9D9D9;
    opacity: 1;
    margin: 0 !important;
    transition: all 0.3s ease;
}

.gallery-nav-wrap .swiper-pagination-bullet-active {
    background: rgba(30, 90, 150, 1);
    width: 25px;
    border-radius: 5px;
}

.gallery-prev::after, .gallery-next::after {
    font-size: 1rem !important;
}

/* Footer */
.main-footer {
    background: var(--dark-teal);
    color: var(--white);
    padding: 80px 0 0;
    border-radius: 19px 19px 0 0;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 60px;
    position: relative;
    z-index: 1;
}

.footer-rating {
    gap: 15px;
    margin-top: 25px;
}

.rating-box {
    background: var(--white);
    border-radius: 50px;
    padding: 8px 18px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.rating-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.rating-box img {
    width: 88px;
    height: 28px;
    object-fit: cover;
}
.rating-box.trip-box img {
    width: fit-content;
}

.footer-links h3, .footer-contact h3, .footer-newsletter h3 {
    font-size: 24px;
    margin-bottom: 25px;
    letter-spacing: 1px;
    font-weight: 700;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 16px;
    font-weight: 400;
}

.footer-links a:hover {
    opacity: 0.5;
    color: var(--white);
}

.footer-contact p {
    margin-bottom: 15px;
    opacity: 0.8;
    font-size: 0.9rem;
}

.footer-contact i {
    background: rgba(38, 45, 40, 1);
    border-radius: 20px;
    padding: 12px;
    color: #fff;
}
.footer-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}
.footer-contact .contact-item .content {
    display: flex;
    flex-direction: column;
}
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer-social a {
    width: 39px;
    height: 39px;
    background: rgba(38, 45, 40, 1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
}
.footer-social a i {
    color: rgba(254, 254, 255, 1);
}
.footer-social a:hover {
    background: var(--primary-orange);
    color: var(--white);
}

.footer-selectors .lang-selector, 
.footer-selectors .currency-selector {
    color: var(--white);
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: none;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0;
}
.footer_map {
    width: 342px;
    height: 282px;
    object-fit: cover;
    opacity: 20%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 0;
}

.newsletter-form {
    display: flex;
    align-items: center;
}
.newsletter-form input {
    background: #fff;
    border-radius: 5px 0 0 5px;
    padding: 16px;
    font-size: 14px !important;
    font-weight: 400;
    line-height: 20px;
    text-align: left;
    color: #000 !important;
    padding-left: 16px !important;
    border: 0;
    height: 50px;
}
.newsletter-form button {
    background: rgba(0, 0, 0, 1);
    padding: 16px;
    border-radius: 0 5px 5px 0;
    border: 0;
    color: #fff;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.newsletter-form button:hover {
    background: var(--primary-orange);
}
/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 2000;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #128c7e;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        border-top: 1px solid #f0f0f0;
    }

    .nav-links.active {
        display: block;
        animation: slideDown 0.3s ease-out;
    }

    .nav-links ul {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .nav-links li {
        margin: 10px 0;
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 10px;
        font-size: 1.1rem;
    }

    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }
    .mobile-toggle {
        display: block;
    }
    .header-cta {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .faq-container {
        flex-direction: column;
    }
    .top-bar .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    .top-info span {
        margin: 0 10px;
    }
}

.section-title h2 {
    color: var(--dark-teal);
    position: relative;
    margin-bottom: 20px;
    font-family: 'Cormorant Garamond', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 42px;
    line-height: 40px;
    text-transform: capitalize;
}
.section-title p {
    font-family: 'Cairo', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 19px;
    line-height: 150%;
    color: #363636;
    margin-bottom: 40px;
}

/* Packages Page Styles */
.packages-hero {
    height: 620px;
    position: relative;
    background: url('../img/why_choose_us_1.webp') no-repeat center center; /* Default background */
    background-size: cover;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: center;
}

.packages-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(21, 21, 21, 0) -29.37%, rgba(21, 21, 21, 0.7) 88.98%);
}

.packages-hero .hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.packages-hero h1 {
    font-weight: 700;
    font-size: 66px;
    line-height: 100%;
    text-align: center;
    vertical-align: middle;
    font-family: 'Cormorant Garamond', serif;
}

.packages-hero p {
    font-weight: 700;
    font-size: 20px;
    line-height: 160%;
    text-align: center;
    vertical-align: middle;
    color: rgba(255, 255, 255, 1);
}

.breadcrumb-container {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.breadcrumb-container a {
    color: var(--dark-teal);
    font-weight: 600;
}

.breadcrumb-container i {
    font-size: 0.7rem;
    margin: 0 10px;
    color: #ccc;
}

.category-filters {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.category-filters .btn-pill {
    background: #f0f0f0;
    color: var(--text-dark);
    border: none;
    padding: 10px 25px;
    font-weight: 600;
}

.category-filters .btn-pill.active,
.category-filters .btn-pill:hover {
    background: rgb(18 50 76);
    color: var(--white);
}

/* Sidebar Form */
.sidebar-form {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    position: sticky;
    top: 100px;
}

.sidebar-header {
    color: rgba(30, 90, 150, 1);
    padding: 16px;
    text-align: center;
    border-top: 9px solid rgba(30, 90, 150, 1);
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.sidebar-header h3 {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 150%;
    text-align: center;
    vertical-align: middle;
}

.sidebar-body {
    padding: 20px;
}

.sidebar-body .form-control,
.sidebar-body .form-select {
    border-radius: 10px;
    padding: 12px 15px;
    border: 1px solid rgba(13, 24, 81, 0.2);
    background: rgba(255, 255, 255, 1);
    font-size: 0.95rem;
}

.sidebar-body .form-control:focus,
.sidebar-body .form-select:focus {
    box-shadow: none;
    border-color: var(--primary-orange);
    background: var(--white);
}

.sidebar-body .input-group-text {
    background: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 10px 0 0 10px;
    color: var(--text-light);
}

.counter-input {
    justify-content: space-between;
    padding: 12px 16px;
    border: 1px solid rgba(208, 213, 221, 1);
    border-radius: 8px;
}

.counter-input button {
    width: 20px;
    height: 20px;
    border-radius: 2px;
    border: 0;
    background: rgba(30, 90, 150, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    font-size: 20px;
}

.counter-input button:hover {
    background: var(--primary-orange);
    color: var(--white);
    border-color: var(--primary-orange);
}

.counter-input input {
    width: 30px;
    border: none;
    background: transparent;
    text-align: center;
    font-weight: 700;
    color: var(--dark-teal);
}

.label-group span {
    font-size: 0.9rem;
    color: var(--dark-teal);
}

.label-group small {
    font-size: 0.75rem;
}

@media (max-width: 992px) {
    .packages-hero h1 {
        font-size: 3rem;
    }
    .sidebar-form {
        margin-top: 50px;
        position: static;
    }
}

/* Package Details Page Styles */
.details-gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 200px 200px;
    gap: 15px;
    margin-bottom: 30px;
}

.gallery-large {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.gallery-item:hover img {
    transform: scale(1.05);
}

.more-images-overlay {
    position: absolute;
    bottom: 15px;
    right: 15px;
    border-radius: 25px;
    background: rgba(6, 63, 92, 1);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
}

/* Mobile Gallery Styles */
.mobile-gallery-item {
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
}

.mobile-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.package-header-info {
    margin-bottom: 40px;
}

.package-header-info h1 {
    font-size: 2.2rem;
    color: var(--dark-teal);
    font-weight: 800;
    margin-bottom: 10px;
}

.rev-stars-inline {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.rev-stars-inline .stars {
    color: #ffc107;
}

.rev-stars-inline .count {
    color: var(--text-light);
    font-size: 0.9rem;
}

.price-big {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-teal);
}

.price-big small {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 400;
}

.details-bar {
    padding: 10px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.detail-item .label {
    font-size: 0.75rem;
    color: var(--primary-orange);
    font-weight: 700;
    text-transform: uppercase;
}

.detail-item .value {
    font-size: 1rem;
    color: var(--dark-teal);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.detail-item i {
    font-size: 0.9rem;
}

.section-subtitle {
    font-family: 'Cormorant Garamond';
    font-weight: 700;
    font-size: 24px;
    vertical-align: middle;
    color: rgba(0, 0, 0, 1);
    margin-bottom: 25px;
}

.overview-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 30px;
}

.inclusions-box {
    border-radius: 10px;
    padding: 30px;
    background: rgba(238, 246, 254, 1);
    border-top: 1px solid rgba(21, 21, 21, 0.1);
}
.inclusions-box h4 {
    font-family: 'Cormorant Garamond';
    font-size: 22px;
    vertical-align: middle;
    margin-bottom: 15px;
}
.inclusion-list ul {
    list-style: none;
    padding: 0;
}

/* Blog Interests Section */
.interests-section {
    padding-bottom: 60px;
}
.interests-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 10px;
}
.interests-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.interest-card {
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 10px;
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    height: 100%;
}
.interest-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.interest-img-box {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 250px;
}
.interest-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.interest-card:hover .interest-img-box img {
    transform: scale(1.05);
}
.interest-tag {
    position: absolute;
    top: 73%;
    left: 50%;
    transform: translateX(-50%);
    background: #1E5A96; /* Blue from provided valid color in other files */
    color: #fff;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    white-space: nowrap;
    z-index: 2;
}
.interest-name {
    text-align: center;
    margin-top: 25px; /* Space for the tag */
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: #1a1a1a;
    font-weight: 600;
}
/* Blog Card V2 - Overlay Design */
.blog-card-v2 {
    position: relative;
    border-radius: 12px;
    margin-bottom: 30px;
    /* rounded corners for the whole shape if image is background?
       Actually design shows image at top, white box at bottom overlapping.
       Let's assume a container that holds both. */
    height: 100%;
}

.blog-card-img-wrapper {
    position: relative;
    height: 397px; /* Taller image area */
    border-radius: 12px;
    overflow: hidden;
    z-index: 1;
}

.blog-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card-v2:hover .blog-card-img-wrapper img {
    transform: scale(1.05); /* Zoom effect */
}

/* The floating white content box */
.blog-card-body {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%);
    background: #fff;
    width: 90%; /* Not full width */
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); /* Soft shadow */
    z-index: 2;
    transition: transform 0.3s ease;
}

/* Date Badge - Red Square on Right */
.blog-date-badge-v2 {
    position: absolute;
    top: -30px; /* Overlaps top edge */
    right: 0;
    background: #FF4A52; /* Red color */
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(255, 74, 82, 0.3);
}

.blog-date-badge-v2 .day {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
}

.blog-date-badge-v2 .month {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
}

.blog-title-v2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1.3;
    padding-right: 40px;
}

.blog-title-v2 a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-title-v2 a:hover {
    color: #1E5A96;
}

.blog-meta-v2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.meta-author {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.meta-author i {
    color: #FF4A52; /* Red icon matches date badge */
    font-size: 1.1rem;
}

.meta-category .category-pill {
    background: #fff; /* or light blue #F0F8FF */
    color: #1E5A96;
    border: 1px solid #1E5A96;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
}

.blog-divider {
    height: 1px;
    background: #FF4A52; /* Red underline/divider */
    margin-bottom: 5px;
    width: 100%;
}

.blog-footer-v2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-list-page .blog-title {
    font-family: 'Cormorant Garamond';
    font-weight: 700;
    font-size: 42px;
    line-height: 100%;
    text-align: center;
    vertical-align: middle;
    color: rgba(17, 15, 15, 1);
}

.blog-list-page .blog-subtitle {
    font-weight: 500;
    font-size: 16px;
    line-height: 130%;
    text-align: center;
    vertical-align: middle;
    color: rgba(91, 91, 91, 1);
}

.read-more-btn {
    font-weight: 700;
    color: #1E5A96;
    font-size: 1rem;
    text-decoration: none;
}

.read-more-arrow {
    color: #1E5A96;
    font-size: 1.1rem;
    transition: transform 0.3s;
}

.blog-card-v2:hover .read-more-arrow {
    transform: translateX(5px);
}
.inclusion-list#include li::before {
    content: "\f00c";
    color: #28a745;
    font-family: 'Font Awesome 5 Free';
    font-size: 15px;
    position: absolute;
    left: 0;
    top: 1px;
    font-weight: 600;
}

.inclusion-list#exclude li::before {
    content: "\f00d";
    color: #dc3545;
    font-family: 'Font Awesome 5 Free';
    font-size: 15px;
    position: absolute;
    left: 0;
    top: 1px;
    font-weight: 600;
}
.inclusion-list li i.fa-check {
    color: #28a745;
    margin-top: 4px;
}

.inclusion-list li i.fa-times {
    color: #dc3545;
    margin-top: 4px;
}

.inclusion-list#exclude li {
    color: var(--text-light);
}

.itinerary-accordion .accordion-item {
    border: 1px solid #f0f0f0;
    border-radius: 15px !important;
    margin-bottom: 15px;
    overflow: hidden;
}

.itinerary-accordion .accordion-button {
    padding: 20px 25px;
    font-weight: 700;
    color: var(--dark-teal);
    background: var(--white);
    box-shadow: none;
}

.itinerary-accordion .accordion-button:not(.collapsed) {
    background: var(--primary-orange);
    color: var(--white);
}

.itinerary-accordion .day-tag {
    margin-right: 15px;
}

.itinerary-accordion .accordion-body {
    padding: 25px;
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Reviews Breakdown */
.reviews-breakdown {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
    align-items: center;
}

.score-card-wrapper {
    text-align: center;
}

.score-box {
    background: #F4F7FB;
    border-radius: 15px;
    padding: 30px 40px;
    display: inline-block;
    margin-bottom: 10px;
}

.score-box h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0;
    color: #0D1851;
}

.score-total {
    color: #6D727C;
    font-size: 0.95rem;
    font-weight: 500;
}

.stars-bars {
    flex-grow: 1;
}

.star-bar-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
}

.stars-count {
    display: flex;
    gap: 3px;
    color: #F28C00;
    font-size: 1.1rem;
    width: 130px;
}

.star-bar-row .percent {
    font-weight: 600;
    color: #0D1851;
    font-size: 1rem;
    width: 45px;
}

.progress {
    height: 10px;
    flex-grow: 1;
    background: #E8EDF2;
    border-radius: 10px;
}

.progress-bar {
    background: #F28C00;
    border-radius: 10px;
}

.platform-ratings-container {
    margin-top: 40px;
}

.platform-rating-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.platform-logo {
    height: 35px;
    object-fit: contain;
}

.platform-score {
    font-weight: 600;
    color: #6D727C;
    font-size: 1.1rem;
    min-width: 60px;
}

.platform-stars {
    display: flex;
    gap: 5px;
    color: #F28C00;
    font-size: 1.1rem;
}

.review-item-detailed {
    border-bottom: 1px solid #f0f0f0;
    padding: 30px 0;
}

.rev-user-meta {
    margin-bottom: 15px;
}

.rev-user-meta h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.rev-images-grid {
    display: grid;
    grid-template-columns: repeat(3, 100px);
    gap: 10px;
    margin-top: 15px;
}

.rev-images-grid img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .details-gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 150px);
    }
    .gallery-large {
        grid-column: 1 / 3;
        grid-row: 1 / 3;
    }
    .details-bar {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    .reviews-breakdown {
        flex-direction: column;
        gap: 20px;
    }
}

/* Blog Details Page Styles */
.blog-header {
    margin-bottom: 40px;
}

.blog-header h1 {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.author-meta {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 30px;
}

.author-meta .author-name {
    font-weight: 700;
    color: var(--primary-dark);
}

.blog-featured-image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
}

.blog-featured-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.article-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.article-body h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-top: 40px;
    margin-bottom: 20px;
}

.article-body p {
    margin-bottom: 25px;
    color: rgba(7, 40, 56, 0.9);
}

.article-body ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.article-body li {
    margin-bottom: 10px;
}

.article-row {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.related-tours-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    color: var(--primary-dark);
}

.sidebar-related-tours .package-card-v2 {
    margin-bottom: 25px;
}

.blog-card-v2 {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 397px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.blog-card-v2:hover {
    transform: translateY(-5px);
}
.swiper-wrapper {
    align-items: stretch;
}
.swiper-slide {
    height: auto;
}
/* Blog Article View Styles */
.blog-details-img-box img {
    border-radius: 20px;
    width: 100%;
    margin-bottom: 30px;
}

.blog-details-meta {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
    color: #666;
    font-size: 1rem;
    align-items: center;
}

.blog-details-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-details-meta .meta-item i {
    color: #1E5A96; /* Blue icon */
    font-size: 1.2rem;
}

.blog-details-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 30px;
    line-height: 1.2;
}

.blog-details-text, .blog-details-extra {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.detail-img-right {
    float: right;
    margin: 0 0 20px 20px;
    border-radius: 10px;
    max-width: 50%;
}

.detail-img-left {
    float: left;
    margin: 0 20px 20px 0;
    border-radius: 10px;
    max-width: 50%;
}

.detail-img-full {
    width: 100%;
    border-radius: 15px;
}

/* Quote Box Styling */
blockquote {
    background-color: #F0F8FF; /* Light blue background */
    border-left: 5px solid #1E5A96; /* Blue border */
    padding: 30px 40px;
    margin: 30px 0;
    position: relative;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-style: italic;
    color: #1a1a1a;
    border-radius: 0 10px 10px 0;
}

blockquote::after {
    content: "\f10e"; /* FontAwesome Quote Right */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    bottom: 20px;
    right: 30px;
    font-size: 2rem;
    color: #1E5A96;
    opacity: 0.3;
}

blockquote p {
    margin-bottom: 0;
}

.blog-card-content {
    padding: 25px;
    flex-grow: 1;
}

.blog-card-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
    color: var(--primary-dark);
}

.blog-card-content p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .blog-header h1 {
        font-size: 2.2rem;
    }
}

/* Blogs Archive Page Styles */
.blogs-hero {
    position: relative;
    height: 450px;
    border-radius: 25px;
    overflow: hidden;
    margin-bottom: 60px;
    background-size: cover;
    background-position: center;
}

.blogs-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 60px;
    color: var(--white);
}

.blogs-hero-overlay h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    max-width: 800px;
}

.blogs-hero-overlay p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    opacity: 0.9;
    max-width: 700px;
}

.blogs-hero-overlay a {
    color: var(--white);
    text-decoration: underline;
    font-weight: 600;
}

.interests-section {
    padding: 40px 0;
    margin-bottom: 60px;
}

.interests-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.interest-item {
    text-align: center;
    width: 100px;
}

.interest-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    border: 1px solid rgba(5, 40, 103, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.interest-item:hover .interest-circle {
    border-color: var(--primary-orange);
    transform: scale(1.05);
}

.interest-circle img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 7px solid rgba(255, 255, 255, 1);
}

.interest-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.articles-grid-section {
    margin-bottom: 100px;
}

.loading-indicator {
    display: flex;
    justify-content: center;
    padding: 40px 0;
}

.spinner-dot {
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 50%;
    margin: 0 5px;
    display: inline-block;
}

@media (max-width: 768px) {
    .blogs-hero {
        height: 350px;
    }
    .blogs-hero-overlay {
        padding: 30px;
    }
    .blogs-hero-overlay h2 {
        font-size: 1.8rem;
    }
    .interests-container {
        gap: 15px;
    }
    .interest-circle {
        width: 70px;
        height: 70px;
    }
}

/* Contact Us Page Styles */
.contact-hero {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, var(--primary-orange) -20%, rgba(242, 140, 0, 0.7) 10%, rgba(0, 51, 78, 0.6) 50%);
}

.contact-hero h1 {
    position: relative;
    color: var(--white);
    font-size: 3.5rem;
    font-weight: 800;
    z-index: 1;
}

.contact-main-container {
    padding: 60px;
    position: relative;
    z-index: 2;
}

.contact-form-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 26px;
    text-align: center;
    vertical-align: middle;
    text-transform: capitalize;
    color: rgba(10, 43, 75, 1);
    margin-bottom: 15px;
}

.contact-form-section p {
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    text-align: center;
    vertical-align: middle;
    text-transform: capitalize;
    color: rgba(54, 54, 54, 1);
    margin-bottom: 30px;
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.contact-form .form-control,
.contact-form .form-select {
    border-radius: 12px;
    padding: 12px 20px;
    border: 1px solid rgba(13, 24, 81, 0.2);
    background: #fff;
    margin-bottom: 20px;
}

.contact-form .form-control::placeholder {
    color: #ccc;
}

.contact-info-card {
    background: rgba(6, 63, 92, 1);
    border-radius: 30px;
    padding: 50px 40px;
    color: var(--white);
    height: 100%;
}

.contact-info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
    margin-bottom: 40px;
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 20px;
    height: 100%;
    border: 1px solid rgba(210, 210, 210, 1);
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: rgba(30, 90, 150, 1);
    flex-shrink: 0;
}

.contact-info-text h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 26px;
    text-align: center;
    vertical-align: middle;
    text-transform: capitalize;
    color: rgba(0, 0, 0, 1);
    margin-bottom: 5px;
}

.contact-info-text p {
    font-family: 'Cairo', sans-serif;
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    vertical-align: middle;
    color: rgba(54, 54, 54, 1);
}

.contact-follow-us h5 {
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-social-grid {
    display: flex;
    gap: 15px;
}

.contact-social-grid a {
    width: 45px;
    height: 45px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.contact-social-grid a:hover {
    background: var(--primary-orange);
    color: #fff;
    transform: translateY(-3px);
}
.contact-btn {
    background-color: rgba(242, 127, 12, 1);
    border: 1px solid rgba(242, 127, 12, 1);
    color: #fff;
}
@media (max-width: 991px) {
    .contact-main-container {
        padding: 30px;
    }
    .contact-hero {
        height: 300px;
    }
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    .contact-info-card {
        margin-top: 40px;
    }
}

/* Partner Page Styles */
.partner-hero {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
}

.partner-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, var(--primary-orange) -20%, rgba(242, 140, 0, 0.7) 10%, rgba(0, 51, 78, 0.6) 50%);
}

.partner-hero h1 {
    position: relative;
    font-size: 3.5rem;
    font-weight: 800;
    z-index: 1;
}

.partner-intro-section {
    padding: 80px 0 40px;
    margin: 0 auto;
}

.partner-intro-section h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 25px;
    line-height: 1.3;
}

.partner-intro-section p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.partner-form-container {
    padding-bottom: 100px;
}

.partner-form-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.partner-form-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 30px;
}

.partner-form-card label {
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.partner-form-card .form-control {
    border-radius: 12px;
    padding: 12px 20px;
    border: 1px solid rgba(13, 24, 81, 0.2);
    margin-bottom: 25px;
    background: #fff;
}

.partner-form-card .form-control:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 0.25rem rgba(242, 127, 12, 0.1);
}

.btn-send-partner {
    background: var(--primary-orange);
    color: var(--white);
    font-weight: 700;
    padding: 18px 80px;
    border-radius: 50px;
    border: none;
    font-size: 1.1rem;
    display: block;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-send-partner:hover {
    background: var(--primary-orange-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(242, 127, 12, 0.3);
}

@media (max-width: 768px) {
    .partner-hero {
        height: 300px;
    }
    .partner-hero h1 {
        font-size: 2.2rem;
    }
    .partner-intro-section {
        padding: 50px 20px;
    }
    .partner-intro-section h2 {
        font-size: 1.8rem;
    }
    .partner-form-card {
        padding: 25px;
    }
    .btn-send-partner {
        width: 100%;
        padding: 18px 20px;
    }
}

/* Terms & About Pages Styles */
.about-who-section {
    padding: 100px 0;
}

.about-images-wrapper {
    position: relative;
    height: 500px;
}

.about-img-main {
    width: 80%;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.about-img-secondary {
    width: 60%;
    border-radius: 30px;
    overflow: hidden;
    position: absolute;
    bottom: -30px;
    right: 0;
    z-index: 2;
    border: 10px solid var(--white);
}

.about-img-main img,
.about-img-secondary img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(17, 15, 15, 1);
    margin-bottom: 25px;
}

.about-content p {
    color: rgba(7, 40, 56, 0.5);
    line-height: 1.8;
    margin-bottom: 20px;
}

.rating-badges {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.rating-badge {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rating-badge img {
    height: 30px;
}

.feature-grid-section {
    padding: 60px 0 100px;
}

.feature-card {
    background: rgba(255, 235, 216, 1);
    padding: 30px;
    border-radius: 25px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.2);
    display: flex;
    gap: 20px;
}

/* .feature-icon {
    width: 85px;
    height: 60px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 20px;
} */

.feature-icon i {
    padding: 16px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.feature-card p {
    font-size: 0.95rem;
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Terms Page */
.terms-content-section {
    padding-bottom: 100px;
}

.terms-content-section h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-top: 40px;
    margin-bottom: 20px;
}

.terms-content-section h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-top: 30px;
    margin-bottom: 15px;
}

.terms-content-section p, 
.terms-content-section li {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.terms-content-section ul {
    padding-left: 20px;
}

@media (max-width: 991px) {
    .about-images-wrapper {
        height: auto;
        margin-bottom: 80px;
    }
    .about-img-main { width: 100%; }
    .about-img-secondary { 
        width: 70%; 
        bottom: -50px;
    }
    .about-content {
        text-align: center;
    }
    .rating-badges {
        justify-content: center;
    }
}

/* FAQ Page Styles */
.faq-section {
    padding: 80px 0 100px;
}

.faq-title-wrapper {
    text-align: center;
    margin-bottom: 50px;
}

.faq-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-dark);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.faq-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 4px;
    background: var(--primary-orange);
    border-radius: 2px;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--color-grey-810, rgba(21, 21, 21, 0.1));
    border-radius: 10px;
    margin-bottom: 20px;
}
.faq-item:has(.show) {
    background: var(--white);
}

.faq-header {
    padding: 20px 25px;
    cursor: pointer;
}
.accordion-button:not(.collapsed) {
    background: transparent;
    box-shadow: none;
}
.faq-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    vertical-align: middle;
    color: rgba(0, 0, 0, 1);
    margin-bottom: 0;
    padding: 0;
}

.faq-icon {
    font-size: 1.2rem;
    color: #999;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-header {
    background: #F4F7F9;
}
.faq-item .accordion-body {
    font-family: 'Cairo', sans-serif;
    font-weight: 500;
    font-size: 15px;
    vertical-align: middle;
    color: rgba(105, 105, 105, 1);
}
.faq-body {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #F4F7F9;
}

.faq-item.active .faq-body {
    padding: 10px 25px 25px;
    max-height: 500px;
}

.faq-body p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 1.8rem;
    }
    .faq-header {
        padding: 15px 20px;
    }
    .faq-header h3 {
        font-size: 1rem;
    }
}
@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 30px;
    }
    .footer-payments {
        align-items: center;
        flex-direction: column;
    }
    .section-title h2 {
        font-size: 24px;
    }
    .faq-grid-v2 {
        grid-template-columns: repeat(1, 1fr);
    }
    .swiper-nav-buttons {
        align-items: center;
        gap: 35px;
        justify-content: center;
    }
    .why-us-swiper .swiper-nav-buttons {
        margin-top: 20px;
    }
    .top-social {
        display: none;
    }
    .top-bar .container {
        flex-direction: unset;
    }
    .packages-hero h1 {
        font-size: 30px;
    }
    .packages-hero p, .about-content p, .partner-intro-section p {
        font-size: 14px;
    }
    .section-padding {
        padding: 60px 10px;
    }
    .blogs-hero-overlay h2, .blog-header h1, .package-header-info h1, .price-big, .about-content h2, .partner-intro-section h2 {
        font-size: 24px;
    }
    .details-bar {
        flex-flow: wrap;
    }
    .section-subtitle, .score-box h2 {
        font-size: 18px;
    }
    .platform-rating-row {
        justify-content: center;
    }
    .contact-info-card {
        border-radius: 10px;
        padding: 16px;
        height: auto;
    }
    .contact-info-item {
        flex-direction: column;
    }
}

/* Article Tags Section */
.article-tags-section {
    background-color: var(--thm-gray);
    border-radius: 8px;
    border-left: 4px solid #ff6600;
}

.article-tags-section .fw-bold {
    font-size: 16px;
    color: var(--thm-black);
}

.article-tags-section .fa-tags {
    color: #ff6600;
}

.article-tags-section a {
    background-color: #ff6600;
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    border-radius: 20px;
    transition: all 0.3s ease;
    display: inline-block;
}

.article-tags-section a:hover {
    background-color: #e55a00;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 102, 0, 0.3);
}
.plan_your_trip {
    background: rgba(30, 90, 150, 1);
    border-radius: 10px;
    padding: 16px 24px;
    width: 25%;
    font-family: Nunito;
    font-weight: 700;
    font-size: 18px;
    line-height: 130%;
    text-align: center;
    color: #fff;
}
.plan_your_trip:hover {
    background: rgba(30, 90, 150, 0.8);
    color: #fff;
}

/* Quick Form Styles */
.quick-form-section {
    position: relative;
    z-index: 10;
    margin-top: -60px; /* Overlap hero slider */
    margin-bottom: 60px;
}

.quick-form-box {
    background: #fff;
    border-radius: 12px;
    padding: 30px 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.quick-form-box label {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 10px;
}

.quick-form-box .form-control {
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 10px 15px;
    height: 45px;
    font-family: 'Cairo', sans-serif;
    font-size: 15px;
    color: #555;
    background-color: #fff;
}

.quick-form-box .form-control:focus {
    border-color: var(--primary-dark);
    box-shadow: none;
    outline: none;
}

.quick-form-box .date-input-wrap .calendar-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-dark);
    font-size: 16px;
    pointer-events: auto;
    cursor: pointer;
}

.btn-quick-submit {
    background-color: var(--primary-dark);
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    padding: 12px 40px;
    border-radius: 5px;
    letter-spacing: 1px;
    border: none;
    transition: all 0.3s ease;
}

.btn-quick-submit:hover {
    background-color: #15406b; /* Darker shade */
    transform: translateY(-2px);
}
.widget_wiki_sub .widget-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 100%;
    color: rgba(10, 43, 75, 1);
}
@media (max-width: 576px) {
    .blog-card-v3--small .blog-card-v3-img-wrap {
        flex: 0 0 150px;
    }
    .blog-card-v3--small .blog-card-v3-body {
        padding: 0 0 0 15px;
    }
    .plan_your_trip {
        width: 50%;
    }
    .page-title {
        font-size: 32px;
    }
    .page-description {
        font-size: 16px;
    }
    .package-header-centered h1 {
        font-size: 26px !important;
    }
    .cruise-tabs .nav-link {
        font-size: 14px;
    }
    .about-who-section {
        padding: 20px 0;
    }
    .about-content {
        margin-bottom: 25px;
    }
    .about-content h2, .about-text {
        text-align: left;
    }
    .subscribe-section__title {
        font-size: 30px !important;
    }
    .subscribe-section__form {
        margin: 0 !important;
    }
    .subscribe-section__form {
        width: 100%;
    }
    .subscribe-section__inner form {
        display: flex;
        flex-direction: column;
        gap: 20px;
        justify-content: center;
        align-items: center;
    }
    .widget_wiki_sub .widget-title {
        font-size: 30px;
    }
    .contact-main-container {
        padding: 20px;
    }
    #contactform {
        padding: 25px 20px !important;
    }
    .call-to-action h4 {
        font-size: 32px !important;
    }
    .navbar-toggler-icon {
        background-image: url('/img/menu-bars.svg');
    }
    .navbar-toggler {
        border: 0;
    }
    .navbar>.container {
        gap: 10px;
    }
}