﻿:root {
    --primary-color: #4FA1C4;
    --primary-dark: #3f8fae;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --font-main: 'Poppins', sans-serif;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: var(--font-main);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

/* Header */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    transition: all 0.3s ease;
    color: white;
    background: transparent;
}

#main-header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    color: var(--text-dark);
    padding: 15px 0;
    border-bottom-color: rgba(148, 163, 184, 0.35);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: inline-flex;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: inherit;
}

.site-logo-img {
    height: 68px;
    width: auto;
    display: block;
    object-fit: contain;
}

.logo span {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a,
.nav-dropdown-toggle {
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: all 0.3s ease;
    padding: 7px 18px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
}

.nav-dropdown-toggle {
    border: 0;
    color: inherit;
    cursor: pointer;
    font-family: var(--font-main);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nav-dropdown-toggle i {
    font-size: 11px;
    transition: transform 0.25s ease;
}

.nav-links a:hover,
.nav-dropdown-toggle:hover {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.15);
}

.nav-links a.active,
.nav-dropdown-toggle.active {
    color: white;
    background: rgba(255, 255, 255, 0.2);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 220px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid #dbe5ef;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.14);
    display: grid;
    padding: 8px;
    gap: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.22s ease;
    z-index: 1100;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown:hover .nav-dropdown-toggle i,
.nav-dropdown:focus-within .nav-dropdown-toggle i,
.nav-dropdown.is-open .nav-dropdown-toggle i {
    transform: rotate(180deg);
}

.nav-dropdown-menu a {
    color: #1f2937;
    font-weight: 500;
    font-size: 13px;
    border-radius: 8px;
    padding: 10px 12px;
    background: transparent;
}

.nav-dropdown-menu a:hover {
    background: #edf6fb;
    color: #0f172a;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    font-size: 20px;
}

.header-right .contact-info div {
    display: flex;
    flex-direction: column;
}

.contact-info .small-text {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.contact-info .phone-number {
    font-weight: 700;
    font-size: 15px;
}

.user-icon i {
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/hero section.webp');
    background-size: cover;
    background-position: center;
    z-index: 0;
    animation: kenBurns 25s infinite alternate ease-in-out;
}

@keyframes kenBurns {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.08);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: radial-gradient(circle at center, rgba(17, 20, 28, 0.3) 0%, rgba(17, 20, 28, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
}

.hero-award {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.hero-award-logo {
    width: min(320px, 78vw);
    max-height: 240px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 18px;
    padding: 12px 16px;
    box-shadow: 0 18px 30px rgba(2, 6, 23, 0.3);
}

.award-text {
    font-family: 'Dancing Script', cursive;
    font-size: 36px;
    margin: 10px 0 5px 0;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}

.award-stars {
    font-size: 20px;
    letter-spacing: 0px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    gap: 2px;
}

.award-stars i {
    font-size: 15px;
}

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.hero p {
    font-size: 18px;
    margin-bottom: 40px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
    font-weight: 400;
}

.search-widget-container {
    display: flex;
    gap: 15px;
    margin-top: 40px;
    align-items: stretch;
}

.search-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: transform 0.3s;
}

.search-pill:hover {
    transform: translateY(-2px);
}

.search-pill.blue-pill {
    background-color: var(--primary-color);
    color: white;
}

.search-pill.white-pill {
    background-color: white;
    color: var(--text-dark);
}

.search-pill i {
    font-size: 20px;
    color: currentColor;
}

.search-pill.white-pill i {
    color: var(--primary-color);
}

.pill-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.pill-text label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    opacity: 0.8;
}

.search-pill input {
    border: none;
    background: transparent;
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 600;
    outline: none;
    color: inherit;
    width: 140px;
}

.search-pill input::placeholder {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.search-pill.white-pill input::placeholder {
    color: #94a3b8;
}

.yellow-button {
    background-color: #facc15;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 16px;
    border: none;
    font-family: var(--font-main);
    padding: 15px 35px;
}

.yellow-button:hover {
    background-color: #eab308;
}

/* Container & Generic Sections */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Accent gradient used for highlighted words in section titles */
.accent-gradient {
    background: linear-gradient(90deg, #54a8c7 0%, #4FC0D6 60%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    display: inline-block;
    padding: 0 4px;
}

/* Specific tuning for the reviews header to match the provided style */
.home-reviews-header .section-title {
    font-size: 40px;
    font-weight: 800;
    color: #0f1724;
    letter-spacing: -0.2px;
    margin-bottom: 8px;
    text-shadow: 0 1px 0 rgba(0,0,0,0.02);
}

@media (max-width: 768px) {
    .home-reviews-header .section-title {
        font-size: 26px;
    }
}

.section-title span {
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
    font-size: 16px;
}

/* Trust Section */
.trust-section {
    background-color: var(--bg-white);
}

.trust-section .container {
    padding-top: 60px;
    padding-bottom: 60px;
}

.trust-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    position: relative;
}

.trust-card {
    text-align: center;
    width: 30%;
    position: relative;
    z-index: 2;
    background: white;
}

.icon-circle {
    width: 90px;
    height: 90px;
    background-color: #e0f2fe;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px auto;
    font-size: 40px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.trust-card:hover .icon-circle {
    transform: translateY(-5px);
    background-color: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-lg);
}

.trust-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.trust-card p {
    color: var(--text-light);
    font-size: 14px;
}

.connector-line {
    width: 15%;
    height: 1px;
    border-top: 2px dashed #cbd5e1;
    position: relative;
    top: -40px;
}

/* Package Grids */
.trending-packages {
    background-color: var(--bg-light);
}

.honeymoon-packages {
    background-color: var(--bg-white);
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.package-card {
    background: #111827;
    color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card-img-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.package-card:hover .card-img-wrapper img {
    transform: scale(1.1);
}

.price-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 14px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 6px;
}

.price-badge::before {
    content: '\f005';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #eab308;
}

.card-content {
    padding: 25px;
}

.card-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
}

.destination {
    color: #94a3b8;
    font-size: 14px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
}

.rating i {
    color: #eab308;
}

.btn-outline {
    background: transparent;
    border: 1px solid #eab308;
    color: #eab308;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #eab308;
    color: var(--text-dark);
}

/* Top Sights */
.top-sights {
    background-color: var(--bg-white);
}

.sights-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
}

.sight-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.sight-item:nth-child(1) {
    grid-column: span 7;
}

.sight-item:nth-child(2) {
    grid-column: span 5;
}

.sight-item:nth-child(3) {
    grid-column: span 4;
}

.sight-item:nth-child(4) {
    grid-column: span 4;
}

.sight-item:nth-child(5) {
    grid-column: span 4;
}

.sight-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sight-item:hover img {
    transform: scale(1.1);
}

.sight-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
}

.sight-info h3 {
    font-size: 20px;
    font-weight: 600;
}

/* Most Popular Places */
.popular-places {
    background-color: var(--bg-white);
}

.tabs-container {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.tab-btn {
    padding: 8px 24px;
    border: 1px solid var(--border-color);
    background: white;
    border-radius: 50px;
    font-family: var(--font-main);
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--text-dark);
    color: white;
    border-color: var(--text-dark);
}

.places-scroll-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 20px;
}

.places-scroll-container::-webkit-scrollbar {
    height: 6px;
}

.places-scroll-container::-webkit-scrollbar-thumb {
    background-color: #cbd5e1;
    border-radius: 10px;
}

.place-item {
    min-width: 200px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.place-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.place-item:hover img {
    transform: scale(1.05);
}

.place-item h4 {
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: white;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Video Promo */
.video-promo {
    background-color: var(--bg-light);
}

.video-layout {
    display: flex;
    gap: 20px;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.main-video {
    flex: 2;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 400px;
}

.main-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px;
}

.video-overlay h2 {
    color: white;
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.video-thumbnails {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.vid-thumb {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.vid-thumb.active,
.vid-thumb:hover {
    background: var(--bg-light);
    border-color: var(--border-color);
}

.vid-thumb img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
}

.play-icon {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.thumb-info p {
    font-weight: 600;
    font-size: 16px;
    color: var(--text-dark);
}

.thumb-info .stars {
    color: #fbbf24;
    font-size: 12px;
}

/* Family Packages */
.family-packages {
    background-color: var(--bg-white);
}

/* make brities */
.celebrities {
    background-color: var(--bg-white);
}

.celeb-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.celeb-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 400px;
    box-shadow: var(--shadow-md);
}

.celeb-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.celeb-card:hover img {
    transform: scale(1.05);
}

.celeb-name {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: white;
    padding: 8px 20px;
    border-radius: 50px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    box-shadow: var(--shadow-sm);
}

.celeb-name p {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

/* Destinations Vertical Grid */
.destinations-vertical {
    background-color: var(--bg-white);
}

.dest-grid-vertical {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.dest-vert-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 350px;
}

.dest-vert-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.dest-vert-card:hover img {
    transform: scale(1.1);
}

.dest-vert-card h3 {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    font-size: 20px;
    font-weight: 700;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

/* Testimonials */
.testimonials {
    background-color: var(--bg-light);
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testi-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
}

.testi-img-main {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.testi-content {
    padding: 30px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.quote {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 15px;
}

.testi-user {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testi-user h5 {
    font-weight: 600;
    margin: 0;
}

.testi-user .stars {
    color: #fbbf24;
    font-size: 12px;
}

/* Footer */
.main-footer {
    background-color: var(--text-dark);
    color: white;
}

.main-footer .container.footer-grid {
    padding-top: 80px;
    padding-bottom: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul li {
    color: #cbd5e1;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col a {
    color: #cbd5e1;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--primary-color);
}

.brand-col .logo a {
    font-size: 30px;
}

.brand-col p {
    color: #cbd5e1;
    font-size: 14px;
    margin: 20px 0;
}

.app-buttons {
    display: flex;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
}

.footer-bottom {
    padding: 20px 0;
    color: #cbd5e1;
    font-size: 14px;
}

.footer-bottom .container {
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.payment-icons {
    display: flex;
    gap: 15px;
    font-size: 24px;
}

/* Responsiveness adjustments for smaller screens */
@media (max-width: 1024px) {
    .sights-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    :nth-child(n) {
        grid-column: span 1;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    .package-grid,
    .testi-grid,
    .dest-grid-vertical,
    .celeb-grid {
        grid-template-columns: 1fr;
    }

    .video-layout {
        flex-direction: column;
    }

    .hero h1 {
        font-size: 36px;
    }

    .search-widget {
        flex-direction: column;
        border-radius: 20px;
    }

    .search-field {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding: 10px 0;
        width: 100%;
    }

    .search-field:last-of-type {
        border-bottom: none;
    }

    .trust-grid {
        flex-direction: column;
        gap: 30px;
    }

    .trust-card {
        width: 100%;
    }

    .connector-line {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* --- New Full Image Mockup Styles --- */

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-award {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-cup-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
}

.award-text {
    font-size: 24px;
    font-style: italic;
    margin-bottom: 5px;
    color: white;
}

.award-stars {
    color: white;
    font-size: 14px;
    letter-spacing: 2px;
}

.hero-bottom-pills {
    position: absolute;
    bottom: 40px;
    left: 8%;
    display: flex;
    gap: 15px;
    z-index: 20;
}

.pill-btn {
    background: white;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-main);
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.pill-btn.active {
    background: #3b82f6;
    color: white;
}

.pill-btn.active i {
    color: white !important;
}

/* Package Full Image Card Overlay Style */
.pkg-card {
    height: 520px;
    border-radius: 15px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.pkg-card:hover {
    transform: translateY(-5px);
}

.pkg-card:focus-visible {
    outline: 3px solid #4FA1C4;
    outline-offset: 3px;
}

.pkg-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: white;
    padding: 6px 15px;
    border-radius: 50px;
    font-weight: 700;
    color: black;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.pkg-badge i {
    color: #eab308;
}

.pkg-content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
    padding: 40px 20px 20px 20px;
    color: white;
}

.pkg-category {
    font-size: 12px;
    opacity: 0.8;
    margin-bottom: 5px;
}

.pkg-content-overlay h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
    color: white;
}

.pkg-price {
    font-size: 16px;
    font-weight: 600;
    color: #eab308;
}

/* Package Details Page */
.package-details-page {
    background:
        radial-gradient(circle at 10% 8%, rgba(79, 161, 196, 0.14) 0%, rgba(79, 161, 196, 0) 40%),
        radial-gradient(circle at 92% 16%, rgba(244, 114, 182, 0.12) 0%, rgba(244, 114, 182, 0) 36%),
        linear-gradient(180deg, #f7fbff 0%, #ffffff 46%);
}

.details-hero {
    padding-top: 140px;
    padding-bottom: 25px;
}

.details-hero-banner {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    min-height: 360px;
    border: 1px solid rgba(148, 163, 184, 0.24);
    box-shadow: 0 24px 42px rgba(15, 23, 42, 0.14);
    margin-bottom: 24px;
}

.details-hero-banner img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    display: block;
}

.details-hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    background: linear-gradient(to top, rgba(2, 6, 23, 0.76) 10%, rgba(2, 6, 23, 0.08) 68%);
}

.details-banner-kicker {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 11px;
    color: #bae6fd;
    font-weight: 700;
    margin-bottom: 6px;
}

#pkg-hero-title {
    color: #ffffff;
    font-size: clamp(27px, 4vw, 42px);
    line-height: 1.15;
    max-width: 680px;
}

.details-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: 20px;
}

.details-layout {
    display: grid;
    grid-template-columns: 1.55fr 1fr;
    gap: 22px;
    align-items: start;
}

.details-main-card,
.details-side-card {
    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 20px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.details-main-card {
    padding: 30px;
}

.details-kicker {
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 700;
    color: #0c4a6e;
    margin-bottom: 6px;
}

.details-title {
    font-size: clamp(30px, 3vw, 42px);
    line-height: 1.15;
    margin-bottom: 10px;
    color: #0f172a;
}

.details-route {
    color: #475569;
    font-size: 16px;
    margin-bottom: 12px;
    font-weight: 500;
}

.route-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.route-chip {
    border: 1px solid #dbeafe;
    background: #f0f9ff;
    color: #075985;
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 13px;
    font-weight: 600;
}

.details-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.details-pill {
    background: #e0f2fe;
    color: #0c4a6e;
    border-radius: 999px;
    padding: 9px 14px;
    font-weight: 600;
    font-size: 14px;
}

.details-pill-gold {
    background: #fff7d6;
    color: #7c5a04;
}

.details-pill-rating {
    background: #e7fce8;
    color: #14532d;
}

.details-variants {
    margin-top: 14px;
    color: #0f172a;
    font-weight: 600;
    font-size: 15px;
}

.details-offer {
    margin-top: 8px;
    color: #dc2626;
    font-weight: 700;
    font-size: 14px;
}

.details-side-card {
    padding: 26px;
    position: sticky;
    top: 110px;
}

.details-side-card h2 {
    font-size: 20px;
    margin-bottom: 14px;
    color: #0f172a;
}

.snapshot-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px dashed #cbd5e1;
    padding: 12px 0;
    color: #334155;
    font-size: 15px;
}

.snapshot-item strong {
    color: #0f172a;
    font-size: 15px;
}

.details-cta-btn {
    margin-top: 16px;
    display: inline-flex;
    justify-content: center;
    width: 100%;
    background: linear-gradient(135deg, #3f8fae, #4FA1C4);
    color: #ffffff;
    font-weight: 700;
    padding: 12px 16px;
    border-radius: 12px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.details-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 18px rgba(2, 132, 199, 0.25);
}

.itinerary-section {
    padding: 8px 0 90px;
}

.itinerary-header {
    margin-bottom: 18px;
}

.details-subtitle {
    font-size: clamp(26px, 2.3vw, 34px);
    line-height: 1.2;
    color: #0f172a;
}

.itinerary-caption {
    color: #64748b;
    font-size: 15px;
    margin-top: 6px;
}

.itinerary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 18px;
}

.day-card {
    background: linear-gradient(180deg, #ffffff 0%, #fcfdff 100%);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.day-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 28px rgba(15, 23, 42, 0.1);
}

.day-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.day-title {
    font-size: 19px;
    font-weight: 700;
    color: #0f172a;
}

.day-badge {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    background: #eef2ff;
    color: #3730a3;
    border-radius: 999px;
    padding: 6px 10px;
    white-space: nowrap;
}

.day-desc {
    color: #475569;
    font-size: 15px;
    line-height: 1.7;
}

.day-activity-title {
    color: #0f172a;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.45;
}

.day-stay {
    margin-top: 12px;
    color: #075985;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f0f9ff;
    border: 1px solid #dbeafe;
    border-radius: 999px;
    padding: 6px 12px;
}

.inclusion-section {
    padding: 0 0 90px;
}

.inclusion-grid {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.inclusion-card {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid #dbe7f5;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.07);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.inclusion-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -45px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.12;
}

.inclusion-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 34px rgba(15, 23, 42, 0.12);
}

.inclusion-card h3 {
    font-size: 21px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.01em;
}

.inclusion-card ul {
    margin: 0;
    padding-left: 0;
    display: grid;
    gap: 10px;
}

.inclusion-card li {
    margin-bottom: 0;
    color: #334155;
    line-height: 1.45;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 12px;
    padding: 9px 10px;
    border: 1px solid transparent;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.inclusion-card li:hover {
    transform: translateX(4px);
}

.list-item-icon {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 13px;
}

.list-item-text {
    flex: 1;
    font-size: 15px;
}

.inclusion-positive h3 {
    color: #166534;
}

.inclusion-positive::before {
    background: radial-gradient(circle, #22c55e 0%, rgba(34, 197, 94, 0) 72%);
}

.inclusion-positive li {
    background: #f6fff8;
    border-color: #dcfce7;
}

.inclusion-positive li:hover {
    background: #ecfdf3;
    border-color: #bbf7d0;
}

.inclusion-positive .list-item-icon {
    background: #dcfce7;
    color: #15803d;
}

.inclusion-negative h3 {
    color: #b91c1c;
}

.inclusion-negative::before {
    background: radial-gradient(circle, #ef4444 0%, rgba(239, 68, 68, 0) 72%);
}

.inclusion-negative li {
    background: #fff7f7;
    border-color: #fee2e2;
}

.inclusion-negative li:hover {
    background: #fef2f2;
    border-color: #fecaca;
}

.inclusion-negative .list-item-icon {
    background: #fee2e2;
    color: #b91c1c;
}

.details-empty {
    margin-top: 16px;
    color: #b91c1c;
    font-weight: 600;
}

@media (max-width: 992px) {
    .details-layout {
        grid-template-columns: 1fr;
    }

    .details-side-card {
        position: static;
    }
}

@media (max-width: 768px) {
    .details-hero-banner,
    .details-hero-banner img {
        min-height: 280px;
        border-radius: 16px;
    }

    .details-hero-overlay {
        padding: 20px;
    }

    .details-main-card,
    .details-side-card {
        border-radius: 16px;
    }

    .details-main-card {
        padding: 22px;
    }
}

/* Header fixes */
.icon-circle-outline {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: border-color 0.3s, color 0.3s;
}

.search-icon {
    margin-left: 10px;
    cursor: pointer;
}

#main-header.scrolled .icon-circle-outline {
    border-color: var(--text-dark);
}

#main-header.scrolled .logo a {
    color: var(--text-dark);
}

#main-header.scrolled .nav-links a {
    color: var(--text-dark);
}

#main-header.scrolled .nav-links a:hover,
#main-header.scrolled .nav-links a.active {
    color: var(--primary-dark);
}

@media (max-width: 768px) {
    .site-logo-img {
        height: 60px;
    }

    .hero-bottom-pills {
        flex-wrap: wrap;
        left: 5%;
        bottom: 10px;
    }
    #main-header{
        padding-top: 8px !important;
    }
}

/* --- Trust Section & Top Sights Updates --- */
.trust-grid-new {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.trust-card {
    text-align: center;
    width: 250px;
}

.icon-square {
    width: 85px;
    height: 85px;
    background-color: #f0f4fc;
    border-radius: 20px;
    margin: 0 auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: #4FA1C4;
}

.icon-circle-inner {
    width: 45px;
    height: 45px;
    background-color: #4FA1C4;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.connector-wave {
    width: 150px;
    height: 50px;
    margin-top: -60px;
}

.connector-wave svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

/* Sights Grid */
.sights-grid-new {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 20px;
}

.sight-large {
    grid-column: span 3;
    height: 250px;
}

.sight-medium {
    grid-column: span 2;
    height: 200px;
}

.sight-card {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.sight-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sight-overlay-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
}

.sight-overlay-top h3 {
    color: white;
    font-size: 22px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .trust-grid-new {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: flex-start;
        width: 100%;
        gap: 0;
        margin-top: 30px;
        padding: 0;
    }

    .trust-card {
        flex: 1 1 0;
        width: auto;
    }

    .icon-square {
        width: 45px;
        height: 45px;
        border-radius: 12px;
        margin: 0 auto 10px auto;
        font-size: 20px;
    }

    .icon-circle-inner {
        width: 25px;
        height: 25px;
        font-size: 12px;
    }

    .trust-card h3 {
        font-size: 11px;
        margin-bottom: 5px;
        font-weight: 700;
    }

    .trust-card p {
        font-size: 9px;
        line-height: 1.3;
        padding: 0 5px;
    }

    .connector-wave {
        display: block;
        flex: 0 0 10%;
        height: 20px;
        margin-top: 12px;
        /* Aligns with the 45px icon */
    }
}

/* --- Most Popular Places Updated --- */
.places-carousel-new {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    gap: 20px;
    margin-top: 20px;
}

.places-carousel-new::-webkit-scrollbar {
    display: none;
}

.place-mock-card {
    display: flex;
    flex-direction: column;
    flex: 0 0 calc((100% - 100px) / 6);
    scroll-snap-align: start;
}

.place-mock-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 12px;
}

.place-mock-card h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    text-align: left;
}

.tabs-container .tab-btn {
    padding: 10px 24px;
    border: 1px solid var(--border-color);
    background: white;
    border-radius: 50px;
    font-weight: 500;
    font-size: 14px;
    font-family: var(--font-main);
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s;
}

.tabs-container .tab-btn:hover {
    border-color: #111827;
}

.tabs-container .tab-btn.active {
    background: #111827;
    color: white;
    border-color: #111827;
}

@media (max-width: 1024px) {
    .places-carousel-new {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        overflow-x: visible;
    }

    .place-mock-card {
        flex: initial;
    }
}

@media (max-width: 768px) {
    .tabs-container {
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        scroll-snap-type: x mandatory;
        padding-bottom: 15px;
    }

    .tabs-container::-webkit-scrollbar {
        display: none;
    }

    .tabs-container .tab-btn {
        scroll-snap-align: start;
        flex: 0 0 auto;
    }
}

/* --- Celebrities Updated --- */
.celeb-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.celeb-mock-card {
    height: 480px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.celeb-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 30px 25px 25px 25px;
    text-align: left;
}

.celeb-loc-pill {
    display: inline-flex;
    align-items: center;
    background: #e2e8f0;
    color: #0f172a;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 8px;
    gap: 5px;
}

.celeb-loc-pill i {
    color: #4FA1C4;
}

.celeb-title {
    color: #d97706;
    /* Earthy Gold */
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

/* --- Destinations Carousel --- */
.trending-places-carousel {
    position: relative;
    margin-top: 28px;
}

.tp-carousel-viewport {
    overflow: hidden;
}

.tp-carousel-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 8px 64px 12px;
}

.tp-carousel-track::-webkit-scrollbar {
    display: none;
}

.dest-mock-card {
    flex: 0 0 clamp(280px, 30vw, 360px);
    height: 500px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    scroll-snap-align: center;
}

.tp-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.86);
    color: white;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.tp-carousel-nav:hover {
    background: #0f172a;
    transform: translateY(-50%) scale(1.04);
}

.tp-carousel-prev {
    left: 6px;
}

.tp-carousel-next {
    right: 6px;
}

.dest-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 40px 20px 20px 20px;
    text-align: left;
}

.dest-overlay h3 {
    color: white;
    font-size: 22px;
    font-weight: 900;
    margin: 0;
    text-transform: uppercase;
}

@media (max-width: 1024px) {
    .celeb-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }

    .tp-carousel-track {
        padding-left: 56px;
        padding-right: 56px;
    }

    .dest-mock-card {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .celeb-grid-new,
    .dest-grid-vertical-new {
        grid-template-columns: 1fr;
    }

    .destinations-vertical .section-subtitle {
        margin-bottom: 16px !important;
    }

    .trending-places-carousel {
        margin-top: 18px;
    }

    .tp-carousel-track {
        gap: 14px;
        padding: 4px 16px 10px;
    }

    .dest-mock-card {
        flex: 0 0 82vw;
        height: clamp(340px, 74vw, 430px);
    }

    .tp-carousel-nav {
        display: none;
    }
}

/* --- Reviews Updated --- */
.testi-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.testi-mock-card {
    background: white;
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    /* very soft shadow to pop off #f8f9fa */
    text-align: left;
}

.testi-mock-img-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
}

.testi-mock-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.testi-loc-pill {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: #e2e8f0;
    color: #475569;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.testi-loc-pill i {
    color: #4FA1C4;
}

.testi-mock-content {
    padding: 20px 5px 10px 5px;
}

.testi-main-text {
    font-size: 13px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
}

.testi-quote-text {
    font-size: 13px;
    color: #333;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 25px;
}

.testi-footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testi-stars i {
    color: #facc15;
    /* Yellow/Gold stars */
    font-size: 14px;
    margin-left: 2px;
}

@media (max-width: 1024px) {
    .testi-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

.video-layout-new {
    display: flex;
    gap: 15px;
    background: transparent;
    padding: 0;
    border-radius: 15px;
    box-shadow: none;
}

.main-video-card {
    flex: 5;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid #4FA1C4;
    aspect-ratio: 16 / 9;
    height: auto;
}

.main-video-card video,
.main-video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-video-overlay-new {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, transparent 80%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 30px 40px;
    color: white;
}

.main-video-overlay-new h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.2;
    text-align: left;
}

.main-video-overlay-new p {
    font-size: 13px;
    max-width: 350px;
    line-height: 1.4;
    margin-bottom: 15px;
    font-weight: 500;
    text-align: left;
}

.btn-explore-vids {
    display: inline-block;
    background-color: #4FA1C4;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-main);
    transition: background 0.3s;
}

.btn-explore-vids:hover {
    background-color: #408ca8;
}

.video-thumbs-stack {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vid-thumb-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    flex: 1;
    cursor: pointer;
    min-height: 0;
    border: 2px solid transparent;
    background: transparent;
    padding: 0;
    text-align: left;
}

.vid-thumb-card.active {
    border-color: #4FA1C4;
}

.vid-thumb-card img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    object-fit: cover;
}

.vid-thumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.play-circle {
    display: flex;
    width: 35px;
    height: 35px;
    background: white;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    margin-top: -10px;
}

.play-circle i {
    color: #4FA1C4;
    font-size: 14px;
    margin-left: 3px;
}

.thumb-bottom-info {
    position: absolute;
    bottom: 12px;
    left: 15px;
    color: white;
    text-align: left;
}

.thumb-bottom-info p {
    font-weight: 600;
    font-size: 13px;
    color: white;
    margin: 0;
}

.thumb-stars {
    color: #facc15;
    font-size: 10px;
    margin-top: 3px;
}



@media (max-width: 768px) {
    .video-layout-new {
        display: flex;
        flex-direction: column;
        gap: 15px;
        background: transparent;
        padding: 0;
        border-radius: 15px;
        box-shadow: none;
    }

    .main-video-card {
        flex: 1;
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        border: 3px solid #4FA1C4;
        aspect-ratio: 4/3;
        height: auto;
    }

    .main-video-overlay-new {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, transparent 80%);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 25px 30px;
        color: white;
    }

    .main-video-overlay-new h2 {
        font-size: 28px;
        font-weight: 800;
        margin-bottom: 8px;
        line-height: 1.2;
        text-align: left;
    }

    .main-video-overlay-new p {
        font-size: 12px;
        max-width: 300px;
        line-height: 1.4;
        margin-bottom: 12px;
        font-weight: 500;
        text-align: left;
    }

    .btn-explore-vids {
        display: inline-block;
        background-color: #4FA1C4;
        color: white;
        border: none;
        padding: 8px 18px;
        border-radius: 8px;
        font-size: 12px;
        font-weight: 600;
        cursor: pointer;
        font-family: var(--font-main);
        transition: background 0.3s;
    }

    .video-thumbs-stack {
        flex: 1;
        display: flex;
        flex-direction: row;
        gap: 12px;
        height: 140px;
    }

    .vid-thumb-card {
        position: relative;
        border-radius: 15px;
        overflow: hidden;
        flex: 1;
        cursor: pointer;
        height: 140px;
        width: 100%;
        border: 2px solid transparent;
        background: transparent;
        padding: 0;
    }
}



/* --- Slidable Carousel Mobile/Tablet Fixes --- */

@media (max-width: 1024px) {

    /* Convert Grids to Horizontal Scroll Snaps */
    .package-grid,
    .celeb-grid-new,
    .dest-grid-vertical-new,
    .testi-grid-new {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory;
        gap: 20px !important;
        padding-bottom: 25px !important;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .dest-grid-vertical-new {
        gap: 10px !important;

    }

    .package-grid::-webkit-scrollbar,
    .celeb-grid-new::-webkit-scrollbar,
    .dest-grid-vertical-new::-webkit-scrollbar,
    .testi-grid-new::-webkit-scrollbar,
    ::-webkit-scrollbar {
        display: none;
    }

    .pkg-card,
    .celeb-mock-card,
    .dest-mock-card,
    .testi-mock-card,
    .place-mock-card {
        flex: 0 0 calc(50% - 20px) !important;
        scroll-snap-align: center;
        min-width: 250px;
        grid-column: auto !important;
        height: auto;
    }

    .dest-mock-card {
        max-width: 100px !important;
        border-radius: 16px !important;
    }


    .pkg-card {
        height: 450px;
    }

    .celeb-mock-card {
        height: 450px;
    }

    .dest-mock-card {
        height: 400px;
    }

    .testi-mock-card {
        height: auto;
        min-height: 300px;
    }
}

@media (max-width: 768px) {

    /* Mobile adjustments: cards take up roughly 92% of screen to hint at next card */
    .pkg-card,
    .celeb-mock-card,
    .dest-mock-card,
    .testi-mock-card,
    .place-mock-card {
        flex: 0 0 92% !important;
        scroll-snap-align: center;
    }

    /* General Mobile Responsiveness Fixes */
    .hero h1 {
        font-size: 40px !important;
    }

    .hero p {
        font-size: 15px !important;
    }

    .section-title {
        font-size: 28px !important;
        text-align: center !important;
    }

    .section-subtitle {
        text-align: center !important;
        font-size: 14px !important;
        margin-bottom: 30px !important;
    }

    .hero-bottom-pills {
        left: 20px !important;
        bottom: 20px !important;
        right: 20px !important;
        overflow-x: auto;
        white-space: nowrap;
        scroll-snap-type: x mandatory;
        padding-bottom: 10px;
    }

    .pill-btn {
        scroll-snap-align: start;
    }

    .nav-links {
        display: none;
    }
}

@media (max-width: 768px) {

    /* Main Video Overlay Mobile Text Sizes */
    .main-video-overlay-new {
        padding: 25px !important;
    }

    .main-video-overlay-new h2 {
        font-size: 28px !important;
        margin-bottom: 10px !important;
        line-height: 1.2 !important;
    }

    .main-video-overlay-new p {
        font-size: 13px !important;
        margin-bottom: 15px !important;
        max-width: 100% !important;
        line-height: 1.4 !important;
    }

    .btn-explore-vids {
        font-size: 13px !important;
        padding: 10px 18px !important;
    }
}

@media (max-width: 1024px) {
    .sights-grid-new {
        display: grid !important;
        grid-template-columns: repeat(12, 1fr) !important;
        gap: 10px !important;
    }

    .sights-grid-new .sight-card {
        height: 150px !important;
        /* Smaller height for tablet/mobile */
        flex: unset !important;
        max-width: unset !important;
    }

    .sights-grid-new .sight-card:nth-child(1) {
        grid-column: span 7 !important;
    }

    .sights-grid-new .sight-card:nth-child(2) {
        grid-column: span 5 !important;
    }

    .sights-grid-new .sight-card:nth-child(3) {
        grid-column: span 4 !important;
    }

    .sights-grid-new .sight-card:nth-child(4) {
        grid-column: span 4 !important;
    }

    .sights-grid-new .sight-card:nth-child(5) {
        grid-column: span 4 !important;
    }
}

@media (max-width: 768px) {
    .sights-grid-new {
        gap: 4px !important;
    }

    .sights-grid-new .sight-card {
        height: 110px !important;
        /* Even smaller for mobile to fit nicely */
    }

    .sights-grid-new .sight-card h3 {
        font-size: 14px !important;
    }

    .sight-card {
        border-radius: 8px !important;
    }
}

/* --- Mobile Horizontal Scanners --- */
@media (max-width: 768px) {

    .package-grid,
    .celeb-grid-new,
    .dest-grid-vertical-new,
    .testi-grid-new {
        display: flex !important;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 20px;
        gap: 15px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .package-grid::-webkit-scrollbar,
    .celeb-grid-new::-webkit-scrollbar,
    .dest-grid-vertical-new::-webkit-scrollbar,
    .testi-grid-new::-webkit-scrollbar {
        display: none;
    }

    .package-grid>*,
    .celeb-grid-new>*,
    .dest-grid-vertical-new>* ,
    .testi-grid-new>* {
        flex: 0 0 calc(85% - 15px);
        scroll-snap-align: center;
        width: auto;
    }
}

/* Mobile layout: keep "Most Popular Places" as a slider so each tab
   starts with its first card and users can swipe through all cards. */
@media (max-width: 768px) {
    .places-carousel-new {
        display: flex !important;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding-bottom: 20px;
        -webkit-overflow-scrolling: touch;
    }

    .places-carousel-new > * {
        flex: 0 0 calc(50% - 8px);
        scroll-snap-align: start;
    }
}

@media (max-width: 480px) {
    .places-carousel-new {
        display: flex !important;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding-bottom: 20px;
        -webkit-overflow-scrolling: touch;
    }

    .places-carousel-new > * {
        flex: 0 0 100%;
        scroll-snap-align: center;
    }
}

/* --- New Premium Footer --- */
.main-footer-new {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid-new {
    display: grid;
    grid-template-columns: 2.8fr 1.6fr 1.6fr 1.6fr;
    gap: 30px;
    padding-bottom: 40px;
}

.brand-col-new p {
    color: #cbd5e1;
    font-size: 13px;
    line-height: 1.6;
    max-width: 250px;
}

.link-col-new h3,
.contact-col-new h3 {
    color: #54a8c7;
    font-size: 14px;
    margin-bottom: 25px;
    font-weight: 600;
}

.link-col-new ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.link-col-new ul li a {
    color: #cbd5e1;
    font-size: 13px;
    transition: color 0.3s;
}

.link-col-new ul li a:hover {
    color: white;
}

.contact-col-new p {
    color: #f8fafc;
    font-size: 13px;
    margin-bottom: 12px;
}

.social-badges {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.social-badges a {
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 6px;
    font-size: 14px;
    transition: background 0.3s;
}

.social-badges a:hover {
    background: #4FA1C4;
}

.footer-bottom-new {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    color: #cbd5e1;
    font-size: 11px;
}

.footer-copyright-left {
    justify-self: start;
    margin: 0;
}

.footer-copyright-center {
    justify-self: center;
    margin: 0;
    text-align: center;
}

.footer-copyright-left a {
    color: inherit;
    text-decoration: none;
}

.footer-copyright-left a:hover {
    text-decoration: underline;
}

.payment-pills {
    justify-self: end;
}

.payment-pills {
    display: none;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.pay-badge {
    min-width: 0;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: white;
    padding: 0 4px;
    border-radius: 6px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
}

.pay-badge i {
    font-size: 20px;
    line-height: 1;
    color: #1f2937;
}

.pay-badge .fa-cc-mastercard {
    color: #eb001b;
}

.pay-badge .fa-cc-paypal {
    color: #003087;
}

.pay-badge .fa-cc-stripe {
    color: #635bff;
}

.pay-badge .fa-google-pay {
    color: #0f9d58;
}

.pay-badge .fa-cc-apple-pay {
    color: #111827;
}

/* Responsiveness for New Footer */
@media (max-width: 1024px) {
    .footer-grid-new {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-grid-new {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: left;
    }

    .brand-col-new p {
        max-width: none;
        width: 100%;
    }

    .footer-bottom-new {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
    }

    .footer-copyright-left,
    .footer-copyright-center,
    .payment-pills {
        justify-self: center;
    }

    .payment-pills {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Responsiveness for Hero */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 15px;
    }

    .award-text {
        font-size: 28px;
    }

    .hero-award i.fa-award {
        font-size: 32px !important;
    }

    .hero-award-logo {
        width: min(270px, 86vw);
        max-height: 190px;
        padding: 10px 12px;
    }

}

/* --- Premium Animations & Micro-Interactions --- */
.reveal-up {
    opacity: 0;
    /* Keep elements in place and only fade them in to avoid
       visible upward "jump" when they enter the viewport */
    transform: translateY(0);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

/* Hover Effects */
.place-mock-card img,
.pkg-card,
.sight-card img {
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.place-mock-card:hover img,
.sight-card:hover img {
    transform: scale(1.05);
}

.place-mock-card,
.sight-card {
    overflow: hidden;
}

.trust-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-5px);
}

/* Card-specific entry animation: soft fade + scale in
   Uses the existing IntersectionObserver that toggles the
   .active class on .reveal-up elements. Applied to major
   card components so they animate without shifting layout. */

.pkg-card.reveal-up,
.place-mock-card.reveal-up,
.celeb-mock-card.reveal-up,
.dest-mock-card.reveal-up,
.testi-mock-card.reveal-up {
    opacity: 0;
    transform: scale(0.96);
    transition: opacity 0.6s cubic-bezier(0.2, 0.8, 0.2, 1),
                transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.pkg-card.reveal-up.active,
.place-mock-card.reveal-up.active,
.celeb-mock-card.reveal-up.active,
.dest-mock-card.reveal-up.active,
.testi-mock-card.reveal-up.active {
    opacity: 1;
    transform: scale(1);
}


/* --- Mobile Hamburger Slider Menu --- */
.hamburger,
.close-menu {
    display: none;
    font-size: 26px;
    cursor: pointer;
    color: white;
    z-index: 1001;
    transition: color 0.3s ease;
}

.hamburger:hover {
    color: #4FA1C4;
}

#main-header.scrolled .hamburger,
#main-header.scrolled .close-menu {
    color: var(--text-dark);
}

#main-header.scrolled .hamburger:hover {
    color: #4FA1C4;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
}

body {
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 998;
}

body.menu-open {
    overflow: hidden;
}

body.menu-open::before {
    opacity: 1;
    pointer-events: auto;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
        width: 44px;
        height: 44px;
        border: 1px solid rgba(255, 255, 255, 0.35);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(8px);
    }

    .hamburger.menu-open-btn {
        color: #4FA1C4;
        border-color: rgba(79, 161, 196, 0.45);
        background: rgba(255, 255, 255, 0.18);
    }

    .nav-links {
        display: flex !important;
        position: fixed;
        top: 0;
        right: 0;
        width: min(80vw, 290px);
        height: 100vh;
        background: linear-gradient(180deg, #0f172a 0%, #172338 100%);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 76px;
        padding-left: 0;
        padding-bottom: 18px;
        transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
        z-index: 999;
        /* keep border when visible only */
    }

    /* Hide off-screen using translateX to avoid a 1px artifact showing at the viewport edge */
    .nav-links {
        transform: translateX(100%);
    }

    .nav-links.active {
        transform: translateX(0);
        box-shadow: -12px 0 40px rgba(2, 6, 23, 0.35);
        border-left: 1px solid rgba(148, 163, 184, 0.25);
    }

    .nav-links a {
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 0;
        color: #e2e8f0;
        padding: 12px 20px;
        border-bottom: 1px solid rgba(100, 116, 139, 0.2);
        transition: all 0.3s ease;
        display: block;
        border-radius: 0;
        background: transparent;
    }

    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown-toggle {
        width: 100%;
        justify-content: space-between;
        color: #e2e8f0;
        padding: 12px 20px;
        border-bottom: 1px solid rgba(100, 116, 139, 0.2);
        border-radius: 0;
        background: transparent;
    }

    .nav-dropdown-toggle.active,
    .nav-dropdown.is-open .nav-dropdown-toggle {
        background: rgba(79, 161, 196, 0.2);
        color: #7dd3fc;
        border-left: 3px solid #4FA1C4;
        padding-left: 23px;
    }

    .nav-dropdown-menu {
        position: static;
        min-width: 100%;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        background: rgba(15, 23, 42, 0.22);
        padding: 0;
        gap: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.25s ease;
    }

    .nav-dropdown.is-open .nav-dropdown-menu {
        max-height: 260px;
    }

    .nav-dropdown-menu a {
        color: #d5deec;
        font-size: 12px;
        border-radius: 0;
        border-bottom: 1px solid rgba(100, 116, 139, 0.16);
        padding: 11px 34px;
    }

    .nav-dropdown-menu a:hover {
        color: #7dd3fc;
        background: rgba(79, 161, 196, 0.12);
    }

    .nav-links a:hover {
        background: rgba(79, 161, 196, 0.16);
        color: #4FA1C4;
        padding-left: 36px;
    }

    .nav-links a.active {
        background: rgba(79, 161, 196, 0.2);
        color: #7dd3fc;
        border-left: 3px solid #4FA1C4;
        padding-left: 23px;
    }

    /* Keep slide-menu links readable on dark panel even after header gets .scrolled */
    #main-header.scrolled .nav-links a {
        color: #ffffff;
    }

    #main-header.scrolled .nav-dropdown-toggle {
        color: #ffffff;
    }

    #main-header.scrolled .nav-links a:hover {
        color: #7dd3fc;
    }

    #main-header.scrolled .nav-dropdown-toggle:hover {
        color: #7dd3fc;
    }

    #main-header.scrolled .nav-links a.active {
        color: #7dd3fc;
    }

    #main-header.scrolled .nav-dropdown-toggle.active,
    #main-header.scrolled .nav-dropdown.is-open .nav-dropdown-toggle {
        color: #7dd3fc;
    }

    .close-menu {
        display: none;
    }

    .header-right {
        display: none;
    }

    #main-header.scrolled .hamburger {
        border-color: rgba(30, 41, 59, 0.2);
        background: rgba(255, 255, 255, 0.85);
    }
}


.testimonials {
    padding-bottom: 0px !important;
    padding-top: 10px !important;

}

/* Quick Enquiry Form */
.quick-enquiry {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 20%, rgba(84, 168, 199, 0.22) 0%, rgba(84, 168, 199, 0) 38%),
        radial-gradient(circle at 88% 10%, rgba(15, 23, 42, 0.16) 0%, rgba(15, 23, 42, 0) 33%),
        linear-gradient(180deg, #f9fcff 0%, #ecf4fa 100%);
}

.quick-enquiry .container {
    padding-top: 70px;
    padding-bottom: 70px;
}

.quick-enquiry .section-title {
    margin-bottom: 12px;
}

.quick-enquiry .section-subtitle {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.quick-enquiry-form {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(148, 163, 184, 0.28);
    border-radius: 24px;
    padding: 26px;
    box-shadow:
        0 26px 54px rgba(15, 23, 42, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(6px);
}

.qe-field {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.qe-field label {
    font-size: 12px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-weight: 700;
    color: #1e293b;
}

.qe-field input,
.qe-field select {
    height: 48px;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    padding: 0 14px;
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 500;
    color: #0f172a;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.qe-field input::placeholder {
    color: #94a3b8;
}

.qe-field select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 42px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath d='M5 7l5 6 5-6' fill='none' stroke='%2354a8c7' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
}

.qe-field select:invalid {
    color: #94a3b8;
}

.qe-field input[type="date"] {
    padding-right: 42px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24'%3E%3Crect x='3' y='5' width='18' height='16' rx='2' fill='none' stroke='%2354a8c7' stroke-width='1.8'/%3E%3Cpath d='M8 3v4M16 3v4M3 10h18' fill='none' stroke='%2354a8c7' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
}

.qe-field input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0;
    position: absolute;
    right: 10px;
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.qe-field input:focus,
.qe-field select:focus {
    border-color: #54a8c7;
    box-shadow: 0 0 0 4px rgba(84, 168, 199, 0.2);
    background: #ffffff;
    transform: translateY(-1px);
}

.qe-submit-btn {
    grid-column: span 4;
    border: none;
    height: 52px;
    border-radius: 14px;
    font-family: var(--font-main);
    font-size: 15px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #54a8c7 0%, #2f7fa1 50%, #1f4f68 100%);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.qe-submit-btn:hover {
    transform: translateY(-3px);
    filter: saturate(1.08);
    box-shadow: 0 14px 24px rgba(31, 79, 104, 0.32);
}

@media (max-width: 1024px) {
    .quick-enquiry-form {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .qe-submit-btn {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .quick-enquiry .container {
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }

    .quick-enquiry-form {
        grid-template-columns: 1fr;
        padding: 18px;
        border-radius: 16px;
    }

    .qe-submit-btn {
        grid-column: span 1;
        height: 50px;
    }
}

/* Arrival Popup Enquiry */
.arrival-popup {
    position: fixed;
    inset: 0;
    z-index: 2200;
    display: grid;
    place-items: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
}

.arrival-popup.active {
    opacity: 1;
    pointer-events: auto;
}

.arrival-popup.active .arrival-popup-dialog {
    animation: popupRiseIn 0.34s ease both;
}

.arrival-popup-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(84, 168, 199, 0.2) 0%, rgba(84, 168, 199, 0) 46%),
        radial-gradient(circle at 80% 90%, rgba(30, 64, 175, 0.15) 0%, rgba(30, 64, 175, 0) 44%),
        rgba(2, 6, 23, 0.72);
    backdrop-filter: blur(5px);
}

.arrival-popup-dialog {
    position: relative;
    width: min(760px, 100%);
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 251, 255, 0.98) 100%),
        linear-gradient(135deg, rgba(84, 168, 199, 0.2), rgba(30, 64, 175, 0.16));
    border: 1px solid rgba(115, 148, 175, 0.35);
    box-shadow:
        0 30px 70px rgba(15, 23, 42, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
    padding: 26px;
    max-height: calc(100vh - 48px);
    overflow-y: auto;
}

.arrival-popup-dialog::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 22px 22px 0 0;
    background: linear-gradient(90deg, #54a8c7 0%, #2f7fa1 45%, #1f4f68 100%);
}

.arrival-popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border: 1px solid #d7e4ef;
    border-radius: 10px;
    background: linear-gradient(180deg, #ffffff 0%, #f3f8fd 100%);
    color: #0f172a;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.arrival-popup-close:hover {
    transform: translateY(-1px);
    border-color: #9ac4d7;
    box-shadow: 0 10px 18px rgba(15, 23, 42, 0.14);
}

.arrival-popup-head {
    margin-bottom: 18px;
    padding-right: 46px;
}

.arrival-popup-kicker {
    margin: 0 0 4px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    color: #2f7fa1;
}

.arrival-popup-head h3 {
    margin: 0;
    font-size: 28px;
    line-height: 1.2;
    color: #0f172a;
    letter-spacing: -0.01em;
}

.arrival-popup-head p {
    margin: 8px 0 0;
    color: #334155;
    font-size: 14px;
}

.arrival-popup-trust {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.arrival-popup-trust span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #d6e4f0;
    background: #f7fbff;
    color: #234055;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 10px;
}

.arrival-popup-trust i {
    color: #2f7fa1;
}

.arrival-popup-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
}

.arrival-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.arrival-field label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
    color: #1f3347;
}

.arrival-field input,
.arrival-field select,
.arrival-field textarea {
    width: 100%;
    border: 1px solid #c4d3e3;
    border-radius: 12px;
    padding: 11px 13px;
    font-family: var(--font-main);
    font-size: 14px;
    color: #0f172a;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.arrival-field input,
.arrival-field select {
    height: 46px;
}

.arrival-field textarea {
    resize: vertical;
    min-height: 92px;
}

.arrival-field select:invalid {
    color: #94a3b8;
}

.arrival-field input:focus,
.arrival-field select:focus,
.arrival-field textarea:focus {
    border-color: #54a8c7;
    box-shadow: 0 0 0 4px rgba(84, 168, 199, 0.2), 0 10px 16px rgba(15, 23, 42, 0.08);
    transform: translateY(-1px);
}

.arrival-field-full {
    grid-column: 1 / -1;
}

.arrival-submit-btn {
    border: none;
    height: 50px;
    border-radius: 13px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #54a8c7 0%, #2f7fa1 55%, #1f4f68 100%);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.arrival-popup-actions {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
}

.arrival-skip-btn {
    height: 50px;
    border-radius: 13px;
    border: 1px solid #c6d8e6;
    background: #ffffff;
    color: #234055;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.arrival-skip-btn:hover {
    border-color: #8bb6cc;
    background: #f3f9fd;
}

.arrival-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 22px rgba(31, 79, 104, 0.35);
    filter: saturate(1.08);
}

.arrival-popup-note {
    margin: -2px 0 0;
    font-size: 11px;
    color: #5b7184;
    text-align: center;
}

body.popup-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    .arrival-popup {
        padding: 10px;
    }

    .arrival-popup-dialog {
        width: min(460px, 96vw);
        border-radius: 14px;
        padding: 14px;
        max-height: 82vh;
    }

    .arrival-popup-dialog::before {
        border-radius: 14px 14px 0 0;
    }

    .arrival-popup-head {
        margin-bottom: 10px;
        padding-right: 34px;
    }

    .arrival-popup-kicker {
        font-size: 10px;
        letter-spacing: 0.1em;
    }

    .arrival-popup-head h3 {
        font-size: 18px;
    }

    .arrival-popup-head p {
        display: none;
    }

    .arrival-popup-trust {
        margin-top: 8px;
    }

    .arrival-popup-trust span {
        font-size: 10px;
        padding: 5px 8px;
    }

    .arrival-popup-form {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .arrival-field label {
        font-size: 10px;
    }

    .arrival-field input,
    .arrival-field select,
    .arrival-field textarea {
        font-size: 13px;
        padding: 9px 10px;
    }

    .arrival-field input,
    .arrival-field select {
        height: 40px;
    }

    .arrival-field textarea {
        min-height: 72px;
    }

    .arrival-submit-btn {
        height: 44px;
        font-size: 12px;
    }

    .arrival-skip-btn {
        height: 44px;
        font-size: 11px;
    }

    .arrival-popup-actions {
        grid-template-columns: 120px minmax(0, 1fr);
    }
}

@media (max-width: 430px) {
    .arrival-popup-dialog {
        width: 96vw;
        max-height: 86vh;
    }

    .arrival-popup-form {
        grid-template-columns: 1fr;
    }

    .arrival-popup-actions {
        grid-template-columns: 1fr;
    }
}

@keyframes popupRiseIn {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Privacy Policy Page */
.privacy-page {
    background:
        radial-gradient(circle at 8% 8%, rgba(84, 168, 199, 0.16) 0%, rgba(84, 168, 199, 0) 33%),
        linear-gradient(180deg, #f4f9fd 0%, #edf4fa 28%, #f8fbff 100%);
    color: #0f172a;
}

.privacy-page-main {
    padding-top: 96px;
    padding-bottom: 70px;
}

.privacy-hero {
    padding: 48px 0 30px;
}

.privacy-kicker {
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 11px;
    font-weight: 700;
    color: #2f7fa1;
}

.privacy-hero h1 {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.1rem);
    font-weight: 600;
    color: #0b1220;
}

.privacy-updated {
    margin: 12px 0 0;
    color: #547186;
    font-size: 14px;
    font-weight: 500;
}

.privacy-hero-chips {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.privacy-hero-chips span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(95, 130, 157, 0.28);
    background: rgba(255, 255, 255, 0.75);
    color: #1f3a52;
    font-size: 12px;
    font-weight: 600;
}

.privacy-hero-chips i {
    color: #2f7fa1;
}

.privacy-content {
    padding-bottom: 10px;
}

.privacy-layout {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
}

.privacy-summary-card {
    position: sticky;
    top: 108px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(133, 166, 191, 0.32);
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.09);
}

.privacy-summary-card h2 {
    margin: 0 0 12px;
    font-size: 1rem;
    color: #102235;
}

.privacy-summary-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 6px;
}

