@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=Manrope:wght@200..800&display=swap');

/* ==========================================
   LOCAL & WEB FONTS
   ========================================== */
@font-face {
    font-family: 'Bricolage Grotesque';
    src: url('../fonts/BricolageGrotesque-VariableFont_opsz,wdth,wght.ttf') format('truetype');
    font-weight: 100 1000;
    font-stretch: 75% 125%;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 1000;
    font-style: normal;
    font-display: swap;
}

/* ==========================================
   DESIGN SYSTEM & VARIABLES
   ========================================== */
:root {
    /* Brand Colors */
    --primary-dark: #062a2b;
    --primary-dark-hover: #041c1d;
    --primary-accent: #FE6A00;
    --primary-accent-hover: #e04500;
    --whatsapp-green: #25D366;
    --whatsapp-green-hover: #20ba56;
    --light-bg: #FDFBF7;
    --white: #ffffff;

    /* Text Colors */
    --text-dark: #1b2024;
    --text-muted: #606870;
    --text-white: #ffffff;

    /* UI Elements */
    --border-color: #eaebec;
    --shadow-sm: 0 4px 12px rgba(6, 42, 43, 0.04);
    --shadow-md: 0 12px 30px rgba(6, 42, 43, 0.08);
    --shadow-lg: 0 20px 45px rgba(6, 42, 43, 0.14);

    /* Fonts */
    --font-heading: 'Bricolage Grotesque', sans-serif;
    --font-body: 'Manrope', sans-serif;

    /* Transitions */
    --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

/* ==========================================
   RESET & BASE STYLES
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    height: 100%;
    background-color: var(--primary-dark);
}

body {
    font-family: var(--font-body);
    background-color: var(--light-bg);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}

body,
p,
span,
div,
a,
li,
ul,
ol,
button,
input,
select,
textarea,
option,
label,
td,
th,
form,
nav,
small,
strong,
b,
i,
em {
    font-family: var(--font-body);
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
.section-title,
.sub-title {
    font-family: var(--font-heading) !important;
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

button,
input,
select,
textarea {
    font-family: var(--font-body) !important;
    font-size: inherit;
    color: inherit;
    border: none;
    background: none;
    outline: none;
}

/* ==========================================
   LAYOUT UTILITIES
   ========================================== */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-padding {
    padding: 50px 0;
}

.dark-teal-bg {
    background-color: var(--primary-dark);
    color: var(--text-white);
}

/* Typography styles */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: #ffffff;
}

.text-white {
    color: var(--text-white) !important;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.text-center {
    text-align: center;
}

.sub-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--primary-accent);
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.section-center-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
}

.section-center-header .section-desc {
    margin: 0 auto;
}

.section-header {
    margin-bottom: 40px;
}

.section-header.center-align,
.center-align {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.section-header.center-align .sub-title,
.section-header.center-align .section-title,
.section-header.center-align .section-desc,
.center-align .sub-title,
.center-align .section-title,
.center-align .section-desc {
    text-align: center !important;
}

.section-header.center-align .section-desc,
.center-align .section-desc {
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 680px;
}

/* ==========================================
   STICKY COMBINED BOOKING WIDGET & CYAN PRICE CARD (#35BEC4)
   ========================================== */
.sticky-booking-widget {
    position: sticky;
    top: 100px;
    z-index: 10;
    margin-bottom: 30px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    overflow: hidden;
}

.tour-price-card {
    background-color: #35BEC4;
    border-radius: 24px 24px 0 0;
    padding: 24px 28px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.price-card-lbl {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 6px;
}

.price-card-main {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.price-card-usd {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.price-card-egp {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
}

.price-card-per {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.88);
}

.price-card-del {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 12px;
}

.price-card-badges {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.price-badge {
    background-color: rgba(255, 255, 255, 0.22);
    border-radius: 30px;
    padding: 6px 14px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    color: #ffffff;
    backdrop-filter: blur(4px);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* ==========================================
   BLOG PAGINATION STYLES
   ========================================== */
.blog-pagination-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 50px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.pagination-btn {
    min-width: 44px;
    height: 44px;
    padding: 0 16px;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    background-color: var(--white);
    color: var(--primary-dark);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.pagination-btn:hover:not(.disabled):not(.active) {
    border-color: var(--primary-accent);
    color: var(--primary-accent);
    background-color: rgba(254, 106, 0, 0.05);
    transform: translateY(-2px);
}

.pagination-btn.active {
    background-color: var(--primary-accent);
    color: var(--white);
    border-color: var(--primary-accent);
    box-shadow: 0 4px 12px rgba(254, 106, 0, 0.25);
}

.pagination-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* ==========================================
   FAQ PAGE & ACCORDION STYLES
   ========================================== */
.faq-layout-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
}

@media (max-width: 991px) {
    .faq-layout-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.faq-sidebar-menu {
    background-color: var(--white);
    border-radius: 20px;
    padding: 24px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    position: sticky;
    top: 100px;
}

.faq-sidebar-title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary-dark);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

.faq-category-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-category-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    border: none;
    background: transparent;
    color: var(--primary-dark);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-fast);
    text-align: left;
}

.faq-category-btn:hover:not(.active) {
    background-color: rgba(254, 106, 0, 0.06);
    color: var(--primary-accent);
}

.faq-category-btn.active {
    background-color: var(--primary-accent);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(254, 106, 0, 0.3);
}

.faq-category-btn .badge-count {
    font-size: 0.85rem;
    font-weight: 800;
    opacity: 0.9;
}

.faq-group {
    margin-bottom: 40px;
    transition: var(--transition-fast);
}

.faq-group.hide {
    display: none !important;
}

.faq-group-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
}

.faq-accordion-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-fast);
    cursor: pointer;
}

.faq-item:hover {
    border-color: rgba(254, 106, 0, 0.3);
}

.faq-item.active {
    border-color: var(--primary-accent);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.faq-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-dark);
    transition: var(--transition-fast);
}

.faq-toggle h3 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: inherit;
}

.faq-item.active .faq-toggle {
    color: var(--primary-accent);
}

.faq-icon {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
    color: var(--primary-accent);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-content {
    display: none !important;
    padding: 0 24px 20px 24px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.faq-item.active .faq-content {
    display: block !important;
}

.faq-content p {
    margin-bottom: 10px;
}

.faq-content p:last-child {
    margin-bottom: 0;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background-color: var(--primary-accent);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(249, 87, 7, 0.2);
}

.btn-primary:hover {
    background-color: var(--primary-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 87, 7, 0.35);
}

.btn-dark-teal {
    background-color: var(--primary-dark);
    color: var(--text-white);
}

.btn-dark-teal:hover {
    background-color: var(--primary-dark-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(6, 42, 43, 0.2);
}

.btn-outline-whatsapp {
    border: 2px solid var(--whatsapp-green);
    color: var(--whatsapp-green);
    background-color: transparent;
}

.btn-outline-whatsapp:hover {
    background-color: var(--whatsapp-green);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.2);
}

.btn-white-whatsapp {
    background-color: var(--white);
    color: var(--whatsapp-green);
    border: 2px solid var(--white);
}

.btn-white-whatsapp:hover {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    padding: 24px 0;
    transition: var(--transition-smooth);
}

#main-header.scrolled {
    background-color: rgba(6, 42, 43, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 16px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary-dark);
}

#main-header.scrolled .logo-text,
#hero .logo-text {
    color: var(--white);
}

.logo-text span {
    color: var(--primary-accent);
}

#navbar {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--primary-dark);
    position: relative;
    padding: 6px 0;
}

#main-header.scrolled .nav-link {
    color: var(--white);
    opacity: 0.85;
}

/* Initially on the transparent header with dark text: (e.g. if the hero section is dark, let's make links white!) */
#main-header:not(.scrolled) .nav-link {
    color: var(--white);
}

.nav-link:hover,
#main-header.scrolled .nav-link:hover {
    color: var(--primary-accent);
    opacity: 1;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-accent);
    transition: var(--transition-fast);
}

.nav-link.active::after,
.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-selector {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.lang-option {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--white) !important;
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px solid transparent;
    opacity: 0.6;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.lang-option:hover {
    opacity: 0.9;
}

.lang-option.active {
    opacity: 1;
    border-color: rgba(255, 255, 255, 0.35);
}

#mobile-menu-btn {
    display: none;
    color: var(--white);
    cursor: pointer;
}

/* ==========================================
   HERO SECTION & CAROUSEL
   ========================================== */
#hero {
    min-height: 100vh;
    padding-top: 170px;
    padding-bottom: 80px;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--white);
    overflow: hidden;
    background-color: #041c1d;
    /* Fallback dark background */
}

.hero-slides-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    background-color: #041c1d;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-color: #041c1d;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 6s ease-out;
    transform: scale(1.05);
}

.hero-slide-bg.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(4, 28, 29, 0.88) 0%, rgba(4, 28, 29, 0.6) 55%, rgba(4, 28, 29, 0.35) 100%),
        linear-gradient(to bottom, rgba(4, 28, 29, 0.75) 0%, transparent 25%, rgba(4, 28, 29, 0.4) 75%, rgba(4, 28, 29, 0.85) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-container {
    position: relative;
    width: 100%;
    z-index: 2;
}

.hero-slide-contents {
    position: relative;
    min-height: 220px;
}

.hero-slide-content {
    display: none !important;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.hero-slide-content h1 {
    color: #ffffff;
}

.hero-slide-content.active {
    display: block !important;
    opacity: 1;
    transform: translateY(0);
}

.hero-carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 25px;
    margin-bottom: 25px;
}

.hero-carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.hero-carousel-btn:hover {
    background: var(--primary-accent);
    border-color: var(--primary-accent);
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(249, 87, 7, 0.35);
}

.hero-carousel-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

.hero-dot.active {
    width: 32px;
    border-radius: 20px;
    background: var(--primary-accent);
    box-shadow: 0 0 10px rgba(249, 87, 7, 0.5);
}

.hero-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    width: 100%;
    margin-bottom: 40px;
}

.hero-left {
    flex: 1.2;
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.hero-image-card {
    position: relative;
    width: 100%;
    max-width: 480px;
    border-radius: 24px;
}

.hero-widget-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    display: block;
}

.location-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(6, 42, 43, 0.4);
    border: 1px solid rgb(11 184 204);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 8px 16px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
}

.tag-dot {
    width: 8px;
    height: 8px;
    background-color: #0BB8CC;
    border-radius: 50%;
    display: inline-block;
}

.hero-title {
    font-size: 3.8rem;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-desc {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 32px;
    line-height: 1.5;
}

.hero-badges {
    display: flex;
    flex-direction: column;
    /*gap: 16px;*/
}

.social-proof {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stars {
    color: #FE6A00;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.rating-text {
    font-weight: 500;
    font-size: 0.95rem;
}

.hero-bullets {
    display: flex;
    gap: 28px;
    /*  margin-top: 16px;*/
    align-items: center;
}

.bullet-item {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--white);
}

.bullet-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-accent);
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
}

/* Floating 12 Years Badge */
.floating-years-badge {
    position: absolute;
    bottom: -20px;
    left: -25px;
    background-color: var(--white);
    border-radius: 16px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    animation: floating 4s ease-in-out infinite;
    z-index: 20;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.badge-num-box {
    background-color: #36BEC4;
    color: var(--white);
    border-radius: 10px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.6rem;
}

.badge-txt {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.82rem;
    color: var(--primary-dark);
    line-height: 1.2;
    text-align: left;
}

/* Search Booking Widget */
.search-widget {
    background-color: var(--white);
    border-radius: 100px;
    box-shadow: var(--shadow-lg);
    padding: 8px 8px 8px 32px;
    margin-top: 40px;
    max-width: 100%;
    width: 100%;
}

.search-form {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    width: 100%;
    padding-top: 15px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0 32px;
}

.form-group:first-child {
    padding-left: 0;
}

.form-group:not(:last-of-type) {
    border-right: 1px solid var(--border-color);
}

.form-group label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 1px;
    color: #a1a6aa;
    text-transform: uppercase;
}

.form-group select,
.form-group input {
    width: 100%;
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    background: transparent;
    padding: 2px 0;
}

.select-wrapper {
    position: relative;
}

.form-group .select-wrapper::after {
    display: none !important;
}

.select-wrapper::after {
    content: '▼';
    font-size: 0.6rem;
    color: var(--primary-dark);
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 25px;
}

.btn-search {
    background-color: var(--primary-accent);
    color: var(--white);
    border-radius: 50px;
    padding: 18px 44px;
    height: 64px;
    font-size: 1rem;
}

.btn-search:hover {
    background-color: var(--primary-accent-hover);
    transform: none;
    box-shadow: 0 4px 15px rgba(249, 87, 7, 0.3);
}

/* ==========================================
   TRUST / FEATURES BAR
   ========================================== */