.privacy-summary-card li a {
    display: block;
    border-radius: 9px;
    padding: 8px 10px;
    color: #35556f;
    font-size: 13px;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.privacy-summary-card li a:hover {
    background: #ecf5fb;
    color: #1a3e59;
}

.privacy-content-card {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(133, 166, 191, 0.28);
    border-radius: 22px;
    padding: 32px;
    box-shadow:
        0 24px 52px rgba(15, 23, 42, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.policy-section {
    padding: 16px 16px 14px;
    border-radius: 14px;
}

.policy-section + .policy-section {
    margin-top: 12px;
}

.policy-section:not(:first-child) {
    background: linear-gradient(180deg, rgba(246, 251, 255, 0.92) 0%, rgba(240, 248, 255, 0.82) 100%);
    border: 1px solid rgba(160, 186, 208, 0.28);
}

.privacy-content-card h2 {
    margin: 0 0 10px;
    font-size: 1.2rem;
    line-height: 1.35;
    color: #12263a;
    display: flex;
    align-items: center;
    gap: 10px;
}

.privacy-content-card h2 span {
    width: 27px;
    height: 27px;
    border-radius: 8px;
    display: inline-grid;
    place-items: center;
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #54a8c7 0%, #2f7fa1 100%);
}

.privacy-content-card p,
.privacy-content-card li {
    font-size: 14px;
    line-height: 1.8;
    color: #24364a;
}

.privacy-content-card p {
    margin: 0 0 10px;
}

.privacy-content-card ul {
    margin: 0 0 12px;
    padding-left: 18px;
}

.privacy-content-card a {
    color: #2f7fa1;
    font-weight: 600;
    text-decoration: none;
}

.privacy-content-card a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .privacy-page-main {
        padding-top: 86px;
        padding-bottom: 46px;
    }

    .privacy-hero {
        padding: 32px 0 20px;
    }

    .privacy-hero-chips {
        margin-top: 12px;
        gap: 7px;
    }

    .privacy-hero-chips span {
        font-size: 11px;
        padding: 6px 10px;
    }

    .privacy-layout {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .privacy-summary-card {
        position: static;
        padding: 14px;
        border-radius: 14px;
    }

    .privacy-summary-card h2 {
        font-size: 0.95rem;
    }

    .privacy-summary-card li a {
        padding: 7px 8px;
        font-size: 12px;
    }

    .privacy-content-card {
        border-radius: 16px;
        padding: 18px;
    }

    .policy-section {
        padding: 12px;
        border-radius: 12px;
    }

    .privacy-content-card h2 {
        font-size: 1.06rem;
    }

    .privacy-content-card h2 span {
        width: 24px;
        height: 24px;
        border-radius: 7px;
        font-size: 11px;
    }

    .privacy-content-card p,
    .privacy-content-card li {
        font-size: 13px;
        line-height: 1.72;
    }
}

/* --- Premium Typography & Hero UI --- */
.hero-title {
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.serif-elegant {
    font-family: 'Playfair Display', serif;
    font-size: 84px;
    font-weight: 600;
    font-style: italic;
    color: #ffffff;
}

.sans-crisp {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: #cbd5e1;
    display: inline-block;
    margin-top: 10px;
}

.hero-description {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 45px;
    color: #e2e8f0;
    max-width: 500px;
    line-height: 1.6;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-journey-btn {
    display: inline-block;
    padding: 14px 40px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    text-decoration: none;
}

.hero-journey-btn:hover {
    background: rgba(255, 255, 255, 1);
    color: #11141c;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.7;
    animation: fadePulse 3s infinite;
}

.scroll-indicator span {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 300;
    color: #cbd5e1;
}

.mouse {
    width: 24px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 2px;
    height: 6px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite ease-out;
}

@keyframes scrollWheel {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 15px);
        opacity: 0;
    }
}

@keyframes fadePulse {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .serif-elegant {
        font-size: 52px;
    }

    .sans-crisp {
        font-size: 14px;
        letter-spacing: 4px;
    }

    .premium-btn {
        padding: 12px 30px;
        font-size: 12px;
    }

    .hero-description {
        font-size: 14px;
        padding: 0 10px;
    }
}

/* Tab Filtering Animation Logic */
.filter-item {
    transition: opacity 0.3s ease, transform 0.3s ease;
    will-change: opacity, transform;
}

/* --- Fix: Prevent cards from overflowing above section on vertical scroll --- */
.trending-packages,
.honeymoon-packages,
.family-packages,
.popular-places,
.celebrities,
.destinations-vertical,
.testimonials {
    overflow: hidden;
    position: relative;
}


/* --- Mobile Section Spacing Normalization --- */
@media (max-width: 768px) {

    /* Standardize all section paddings to fix excess whitespace */
    section .container {
        padding-top: 45px !important;
        padding-bottom: 45px !important;
    }

    /* Standardize Title Group heights */
    .section-title {
        font-size: 28px !important;
        margin-bottom: 15px !important;
    }

    .section-subtitle {
        margin-bottom: 30px !important;
        font-size: 14px !important;
        padding: 0 10px;
    }


    @media (max-width: 768px) {
        .trust-section .container {
            padding-top: 18px !important;
            padding-bottom: 14px !important;
        }

        .trending-packages .container {
            padding-top: 20px !important;
            padding-bottom: 20px !important;
        }

        .package-grid {
            padding: 0px !important;

        }

        .honeymoon-packages .container {
            padding-top: 20px !important;
            padding-bottom: 20px !important;
        }

        .top-sights .container {
            padding-top: 20px !important;
            padding-bottom: 20px !important;
        }

        .destinations .container {
            padding-top: 20px !important;
            padding-bottom: 20px !important;
        }

        .popular-places .container {
            padding-top: 20px !important;
            padding-bottom: 20px !important;
        }


        .testimonials .container {
            padding-top: 20px !important;
            padding-bottom: 20px !important;
        }

        .video-promo-new {
            padding: 0px !important;
        }

        .family-packages .container {
            padding-top: 20px !important;
            padding-bottom: 20px !important;
        }

        .celebrities .container {
            padding-top: 20px !important;
            padding-bottom: 20px !important;
        }

        .destinations-vertical .text-center {
            padding-top: 20px !important;
            padding-bottom: 20px !important;
        }
        .main-footer-new{
            padding: 0px !important;
        }


        .inclusion-section{
            padding: 0px !important;
        }
        .itinerary-section{
            padding: 0px !important;
        }
        .section .container {
            padding: 0px !important;
       }


    }
    @media (max-width: 768px) {
    section .container {
            padding-top: 10px !important;
            padding-bottom: 10px !important;
    }
    .tpd-reviews-modern-shell, .tpd-reviews-modern{
        padding: 0px !important;
    }

    #credibility-title{
        display: none !important;
    }
    .tpd-pricing .container{
        padding-top: 0px !important;
    }
    .tpd-overview .container{
        
        padding-bottom: 15px !important;
    }

    .inclusion-section .container{
        padding-top: 15px !important;

    }


    .tpd-hero-actions{
        margin-bottom: 10px !important;
    }


    .quick-enquiry .container{
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }


    .tpd-reviews-modern .container{
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }

    .tpd-credibility .container{
        padding-top: 50px !important;
    }

    .itinerary-section .container{
        padding-top: 50px !important;

    }



    

}

.btn-explore-vids{
    display: none !important;
}











  

}


.tpd-inquiry, .tpd-gallery, .tpd-why-choose, .tpd-reviews-fresh{
    display: none !important;
}

/* --- Final Mobile Peek Hint For Package Rails --- */
@media (max-width: 768px) {
    .trending-packages .package-grid,
    .honeymoon-packages .package-grid,
    .family-packages .package-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory;
        gap: 14px !important;
        padding: 0 14px 10px !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .trending-packages .package-grid::-webkit-scrollbar,
    .honeymoon-packages .package-grid::-webkit-scrollbar,
    .family-packages .package-grid::-webkit-scrollbar {
        display: none;
    }

    .trending-packages .pkg-card,
    .honeymoon-packages .pkg-card,
    .family-packages .pkg-card {
        flex: 0 0 75vw !important;
        min-width: 75vw !important;
        scroll-snap-align: start !important;
    }

}

/* --- All Packages Page --- */
.packages-page {
    --pkg-ink: #10233a;
    --pkg-ocean: #1e6f94;
    --pkg-sky: #49a7cc;
    --pkg-mint: #38b2ac;
    --pkg-gold: #f4c43d;
    --pkg-bg-soft: #f4f8fc;
    background:
        radial-gradient(circle at 10% 8%, rgba(73, 167, 204, 0.12) 0%, rgba(73, 167, 204, 0) 44%),
        radial-gradient(circle at 91% 10%, rgba(16, 35, 58, 0.08) 0%, rgba(16, 35, 58, 0) 36%),
        linear-gradient(180deg, #f6fbff 0%, #f8fbfe 36%, #ffffff 74%);
}

.packages-page main {
    padding-top: 108px;
}

.packages-hero {
    position: relative;
    padding: 28px 0 16px;
}

.packages-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(118deg, rgba(16, 35, 58, 0.84) 8%, rgba(30, 111, 148, 0.76) 52%, rgba(56, 178, 172, 0.36) 100%);
    pointer-events: none;
    z-index: 0;
}

.packages-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('images/hero section 2.jpg');
    background-size: cover;
    background-position: center;
    mix-blend-mode: multiply;
    opacity: 0.62;
    pointer-events: none;
}

.packages-hero-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.5fr 0.8fr;
    align-items: stretch;
    gap: 24px;
    padding-top: 28px;
    padding-bottom: 34px;
}