.trust-bar {
    background-color: var(--light-bg);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.trust-grid-about {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.trust-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(249, 87, 7, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-info h3 {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.trust-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.widget-header {
    color: #ffffff;
}

/* ==========================================
   EXCURSIONS SECTION
   ========================================== */
.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 50px;
}

.header-left {
    max-width: 600px;
}

.link-arrow {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary-dark);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-bottom: 2px solid transparent;
    padding-bottom: 4px;
}

.link-arrow:hover {
    color: var(--primary-accent);
    border-color: var(--primary-accent);
    padding-right: 6px;
}

.section-header .link-arrow {
    border: 1px solid rgba(6, 42, 43, 0.12);
    border-radius: 50px;
    padding: 10px 24px;
    background-color: var(--white);
    transition: var(--transition-smooth);
    gap: 8px;
}

.section-header .link-arrow:hover {
    color: var(--primary-accent);
    border-color: var(--primary-accent);
    background-color: var(--light-bg);
    transform: translateY(-1px);
}

.excursions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tour-card {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tour-img-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.tour-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.tour-card:hover .tour-img {
    transform: scale(1.08);
}

.tour-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.75rem;
    padding: 6px 14px;
    border-radius: 50px;
    color: var(--white);
    letter-spacing: 0.5px;
}

.tour-badge.badge-water-sports {
    background-color: #2bc0d1;
}

.tour-badge.badge-safari {
    background-color: #C08A3E;
}

.tour-badge.badge-culture {
    background-color: #0B555F;
}

.tour-badge.badge-wellness {
    background-color: #8E6BAF;
}

.tour-rating {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: var(--white);
    color: var(--primary-dark);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 4px 12px;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.tour-details {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.tour-loc {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.85rem;
    color: #94a3b8;
    margin-bottom: 8px;
    text-transform: none;
    display: flex;
    align-items: center;
    gap: 4px;
}

.tour-loc svg {
    color: #94a3b8;
    flex-shrink: 0;
}

.tour-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    flex-grow: 1;
    color: var(--primary-dark) ;
}

.tour-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.tour-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price-box {
    display: flex;
    flex-direction: column;
}

.price-lbl {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.price-val {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--primary-dark);
}

.price-egp {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
}

.btn-book {
    padding: 10px 20px;
    font-size: 0.85rem;
    background-color: #003B46 !important;
}

.btn-book:hover {

    background-color: #0B555F !important;
}

.tour-card .btn-book {
    background-color: var(--primary-dark);
    color: var(--white);
    border-radius: 10px;
    padding: 12px 20px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    border: none;
}

.tour-card .btn-book:hover {
    background-color: var(--primary-dark-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(6, 42, 43, 0.15);
}

/* Card hover animation */
.card-hover {
    transition: var(--transition-smooth);
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

/* ==========================================
   DESTINATIONS / EXPLORE EGYPT SECTION
   ========================================== */
.destinations-section {
    background-color: var(--light-bg);
}

.destinations-section .section-header,
#destinations .section-header {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 50px !important;
}

.destinations-section .sub-title,
#destinations .sub-title {
    text-align: center !important;
    color: var(--primary-accent) !important;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

.destinations-section .section-title,
#destinations .section-title {
    text-align: center !important;
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.destinations-section .section-desc,
#destinations .section-desc {
    text-align: center !important;
    max-width: 620px;
    margin: 0 auto !important;
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.destinations-carousel-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.destinations-carousel-track-container {
    width: 100%;
    overflow: hidden;
    padding: 15px 0;
}

.destinations-carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.dest-carousel-slide {
    flex: 0 0 calc(33.333% - 16px);
    box-sizing: border-box;
    min-width: 0;
}

.dest-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary-dark);
    border: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.dest-prev-btn {
    left: -22px;
}

.dest-next-btn {
    right: -22px;
}

.dest-carousel-arrow:hover {
    background: var(--primary-accent);
    color: var(--white);
    border-color: var(--primary-accent);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 25px rgba(249, 87, 7, 0.35);
}

.dest-carousel-arrow.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.dest-card {
    border-radius: 24px;
    height: 440px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    text-decoration: none;
}

.dest-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.16);
}

.dest-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 0;
}

.dest-card:hover .dest-card-img {
    transform: scale(1.06);
}

.dest-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 35%, rgba(6, 42, 43, 0.65) 70%, rgba(6, 42, 43, 0.95) 100%);
    z-index: 1;
    transition: opacity 0.4s ease;
}

.dest-card-content {
    position: relative;
    z-index: 2;
    padding: 28px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.dest-tour-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--white);
    padding: 5px 14px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.78rem;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    letter-spacing: 0.3px;
}

.dest-card-title {
    color: var(--white);
    font-size: 1.85rem;
    font-weight: 800;
    margin-bottom: 6px;
    line-height: 1.2;
    display: flex;
    align-items: center;
    gap: 6px;
}

.dest-arrow {
    font-weight: 400;
    font-size: 1.4rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.dest-card:hover .dest-arrow {
    transform: translateX(4px);
}

.dest-card-desc {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.88rem;
    line-height: 1.4;
    margin: 0;
    font-weight: 400;
}

@media screen and (max-width: 992px) {
    .dest-carousel-slide {
        flex: 0 0 calc(50% - 12px);
    }

    .dest-prev-btn {
        left: -10px;
    }

    .dest-next-btn {
        right: -10px;
    }
}

@media screen and (max-width: 600px) {
    .dest-carousel-slide {
        flex: 0 0 100%;
    }

    .dest-prev-btn {
        left: 5px;
    }

    .dest-next-btn {
        right: 5px;
    }

    .dest-card {
        height: 380px;
    }
}

/* ==========================================
   WHY TOURLIVES SECTION REDESIGN
   ========================================== */
.why-section {
    background-color: #FAF9F6;
}

.why-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
}

.why-info-box .sub-title {
    color: var(--primary-accent);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 14px;
    display: block;
    text-transform: uppercase;
}

.why-info-box .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.18;
    color: var(--primary-dark);
    margin-bottom: 18px;
}

.why-info-box .section-desc {
    font-size: 1.02rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 95%;
}

.why-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 36px;
}

.why-feature-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 24px 22px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
}

.why-feature-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background-color: rgba(11, 184, 204, 0.12);
    color: #0BB8CC;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.why-feature-title {
    font-size: 1.02rem;
    font-weight: 700;
    color: #0a9aa8;
    margin-bottom: 8px;
    line-height: 1.3;
}

.why-feature-desc {
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.45;
    margin: 0;
}

.why-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-pill {
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
}

.btn-whatsapp-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 26px;
    border-radius: 50px;
    background: #ffffff;
    color: var(--primary-dark);
    border: 1px solid rgba(0, 0, 0, 0.12);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-whatsapp-pill:hover {
    background: #25D366;
    color: #ffffff;
    border-color: #25D366;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-pill .whatsapp-icon {
    color: #25D366;
    transition: color 0.3s ease;
}

.btn-whatsapp-pill:hover .whatsapp-icon {
    color: #ffffff;
}