.packages-hero-copy {
    color: #f8fbff;
}

.packages-kicker {
    display: inline-flex;
    align-items: center;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(248, 250, 252, 0.18);
    border: 1px solid rgba(248, 250, 252, 0.32);
    backdrop-filter: blur(6px);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.packages-hero .section-title {
    color: #ffffff;
    text-align: left;
    margin-bottom: 14px;
    max-width: 640px;
    font-size: clamp(2rem, 4.2vw, 3.4rem);
    line-height: 1.06;
}

.packages-hero .section-title span {
    color: #b8f0ff;
}

.packages-hero .section-subtitle {
    text-align: left;
    color: rgba(239, 246, 255, 0.92);
    margin: 0;
    max-width: 650px;
    font-size: 1.02rem;
}

.packages-hero-chips {
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.packages-hero-chips span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.3);
    border: 1px solid rgba(186, 230, 253, 0.45);
    color: #f0f9ff;
    font-size: 12px;
    font-weight: 500;
}

.packages-hero-chips i {
    color: #67e8f9;
}

.packages-hero-panel {
    display: grid;
    gap: 12px;
    padding: 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(191, 219, 254, 0.38);
    backdrop-filter: blur(11px);
    box-shadow: 0 18px 34px rgba(2, 6, 23, 0.26);
}

.packages-hero-stat {
    border-radius: 14px;
    border: 1px solid rgba(226, 232, 240, 0.34);
    background: rgba(2, 6, 23, 0.3);
    padding: 14px 16px;
}

.packages-hero-stat strong {
    display: block;
    color: #f8fafc;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.packages-hero-stat span {
    color: rgba(226, 232, 240, 0.9);
    font-size: 12px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.packages-catalog .container {
    padding-top: 32px;
    padding-bottom: 80px;
}

.packages-catalog {
    background: #ffffff;
}

.packages-catalog-head {
    text-align: center;
    margin-bottom: 18px;
}

.packages-catalog-head h2 {
    font-size: clamp(1.45rem, 2.1vw, 2rem);
    color: var(--pkg-ink);
    margin-bottom: 8px;
}

.packages-catalog-head p {
    color: #42526a;
    max-width: 720px;
    margin: 0 auto;
}

.package-category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 26px;
}

.package-category-tabs .tab-btn {
    border: 1px solid #cfdae7;
    background: #ffffff;
    color: #17263d;
    font-weight: 600;
    font-size: 13px;
    padding: 9px 18px;
    border-radius: 999px;
    transition: all 0.24s ease;
    box-shadow: 0 8px 16px rgba(16, 35, 58, 0.06);
}