.why-image-wrapper {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    height: 540px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.why-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.license-img-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(4, 28, 29, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 8px 18px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

/* ==========================================
   STATS BAR (DARK TEAL)
   ========================================== */
.stats-section {
    padding: 60px 0;
    background: linear-gradient(90deg, #0b545d 0%, #0b555f 30%, #032123 80%)
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-icon {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon svg {
    display: block;
}

.stat-num {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 8px;
    color: var(--white);
}

.stat-num.show-plus::after {
    content: '+';
    color: var(--primary-accent);
}

.stat-lbl {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
}

.stats-caption {
    text-align: center;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    margin-top: 36px;
    margin-bottom: 0;
    font-weight: 600;
    text-transform: uppercase;
}

/* ==========================================
   3 STEPS SECTION (BOOK YOUR ADVENTURE)
   ========================================== */
.steps-section {
    background-color: #FAF9F6;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.step-card {
    background: #F4F1EA;
    border-radius: 24px;
    padding: 36px 30px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.step-num-watermark {
    position: absolute;
    top: 14px;
    right: 24px;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 5.8rem;
    line-height: 1;
    color: #ffffff;
    user-select: none;
    pointer-events: none;
}

.step-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: #0BB8CC;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 14px rgba(11, 184, 204, 0.22);
}

.step-title {
    font-size: 1.22rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.step-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* ==========================================
   REVIEWS SECTION (TRAVELLER STORIES)
   ========================================== */
.reviews-section {
    background-color: #FAF9F6;
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 44px;
}

.reviews-header .sub-title {
    color: var(--primary-accent);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: block;
    text-transform: uppercase;
}

.reviews-header .section-title {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--primary-dark);
    margin: 0;
}

.reviews-header-stats {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-stars {
    color: #f95707;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.header-stat-text {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.stat-count {
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.2;
}

.stat-subtitle {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.review-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 36px 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
}

.review-stars {
    color: #f95707;
    font-size: 1.15rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.review-quote {
    font-size: 0.95rem;
    color: #3c4d4e;
    line-height: 1.6;
    margin: 0 0 28px 0;
    flex-grow: 1;
    font-weight: 400;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--primary-dark);
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: 0.5px;
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 1.02rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin: 0 0 3px 0;
}

.author-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

@media screen and (max-width: 992px) {
    .reviews-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .header-stat-text {
        align-items: flex-start;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ==========================================
   READY FOR RED SEA ADVENTURE CTA BANNER
   ========================================== */
.cta-banner-section {
    background-color: var(--primary-dark);
    padding: 95px 0 85px 0;
    color: var(--white);
}

.cta-banner-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.cta-banner-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.6;
    margin: 0 auto 36px auto;
    max-width: 680px;
    font-weight: 400;
}

.cta-banner-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 36px;
}

.cta-contact-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    margin-bottom: 12px;
}

.cta-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.cta-contact-location {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@media screen and (max-width: 768px) {
    .cta-banner-title {
        font-size: 2.2rem;
    }

    .cta-banner-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-contact-row {
        flex-direction: column;
        gap: 10px;
    }
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */
.testimonials-section {
    background-color: var(--light-bg);
    border-top: 1px solid var(--border-color);
}

.header-meta {
    text-align: right;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
}

.header-meta .stars {
    margin-bottom: 4px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-stars {
    margin-bottom: 16px;
}

.review-text {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-style: italic;
    line-height: 1.7;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.reviewer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(6, 42, 43, 0.08);
    color: var(--primary-dark);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviewer-name {
    font-size: 0.95rem;
    font-weight: 700;
}

.reviewer-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ==========================================
   BLOG / TRAVEL JOURNAL
   ========================================== */
.blog-section {
    background: linear-gradient(270deg, #0b555e 0%, #032123 100%);
}

.blog-section .section-header {
    border-bottom: none;
    margin-bottom: 40px;
}

.blog-section .section-header .link-arrow {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--white) !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 50px;
    padding: 10px 24px;
    background-color: rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
    border-bottom-width: 1px !important;
}

.blog-section .section-header .link-arrow:hover {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.4) !important;
    transform: translateY(-1px);
    padding-right: 24px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-img-box {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.blog-card:hover .blog-img {
    transform: scale(1.06);
}

.blog-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: var(--primary-accent);
    color: var(--text-white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 4px;
}

.blog-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-body h3 {
    color: var(--text-white);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.blog-body p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-smooth);
}

.blog-link:hover {
    color: var(--primary-accent);
    transform: translateX(4px);
}

/* ==========================================
   FAQ SECTION
   ========================================== */
.faq-section {
    background-color: var(--light-bg);
    padding-top: 50px;
}

.faq-accordion-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    padding: 24px 0;
}

.faq-item:first-child {
    padding-top: 0;
}

.faq-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--primary-dark);
}

.faq-icon {
    font-size: 15px;
    color: #ffffff;
    background-color: var(--primary-accent);
    width: 24px;
    height: 24px;
    transition: var(--transition-fast);
    border-radius: 25px;
    text-align: center;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.faq-item.active .faq-content {
    max-height: 1000px;
    transition: max-height 0.4s ease-in-out;
}

.faq-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    padding-top: 14px;
    line-height: 1.7;
}

/* ==========================================
   READY CTA SECTION
   ========================================== */
.footer-cta-section {
    padding: 80px 0;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-title {
    color: var(--text-white);
    font-size: 3.2rem;
    line-height: 1.15;
    margin-bottom: 20px;
}

.cta-desc {
    font-size: 1.15rem;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto 36px auto;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.cta-contact-info {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    opacity: 0.85;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.cta-contact-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cta-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.cta-contact-item svg {
    color: var(--primary-accent);
    flex-shrink: 0;
}

a.cta-contact-item:hover {
    color: var(--white);
    transform: translateY(-1px);
}

.cta-location-row {
    margin-top: 4px;
}

.cta-location-row .cta-contact-item {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    font-size: 0.8rem;
}

/* ==========================================
   FOOTER
   ========================================== */
#footer {
    background-color: var(--primary-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0 0;
    margin-top: auto;
    margin-bottom: 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.brand-desc {
    font-size: 0.9rem;
    line-height: 1.6;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.social-icons a:hover {
    background-color: var(--primary-accent);
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 24px;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary-accent);
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    align-items: flex-start;
}

.footer-contact li svg {
    color: var(--primary-accent);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 30px 0;
    font-size: 0.8rem;
    margin-bottom: 0 !important;
}

.footer-bottom p {
    margin-bottom: 0 !important;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0.7;
}

/* Floating WhatsApp sticky button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--whatsapp-green);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
    z-index: 999;
    transition: var(--transition-smooth);
}

.floating-whatsapp:hover {
    background-color: var(--whatsapp-green-hover);
    transform: scale(1.08) rotate(8deg);
}

/* ==========================================
   RESPONSIVE MEDIA QUERIES (Mobile-first)
   ========================================== */

/* Laptop screens (width up to 1366px or height up to 800px) */
@media screen and (max-width: 1366px),
screen and (max-height: 800px) {
    #hero {
        padding-top: 130px;
        padding-bottom: 40px;
        min-height: auto;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-desc {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .hero-widget-img {
        height: 250px;
    }

    .floating-years-badge {
        bottom: -15px;
        left: -15px;
        padding: 8px 12px;
    }

    .badge-num-box {
        width: 36px;
        height: 36px;
        font-size: 1.3rem;
    }

    .badge-txt {
        font-size: 0.75rem;
    }

    .search-widget {
        margin-top: 24px;
    }
}

/* Up to 1024px: Tablet landscape / laptops */
@media screen and (max-width: 1024px) {
    .grid-2 {
        gap: 40px;
    }

    .hero-main {
        flex-direction: column;
        gap: 45px;
        text-align: center;
    }

    .hero-right {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .hero-title {
        font-size: 3rem;
    }

    .floating-years-badge {
        left: 0;
        right: auto;
        bottom: -15px;
    }

    .excursions-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

/* Up to 768px: Mobile / Portrait Tablet */
@media screen and (max-width: 768px) {
    .section-padding {
        padding: 30px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .grid-2 {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Nav mobile view */
    #navbar {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--primary-dark);
        flex-direction: column;
        padding: 50px 24px;
        gap: 24px;
        transition: var(--transition-smooth);
        z-index: 999;
    }

    #navbar.open {
        left: 0;
    }

    .nav-link {
        color: var(--white) !important;
        font-size: 1.25rem;
    }

    #mobile-menu-btn {
        display: block;
    }

    .nav-cta {
        display: none;
        /* Hide button CTA on mobile nav bar, put it in mobile menu or hide */
    }

    /* Hero section */
    #hero {
        padding-top: 120px;
        padding-bottom: 50px;
        text-align: center;
    }

    .hero-left {
        margin: 0 auto;
    }

    .hero-right {
        display: none;
    }

    .hero-bullets {
        justify-content: center;
    }

    .hero-title {
        font-size: 2.3rem;
    }

    .hero-badges {
        align-items: center;
    }

    /* Booking widget */
    .search-widget {
        border-radius: 20px;
        padding: 24px;
        margin-top: 40px;
    }

    .search-form {
        flex-direction: column;
        gap: 16px;
    }

    .form-group {
        width: 100%;
    }

    .btn-search {
        width: 100%;
    }

    /* Trust bar */
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Excursions */
    .excursions-grid,
    .blog-grid,
    .destinations-grid,
    .steps-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    /* Why TourLives */
    .why-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .why-image-wrapper {
        height: 350px;
    }

    .why-actions {
        flex-direction: column;
        align-items: stretch;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .stat-num {
        font-size: 2.5rem;
    }

    /* CTA */
    .cta-title {
        font-size: 2.2rem;
    }

    .cta-actions {
        flex-direction: column;
        padding: 0 20px;
    }

    .cta-contact-info {
        flex-direction: column;
        gap: 8px;
    }

    .cta-contact-info .dot {
        display: none;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom-flex {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* ==========================================
   TOURS LIST PAGE SPECIFIC STYLES
   ========================================== */

#tours-hero {
    min-height: 50vh;
    padding-top: 160px;
    padding-bottom: 60px;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--white);
}

.tours-hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.tours-hero-content {
    max-width: 800px;
    width: 100%;
}

.tours-sub-tag {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--primary-accent);
    margin-bottom: 16px;
}

.sub-tag-line {
    width: 24px;
    height: 2px;
    background-color: var(--primary-accent);
    margin-top: 6px;
}

.tours-title {
    font-size: 3.2rem;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 16px;
    font-weight: 800;
}

.tours-desc {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 32px;
    font-family: var(--font-body);
}

.tours-search-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

.tours-search-box {
    background-color: var(--white);
    border-radius: 100px;
    box-shadow: var(--shadow-lg);
    padding: 16px 28px;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 600px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.tours-search-box .search-icon {
    color: var(--text-muted);
    margin-right: 12px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.tours-search-box input {
    width: 100%;
    border: none;
    background: transparent;
    outline: none;
    font-size: 1.05rem;
    color: var(--text-dark);
    font-weight: 500;
}

.tours-search-box input::placeholder {
    color: #a1a6aa;
}

/* Filter & Sort Controls */
.filter-controls-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    padding: 16px 24px;
    background-color: var(--white);
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.filter-controls-bar .select-wrapper {
    position: relative;
    flex: 0 1 auto;
    min-width: 180px;
}

.filter-controls-bar .select-wrapper select {
    width: 100%;
    padding: 12px 36px 12px 20px;
    border: 1px solid var(--border-color);
    background-color: var(--white);
    background-image: none;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.filter-controls-bar .select-wrapper select:hover {
    border-color: var(--primary-dark);
}

.filter-controls-bar .select-wrapper::after {
    content: '▾';
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.7rem;
    color: var(--text-muted);
    pointer-events: none;
}

.filter-controls-bar .select-wrapper select.filter-active {
    background-color: #2bc0d1;
    border-color: #2bc0d1;
    color: var(--white);
    box-shadow: 0 4px 10px rgba(43, 192, 209, 0.2);
}

@media (max-width: 767px) {
    .filter-controls-bar {
        flex-direction: column;
        align-items: stretch;
        border-radius: 16px;
    }
    .filter-controls-bar .select-wrapper {
        flex: 1 1 100%;
    }
}

/* Filter Results Status */
.filter-results-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-muted);
    padding: 0 10px;
}

.clear-filters-btn {
    background: none;
    border: none;
    color: var(--primary-accent);
    cursor: pointer;
    text-decoration: underline;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.clear-filters-btn:hover {
    color: var(--primary-accent-hover);
}

/* Empty State */
.no-tours-found {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 80px 24px;
    background-color: var(--white);
    border-radius: 24px;
    border: 1px dashed var(--border-color);
    margin-bottom: 60px;
}

.no-tours-found svg {
    color: var(--text-muted);
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-tours-found h3 {
    font-size: 1.6rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.no-tours-found p {
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 460px;
    font-size: 1rem;
}

/* Struck through original price */
.original-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    margin-right: 6px;
}

/* Tour Card Badge Variations */
.tour-badge.spec-offer-badge {
    background-color: var(--primary-accent);
}

.tour-badge.category-in-img-badge {
    top: auto;
    bottom: 16px;
    left: 16px;
    background-color: var(--primary-accent);
    font-weight: 700;
    font-size: 0.72rem;
    padding: 4px 12px;
    border-radius: 4px;
}

.tour-card-desc-snippet {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 16px;
    flex-grow: 1;
    line-height: 1.5;
}

/* JS Filtering Animation support */
.tour-card {
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tour-card.filtered-out {
    opacity: 0 !important;
    transform: scale(0.92) translateY(10px) !important;
    pointer-events: none;
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    padding: 0;
    margin: 0;
    border: none;
}

/* Responsive layout adjustments for filter bar */
@media (max-width: 991px) {
    .filter-controls-bar {
        border-radius: 24px;
        flex-direction: column;
        align-items: stretch;
        padding: 24px;
    }

    .filter-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .filter-pills {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 8px;
        margin-bottom: 8px;
    }

    .filter-pill {
        flex-shrink: 0;
    }

    .filter-right {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        border-top: 1px solid var(--border-color);
        padding-top: 20px;
    }

    .filter-right .select-wrapper select {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .tours-title {
        font-size: 2.3rem;
    }

    .tours-desc {
        font-size: 0.95rem;
    }

    .tours-search-box {
        padding: 12px 20px;
    }

    .tours-search-box input {
        font-size: 0.95rem;
    }
}

/* ==========================================
   DESTINATIONS PAGE SPECIFIC STYLES
   ========================================== */

/* 3-Column Destinations Grid */
.destination-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

/* Individual Destination Card */
.destination-list-card {
    border-radius: 24px;
    height: 520px;
    position: relative;
    overflow: hidden;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
}

.destination-list-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(6, 42, 43, 0.1) 0%, rgba(6, 42, 43, 0.4) 60%, rgba(6, 42, 43, 0.9) 100%);
    transition: var(--transition-smooth);
    z-index: 1;
}

.destination-list-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.destination-list-card:hover::before {
    background: linear-gradient(180deg, rgba(6, 42, 43, 0.05) 0%, rgba(6, 42, 43, 0.3) 50%, rgba(6, 42, 43, 0.95) 100%);
}

/* Custom Tours Count Badge */
.dest-tours-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    display: inline-flex;
    align-items: stretch;
    border-radius: 50px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 2;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.dest-tours-badge .badge-num {
    background-color: var(--primary-accent);
    color: var(--white);
    padding: 6px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dest-tours-badge .badge-txt {
    background-color: rgba(6, 42, 43, 0.65);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--white);
    padding: 6px 14px;
    display: flex;
    align-items: center;
}

/* Destination Content Overlay */
.destination-list-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.destination-list-content h3 {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.destination-list-content h3 a {
    color: var(--white);
    display: inline-flex;
    align-items: center;
    width: 100%;
}

.destination-list-content h3 .arrow {
    margin-left: 8px;
    transition: var(--transition-fast);
    font-size: 1.8rem;
    line-height: 1;
}

.destination-list-card:hover .destination-list-content h3 .arrow {
    transform: translateX(6px);
}

.destination-list-content p {
    font-size: 0.98rem;
    opacity: 0.9;
    margin-bottom: 24px;
    line-height: 1.5;
}

/* Tags Container and Tag Outline */
.destination-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.dest-tag {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 50px;
    transition: var(--transition-fast);
}

.destination-list-card:hover .dest-tag {
    border-color: rgba(255, 255, 255, 0.7);
    background-color: rgba(255, 255, 255, 0.15);
}

/* Practical Tips Section */
.practical-tips-section {
    background-color: var(--light-bg);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.tip-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 36px 28px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.tip-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-dark);
}

.tip-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background-color: rgba(254, 106, 0, 0.08);
    color: var(--primary-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.tip-card:nth-child(2) .tip-icon-box {
    background-color: rgba(43, 192, 209, 0.08);
    color: #2bc0d1;
}

.tip-card:nth-child(3) .tip-icon-box {
    background-color: rgba(37, 211, 102, 0.08);
    color: var(--whatsapp-green);
}

.tip-card:nth-child(4) .tip-icon-box {
    background-color: rgba(6, 42, 43, 0.05);
    color: var(--primary-dark);
}

.tip-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.tip-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Responsive Media Queries for destinations.html */
@media (max-width: 991px) {
    .destination-list-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tips-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .destination-list-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto 40px;
    }

    .destination-list-card {
        height: 460px;
    }
}

@media (max-width: 576px) {
    .tips-grid {
        grid-template-columns: 1fr;
    }

    .tip-card {
        padding: 28px 20px;
    }
}

/* ==========================================
   ABOUT US PAGE STYLES
   ========================================== */
.about-hero-container {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 400px;
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.about-stat-box {
    background-color: var(--white);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.about-stat-box .stat-num-large {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--primary-accent);
    line-height: 1.1;
    margin-bottom: 6px;
}

.about-stat-box .stat-desc-small {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.65rem;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.about-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 480px;
    box-shadow: var(--shadow-md);
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-img-badge-icon {
    color: var(--whatsapp-green);
    display: flex;
    align-items: center;
}

.about-img-badge-text h5 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

.about-img-badge-text p {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mission & Vision Section */
.mission-vision-section {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.mv-card {
    background-color: var(--light-bg);
    border: 1px solid var(--border-color);
    border-radius: 28px;
    padding: 50px 40px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
}

.mv-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(6, 42, 43, 0.12);
}

.mv-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background-color: rgba(254, 106, 0, 0.08);
    color: var(--primary-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.mv-card:nth-child(2) .mv-icon-box {
    background-color: rgba(11, 85, 95, 0.08);
    color: var(--primary-dark);
}

.mv-card .sub-title {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--primary-accent);
    text-transform: uppercase;
}

.mv-card:nth-child(2) .sub-title {
    color: var(--primary-dark);
}

.mv-title {
    font-size: 1.6rem;
    color: var(--primary-dark);
    font-weight: 700;
    line-height: 1.3;
}

.mv-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .mission-vision-section .grid-2 {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Guides Section */
.guides-section {
    background-color: var(--light-bg);
    padding: 100px 0;
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.guide-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.guide-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.guide-img-wrapper {
    width: 100%;
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
}

.guide-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.guide-card:hover .guide-img-wrapper img {
    transform: scale(1.05);
}

.guide-info h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.guide-role {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--primary-accent);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.guide-bio {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.guide-languages {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: auto;
}

.lang-badge {
    background-color: #f0edf8;
    color: var(--primary-dark);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Trust Section */
.trust-section {
    background-color: var(--light-bg);
    padding: 100px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.trust-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 36px 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.trust-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.trust-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background-color: rgba(254, 106, 0, 0.08);
    color: var(--primary-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.trust-card:nth-child(2) .trust-icon-box {
    background-color: rgba(43, 192, 209, 0.08);
    color: #2bc0d1;
}

.trust-card:nth-child(3) .trust-icon-box {
    background-color: rgba(37, 211, 102, 0.08);
    color: var(--whatsapp-green);
}

.trust-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.trust-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Responsive Media Queries for about.html */
@media (max-width: 991px) {
    .guides-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .about-stats-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .about-image-wrapper {
        height: 380px;
        margin-top: 20px;
    }

    .guides-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 40px auto 0;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 40px auto 0;
    }
}

/* ==========================================
   CONTACT US PAGE STYLES
   ========================================== */
.contact-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    margin-top: 60px;
}

.contact-form-side h2 {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.contact-form-side .form-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

/* Form Styles */
.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-dark);
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background-color: var(--white);
    color: var(--text-dark);
    transition: var(--transition-fast);
    width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #b0b5b9;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-accent);
    box-shadow: 0 0 0 3px rgba(254, 106, 0, 0.1);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23606870' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 14px;
    padding-right: 45px;
}

.form-submit-btn {
    width: 100%;
    padding: 16px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    background-color: var(--primary-accent);
    color: var(--white);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-sm);
}

.form-submit-btn:hover {
    background-color: var(--primary-accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Contact Info Cards Style */
.contact-info-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    border-radius: 20px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.contact-card-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card-details h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 6px;
}

.contact-card-details p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.contact-card-details p a {
    transition: var(--transition-fast);
}

.contact-card-details p a:hover {
    color: var(--primary-accent);
}

/* WhatsApp Highlight Card */
.contact-card-item.whatsapp-highlight {
    background-color: var(--whatsapp-green);
    border-color: var(--whatsapp-green);
    color: var(--white);
}

.contact-card-item.whatsapp-highlight:hover {
    background-color: var(--whatsapp-green-hover);
    border-color: var(--whatsapp-green-hover);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.25);
}

.contact-card-item.whatsapp-highlight .contact-card-icon {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.contact-card-item.whatsapp-highlight h4 {
    color: var(--white);
}

.contact-card-item.whatsapp-highlight p {
    color: rgba(255, 255, 255, 0.9);
}

/* Regular Cards Icon Colors */
.contact-card-item.card-phone .contact-card-icon {
    background-color: rgba(6, 42, 43, 0.05);
    color: var(--primary-dark);
}

.contact-card-item.card-email .contact-card-icon {
    background-color: rgba(254, 106, 0, 0.08);
    color: var(--primary-accent);
}

.contact-card-item.card-address .contact-card-icon {
    background-color: rgba(43, 192, 209, 0.08);
    color: #2bc0d1;
}

.contact-card-item.card-license .contact-card-icon {
    background-color: #f5f2eb;
    color: #8b7d6b;
}

/* Office Hours Section */
.office-hours-section {
    background-color: var(--light-bg);
    border-top: 1px solid var(--border-color);
    padding: 80px 0;
    margin-top: 100px;
}

.office-hours-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.office-hours-info h3 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.office-hours-info p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.office-hours-timetable {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
}

.timetable-row {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
}

.timetable-row:last-child {
    border-bottom: none;
}

.timetable-row .day {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 1rem;
}

.timetable-row .time {
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.timetable-row .time.green-status {
    color: var(--whatsapp-green);
    font-weight: 700;
}

/* Responsive Styles for contact.html */
@media (max-width: 991px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .form-grid-2 {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-group.full-width {
        grid-column: span 1;
    }

    .office-hours-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ==========================================
   BLOG ARCHIVE PAGE STYLES
   ========================================== */
.blog-archive-section {
    background-color: var(--light-bg);
    color: var(--text-dark);
    padding: 100px 0;
}

.blog-filter-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 50px;
}

.filter-btn {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    padding: 10px 24px;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-sm);
}

.filter-btn:hover {
    border-color: var(--primary-dark);
    color: var(--primary-dark);
    background-color: var(--white);
    transform: translateY(-1px);
}

.filter-btn.active {
    background-color: var(--primary-accent);
    border-color: var(--primary-accent);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(254, 106, 0, 0.3);
}

/* Featured Blog Card */
.featured-blog-card {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 28px;
    overflow: hidden;
    margin-bottom: 50px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.featured-blog-card:hover {
    transform: translateY(-6px);
    border-color: rgba(6, 42, 43, 0.15);
    box-shadow: var(--shadow-md);
}

.featured-img-box {
    position: relative;
    height: 100%;
    min-height: 380px;
    overflow: hidden;
}

.featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.featured-blog-card:hover .featured-img {
    transform: scale(1.04);
}

.featured-body {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-meta {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
}

.featured-meta .meta-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--primary-accent);
}

.featured-body h2 {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
}

.featured-body h2 a {
    color: var(--primary-dark);
    transition: var(--transition-fast);
}

.featured-body h2 a:hover {
    color: var(--primary-accent);
}

.featured-body p {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 24px;
}

.featured-body .blog-link {
    color: var(--primary-accent);
}

.featured-body .blog-link:hover {
    color: var(--primary-accent-hover);
}

/* Blog Card overrides for light background in archive */
.blog-archive-section .blog-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.blog-archive-section .blog-card:hover {
    border-color: rgba(6, 42, 43, 0.12);
    box-shadow: var(--shadow-md);
}

.blog-archive-section .blog-body h3 {
    color: var(--primary-dark);
    transition: var(--transition-fast);
}

.blog-archive-section .blog-body h3 a {
    color: inherit;
}

.blog-archive-section .blog-body h3 a:hover,
.blog-archive-section .blog-card:hover h3 {
    color: var(--primary-accent);
}

.blog-archive-section .blog-body p {
    color: var(--text-muted);
}

.blog-archive-section .blog-link {
    color: var(--primary-accent);
}

.blog-archive-section .blog-link:hover {
    color: var(--primary-accent-hover);
}

/* Hide animation for filtered cards */
.blog-card.hide {
    display: none !important;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(180deg, #032123 0%, #021415 100%);
    padding: 100px 0;
    color: var(--text-white);
}

.newsletter-box {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 60px 40px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.newsletter-box h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 12px;
}

.newsletter-box p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 550px;
    margin: 0 auto;
}

.newsletter-form input[type="email"] {
    flex-grow: 1;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 16px 20px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--white);
    transition: var(--transition-fast);
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form input[type="email"]:focus {
    border-color: var(--primary-accent);
    outline: none;
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(254, 106, 0, 0.15);
}

.newsletter-form button {
    background-color: var(--primary-accent);
    color: var(--white);
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.newsletter-form button:hover {
    background-color: var(--primary-accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(254, 106, 0, 0.2);
}

/* Responsive Media Queries for blog.html */
@media (max-width: 991px) {
    .featured-blog-card {
        grid-template-columns: 1fr;
    }

    .featured-img-box {
        min-height: 280px;
        height: 280px;
    }

    .featured-body {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .newsletter-form {
        flex-direction: column;
        gap: 16px;
    }

    .newsletter-form button {
        width: 100%;
    }

    .newsletter-box {
        padding: 40px 24px;
    }
}

/* ==========================================
   BLOG DETAILS PAGE STYLES
   ========================================== */
.blog-details-layout {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 50px;
    margin-top: 50px;
}

/* Article Styling */
.article-header {
    margin-bottom: 30px;
}

.article-header-meta {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--primary-accent);
    text-transform: uppercase;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-header-meta .meta-date {
    color: var(--text-muted);
}

.article-header h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.article-header-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-img-thumb {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name-text {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

.article-featured-img-wrapper {
    border-radius: 24px;
    overflow: hidden;
    height: 480px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-sm);
}

.article-featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Body Text */
.article-body-content {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #2c3238;
}

.article-body-content p {
    margin-bottom: 24px;
}

.article-body-content h2,
.article-body-content h3 {
    font-family: var(--font-heading);
    color: var(--primary-dark);
    font-weight: 700;
    line-height: 1.3;
    margin-top: 40px;
    margin-bottom: 16px;
}

.article-body-content h2 {
    font-size: 1.8rem;
}

.article-body-content h3 {
    font-size: 1.4rem;
}

.article-body-content ul,
.article-body-content ol {
    margin-bottom: 28px;
    padding-left: 24px;
}

.article-body-content li {
    margin-bottom: 10px;
}

.article-body-content blockquote {
    padding: 20px 28px;
    border-left: 4px solid var(--primary-accent);
    background-color: #fdfbf9;
    border-radius: 0 16px 16px 0;
    font-style: italic;
    font-size: 1.15rem;
    color: var(--primary-dark);
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Callout Box */
.article-callout {
    padding: 24px 28px;
    background-color: rgba(254, 106, 0, 0.04);
    border-left: 4px solid var(--primary-accent);
    border-radius: 8px;
    margin-bottom: 32px;
}

.callout-title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--primary-accent);
    text-transform: uppercase;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-callout p {
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Share & Comments styling */
.article-footer {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    margin-top: 50px;
}

.share-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.share-section h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.share-icons {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.share-btn:hover {
    color: var(--primary-accent);
    border-color: var(--primary-accent);
    background-color: rgba(254, 106, 0, 0.05);
    transform: translateY(-2px);
}

/* Sidebar Widgets */
.sidebar-widget {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
}

.sidebar-widget-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 10px;
}

/* Author Box Widget */
.author-widget {
    text-align: center;
}

.author-widget-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 16px;
    border: 3px solid var(--white);
    box-shadow: var(--shadow-sm);
}

.author-widget-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.author-widget-role {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--primary-accent);
    text-transform: uppercase;
    margin-bottom: 14px;
}

.author-widget-bio {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Related Tour Widget */
.tour-widget-promo {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.tour-widget-img-box {
    position: relative;
    height: 160px;
}

.tour-widget-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-widget-price {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background-color: var(--primary-accent);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 6px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
}

.tour-widget-content {
    padding: 20px;
}

.tour-widget-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.tour-widget-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.tour-widget-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Recent Posts Widget */
.recent-posts-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.recent-post-item {
    display: flex;
    gap: 12px;
}

.recent-post-thumb {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.recent-post-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.recent-post-info h5 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 4px;
}

.recent-post-info h5 a:hover {
    color: var(--primary-accent);
}

.recent-post-info span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Comments section */
.comments-section h3 {
    font-size: 1.6rem;
    color: var(--primary-dark);
    margin-bottom: 30px;
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.comment-item {
    display: flex;
    gap: 16px;
}

.comment-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.comment-content {
    background-color: var(--white);
    padding: 20px;
    border-radius: 16px;
    flex-grow: 1;
}

.comment-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.comment-author {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.comment-date {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.comment-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-dark);
}

/* Responsive Media Queries for blog-details.html */
@media (max-width: 991px) {
    .blog-details-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .article-featured-img-wrapper {
        height: 340px;
    }
}

@media (max-width: 768px) {
    .article-header h1 {
        font-size: 2.2rem;
    }
}

/* Comment Form Styling */
.comment-form-section {
    border-top: 1px solid var(--border-color);
    padding-top: 40px;
    margin-top: 40px;
}

.comment-form-section h3 {
    font-size: 1.6rem;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.comment-form-section p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.comment-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comment-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.comment-form textarea,
.comment-form input {
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background-color: var(--white);
    color: var(--text-dark);
    transition: var(--transition-fast);
    width: 100%;
}

.comment-form textarea:focus,
.comment-form input:focus {
    border-color: var(--primary-accent);
    outline: none;
    box-shadow: 0 0 0 3px rgba(254, 106, 0, 0.1);
}

.comment-submit-btn {
    align-self: flex-start;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 12px;
    background-color: var(--primary-accent);
    color: var(--white);
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.comment-submit-btn:hover {
    background-color: var(--primary-accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .comment-form-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ==========================================
   DEDICATED FAQ PAGE STYLES
   ========================================== */
.faq-layout-grid {
    display: grid;
    grid-template-columns: 0.6fr 1.4fr;
    gap: 50px;
    align-items: start;
    margin-top: 40px;
}

.faq-sidebar-menu {
    position: sticky;
    top: 120px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
}

.faq-sidebar-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary-dark);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
}

.faq-category-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-category-btn {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: none;
    border: none;
    text-align: left;
    padding: 12px 18px;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-category-btn:hover {
    background-color: rgba(254, 106, 0, 0.05);
    color: var(--primary-accent);
}

.faq-category-btn.active {
    background-color: var(--primary-accent);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(254, 106, 0, 0.2);
}

/* FAQ Grouping */
.faq-group {
    margin-bottom: 40px;
}

.faq-group:first-child {
    margin-top: 0;
}

.faq-group-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--border-color);
}

.faq-group.hide {
    display: none !important;
}

/* FAQ Support Panel */
.faq-support-panel {
    background-color: rgba(11, 85, 95, 0.03);
    border: 1px solid rgba(11, 85, 95, 0.08);
    border-radius: 28px;
    padding: 50px 40px;
    text-align: center;
    margin-top: 70px;
    box-shadow: var(--shadow-sm);
}

.faq-support-panel h3 {
    color: var(--primary-dark);
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.faq-support-panel p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 28px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.faq-support-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* FAQ page mobile responsive styles */
@media (max-width: 991px) {
    .faq-layout-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .faq-sidebar-menu {
        position: static;
        padding: 20px;
    }

    .faq-category-list {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 10px;
        gap: 10px;
    }

    .faq-category-btn {
        flex-shrink: 0;
        white-space: nowrap;
        padding: 10px 16px;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .faq-support-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .faq-support-panel {
        padding: 40px 24px;
    }
}

/* ==========================================
   SEARCH RESULTS PAGE STYLES
   ========================================== */
.search-results-section {
    background-color: var(--light-bg);
    padding: 80px 0;
}

.results-search-container {
    max-width: 600px;
    margin: 20px auto 0;
}

.results-search-form {
    display: flex;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    padding: 6px;
}

.results-search-form input[type="text"] {
    flex-grow: 1;
    background: none;
    border: none;
    padding: 10px 16px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--white);
    outline: none;
}

.results-search-form input[type="text"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.results-search-form button {
    background-color: var(--primary-accent);
    color: var(--white);
    border: none;
    border-radius: 10px;
    padding: 10px 24px;
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.results-search-form button:hover {
    background-color: var(--primary-accent-hover);
}

/* Tabs */
.search-results-tabs {
    display: flex;
    gap: 16px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 2px;
    margin-bottom: 40px;
    overflow-x: auto;
    scrollbar-width: none;
}

.search-results-tabs::-webkit-scrollbar {
    display: none;
}

.search-tab-btn {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-muted);
    background: none;
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    transition: var(--transition-fast);
    position: relative;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-tab-btn:hover {
    color: var(--primary-accent);
}

.search-tab-btn.active {
    color: var(--primary-dark);
}

.search-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-accent);
    border-radius: 3px;
}

.tab-badge {
    background-color: var(--light-bg);
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    transition: var(--transition-fast);
}

.search-tab-btn.active .tab-badge {
    background-color: var(--primary-accent);
    border-color: var(--primary-accent);
    color: var(--white);
}

/* Grid wrappers and toggle */
.results-grid-block {
    display: none;
}

.results-grid-block.active {
    display: block;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Destinations Cards specific styling in search */
.search-destinations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* No Results Panel */
.no-results-box {
    text-align: center;
    padding: 60px 20px;
    max-width: 500px;
    margin: 0 auto;
}

.no-results-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.no-results-box h3 {
    font-size: 1.6rem;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.no-results-box p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.search-suggestions {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    text-align: left;
}

.search-suggestions h5 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.search-suggestions ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.search-suggestions li a {
    display: inline-block;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 0.85rem;
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.search-suggestions li a:hover {
    border-color: var(--primary-accent);
    color: var(--primary-accent);
    transform: translateY(-1px);
}

/* Responsive Search Results */
@media (max-width: 991px) {
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .search-destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .results-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .search-destinations-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .results-search-form {
        border-radius: 12px;
        flex-direction: column;
        background: none;
        border: none;
        padding: 0;
    }

    .results-search-form input[type="text"] {
        background-color: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 12px;
        padding: 14px 18px;
    }

    .results-search-form button {
        width: 100%;
        padding: 14px;
    }
}

/* ==========================================
   REFUND POLICY PAGE STYLES
   ========================================== */
.policy-readability-container {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.policy-readability-container p {
    margin-bottom: 24px;
}

.policy-list {
    list-style: none;
    padding: 0;
    margin: 36px 0;
}

.policy-item {
    position: relative;
    padding-left: 36px;
    margin-bottom: 28px;
    font-size: 1.05rem;
    line-height: 1.65;
}

.policy-item::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 8px;
    width: 8px;
    height: 8px;
    background-color: var(--primary-accent);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(254, 106, 0, 0.15);
}

.policy-item strong {
    color: var(--primary-dark);
    font-family: var(--font-heading);
    font-weight: 700;
    display: inline-block;
    margin-bottom: 4px;
    font-size: 1.1rem;
}

.hero-slide-content h1 {
    color: #ffffff !important;
}

/* ==========================================
   COOKIE CONSENT POPUP (GDPR COMPLIANT)
   ========================================== */
.cookie-consent-banner {
    position: fixed;
    bottom: 24px;
    right: 24px;
    max-width: 440px;
    width: calc(100% - 48px);
    background: rgba(4, 28, 29, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(254, 106, 0, 0.25);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(254, 106, 0, 0.1);
    z-index: 999999;
    color: #ffffff;
    font-family: var(--font-body, system-ui, sans-serif);
    animation: cookieBannerSlideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.cookie-consent-banner.cookie-hiding {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

@keyframes cookieBannerSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.cookie-consent-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.cookie-consent-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    color: var(--primary-accent, #fe6a00);
}

.cookie-consent-title {
    font-family: var(--font-heading, sans-serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.cookie-consent-text {
    font-size: 0.9rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

.cookie-privacy-link {
    color: var(--primary-accent, #fe6a00);
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.2s ease;
}

.cookie-privacy-link:hover {
    color: #ff8533;
    text-decoration: underline;
}

.cookie-consent-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.cookie-btn-accept {
    flex: 1;
    background: var(--primary-accent, #fe6a00);
    color: #ffffff;
    border: none;
    padding: 11px 18px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    text-align: center;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(254, 106, 0, 0.3);
}

.cookie-btn-accept:hover {
    background: #e05d00;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(254, 106, 0, 0.4);
}

.cookie-btn-reject {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 11px 18px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    text-align: center;
    transition: all 0.25s ease;
}

.cookie-btn-reject:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 576px) {
    .cookie-consent-banner {
        bottom: 16px;
        right: 16px;
        left: 16px;
        width: auto;
        padding: 18px;
    }
    .cookie-consent-actions {
        flex-direction: column-reverse;
        gap: 8px;
    }
    .cookie-btn-accept, .cookie-btn-reject {
        width: 100%;
    }
}