.package-category-tabs .tab-btn:hover {
    border-color: #7fc8e4;
    color: #165979;
    transform: translateY(-1px);
}

.package-category-tabs .tab-btn.active {
    background: linear-gradient(120deg, #1e6f94 0%, #49a7cc 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 12px 22px rgba(30, 111, 148, 0.3);
}

.packages-catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.packages-catalog-grid .pkg-card {
    min-height: 430px;
    height: 430px;
    border-radius: 20px;
    border: 1px solid rgba(133, 156, 184, 0.28);
    box-shadow: 0 16px 34px rgba(16, 35, 58, 0.14);
    cursor: pointer;
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.packages-catalog-grid .pkg-card:hover {
    transform: translateY(-7px);
    border-color: rgba(103, 232, 249, 0.52);
    box-shadow: 0 22px 36px rgba(16, 35, 58, 0.22);
}

.packages-catalog-grid .pkg-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.08) 0%, rgba(4, 19, 37, 0.35) 46%, rgba(2, 12, 28, 0.92) 100%);
    z-index: -1;
}

.packages-catalog-grid .pkg-badge {
    top: 14px;
    right: 14px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    background: rgba(248, 250, 252, 0.95);
    font-size: 12px;
    padding: 6px 12px;
}

.packages-catalog-grid .pkg-content-overlay {
    padding: 96px 20px 18px 20px;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.04) 0%, rgba(2, 6, 23, 0.88) 72%, rgba(2, 6, 23, 0.98) 100%);
}

.packages-catalog-grid .pkg-category {
    font-size: 11px;
    letter-spacing: 0.02em;
    color: #dbeafe;
    margin-bottom: 7px;
}

.packages-catalog-grid .pkg-content-overlay h3 {
    font-size: 1.35rem;
    line-height: 1.24;
    margin-bottom: 8px;
}

.packages-catalog-grid .pkg-price {
    color: var(--pkg-gold);
    font-size: 15px;
    font-weight: 700;
}

@media (max-width: 1024px) {
    .packages-hero-layout {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .packages-hero-panel {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .packages-catalog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .packages-page main {
        padding-top: 90px;
    }

    .packages-hero {
        padding-top: 14px;
    }

    .packages-kicker {
        display: block;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }

    .packages-hero .section-title,
    .packages-hero .section-subtitle {
        text-align: left;
    }

    .packages-hero-panel {
        grid-template-columns: 1fr;
    }

    .package-category-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 10px;
        margin-bottom: 18px;
    }

    .package-category-tabs::-webkit-scrollbar {
        display: none;
    }

    .package-category-tabs .tab-btn {
        flex: 0 0 auto;
    }

    .packages-catalog-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .packages-catalog-grid .pkg-card {
        min-height: 360px;
        height: 360px;
    }

    .packages-catalog .container{
        padding-top: 50px !important;
        padding-bottom: 50px !important;
       
    }
}


/* --- Tropical Premium Package Details Redesign --- */
.package-details-page {
    --tpd-ocean-700: var(--primary-dark);
    --tpd-ocean-500: var(--primary-color);
    --tpd-ocean-300: #4FA1C4;
    --tpd-sand-50: #f8fafc;
    --tpd-sand-100: #fff7d6;
    --tpd-sunset-500: #facc15;
    --tpd-sunset-600: #eab308;
    --tpd-ink-900: #0f172a;
    --tpd-ink-700: #334155;
    --tpd-ink-500: #64748b;
    --tpd-surface-0: #f2f5f9;
    --tpd-surface-1: #ffffff;
    --tpd-surface-2: #f7faff;
    --tpd-surface-3: #edf3fa;
    --tpd-border-soft: #dce5ef;
    --tpd-accent-warm: #f97316;
    --tpd-accent-warm-soft: #fff1e8;
    --tpd-card-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
    background: linear-gradient(180deg, #eef4fb 0%, #f8fbff 34%, #ffffff 100%);
}

.package-details-page .container {
    max-width: 1160px;
    padding: 26px 18px;
}

.package-details-page,
.package-details-page main {
    background-color: #ffffff !important;
    background-image: none !important;
}

.package-details-page section:not(.tpd-hero):not(.tpd-final-cta) {
    background: #ffffff !important;
    background-image: none !important;
}

.package-details-page .tpd-overview {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.65) 0%, var(--tpd-surface-2) 100%);
}

.package-details-page .tpd-pricing {
    background: transparent;
}

/* --- Blog Page --- */
.blog-page {
    background:
        radial-gradient(circle at 8% 8%, rgba(79, 161, 196, 0.16) 0%, rgba(79, 161, 196, 0) 40%),
        radial-gradient(circle at 96% 14%, rgba(15, 23, 42, 0.09) 0%, rgba(15, 23, 42, 0) 34%),
        linear-gradient(180deg, #f4f9ff 0%, #f8fbff 28%, #ffffff 58%);
}

.blog-main {
    padding-top: 104px;
}

.blog-kicker {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 11px;
    font-weight: 700;
    color: #0f4c66;
}

.blog-hero {
    position: relative;
    min-height: 540px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-image: url('images/hero section 2.jpg');
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid rgba(203, 213, 225, 0.65);
}

.blog-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(95deg, rgba(9, 18, 30, 0.82) 6%, rgba(9, 18, 30, 0.35) 56%, rgba(9, 18, 30, 0.12) 100%),
        radial-gradient(circle at 78% 24%, rgba(79, 161, 196, 0.35) 0%, rgba(79, 161, 196, 0) 40%);
}

.blog-hero .container {
    position: relative;
    z-index: 1;
}

.blog-hero-content {
    max-width: 720px;
    color: #ffffff;
}

.blog-hero-content .blog-kicker {
    color: #bfdbfe;
    margin-bottom: 14px;
}

.blog-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.3rem, 6vw, 4.1rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
}

.blog-hero-content h1 span {
    color: #8be8ff;
}

.blog-hero-subtitle {
    font-size: 1.05rem;
    max-width: 640px;
    color: #dbeafe;
    margin-bottom: 28px;
}

.blog-hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 26px;
    border-radius: 999px;
    background: linear-gradient(135deg, #78cff0 0%, #4FA1C4 100%);
    color: #06243a;
    font-weight: 700;
    box-shadow: 0 16px 30px rgba(5, 38, 59, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 32px rgba(5, 38, 59, 0.42);
}

.blog-featured-section .container {
    padding-top: 52px;
    padding-bottom: 24px;
}

.blog-featured {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
    border-radius: 22px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #dbe5f0;
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.1);
}

.blog-featured-media img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
}

.blog-featured-content {
    padding: 36px 34px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-chip {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #0f3f56;
    background: #dff4ff;
    margin-bottom: 14px;
}

.blog-featured-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.65rem, 2.4vw, 2.2rem);
    line-height: 1.25;
    margin-bottom: 14px;
    color: #0f172a;
}

.blog-featured-content p {
    color: #475569;
    margin-bottom: 18px;
}

.blog-featured-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 8px;
    color: #475569;
    font-size: 13px;
}

.blog-featured-meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.blog-inline-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-weight: 600;
    color: #0f4c66;
    transition: gap 0.2s ease;
}

.blog-inline-link:hover {
    gap: 10px;
}

.blog-grid-section .container {
    padding-top: 22px;
    padding-bottom: 18px;
}

.blog-section-head .section-title,
.blog-section-head .section-subtitle {
    text-align: left;
}

.blog-cards-grid {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.blog-card {
    border-radius: 18px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #dce6f2;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 34px rgba(15, 23, 42, 0.14);
}

.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-card-body {
    padding: 20px;
}

.blog-card-body h3 {
    font-size: 1.1rem;
    line-height: 1.35;
    color: #0f172a;
    margin-bottom: 10px;
}

.blog-card-body p {
    color: #4b5563;
    font-size: 14px;
    margin-bottom: 14px;
}

.blog-newsletter .container {
    padding-top: 30px;
    padding-bottom: 72px;
}

.blog-newsletter-wrap {
    border-radius: 22px;
    padding: 34px;
    border: 1px solid rgba(79, 161, 196, 0.3);
    background: linear-gradient(125deg, #eef8ff 0%, #f7fbff 52%, #ffffff 100%);
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.08);
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
}

.blog-newsletter-wrap h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.2;
    margin-bottom: 10px;
    color: #0f172a;
}

.blog-newsletter-wrap p {
    color: #475569;
    max-width: 690px;
}

.blog-newsletter-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    padding: 12px 24px;
    border-radius: 999px;
    background: #0f4c66;
    color: #ffffff;
    font-weight: 600;
    transition: background 0.25s ease;
}

.blog-newsletter-cta:hover {
    background: #0b394d;
}

@media (max-width: 1024px) {
    .blog-featured {
        grid-template-columns: 1fr;
    }

    .blog-featured-media img {
        min-height: 300px;
    }

    .blog-cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .blog-newsletter-wrap {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .blog-main {
        padding-top: 92px;
    }

    .blog-hero {
        min-height: 470px;
        background-position: center;
    }

    .blog-hero-subtitle {
        font-size: 0.95rem;
    }

    .blog-featured-content {
        padding: 24px 20px;
    }

    .blog-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .blog-newsletter-wrap {
        padding: 24px 20px;
    }
}

.blog-reading-page {
    background:
        radial-gradient(circle at 6% 6%, rgba(79, 161, 196, 0.12) 0%, rgba(79, 161, 196, 0) 36%),
        linear-gradient(180deg, #f7fbff 0%, #ffffff 58%);
}

.blog-post-main {
    padding-top: 102px;
}

.blog-post-hero {
    position: relative;
    min-height: 460px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 42px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.blog-post-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.24) 0%, rgba(15, 23, 42, 0.75) 88%),
        radial-gradient(circle at 80% 14%, rgba(79, 161, 196, 0.36) 0%, rgba(79, 161, 196, 0) 38%);
}

.blog-post-hero-content {
    position: relative;
    z-index: 1;
    color: #ffffff;
    max-width: 900px;
}

.blog-post-back {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #dbeafe;
    font-size: 13px;
    margin-bottom: 14px;
}

.blog-post-hero-content .blog-chip {
    background: rgba(219, 244, 255, 0.26);
    color: #f0f9ff;
    margin-bottom: 12px;
}

.blog-post-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4.7vw, 3.4rem);
    line-height: 1.14;
    margin-bottom: 14px;
}

.blog-post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 14px;
    color: #dbeafe;
}

.blog-post-meta span {
    display: inline-flex;
    gap: 6px;
    align-items: center;
}

.blog-post-content-wrap .container {
    padding-top: 36px;
    padding-bottom: 28px;
}

.blog-post-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 30px;
    align-items: start;
}

.blog-post-article {
    background: #ffffff;
    border: 1px solid #dbe6f1;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.blog-post-intro {
    color: #1e293b;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 18px;
}

.blog-post-section + .blog-post-section {
    margin-top: 22px;
}

.blog-post-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    color: #0f172a;
    margin-bottom: 8px;
}

.blog-post-section p {
    color: #334155;
    line-height: 1.85;
    margin-bottom: 10px;
}

.blog-post-side-card {
    background: linear-gradient(150deg, #f0f8ff 0%, #ffffff 100%);
    border: 1px solid #d6e6f3;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.07);
    position: sticky;
    top: 120px;
}

.blog-post-side-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #0f172a;
}

.blog-post-side-card p {
    color: #475569;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.blog-post-side-cta {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    padding: 11px 14px;
    border-radius: 999px;
    background: #0f4c66;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 10px;
}

.blog-post-side-link {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    padding: 11px 14px;
    border-radius: 999px;
    border: 1px solid #0f4c66;
    color: #0f4c66;
    font-weight: 600;
}

.blog-post-nav-wrap .container {
    padding-top: 4px;
    padding-bottom: 8px;
}

.blog-post-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.blog-post-nav-link {
    display: block;
    border: 1px solid #d9e4ef;
    border-radius: 16px;
    background: #ffffff;
    padding: 16px;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-post-nav-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(15, 23, 42, 0.1);
}

.blog-post-nav-kicker {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    color: #0f4c66;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.blog-post-nav-link strong {
    display: block;
    color: #0f172a;
    font-size: 15px;
    line-height: 1.45;
}

.blog-related .container {
    padding-top: 8px;
    padding-bottom: 72px;
}

@media (max-width: 1024px) {
    .blog-post-grid {
        grid-template-columns: 1fr;
    }

    .blog-post-side-card {
        position: static;
    }
}

@media (max-width: 768px) {
    .blog-post-main {
        padding-top: 90px;
    }

    .blog-post-hero {
        min-height: 390px;
        padding-bottom: 28px;
    }

    .blog-post-article {
        padding: 22px 18px;
    }

    .blog-post-section h2 {
        font-size: 1.45rem;
    }

    .blog-post-nav {
        grid-template-columns: 1fr;
    }
}

.package-details-page .itinerary-section {
    background: var(--tpd-surface-1);
}

.package-details-page .inclusion-section {
    background: linear-gradient(180deg, var(--tpd-surface-1) 0%, var(--tpd-surface-2) 100%);
}

.package-details-page .tpd-gallery {
    background: var(--tpd-surface-2);
}

.package-details-page .tpd-why-choose {
    background: var(--tpd-surface-1);
}

.package-details-page .tpd-credibility {
    background: #ffffff;
}

.package-details-page .tpd-trust-section {
    background: var(--tpd-surface-3);
}

.package-details-page .tpd-final-cta {
    background-color: #d8e7f7;
}

.tpd-hero {
    position: relative;
    min-height: 65vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.tpd-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tpd-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 26, 38, 0.2) 0%, rgba(2, 26, 38, 0.72) 60%, rgba(2, 26, 38, 0.9) 100%);
}

.tpd-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 120px;
    padding-bottom: 38px;
}

.tpd-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #dbeafe;
    font-weight: 600;
    margin-bottom: 16px;
}

.tpd-kicker {
    color: #cffafe;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 700;
}

.tpd-title {
    color: #ffffff;
    font-size: clamp(31px, 7vw, 54px);
    line-height: 1.06;
    max-width: 920px;
    margin-top: 8px;
}

.tpd-subtitle {
    color: #e2e8f0;
    font-size: clamp(15px, 2.5vw, 22px);
    margin-top: 12px;
    max-width: 720px;
}

.tpd-highlight-badges {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tpd-highlight-badges span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
}

.tpd-highlight-badges i {
    color: #facc15;
}

.tpd-hero-actions {
    margin-top: 22px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.tpd-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 700;
    padding: 12px 22px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.tpd-btn:hover {
    transform: translateY(-2px);
}

.tpd-btn-primary {
    background: linear-gradient(135deg, var(--tpd-sunset-500), var(--tpd-sunset-600));
    color: var(--text-dark);
    box-shadow: 0 12px 24px rgba(234, 179, 8, 0.32);
}

.tpd-btn-ghost {
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(8px);
}

.tpd-grid-two {
    display: grid;
    gap: 15px;
}

.tpd-glass-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--tpd-border-soft);
    border-radius: 20px;
    padding: 22px;
    box-shadow: var(--tpd-card-shadow);
    backdrop-filter: blur(14px);
}

.tpd-section-title {
    color: var(--tpd-ink-900);
    font-size: clamp(26px, 3.2vw, 38px);
    line-height: 1.15;
    margin-bottom: 10px;
}

.tpd-overview-copy p {
    color: var(--tpd-ink-700);
    font-size: 16px;
    line-height: 1.8;
}

.tpd-facts-card h3 {
    color: var(--tpd-ink-900);
    margin-bottom: 10px;
    font-size: 23px;
}

.tpd-fact-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: flex-start;
    padding: 11px 0;
    border-top: 1px dashed #cbd5e1;
}

.tpd-fact-row span {
    color: var(--tpd-ink-700);
    font-weight: 500;
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

.tpd-fact-row i {
    color: var(--tpd-ocean-500);
}

.tpd-fact-row strong {
    color: var(--tpd-ink-900);
    text-align: right;
    font-size: 15px;
}

.tpd-pricing-card {
    display: grid;
    gap: 16px;
    background: linear-gradient(140deg, #356f88 0%, #4FA1C4 58%, #8ecadf 100%);
    color: #ffffff;
    border-radius: 22px;
    padding: 26px;
    box-shadow: 0 20px 42px rgba(2, 86, 133, 0.28);
}

.tpd-pricing-card > div {
    min-width: 0;
}

.tpd-pricing-label {
    color: #fff7d6;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
}

.tpd-price {
    margin-top: 7px;
    font-size: clamp(28px, 5vw, 44px);
    line-height: 1.08;
}

.tpd-rating {
    margin-top: 8px;
    color: #ecfeff;
}

.tpd-category-chips {
    margin-top: 8px;
    color: #ffffff;
    font-weight: 600;
    line-height: 1.7;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

#pkg-variants.tpd-category-chips,
#pkg-pax-options.tpd-category-chips {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.tpd-pricing-subgroup {
    margin-top: 4px;
}

.tpd-variant-chip,
.tpd-pax-chip {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 600;
    border-radius: 999px;
    padding: 10px 16px;
    min-height: 40px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.tpd-variant-chip:hover,
.tpd-pax-chip:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.tpd-variant-chip.is-active,
.tpd-pax-chip.is-active {
    background: #ffffff;
    color: #0f172a;
    border-color: #ffffff;
}

.tpd-pricing-card > .tpd-btn-primary,
.tpd-pricing-card > a.tpd-btn-primary {
    grid-column: 1 / -1;
    justify-self: start;
    min-width: 220px;
    padding: 14px 24px;
    box-shadow: 0 14px 28px rgba(234, 179, 8, 0.28);
}

.itinerary-caption {
    color: var(--tpd-ink-500);
    margin-bottom: 16px;
}

.tpd-itinerary-accordion {
    position: relative;
    display: grid;
    gap: 24px;
    padding-left: 32px;
}

.tpd-itinerary-accordion::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 12px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-color) 0%, rgba(79, 161, 196, 0.35) 100%);
    border-radius: 1px;
}

.tpd-day-item {
    position: relative;
}

.tpd-day-dot {
    position: absolute;
    left: -31px;
    top: 8px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid rgba(79, 161, 196, 0.32);
    box-shadow: 0 2px 4px rgba(79, 161, 196, 0.15);
    transition: all 0.3s ease;
}

.tpd-day-item-active .tpd-day-dot {
    width: 20px;
    height: 20px;
    left: -33px;
    top: 6px;
    background: var(--primary-color);
    border: 3px solid #ffffff;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.35);
}

.tpd-day-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #0f172a;
    font-weight: 700;
    font-size: clamp(20px, 1.25vw, 24px);
    line-height: 1.3;
    margin-bottom: 6px;
}

.tpd-day-heading i {
    font-size: 18px;
    color: var(--primary-color);
    opacity: 0.9;
    flex-shrink: 0;
}

.tpd-day-label {
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 4px;
    opacity: 0.95;
}

.tpd-day-content {
    background: transparent;
    padding: 0;
}

.day-desc {
    color: #475569;
    line-height: 1.62;
    font-size: 15px;
    font-weight: 500;
    max-width: 780px;
}

.day-stay {
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0369a1;
    background: #ecf7ff;
    border: 1px solid #bae6fd;
    border-radius: 999px;
    padding: 8px 14px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.2s ease;
}

.day-stay:hover {
    background: #dbeafe;
    border-color: #7dd3fc;
}

@media (max-width: 767px) {
    .tpd-hero-content {
        padding-bottom: 58px;
    }

    .tpd-category-chips {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .tpd-variant-chip,
    .tpd-pax-chip {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px 12px;
    }

    .tpd-itinerary-accordion {
        padding-left: 28px;
        gap: 20px;
    }

    .tpd-itinerary-accordion::before {
        left: 9px;
    }

    .tpd-day-dot {
        left: -27px;
    }

    .tpd-day-item-active .tpd-day-dot {
        left: -29px;
    }

    .tpd-day-label {
        font-size: 11px;
    }

    .tpd-day-heading {
        font-size: 17px;
        gap: 8px;
    }

    .tpd-day-heading i {
        font-size: 16px;
    }

    .day-desc {
        font-size: 14px;
        line-height: 1.6;
    }

    .day-stay {
        font-size: 12px;
        padding: 7px 12px;
    }
}

.inclusion-section {
    padding-top: 0;
}

.tpd-gallery-grid {
    margin-top: 10px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.tpd-gallery-item {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 26px rgba(3, 36, 52, 0.12);
    aspect-ratio: 1 / 1;
}

.tpd-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.tpd-gallery-item:hover img {
    transform: scale(1.08);
}

.tpd-credibility {
    background: #ffffff;
}

.tpd-credibility .tpd-section-title {
    display: none;
}

.tpd-credibility-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 18px;
    row-gap: 28px;
    margin-top: 14px;
}

.tpd-credibility-card {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 6px 6px 0;
    text-align: center;
}

.tpd-credibility-icon {
    width: 52px;
    height: 52px;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    background: transparent;
}

.tpd-credibility-card svg {
    width: 42px;
    height: 42px;
    stroke: var(--tpd-accent-warm);
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.tpd-credibility-card:nth-child(2) svg {
    stroke: #ea580c;
}

.tpd-credibility-card:nth-child(3) svg {
    stroke: #fb7185;
}

.tpd-credibility-card:nth-child(4) svg {
    stroke: #4FA1C4;
}

.tpd-credibility-card h3 {
    color: var(--tpd-ink-900);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 7px;
}

.tpd-credibility-card p {
    color: var(--tpd-ink-500);
    font-size: 13px;
    line-height: 1.45;
}

.tpd-reviews-legacy {
    display: none !important;
}

.tpd-reviews-fresh {
    display: none !important;
}

.tpd-reviews-modern {
    background-color: #ffffff !important;
    background-image: none !important;
}

.tpd-reviews-modern-shell {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 20px;
}

.tpd-reviews-modern-kicker {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--tpd-ocean-700);
    font-weight: 700;
    margin-bottom: 6px;
}

.tpd-reviews-modern-subtitle {
    color: var(--tpd-ink-500);
    margin-top: -2px;
    margin-bottom: 16px;
    max-width: 760px;
    line-height: 1.6;
}

.tpd-reviews-modern-grid {
    display: grid;
    gap: 14px;
}

.tpd-reviews-modern-summary {
    background: linear-gradient(165deg, #ffffff 0%, var(--tpd-surface-2) 100%);
    border: 1px solid var(--tpd-border-soft);
    border-radius: 18px;
    padding: 18px;
}

.tpd-reviews-modern-stars {
    color: var(--tpd-sunset-500);
    display: flex;
    gap: 5px;
    font-size: 22px;
}

.tpd-reviews-modern-score {
    margin-top: 6px;
    color: var(--tpd-accent-warm);
    font-size: clamp(56px, 12vw, 76px);
    line-height: 0.92;
    font-weight: 800;
}

.tpd-reviews-modern-meta {
    color: var(--tpd-ink-500);
    font-size: 14px;
    margin-top: 10px;
}

.tpd-reviews-modern-bars {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.tpd-reviews-modern-row {
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    gap: 10px;
    align-items: center;
}

.tpd-reviews-modern-row span,
.tpd-reviews-modern-row strong {
    color: var(--tpd-ink-700);
    font-size: 14px;
    font-weight: 600;
}

.tpd-reviews-modern-track {
    height: 9px;
    border-radius: 999px;
    background: #d7e2ee;
    overflow: hidden;
}

.tpd-reviews-modern-track span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--tpd-sunset-500) 0%, var(--tpd-sunset-600) 100%);
}

.tpd-reviews-modern-list {
    display: grid;
    gap: 12px;
}

.tpd-review-modern-card {
    background: #ffffff;
    border: 1px solid var(--tpd-border-soft);
    border-radius: 18px;
    padding: 16px;
    box-shadow: 0 10px 20px rgba(2, 86, 133, 0.09);
}

.tpd-review-modern-card header {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 10px;
    align-items: center;
}

.tpd-review-modern-card img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
}

.tpd-review-modern-card h3 {
    color: var(--tpd-ink-900);
    font-size: 18px;
    line-height: 1.2;
}

.tpd-review-modern-card header p {
    color: #6b7280;
    font-size: 13px;
    margin-top: 2px;
}

.tpd-review-modern-chip {
    grid-column: 1 / -1;
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 999px;
    background: rgba(79, 161, 196, 0.1);
    color: var(--tpd-ocean-700);
    padding: 6px 10px;
    font-size: 13px;
    font-weight: 700;
    margin-top: 4px;
}

.tpd-review-modern-chip i {
    color: var(--tpd-sunset-500);
}

.tpd-review-modern-card > p {
    margin-top: 10px;
    color: var(--tpd-ink-700);
    line-height: 1.65;
    font-size: 14px;
}

.tpd-reviews-fresh {
    background: linear-gradient(180deg, #edf3fa 0%, #f6f9fd 100%);
}

.tpd-reviews-fresh-wrap {
    background: #ffffff;
    border: 1px solid var(--tpd-border-soft);
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
}

.tpd-reviews-fresh-kicker {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #3f8fae;
    margin-bottom: 6px;
}

.tpd-reviews-fresh-head .tpd-section-title {
    margin-bottom: 14px;
    font-size: clamp(26px, 6.5vw, 36px);
}

.tpd-reviews-fresh-grid {
    display: grid;
    gap: 14px;
}

.tpd-reviews-fresh-score {
    background: #f8fafd;
    border: 1px solid #dbe7f4;
    border-radius: 18px;
    padding: 18px;
}

.tpd-reviews-fresh-list {
    display: grid;
    gap: 12px;
}

.tpd-reviews {
    background: #f6f7f9;
}

.tpd-reviews .container {
    padding-bottom: 96px;
}

.tpd-reviews .tpd-section-title {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.tpd-reviews-summary {
    background: var(--tpd-surface-1);
    border: 1px solid #e2e8f0;
    border-radius: 22px;
    padding: 28px 26px 24px;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
}

.tpd-review-stars {
    color: #f4d000;
    display: flex;
    gap: 6px;
    font-size: 32px;
}

.tpd-review-score {
    margin-top: 6px;
    font-size: clamp(74px, 16vw, 104px);
    color: var(--tpd-accent-warm);
    font-weight: 800;
    line-height: 0.9;
}

.tpd-review-source {
    margin-top: 14px;
    color: #7a7a7a;
    font-size: 17px;
}

.tpd-review-bars {
    margin-top: 16px;
    display: grid;
    gap: 13px;
}

.tpd-review-bar-row {
    display: grid;
    grid-template-columns: 52px 1fr 52px;
    align-items: center;
    gap: 10px;
}

.tpd-review-bar-row span,
.tpd-review-bar-row strong {
    color: #2a2f36;
    font-size: 16px;
    font-weight: 500;
}

.tpd-review-bar-track {
    height: 12px;
    background: #e0e0e0;
    border-radius: 999px;
    overflow: hidden;
}

.tpd-review-bar-fill {
    height: 100%;
    border-radius: 999px;
    background: var(--tpd-accent-warm);
}

.tpd-review-cards {
    margin-top: 18px;
    display: grid;
    gap: 14px;
}

.tpd-review-card {
    background: var(--tpd-surface-1);
    border: 1px solid #d7dee8;
    border-radius: 20px;
    padding: 22px 20px 20px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.tpd-review-head {
    display: grid;
    grid-template-columns: 76px 1fr auto;
    gap: 14px;
    align-items: center;
}

.tpd-review-head img {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    object-fit: cover;
}

.tpd-review-head h3 {
    color: #11335c;
    font-size: 34px;
    line-height: 1.1;
}

.tpd-review-head p {
    color: #7b7b7b;
    font-size: 15px;
    margin-top: 5px;
}

.tpd-review-chip {
    background: #e1f3e6;
    color: var(--tpd-accent-warm);
    border-radius: 12px;
    padding: 10px 14px;
    font-size: 15px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
}

.tpd-review-chip i {
    color: #f4d000;
}

.tpd-review-text {
    margin-top: 14px;
    color: #123559;
    font-size: 16px;
    line-height: 1.7;
}

.tpd-review-photos {
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.tpd-review-photo-link {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #dbe5ef;
}

.tpd-review-photo {
    width: 100%;
    height: 98px;
    object-fit: cover;
    display: block;
    transition: transform 0.22s ease;
}

.tpd-review-photo-link:hover .tpd-review-photo {
    transform: scale(1.04);
}

.tpd-review-photos-modern {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tpd-review-photos,
.tpd-review-photo-link,
.tpd-review-photo,
.tpd-review-photos-modern {
    display: none;
}

.tpd-feature-grid {
    display: grid;
    gap: 12px;
    margin-top: 10px;
}

.tpd-feature-card {
    border-radius: 16px;
    padding: 20px;
    background: linear-gradient(165deg, #ffffff 0%, #f7fbff 100%);
    border: 1px solid #ffe7bf;
    box-shadow: 0 12px 26px rgba(84, 68, 36, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tpd-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 32px rgba(84, 68, 36, 0.14);
}

.tpd-feature-card i {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, #facc15, #eab308);
    color: #1f2937;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.tpd-feature-card h3 {
    color: var(--tpd-ink-900);
    font-size: 19px;
    margin-bottom: 5px;
}

.tpd-feature-card p {
    color: var(--tpd-ink-700);
    line-height: 1.65;
}

.tpd-final-cta {
    margin: 10px 0 18px;
    border-top: 1px solid rgba(148, 163, 184, 0.3);
    border-bottom: 1px solid rgba(148, 163, 184, 0.3);
    background-size: cover;
    background-position: center;
}

.tpd-final-cta-content {
    min-height: 240px;
    display: grid;
    place-content: center;
    gap: 14px;
    text-align: center;
}

.tpd-final-cta-content h2 {
    color: #ffffff;
    font-size: clamp(28px, 5vw, 48px);
    text-shadow: 0 8px 18px rgba(2, 23, 37, 0.45);
}

.tpd-inquiry-card {
    background: var(--tpd-surface-1);
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    box-shadow: 0 16px 36px rgba(2, 31, 47, 0.1);
    padding: 24px;
}

.tpd-form {
    display: grid;
    gap: 10px;
}

.tpd-form label {
    color: var(--tpd-ink-900);
    font-weight: 600;
    font-size: 14px;
    margin-top: 4px;
}

.tpd-form input,
.tpd-form textarea {
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    padding: 11px 13px;
    font-family: var(--font-main);
    font-size: 15px;
    color: var(--tpd-ink-900);
    background: #f8fafc;
}

.tpd-form input:focus,
.tpd-form textarea:focus {
    outline: 2px solid rgba(79, 161, 196, 0.25);
    border-color: #4FA1C4;
    background: #ffffff;
}

.tpd-form .tpd-btn {
    margin-top: 8px;
    border: 0;
    cursor: pointer;
}

@media (min-width: 768px) {
    .package-details-page .container {
        padding: 38px 20px;
    }

    .tpd-grid-two {
        grid-template-columns: 1.4fr 1fr;
        gap: 20px;
    }

    .tpd-pricing-card {
        grid-template-columns: minmax(220px, 1.05fr) minmax(220px, 0.95fr) minmax(260px, 1.2fr);
        align-items: start;
        column-gap: 24px;
        row-gap: 18px;
    }

    .tpd-pricing-card:has(.tpd-pricing-subgroup[hidden]) {
        grid-template-columns: minmax(260px, 1fr) minmax(260px, 1fr);
        column-gap: 28px;
    }

    .tpd-gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
    }

    .tpd-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .tpd-credibility-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 24px;
        row-gap: 36px;
    }

    .tpd-reviews-fresh-wrap {
        padding: 24px;
    }

    .tpd-reviews-modern-shell {
        padding: 24px;
    }

    .tpd-reviews-modern-grid {
        grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
        align-items: start;
        gap: 16px;
    }

    .tpd-review-modern-card {
        padding: 18px;
    }

    .tpd-review-modern-card header {
        grid-template-columns: 58px 1fr auto;
        gap: 12px;
    }

    .tpd-review-modern-card img {
        width: 58px;
        height: 58px;
    }

    .tpd-review-modern-chip {
        grid-column: auto;
        margin-top: 0;
    }

    .tpd-reviews-fresh-grid {
        grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
        align-items: start;
    }

    .tpd-review-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tpd-review-head h3 {
        font-size: 22px;
    }

    .tpd-form {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 14px;
    }

    .tpd-form label[for="message"],
    .tpd-form textarea,
    .tpd-form .tpd-btn {
        grid-column: span 2;
    }
}

@media (min-width: 1024px) {
    .tpd-hero-content {
        padding-top: 138px;
        padding-bottom: 52px;
    }

    .tpd-gallery-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    .tpd-gallery-item:nth-child(1),
    .tpd-gallery-item:nth-child(4) {
        grid-column: span 2;
    }

    .tpd-gallery-item:nth-child(2),
    .tpd-gallery-item:nth-child(3),
    .tpd-gallery-item:nth-child(5),
    .tpd-gallery-item:nth-child(6) {
        grid-column: span 1;
    }

    .tpd-gallery-item {
        aspect-ratio: 4 / 5;
    }

    .tpd-feature-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .tpd-credibility-grid {
        gap: 18px;
    }

    .tpd-review-head h3 {
        font-size: 23px;
    }

    .tpd-pricing-card > .tpd-btn-primary,
    .tpd-pricing-card > a.tpd-btn-primary {
        grid-column: 1 / -1;
        justify-self: start;
    }
}

@media (prefers-reduced-motion: no-preference) {
    .tpd-glass-card,
    .tpd-pricing-card,
    .tpd-day-item,
    .tpd-gallery-item,
    .tpd-credibility-card,
    .tpd-reviews-summary,
    .tpd-review-card,
    .tpd-feature-card,
    .tpd-inquiry-card {
        animation: tpdFadeUp 0.65s ease both;
    }

    .tpd-day-item:nth-child(2) {
        animation-delay: 0.06s;
    }

    .tpd-day-item:nth-child(3) {
        animation-delay: 0.1s;
    }
}

@media (max-width: 768px) {
    .tpd-final-cta {
        margin-top: 0;
        margin-bottom: 0;
    }

    .tpd-reviews-fresh {
        padding-bottom: 76px;
    }

    .tpd-reviews-modern {
        padding-bottom: 74px;
    }

    .tpd-reviews-modern-shell {
        padding: 16px;
    }

    .tpd-reviews-modern-subtitle {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .tpd-reviews-fresh-wrap {
        border-radius: 20px;
        padding: 16px;
    }

    .tpd-reviews-fresh-head .tpd-section-title {
        font-size: clamp(24px, 7.2vw, 32px);
        margin-bottom: 10px;
    }

    .tpd-reviews-fresh-score {
        padding: 16px;
    }

    .tpd-reviews .tpd-section-title {
        font-size: clamp(24px, 7vw, 34px);
    }

    .tpd-reviews-summary {
        padding: 22px 18px 20px;
    }

    .tpd-pricing-card {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 22px 18px;
    }

    .tpd-category-chips {
        gap: 8px;
    }

    .tpd-variant-chip,
    .tpd-pax-chip {
        width: 100%;
        justify-content: center;
        padding: 10px 12px;
    }

    .tpd-pricing-card > .tpd-btn-primary,
    .tpd-pricing-card > a.tpd-btn-primary {
        width: 100%;
        min-width: 0;
        justify-self: stretch;
    }

    .tpd-review-stars {
        font-size: 30px;
    }

    .tpd-review-bar-row {
        grid-template-columns: 44px 1fr 48px;
    }

    .tpd-review-bar-row span,
    .tpd-review-bar-row strong {
        font-size: 16px;
    }

    .tpd-review-head {
        grid-template-columns: 52px minmax(0, 1fr) auto;
        column-gap: 10px;
        row-gap: 4px;
        align-items: start;
    }

    .tpd-review-head img {
        width: 52px;
        height: 52px;
    }

    .tpd-review-head h3 {
        font-size: 17px;
        line-height: 1.2;
    }

    .tpd-review-head p {
        font-size: 13px;
        margin-top: 2px;
    }

    .tpd-review-chip {
        grid-column: auto;
        align-self: start;
        justify-self: end;
        margin-top: 0;
        padding: 6px 10px;
        font-size: 13px;
    }

    .tpd-review-text {
        margin-top: 10px;
        font-size: 14px;
        line-height: 1.6;
    }

    .tpd-review-modern-card header {
        grid-template-columns: 48px minmax(0, 1fr) auto;
        gap: 10px;
        align-items: start;
    }

    .tpd-review-modern-card img {
        width: 48px;
        height: 48px;
    }

    .tpd-review-modern-chip {
        grid-column: auto;
        margin-top: 0;
        align-self: start;
    }
}

@keyframes tpdFadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sticky Enquiry Button */
.sticky-enquiry-btn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #54a8c7 0%, #4FA1C4 100%);
    color: white;
    border: none;
    padding: 18px 28px;
    min-height: 60px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font-main);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(79, 161, 196, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
}

.sticky-enquiry-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(79, 161, 196, 0.6);
    background: linear-gradient(135deg, #4FA1C4 0%, #3f8fae 100%);
}

.sticky-enquiry-btn i {
    font-size: 20px;
}

@media (max-width: 768px) {
    .sticky-enquiry-btn {
        display: flex;
        bottom: 12px;
        left: 12px;
        right: 12px;
        width: calc(100% - 24px);
        padding: 16px 16px;
        min-height: 56px;
        font-size: 14px;
        gap: 8px;
        border-radius: 14px;
    }

    .sticky-enquiry-btn i {
        font-size: 18px;
    }
}

/* Trust Section */
.tpd-trust-section {
    background: var(--tpd-surface-3);
    padding: 60px 20px;
}

.tpd-trust-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.tpd-trust-pill {
    background: linear-gradient(135deg, #dbeefe 0%, #bfdbfe 100%);
    border-radius: 50px;
    padding: 18px 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    font-weight: 600;
    font-size: 16px;
    flex-wrap: wrap;
    box-shadow: 0 4px 15px rgba(2, 132, 199, 0.1);
}

.tpd-trust-pill span {
    color: var(--text-dark);
}

.tpd-trust-pill .dot {
    color: var(--primary-color);
    opacity: 0.5;
}

.tpd-modify-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-main);
}

.tpd-modify-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.tpd-exclusions-card {
    background: var(--tpd-accent-warm-soft);
    border-left: 4px solid var(--tpd-accent-warm);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 50px;
}

.tpd-exclusions-card h3 {
    color: var(--tpd-accent-warm);
    font-size: 18px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tpd-exclusions-card ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    list-style: none;
}

.tpd-exclusions-card li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 15px;
}

.tpd-exclusions-card i {
    color: var(--tpd-accent-warm);
    font-size: 16px;
}

.tpd-trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.tpd-trust-card {
    background: var(--tpd-surface-1);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid var(--tpd-border-soft);
    text-align: center;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    transition: all 0.3s ease;
}

.tpd-trust-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.trust-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.tpd-trust-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.tpd-trust-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.5;
}

.tpd-rating-breakdown {
    background: var(--tpd-surface-1);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid var(--tpd-border-soft);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    text-align: center;
}

.rating-stars {
    font-size: 28px;
    color: #facc15;
    margin-bottom: 15px;
}

.tpd-rating-breakdown h3 {
    font-size: 64px;
    font-weight: 800;
    color: var(--tpd-accent-warm);
    margin: 0;
}

#overall-rating {
    font-size: 64px;
    font-weight: 800;
    color: var(--tpd-accent-warm);
    margin: 0 0 5px 0;
}

#rating-from {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 30px;
}

.rating-bars {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 15px;
}

.rating-bar span:first-child {
    min-width: 50px;
    text-align: right;
    font-weight: 600;
    color: var(--text-dark);
}

.bar-container {
    flex: 1;
    height: 8px;
    background: #d7dee8;
    border-radius: 4px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: var(--tpd-accent-warm);
    border-radius: 4px;
}

.rating-bar span:last-child {
    min-width: 50px;
    text-align: left;
    font-weight: 600;
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .tpd-trust-pill {
        font-size: 14px;
        padding: 14px 20px;
        gap: 10px;
    }

    .tpd-exclusions-card ul {
        grid-template-columns: 1fr;
    }

    .tpd-trust-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .tpd-rating-breakdown {
        padding: 25px;
    }

    #overall-rating {
        font-size: 48px;
    }

    .rating-stars {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .celebrities .celeb-grid-new {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory;
        gap: 14px !important;
        padding: 0 14px 10px !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .celebrities .celeb-grid-new::-webkit-scrollbar {
        display: none;
    }

    .celebrities .celeb-grid-new .celeb-mock-card {
        flex: 0 0 75vw !important;
        min-width: 75vw !important;
        max-width: 75vw !important;
        scroll-snap-align: start !important;
        border-radius: 15px !important;
    }


    .contact-page{
    padding-bottom: 0px !important;
    }
}

/* Reviews Page */
.reviews-page {
    background:
        radial-gradient(circle at 6% 8%, rgba(79, 161, 196, 0.16), transparent 32%),
        radial-gradient(circle at 92% 3%, rgba(14, 116, 144, 0.13), transparent 34%),
        linear-gradient(180deg, #f3f9fc 0%, #f8fafc 34%, #f8fafc 100%);
}

.reviews-hero {
    padding: 126px 0 42px;
}

.reviews-hero-shell {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: stretch;
}

.reviews-hero-copy {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.9));
    border: 1px solid #d9e7f0;
    border-radius: 24px;
    padding: 28px 28px 26px;
    box-shadow: 0 20px 44px rgba(15, 23, 42, 0.08);
}

.reviews-kicker {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 11px;
    font-weight: 700;
    color: #1d6f8f;
    margin-bottom: 8px;
}

.reviews-hero-copy .section-title {
    text-align: left;
    margin-bottom: 12px;
}

.reviews-hero-copy .section-subtitle {
    text-align: left;
    margin-bottom: 16px;
    color: #4b5563;
    max-width: 640px;
}

.reviews-hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.reviews-hero-chips span {
    border-radius: 999px;
    border: 1px solid #cfe2ec;
    background: #f7fbfe;
    color: #164e63;
    font-size: 12px;
    font-weight: 600;
    padding: 8px 12px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.reviews-hero-chips i {
    color: #0ea5b7;
}

.reviews-hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding-inline: 22px;
}

.reviews-hero-panel {
    border-radius: 24px;
    background: linear-gradient(155deg, #0f172a 0%, #17253d 65%, #1f3150 100%);
    border: 1px solid rgba(148, 163, 184, 0.22);
    padding: 20px;
    display: grid;
    gap: 12px;
    box-shadow: 0 22px 44px rgba(2, 6, 23, 0.35);
}

.reviews-hero-panel article {
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    padding: 14px;
}

.reviews-hero-panel i {
    color: #facc15;
    font-size: 15px;
    margin-bottom: 8px;
}

.reviews-hero-panel h3 {
    color: #f8fafc;
    font-size: 15px;
    margin-bottom: 5px;
}

.reviews-hero-panel p {
    color: #cbd5e1;
    font-size: 12px;
    line-height: 1.6;
}

.reviews-summary-strip {
    padding: 0 0 32px;
}

.reviews-summary-card {
    border-radius: 20px;
    background: #0f172a;
    color: #e2e8f0;
    display: grid;
    grid-template-columns: minmax(180px, 0.7fr) minmax(0, 1.3fr);
    gap: 16px;
    padding: 20px;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.2);
}

.reviews-summary-label {
    font-size: 11px;
    opacity: 0.88;
    margin-bottom: 2px;
}

.reviews-summary-score h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}

.reviews-stars {
    display: flex;
    gap: 5px;
    color: #facc15;
    font-size: 14px;
}

.reviews-summary-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.reviews-metric-item {
    border: 1px solid rgba(148, 163, 184, 0.3);
    border-radius: 12px;
    padding: 13px 12px;
    background: rgba(255, 255, 255, 0.04);
}

.reviews-metric-item strong {
    display: block;
    color: #fff;
    font-size: 1.1rem;
    line-height: 1;
    margin-bottom: 5px;
}

.reviews-metric-item span {
    font-size: 11px;
    color: #cbd5e1;
}

.reviews-content {
    padding: 0 0 80px;
}

.reviews-layout {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 22px;
    align-items: start;
}

.reviews-form-card,
.reviews-list-wrap {
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    border: 1px solid #d7e5ee;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.07);
}

.reviews-form-card {
    padding: 22px;
    position: sticky;
    top: 108px;
}

.reviews-form-card h2 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 9px;
}

.reviews-form-card h2 i {
    color: #4FA1C4;
    font-size: 15px;
}

.reviews-form-card p {
    color: #64748b;
    font-size: 13px;
    margin-bottom: 14px;
}

.reviews-form {
    display: grid;
    gap: 11px;
}

.reviews-form label {
    display: block;
    margin-bottom: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #334155;
}

.reviews-form input,
.reviews-form select,
.reviews-form textarea {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    padding: 11px 12px;
    font: inherit;
    color: #0f172a;
    background: #fff;
}

.reviews-form textarea {
    resize: vertical;
    min-height: 116px;
}

.reviews-form input:focus,
.reviews-form select:focus,
.reviews-form textarea:focus {
    outline: none;
    border-color: #4FA1C4;
    box-shadow: 0 0 0 3px rgba(79, 161, 196, 0.18);
}

.reviews-field-help {
    display: block;
    margin-top: 6px;
    color: #64748b;
    font-size: 11px;
}

.reviews-submit-btn {
    width: 100%;
}

.review-feedback {
    font-size: 12px;
    color: #0f766e;
    min-height: 18px;
}

.review-feedback.is-error {
    color: #dc2626;
}

.reviews-list-wrap {
    padding: 22px;
}

.reviews-list-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    margin-bottom: 6px;
}

.reviews-list-head h2 {
    font-size: 1.35rem;
}

.reviews-list-subtitle {
    font-size: 12px;
    color: #64748b;
    margin-bottom: 14px;
}

.reviews-sort-btn {
    border: 1px solid #cbd5e1;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 600;
    color: #334155;
    background: #fff;
    cursor: pointer;
    transition: all 0.25s ease;
}

.reviews-sort-btn:hover {
    border-color: #4FA1C4;
    color: #1e293b;
    transform: translateY(-1px);
}

.reviews-list {
    display: grid;
    gap: 12px;
}

.review-item-card {
    border: 1px solid #e1ebf2;
    border-radius: 14px;
    padding: 14px;
    background: #fff;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
}

.review-item-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
}

.review-item-profile {
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-item-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(145deg, #4FA1C4, #2f7f9e);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.4px;
}

.review-item-top h3 {
    font-size: 0.98rem;
    margin-bottom: 1px;
    color: #0f172a;
}

.review-item-top p {
    font-size: 12px;
    color: #64748b;
}

.review-item-top p i {
    color: #4FA1C4;
    margin-right: 4px;
}

.review-item-top span {
    font-size: 11px;
    color: #94a3b8;
    white-space: nowrap;
}

.review-item-text {
    color: #334155;
    font-size: 13px;
    line-height: 1.7;
    margin-top: 8px;
}

.review-photo-grid {
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

/* Upload previews for review submission form */
.review-photo-grid-upload {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.upload-preview-item {
    width: 84px;
    height: 64px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e6eef5;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.upload-preview-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Upload input field style (not button style) */
.file-upload-wrapper {
    display: block;
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.file-upload-field {
    width: 100%;
    display: grid;
    grid-template-columns: 42px 1fr auto;
    align-items: center;
    gap: 12px;
    border: 1px solid #cfdbe8;
    border-radius: 14px;
    padding: 12px 14px;
    background: #f9fcff;
    cursor: pointer;
    margin-bottom: 0;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

/* Prevent generic form label styles from disturbing upload field alignment */
.reviews-form label.file-upload-field {
    display: grid;
    margin-bottom: 0;
    font-size: inherit;
    font-weight: 500;
    color: inherit;
}

.file-upload-field:hover {
    border-color: #54a8c7;
    box-shadow: 0 6px 18px rgba(84,168,199,0.14);
    background: #ffffff;
}

.file-upload-field-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #54a8c7;
    background: rgba(84,168,199,0.1);
    font-size: 18px;
}

.file-upload-field-content {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: left;
    align-items: flex-start;
}

.file-upload-title {
    font-size: 14px;
    color: #1f2a44;
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
}

.file-upload-text {
    color: #6b7d90;
    font-size: 12px;
    line-height: 1.35;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-upload-field-hint {
    font-size: 11px;
    color: #4FA1C4;
    font-weight: 700;
    background: rgba(79,161,196,0.12);
    padding: 4px 10px;
    border-radius: 999px;
}

@media (max-width: 768px) {
    .file-upload-field {
        grid-template-columns: 38px minmax(0, 1fr) auto;
        gap: 10px;
        padding: 10px 12px;
    }

    .file-upload-field-hint {
        grid-column: auto;
        justify-self: end;
        margin-left: 0;
        align-self: center;
    }
}

.review-photo-link {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #dbe5ef;
}

.review-photo {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
    transition: transform 0.25s ease;
}

.review-photo-link:hover .review-photo {
    transform: scale(1.04);
}

@media (max-width: 992px) {
    .reviews-hero-shell {
        grid-template-columns: 1fr;
    }

    .reviews-summary-card {
        grid-template-columns: 1fr;
    }

    .reviews-summary-metrics {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .reviews-layout {
        grid-template-columns: 1fr;
    }

    .reviews-form-card {
        position: static;
    }
}

@media (max-width: 640px) {
    .reviews-hero {
        padding-top: 102px;
    }

    .reviews-hero-copy,
    .reviews-hero-panel {
        border-radius: 18px;
        padding: 16px;
    }

    .reviews-hero-copy .section-title,
    .reviews-hero-copy .section-subtitle {
        text-align: left;
    }

    .reviews-summary-card {
        padding: 15px;
    }

    .reviews-summary-metrics {
        grid-template-columns: 1fr;
    }

    .reviews-form-card,
    .reviews-list-wrap {
        padding: 16px;
        border-radius: 16px;
    }

    .reviews-list-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .review-item-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .reviews-hero{
        padding-bottom: 10px !important;
    }

    .blog-grid-section .container{
        padding-top: 50px !important;

    }


    

    
}


.blog-related,
.blog-featured-section{
    display: none !important;
}



.contact-page{
    padding-bottom: 0px !important;
}


element.style {
    padding-bottom: 0 !important;
}


.main-footer-new {
    padding-bottom: 0px !important;
}

/* Home Reviews Section */
.home-reviews-section {
    position: relative;
}

.home-reviews-header {
    text-align: center;
    margin-bottom: 60px;
}

.home-reviews-header .section-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.home-reviews-header .section-subtitle {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.home-reviews-container {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 50px;
    align-items: start;
}

.home-reviews-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: sticky;
    top: 120px;
}

/* Premium Stats Card */
.home-reviews-stats {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.premium-stats-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 8px 32px rgba(84, 168, 199, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(84, 168, 199, 0.1);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}

.premium-stats-card:hover {
    box-shadow: 0 12px 48px rgba(84, 168, 199, 0.18), 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: rgba(84, 168, 199, 0.2);
    transform: translateY(-2px);
}

.stat-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 56px;
    font-weight: 900;
    /* Make the prominent rating number use the site's yellow accent */
    background: linear-gradient(135deg, #fbbf24 0%, #ffc107 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-stars {
    display: flex;
    gap: 8px;
    font-size: 22px;
    justify-content: center;
}

.stat-stars i {
    color: #ffc107;
    filter: drop-shadow(0 2px 4px rgba(255, 193, 7, 0.3));
}

.stat-label {
    font-size: 14px;
    color: #666;
    margin: 0;
    font-weight: 500;
}

.stat-label span {
    font-weight: 700;
    color: #54a8c7;
}

/* Premium Rating Distribution */
.rating-distribution {
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

/* Unified widget that contains stats on top and rating breakdown below */
.home-reviews-widget {
    padding: 0;
    border-radius: 16px;
    overflow: hidden;
}

.home-reviews-widget .home-reviews-stats {
    padding: 28px 30px;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    text-align: left;
}

/* Center the small label that shows total verified reviews */
.home-reviews-widget .home-reviews-stats .stat-label {
    text-align: center;
    display: block;
    width: 100%;
    margin-top: 12px;
}

.home-reviews-widget .rating-distribution {
    padding: 20px 24px 26px;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.home-reviews-widget .widget-divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(84,168,199,0.02), rgba(84,168,199,0.04));
}

/* Ensure inner distribution items maintain spacing inside unified widget */
.home-reviews-widget .distribution-item {
    margin-bottom: 14px;
}

.premium-distribution {
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 8px 32px rgba(84, 168, 199, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(84, 168, 199, 0.1);
}

.distribution-item {
    display: grid;
    grid-template-columns: 45px 1fr 35px;
    gap: 12px;
    align-items: center;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.distribution-item:last-child {
    margin-bottom: 0;
}

.distribution-item:hover {
    transform: translateX(4px);
}

.distribution-label {
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 45px;
}

.star-count {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    width: 20px;
}

.distribution-label i {
    color: #ffc107;
    font-size: 14px;
    filter: drop-shadow(0 1px 2px rgba(255, 193, 7, 0.2));
}

.distribution-bar {
    height: 10px;
    background: #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.distribution-fill {
    height: 100%;
    background: linear-gradient(90deg, #fbbf24, #ffc107);
    border-radius: 8px;
    transition: width 0.8s cubic-bezier(0.23, 1, 0.320, 1);
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.3);
}

.distribution-fill-premium {
    box-shadow: 0 2px 8px rgba(84, 168, 199, 0.2), inset 0 1px 2px rgba(255, 255, 255, 0.3);
}

/* Use yellow accent for the top (5-star) progress fill to match the prominent rating */

/* Force all distribution fills to the yellow accent (override inline styles) */
.distribution-fill,
.distribution-fill-premium,
#dist-5,
#dist-4,
#dist-3,
#dist-2,
#dist-1 {
    background: linear-gradient(90deg, #fbbf24, #ffc107) !important;
}

.distribution-count {
    font-size: 13px;
    font-weight: 700;
    color: #54a8c7;
    text-align: right;
}

/* Reviews Grid */
.home-reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;

    /* allow grid to shrink inside its column and avoid being pushed out of view */
    min-width: 0;
    z-index: 2;
}

.home-review-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid rgba(84, 168, 199, 0.08);
}

.home-review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #54a8c7, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.home-review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(84, 168, 199, 0.2), 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: rgba(84, 168, 199, 0.2);
}

.home-review-card:hover::before {
    opacity: 1;
}

.home-review-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.home-review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #54a8c7, #4FA1C4);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(84, 168, 199, 0.3);
}

.home-review-info {
    flex: 1;
}

.home-review-name {
    font-weight: 700;
    color: #11141c;
    margin: 0 0 4px 0;
    font-size: 15px;
}

.home-review-location {
    font-size: 12px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0;
}

.home-review-location i {
    color: #54a8c7;
    font-size: 11px;
}

.home-review-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 12px;
}

.home-review-rating i {
    color: #ffc107;
    font-size: 13px;
    filter: drop-shadow(0 1px 2px rgba(255, 193, 7, 0.2));
}

.home-review-text {
    color: #555;
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.home-reviews-cta {
    text-align: center;
    grid-column: 1 / -1;
    margin-top: 30px;
}

.premium-btn {
    padding: 16px 48px !important;
    font-size: 15px !important;
    font-weight: 600;
    background: linear-gradient(135deg, #54a8c7 0%, #4FA1C4 100%) !important;
    border: none;
    box-shadow: 0 8px 24px rgba(84, 168, 199, 0.3);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    overflow: hidden;
}

.premium-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.premium-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(84, 168, 199, 0.4);
}

.premium-btn:hover::before {
    left: 100%;
}

@media (max-width: 1024px) {
    .home-reviews-container {
        grid-template-columns: 320px 1fr;
        gap: 40px;
    }

    .home-reviews-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .home-reviews-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .home-reviews-sidebar {
        position: static;
        top: auto;
        gap: 30px;
    }

    .home-reviews-stats,
    .rating-distribution {
        padding: 25px;
    }

    .stat-number {
        font-size: 48px;
    }

    .stat-stars {
        font-size: 18px;
        gap: 5px;
    }

    .distribution-item {
        grid-template-columns: 40px 1fr 30px;
        gap: 10px;
        margin-bottom: 14px;
    }

    .distribution-bar {
        height: 10px;
    }

    .distribution-label i {
        font-size: 13px;
    }

    .star-count {
        font-size: 12px;
    }

    .distribution-count {
        font-size: 12px;
    }

    .home-reviews-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .home-review-card {
        padding: 18px;
    }

    .home-review-card:hover {
        transform: translateY(-6px);
    }

    .home-review-avatar {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .home-review-name {
        font-size: 14px;
    }

    .home-review-text {
        font-size: 12px;
    }

    .stat-label {
        font-size: 13px;
    }

    .home-reviews-header .section-title {
        font-size: 32px;
    }

    .home-reviews-header .section-subtitle {
        font-size: 14px;
    }


    .home-reviews-section{
        padding-top: 30px !important;
        padding-bottom: 20px !important;
    }
}


.btn-primary.premium-btn{
    display: none !important;
}