
/* ========================================
    ROOT VARIABLES & RESET
======================================== */
:root {
    --primary-color: #f97150;
    --primary-dark: #e65a3a;
    --primary-light: #ff8a6b;
    --accent-yellow: #FFC857;
    --accent-orange: #FF7E29;
    --accent-green: #2D7A5B;
    --secondary-color: #ffffff;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6b7280;
    --text-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-lighter: #fafbfc;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 20px 40px rgba(249, 113, 80, 0.25);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--accent-yellow));
    --gradient-overlay: linear-gradient(135deg, rgba(249, 113, 80, 0.9) 0%, rgba(255, 200, 87, 0.9) 100%);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 6px;
    --radius: 10px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 9999px;
}

/* ========================================
    WORDPRESS STYLE RESET
    Override all WordPress default styles
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Force base font size - override WordPress theme defaults */
html {
    font-size: 16px !important;
    overflow-x: hidden;
    max-width: 100vw;
}

/* Prevent horizontal overflow on all devices */
body {
    max-width: 100vw;
    overflow-x: hidden;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection color */
::selection {
    background: var(--primary-color);
    color: var(--text-white);
}

::-moz-selection {
    background: var(--primary-color);
    color: var(--text-white);
}

/* Ensure images and media respect container width */
img, video, iframe, embed, object {
    max-width: 100%;
    height: auto;
}

/* Mobile-first: Touch-friendly tap targets */
button,
a,
input[type="submit"],
input[type="button"] {
    min-height: 14px;
    min-width: 14px;
}

/* Prevent text size adjustment on iOS */
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body,
body.singular,
body.page,
body.single,
body.post-type-archive,
body.archive,
body.tour_package {
    font-family: 'Poppins', sans-serif !important;
    font-size: 16px !important;
    color: var(--text-dark) !important;
    line-height: 1.6 !important;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Prevent WordPress from applying larger font sizes */
body .wp-block,
body .wp-block-group,
body .wp-block-column,
body .entry-content,
body .entry-content *:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6) {
    font-size: 1rem !important;
}

/* Reset heading sizes to match original design */
h1, h1.entry-title, .tour-detail-title {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
}

h2, h2.entry-title, .detail-section-title {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.3;
}

h3, .what-to-expect-title, .itinerary-day-title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}

h4, .review-title, .reviewer-name {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
}

/* Reset paragraph and text sizes */
p, .tour-description p, .tour-description, 
.itinerary-day-content, .faq-answer p, 
.review-text, .detail-value, .detail-label {
    font-size: 1rem !important;
    line-height: 1.8 !important;
}

/* Reset navigation font sizes */
.nav-menu li a {
    font-size: 0.95rem !important;
}

/* Reset button and form text sizes */
button, .banner-btn, .proceed-booking-btn,
.submit-enquiry-btn, .booking-tab {
    font-size: 1rem !important;
}

input, select, textarea {
    font-size: 0.95rem !important;
    font-family: 'Poppins', sans-serif !important;
}

label {
    font-size: 0.9rem !important;
}

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

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

ul {
    list-style: none;
}

button {
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
}

/* ========================================
    GLOBAL BUTTON STYLES
======================================== */
button,
.btn,
input[type="submit"],
input[type="button"] {
    position: relative;
    overflow: hidden;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: var(--radius);
    transition: var(--transition);
}

button::before,
.btn::before,
input[type="submit"]::before,
input[type="button"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: var(--transition-slow);
}

button:hover::before,
.btn:hover::before,
input[type="submit"]:hover::before,
input[type="button"]:hover::before {
    left: 100%;
}

button:active,
.btn:active,
input[type="submit"]:active,
input[type="button"]:active {
    transform: scale(0.98);
}

/* ========================================
    HEADER SECTION
======================================== */
.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.99);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1002;
}

/* Logo Styles */
.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo i {
    font-size: 1.6rem;
}

.logo-image {
    max-height: 50px;
    width: auto;
    object-fit: contain;
}

.logo span {
    display: inline-block;
}

/* Footer Logo */
.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
}

/* Navigation Styles */
.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu li a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-dark);
    position: relative;
    padding: 0.5rem 0;
}

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

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--primary-color);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    position: relative;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ========================================
    HERO/BANNER SECTION
======================================== */
.hero-section {
    margin-top: 0px;
    height: 650px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?w=1920&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-white);
    position: relative;
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    padding: 0 2rem;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInDown 1s ease;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    font-weight: 300;
    animation: fadeInUp 1s ease;
}

/* Search Form Styles */
.search-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1.75rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    display: flex;
    gap: 1rem;
    max-width: 850px;
    width: 90%;
    margin: 0 auto;
    animation: fadeInUp 1.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

/* Search Form - Large Desktop Scaling */
@media (min-width: 1200px) {
    .search-form {
        max-width: 900px;
        padding: 2rem 2.5rem;
    }
}

/* Search Form - Medium Desktop/Laptop Scaling */
@media (min-width: 769px) and (max-width: 1199px) {
    .search-form {
        max-width: 700px;
        padding: 1.5rem 1.75rem;
        gap: 0.85rem;
    }
    
    .form-group label {
        font-size: 0.85rem;
        margin-bottom: 0.35rem;
    }
    
    .form-group input,
    .form-group select {
        padding: 0.75rem 0.9rem;
        font-size: 0.95rem;
    }
    
    .search-btn {
        padding: 0.75rem 1.75rem;
        font-size: 1rem;
    }
}

.search-form:hover {
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(249, 113, 80, 0.1);
    transform: translateY(-2px);
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-group label {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select {
    padding: 0.9rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--secondary-color);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(249, 113, 80, 0.1);
    transform: translateY(-1px);
}

.form-group input:hover,
.form-group select:hover {
    border-color: var(--primary-light);
}

.search-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-yellow));
    color: var(--text-white);
    padding: 0.9rem 2.5rem;
    border-radius: var(--radius);
    font-size: 1.1rem;
    font-weight: 600;
    align-self: flex-end;
    transition: var(--transition);
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(249, 113, 80, 0.3);
    position: relative;
    overflow: hidden;
}

.search-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: var(--transition-slow);
}

.search-btn:hover {
    background: linear-gradient(135deg, var(--accent-yellow), var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(255, 200, 87, 0.5);
}

/* Search Form Section (for search results page) */
.search-form-section {
    padding: 3rem 0;
    background: var(--bg-light);
}

.search-form-section .search-form {
    background: var(--secondary-color);
    box-shadow: var(--shadow-md);
    animation: none;
}

.search-form-section .search-form:hover {
    box-shadow: var(--shadow-lg);
    transform: none;
}

/* Search Results Info */
.search-results-info {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--radius);
    border-left: 4px solid var(--primary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.search-results-text {
    font-size: 1rem;
    color: var(--text-medium);
    margin: 0;
    margin: 0;
    line-height: 1.6;
}

.search-results-text strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Recommended Tours Info */
.recommended-tours-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    border-left-color: var(--accent-color);
}

.recommended-tours-info .search-results-text {
    margin: 0;
}

.view-all-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-color);
    text-decoration: none;
    border: 1px solid var(--primary-color);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.view-all-link:hover {
    background: var(--primary-color);
    color: #fff;
}

/* No Tours Message */
.no-tours {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    margin: 2rem 0;
}

.no-tours p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 1rem;
}

.search-suggestions {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 1rem;
}

.search-suggestions a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.search-suggestions a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.search-btn:hover::before {
    left: 100%;
}

.search-btn:active {
    transform: translateY(-1px);
}

/* ========================================
    SECTION COMMON STYLES
======================================== */
.section {
    padding: 5rem 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.section-header:hover .section-title::after {
    width: 100px;
}

.section-link-wrapper {
    text-align: center;
    margin-bottom: 3rem;
}

.section-footer {
    text-align: center;
    margin-top: 3rem;
}

.section-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    white-space: nowrap;
    padding: 0.8rem 2rem;
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    background: transparent;
    text-decoration: none;
}

.section-link:hover {
    color: var(--text-white);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-yellow));
    border-color: transparent;
    gap: 1rem;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(249, 113, 80, 0.3);
    text-decoration: none;
    border-color: var(--accent-yellow);
}

.section-link i {
    transition: var(--transition);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}

/* ========================================
    POPULAR DESTINATIONS SECTION
======================================== */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.destination-card {
    position: relative;
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: var(--transition);
    background: var(--secondary-color);
}

.destination-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0.8;
    transition: var(--transition);
}

.destination-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.destination-card:hover::after {
    opacity: 0.9;
}

.destination-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
    transition: var(--transition);
}

.destination-card:hover::before {
    background: linear-gradient(to bottom, rgba(249, 113, 80, 0.3) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.destination-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.destination-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    color: var(--text-white);
    z-index: 2;
    transform: translateY(0);
    transition: var(--transition);
}

.destination-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: var(--text-white);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 2;
}

.destination-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.destination-description {
    font-size: 0.88rem;
    line-height: 1.6;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    margin-bottom: 1rem;
}

.destination-card:hover .destination-description {
    opacity: 1;
    max-height: 200px;
}

.destination-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-white);
    font-weight: 600;
    opacity: 0;
    transform: translateX(-20px);
    transition: var(--transition);
}

.destination-card:hover .destination-link {
    opacity: 1;
    transform: translateX(0);
}

/* ========================================
    POPULAR TOURS SECTION
======================================== */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.tour-card {
    background: var(--secondary-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.tour-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
    pointer-events: none;
}

.tour-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.tour-card:hover::before {
    opacity: 0.03;
}

.tour-image-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
    cursor: pointer;
}

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

.tour-card:hover .tour-image {
    transform: scale(1.1);
}

.tour-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gradient-primary);
    color: var(--text-white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition);
}

.tour-card:hover .tour-badge {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.tour-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.tour-video.active {
    opacity: 1;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(249, 113, 80, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.5rem;
    z-index: 2;
    transition: var(--transition);
}

.play-button:hover {
    background: var(--primary-color);
    transform: translate(-50%, -50%) scale(1.1);
}

.tour-content {
    padding: 1.5rem;
}

.tour-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.tour-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.tour-info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tour-info-item i {
    color: var(--primary-color);
}

.tour-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stars {
    display: flex;
    gap: 0.2rem;
}

.stars i {
    color: #ffc107;
    font-size: 0.9rem;
}

.review-count {
    font-size: 0.9rem;
    color: var(--text-light);
}

.tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

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

.price-old {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 0.9rem;
}

.price-current {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* ========================================
    PRICE ON REQUEST - BUTTON & LINK STYLES
======================================== */
.price-on-request-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
}

.price-on-request-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.price-on-request-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* Price on request link in tour cards */
.price-on-request-link {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff !important;
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.price-on-request-link:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Sidebar tour price on request */
.sidebar-tour-price .price-on-request-link {
    font-size: 0.75rem;
    padding: 0.3rem 0.6rem;
}

/* ========================================
    REVIEWS CAROUSEL SECTION
======================================== */
.reviews-section {
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
}

.reviews-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(45, 122, 91, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    padding: 0 4rem;
    max-width: 1400px;
    margin: 0 auto;
    z-index: 1;
}

.carousel-wrapper {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 30px;
}

.carousel-slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.review-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-yellow) 100%);
    color: var(--text-white);
    padding: 2rem 1.8rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(255, 126, 41, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    transition: var(--transition);
    opacity: 0;
}

.review-card:hover::before {
    opacity: 1;
    top: -30%;
    right: -30%;
}

.review-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 200, 87, 0.5);
}

.quote-icon {
    font-size: 2.5rem;
    opacity: 0.3;
    font-weight: 700;
}

.review-text {
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 1.8rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.reviewer-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.review-card:hover .reviewer-avatar {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.8);
}

.reviewer-details h4 {
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.reviewer-role {
    font-size: 0.82rem;
    opacity: 0.9;
}

.reviewer-rating {
    display: flex;
    gap: 0.15rem;
    margin-top: 0.4rem;
}

.reviewer-rating i {
    color: #ffc107;
    font-size: 0.8rem;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

/* Carousel Navigation */
.carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    margin-top: 3rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d0d0d0;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.carousel-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-radius: 50%;
    transition: var(--transition);
}

.carousel-dot:hover {
    background: #aaa;
}

.carousel-dot.active {
    background: var(--primary-color);
    width: 32px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.4);
}

.carousel-dot.active::before {
    border-color: var(--primary-color);
    opacity: 0.3;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    cursor: pointer;
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    border-color: var(--primary-color);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-btn.prev {
    left: 0.5rem;
}

.carousel-btn.next {
    right: 0.5rem;
}

/* ========================================
    RECENT ARTICLES/BLOG SECTION
======================================== */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.article-card {
    background: var(--secondary-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.article-image-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.article-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.article-card:hover .article-image {
    transform: scale(1.1);
}

.article-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem;
    color: var(--text-white);
}

.article-title-overlay {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.9rem;
}

.article-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-meta-item i {
    color: var(--primary-color);
}

/* ========================================
    FOOTER SECTION
======================================== */
.footer {
    background: var(--text-dark);
    color: var(--text-white);
    padding: 3rem 2rem 1rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.footer-section p {
    line-height: 1.8;
    margin-bottom: 1rem;
    opacity: 0.9;
}

/* Footer About Text - Handle lists and formatted content */
.footer-about-text {
    line-height: 1.8;
    opacity: 0.9;
    color: inherit;
}

.footer-about-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.footer-about-text p:last-child {
    margin-bottom: 0;
}

/* Style lists in footer about text */
.footer-about-text ul,
.footer-about-text ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
    list-style-position: outside;
}

.footer-about-text ul {
    list-style-type: disc;
}

.footer-about-text ol {
    list-style-type: decimal;
}

.footer-about-text li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    opacity: 0.9;
    color: inherit;
}

/* Style list markers to match footer design */
.footer-about-text ul li::marker {
    color: rgba(255, 255, 255, 0.9);
}

.footer-about-text ol li::marker {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.footer-about-text li:last-child {
    margin-bottom: 0;
}

/* Nested lists */
.footer-about-text ul ul,
.footer-about-text ol ol,
.footer-about-text ul ol,
.footer-about-text ol ul {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
}

.footer-about-text ul ul {
    list-style-type: circle;
}

.footer-about-text ul ul ul {
    list-style-type: square;
}

/* Ensure proper spacing when lists are present */
.footer-about-text > *:first-child {
    margin-top: 0;
}

.footer-about-text > *:last-child {
    margin-bottom: 0;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    opacity: 0.9;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(249, 113, 80, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* ========================================
    ANIMATIONS
======================================== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInCard {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.carousel-slide .review-card:nth-child(1) {
    animation: slideInCard 0.5s ease 0.1s both;
}

.carousel-slide .review-card:nth-child(2) {
    animation: slideInCard 0.5s ease 0.2s both;
}

.carousel-slide .review-card:nth-child(3) {
    animation: slideInCard 0.5s ease 0.3s both;
}

/* ========================================
    RESPONSIVE DESIGN
======================================== */
@media (max-width: 1024px) {
    .carousel-slide {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Reviews Carousel */
    .carousel-slide {
        grid-template-columns: 1fr;
    }

    .carousel-container {
        padding: 0 1rem;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    /* Header - Enhanced Mobile Styles */
    .header {
        padding: 0;
    }
    
    .header-container {
        padding: 0.75rem 1rem;
    }
    
    .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 6px;
        min-width: 44px;
        min-height: 44px;
        align-items: center;
        justify-content: center;
        padding: 10px;
        border-radius: var(--radius-sm);
        transition: var(--transition);
    }
    
    .menu-toggle:hover,
    .menu-toggle:focus {
        background: rgba(249, 113, 80, 0.1);
    }
    
    .menu-toggle span {
        width: 24px;
        height: 3px;
        background: var(--primary-color);
        border-radius: 3px;
        transition: var(--transition);
        transform-origin: center;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    /* Mobile Menu Overlay */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
        flex-direction: column;
        align-items: stretch;
        padding: 5rem 1.5rem 2rem;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        gap: 0;
        z-index: 999;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--gradient-primary);
    }
    
    .nav-menu li {
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu li a {
        display: flex;
        align-items: center;
        padding: 1rem 0.5rem;
        font-size: 1.05rem;
        font-weight: 500;
        color: var(--text-dark);
        transition: var(--transition);
        border-radius: var(--radius-sm);
        min-height: 50px;
    }
    
    .nav-menu li a::after {
        display: none;
    }
    
    .nav-menu li a::before {
        content: '';
        width: 4px;
        height: 0;
        background: var(--primary-color);
        border-radius: 2px;
        margin-right: 12px;
        transition: var(--transition);
    }
    
    .nav-menu li a:hover,
    .nav-menu li a.active {
        color: var(--primary-color);
        background: rgba(249, 113, 80, 0.08);
        padding-left: 0.75rem;
    }
    
    .nav-menu li a:hover::before,
    .nav-menu li a.active::before {
        height: 24px;
    }
    
    /* Mobile menu backdrop overlay */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 998;
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
    }
    
    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Logo adjustments for mobile */
    .logo {
        font-size: 1.25rem;
    }
    
    .logo-image {
        max-height: 42px;
    }
    
    .logo i {
        font-size: 1.4rem;
    }

    /* Hero Section - Enhanced Mobile */
    .hero-section {
        height: auto;
        min-height: 520px;
        padding: 100px 0 60px;
    }
    
    .hero-content {
        padding: 0 1.25rem;
    }
    
    .hero-title {
        font-size: 1.85rem;
        line-height: 1.25;
        margin-bottom: 0.75rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
        line-height: 1.5;
        opacity: 0.95;
    }

    /* Search Form - Mobile Optimized */
    .search-form {
        flex-direction: column;
        padding: 1rem;
        gap: 0.6rem;
        border-radius: var(--radius-md);
        margin: 0 1rem;
        width: calc(100% - 2rem);
        max-width: none;
    }
    
    .search-form:hover {
        transform: none;
    }
    
    .form-group {
        width: 100%;
    }
    
    .form-group label {
        font-size: 0.65rem;
        margin-bottom: 0.2rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.03em;
    }
    
    .form-group input,
    .form-group select {
        padding: 0.5rem 0.65rem;
        font-size: 0.78rem;
        border-radius: var(--radius-sm);
        border-width: 1.5px;
    }
    
    .form-group input::placeholder {
        font-size: 0.75rem;
    }

    .search-btn {
        align-self: stretch;
        width: 100%;
        padding: 0.6rem;
        font-size: 0.8rem;
        border-radius: var(--radius-sm);
        transform: none;
        margin-top: 0.2rem;
        box-shadow: 0 3px 12px rgba(249, 113, 80, 0.2);
    }
    
    .search-btn:hover {
        transform: none;
    }

    /* Sections - Mobile Optimized */
    .section {
        padding: 3rem 1rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .section-title::after {
        width: 50px;
        height: 3px;
    }

    /* Destinations Grid - Mobile */
    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .destination-card {
        height: 280px;
        border-radius: var(--radius-md);
    }
    
    .destination-badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
        top: 0.75rem;
        right: 0.75rem;
    }
    
    .destination-content {
        padding: 1.25rem;
    }
    
    .destination-title {
        font-size: 1.25rem;
    }
    
    .destination-title-default h3 {
        font-size: 1.3rem;
    }
    
    .destination-card-title {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
    
    .destination-card-description {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    /* Tours Grid - Mobile */
    .tours-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .tour-card {
        border-radius: var(--radius-md);
    }
    
    .tour-image-wrapper {
        height: 200px;
    }
    
    .tour-badge {
        padding: 0.35rem 0.75rem;
        font-size: 0.75rem;
        top: 0.75rem;
        left: 0.75rem;
    }
    
    .tour-content {
        padding: 1rem 1.25rem 1.25rem;
    }
    
    .tour-title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
        line-height: 1.35;
    }
    
    .tour-info {
        gap: 0.75rem;
        margin-bottom: 0.75rem;
    }
    
    .tour-info-item {
        font-size: 0.85rem;
    }
    
    .tour-info-item i {
        font-size: 0.9rem;
    }
    
    .tour-rating {
        margin-bottom: 0.75rem;
    }
    
    .tour-rating .stars i {
        font-size: 0.85rem;
    }
    
    .review-count {
        font-size: 0.8rem;
    }
    
    .tour-footer {
        padding-top: 0.75rem;
    }
    
    .tour-price {
        gap: 0.5rem;
    }
    
    .price-current {
        font-size: 1.15rem;
    }
    
    .price-old {
        font-size: 0.85rem;
    }
    
    /* Reviews Carousel - Mobile */
    .reviews-section {
        padding: 2rem 0.75rem;
    }
    
    .reviews-section .section-header {
        margin-bottom: 1.25rem;
    }
    
    .carousel-container {
        padding: 0;
    }
    
    .carousel-btn {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
        display: none; /* Hide on mobile, use swipe/dots */
    }
    
    .carousel-wrapper {
        gap: 0; /* No gap between slides to prevent offset */
    }
    
    .carousel-slide {
        gap: 1.5rem; /* Gap between review cards */
        padding: 0.5rem;
    }
    
    .review-card {
        padding: 1.25rem 1rem;
        margin: 0;
        border-radius: var(--radius-md);
        min-height: auto;
    }
    
    .review-card:hover {
        transform: none;
    }
    
    .quote-icon {
        font-size: 2rem;
        top: 0.5rem;
        right: 0.75rem;
        opacity: 0.15;
    }
    
    .review-text {
        font-size: 0.82rem;
        line-height: 1.55;
        margin-bottom: 1rem;
        font-style: italic;
    }
    
    .reviewer-info {
        gap: 0.75rem;
    }
    
    .reviewer-avatar {
        width: 42px;
        height: 42px;
        border-width: 2px;
    }
    
    .reviewer-details h4 {
        font-size: 0.78rem;
        margin-bottom: 0.15rem;
    }
    
    .reviewer-rating {
        margin-bottom: 0.1rem;
    }
    
    .reviewer-rating i {
        font-size: 0.65rem;
    }
    
    .reviewer-role {
        font-size: 0.72rem;
    }
    
    .carousel-nav {
        margin-top: 1.5rem;
        gap: 0.6rem;
    }
    
    .carousel-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
    }
    
    .carousel-dot.active {
        width: 28px;
        border-radius: 10px;
    }
    
    /* Blog/Articles Grid - Mobile */
    .blog-listing-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .blog-listing-card {
        border-radius: var(--radius-md);
    }
    
    .blog-listing-image-wrapper {
        height: 200px;
    }
    
    .blog-listing-title {
        font-size: 1.1rem;
        line-height: 1.35;
    }
    
    .blog-listing-meta {
        font-size: 0.8rem;
        gap: 0.75rem;
    }
    
    /* Section Footer/Links - Mobile */
    .section-footer {
        margin-top: 2rem;
    }
    
    .section-link {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        border-radius: 25px;
    }
    
    /* Footer - Mobile */
    .footer {
        padding: 2.5rem 1rem 1.25rem;
    }
    
    .footer-container {
        padding: 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem 1.5rem;
    }
    
    .footer-section {
        text-align: left;
    }
    
    .footer-section:first-child {
        grid-column: 1 / -1;
        text-align: center;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 0.5rem;
    }
    
    .footer-section h3 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .footer-section p {
        font-size: 0.9rem;
        line-height: 1.65;
    }
    
    .footer-logo {
        margin-bottom: 0.75rem;
    }
    
    .footer-logo img {
        max-height: 50px;
    }
    
    .footer-about-text {
        font-size: 0.9rem;
        line-height: 1.65;
    }
    
    .footer-about-text p {
        margin-bottom: 0.75rem;
    }
    
    .footer-links {
        gap: 0.75rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
        padding: 0.25rem 0;
        display: block;
    }
    
    .footer-links a:hover {
        padding-left: 8px;
    }
    
    .social-links {
        gap: 0.75rem;
        margin-top: 1.25rem;
        justify-content: center;
    }
    
    .social-links a {
        width: 42px;
        height: 42px;
    }
    
    .social-links a i {
        font-size: 1rem;
    }
    
    .footer-bottom {
        padding-top: 1.25rem;
        margin-top: 1.5rem;
        font-size: 0.85rem;
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    /* Reviews Carousel */
    .carousel-slide {
        grid-template-columns: 1fr;
    }

    .carousel-container {
        padding: 0 1rem;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    /* Articles */
    .articles-grid {
        grid-template-columns: 1fr;
    }

    /* Section Links */
    .section-link {
        padding: 0.75rem 1.75rem;
        font-size: 0.95rem;
    }

    /* Forms - prevent zoom on iOS */
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
    }

    /* Buttons */
    .search-btn,
    .proceed-booking-btn,
    .submit-enquiry-btn,
    .submit-review-btn,
    .destination-view-btn,
    .comment-submit-btn,
    .contact-submit-btn,
    .submit-booking-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    /* Typography */
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    h4 {
        font-size: 1.25rem;
    }

    /* Tables - responsive */
    table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0.6rem 0.75rem;
    }

    .logo {
        font-size: 1.1rem;
        gap: 0.4rem;
    }
    
    .logo-image {
        max-height: 36px;
    }
    
    .logo i {
        font-size: 1.2rem;
    }
    
    .menu-toggle {
        min-width: 40px;
        min-height: 40px;
        padding: 8px;
    }
    
    .menu-toggle span {
        width: 22px;
        height: 2.5px;
    }
    
    .nav-menu {
        width: 90%;
        padding: 4.5rem 1.25rem 2rem;
    }
    
    .nav-menu li a {
        font-size: 1rem;
        padding: 0.9rem 0.5rem;
        min-height: 46px;
    }

    /* Hero Section - Extra Small Screens */
    .hero-section {
        min-height: 480px;
        padding: 90px 0 50px;
    }
    
    .hero-content {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 1.5rem;
        line-height: 1.2;
        margin-bottom: 0.6rem;
    }

    .hero-subtitle {
        font-size: 0.88rem;
        margin-bottom: 1.75rem;
    }
    
    /* Search Form - Extra Compact */
    .search-form {
        padding: 0.8rem;
        gap: 0.45rem;
        margin: 0 0.75rem;
        width: calc(100% - 1.5rem);
        border-radius: var(--radius);
    }
    
    .form-group label {
        font-size: 0.58rem;
        margin-bottom: 0.15rem;
    }
    
    .form-group input,
    .form-group select {
        padding: 0.45rem 0.55rem;
        font-size: 0.72rem;
    }
    
    .form-group input::placeholder {
        font-size: 0.7rem;
    }
    
    .search-btn {
        padding: 0.5rem;
        font-size: 0.75rem;
        margin-top: 0.12rem;
    }

    /* Sections - Extra Compact */
    .section {
        padding: 2.5rem 0.75rem;
    }
    
    .section-header {
        margin-bottom: 1.75rem;
    }

    .section-title {
        font-size: 1.35rem;
    }
    
    .section-title::after {
        width: 40px;
    }
    
    /* Destinations - Extra Compact */
    .destinations-grid {
        gap: 1rem;
    }
    
    .destination-card {
        height: 240px;
        border-radius: var(--radius);
    }
    
    .destination-content {
        padding: 1rem;
    }
    
    .destination-title {
        font-size: 1.15rem;
    }
    
    .destination-title-default h3 {
        font-size: 1.2rem;
    }
    
    .destination-card-title {
        font-size: 1.15rem;
    }
    
    .destination-card-description {
        font-size: 0.82rem;
    }
    
    .destination-badge {
        padding: 0.35rem 0.7rem;
        font-size: 0.75rem;
    }
    
    /* Tours - Extra Compact */
    .tours-grid {
        gap: 1rem;
    }
    
    .tour-card {
        border-radius: var(--radius);
    }
    
    .tour-image-wrapper {
        height: 180px;
    }
    
    .tour-content {
        padding: 0.9rem 1rem 1rem;
    }
    
    .tour-title {
        font-size: 1.05rem;
        margin-bottom: 0.4rem;
    }
    
    .tour-info {
        gap: 0.6rem;
        margin-bottom: 0.6rem;
    }
    
    .tour-info-item {
        font-size: 0.8rem;
    }
    
    .tour-rating .stars i {
        font-size: 0.8rem;
    }
    
    .review-count {
        font-size: 0.75rem;
    }
    
    .price-current {
        font-size: 1.1rem;
    }
    
    .price-old {
        font-size: 0.8rem;
    }
    
    /* Reviews - Extra Compact */
    .reviews-section {
        padding: 1.5rem 0.5rem;
    }
    
    .reviews-section .section-header {
        margin-bottom: 1rem;
    }
    
    .reviews-section .section-title {
        font-size: 1.2rem !important;
    }
    
    .carousel-container {
        padding: 0;
    }
    
    .carousel-btn {
        display: none;
    }
    
    .carousel-wrapper {
        gap: 0; /* No gap between slides */
    }
    
    .carousel-slide {
        gap: 1.25rem; /* Gap between review cards */
        padding: 0.35rem;
    }
    
    .review-card {
        padding: 1rem 0.85rem;
        margin: 0;
        border-radius: var(--radius);
    }
    
    .quote-icon {
        font-size: 1.5rem;
        top: 0.4rem;
        right: 0.5rem;
    }
    
    .review-text {
        font-size: 0.78rem;
        line-height: 1.5;
        margin-bottom: 0.85rem;
    }
    
    .reviewer-info {
        gap: 0.6rem;
    }
    
    .reviewer-avatar {
        width: 36px;
        height: 36px;
        border-width: 2px;
    }
    
    .reviewer-details h4 {
        font-size: 0.72rem;
        margin-bottom: 0.1rem;
    }
    
    .reviewer-rating i {
        font-size: 0.6rem;
    }
    
    .reviewer-role {
        font-size: 0.68rem;
    }
    
    .carousel-nav {
        margin-top: 1.25rem;
        gap: 0.5rem;
    }
    
    .carousel-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
    }
    
    .carousel-dot.active {
        width: 24px;
        border-radius: 8px;
    }
    
    /* Blog - Extra Compact */
    .blog-listing-grid {
        gap: 1rem;
    }
    
    .blog-listing-image-wrapper {
        height: 180px;
    }
    
    .blog-listing-title {
        font-size: 1rem;
    }
    
    .blog-listing-meta {
        font-size: 0.75rem;
    }
    
    /* Footer - Extra Compact */
    .footer {
        padding: 2rem 0.75rem 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
        padding-bottom: 1.25rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    
    .footer-section:last-of-type {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .footer-section:first-child {
        grid-column: auto;
        margin-bottom: 0;
    }
    
    .footer-section h3 {
        font-size: 0.95rem;
        margin-bottom: 0.85rem;
    }
    
    .footer-section p {
        font-size: 0.85rem;
    }
    
    .footer-logo img {
        max-height: 42px;
    }
    
    .footer-about-text {
        font-size: 0.85rem;
        line-height: 1.6;
    }
    
    .footer-links {
        gap: 0.6rem;
    }
    
    .footer-links a {
        font-size: 0.85rem;
        padding: 0.2rem 0;
    }
    
    .social-links {
        gap: 0.65rem;
        margin-top: 1rem;
        justify-content: center;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
    }
    
    .social-links a i {
        font-size: 0.95rem;
    }
    
    .footer-bottom {
        font-size: 0.78rem;
        padding-top: 1rem;
        margin-top: 1.25rem;
        text-align: center;
    }
    
    .footer-bottom p {
        font-size: 0.78rem;
        line-height: 1.5;
    }

    /* Section Links - Extra Compact */
    .section-link {
        padding: 0.7rem 1.25rem;
        font-size: 0.85rem;
        border-radius: 22px;
    }

    .section-footer {
        margin-top: 1.75rem;
    }

    /* Forms - iOS zoom prevention */
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
    }

    /* Buttons - Touch Friendly */
    .search-btn,
    .proceed-booking-btn,
    .submit-enquiry-btn,
    .submit-review-btn,
    .destination-view-btn,
    .comment-submit-btn,
    .contact-submit-btn,
    .submit-booking-btn {
        padding: 0.85rem 1.25rem;
        font-size: 0.9rem;
        min-height: 46px;
    }

    /* Cards - Spacing */
    .destination-card,
    .tour-card,
    .blog-listing-card {
        margin-bottom: 0;
    }

    /* Images */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Tables - Scrollable */
    table {
        font-size: 0.85rem;
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* Typography - Compact */
    h1 {
        font-size: 1.6rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    h4 {
        font-size: 1.1rem;
    }

    p {
        font-size: 0.9rem;
        line-height: 1.55;
    }

    /* Touch targets - minimum 44px */
    button,
    a.button {
        min-height: 44px;
        min-width: 44px;
    }

    /* Container spacing */
    .container {
        padding: 0 0.75rem;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    /* Itinerary */
    .itinerary-item {
        padding: 0.85rem;
    }

    /* FAQ */
    .faq-item {
        padding: 0.85rem;
    }

    /* Review items */
    .review-item {
        padding: 0.85rem;
    }

    /* Map */
    .map-container {
        height: 260px;
    }

    /* Price details */
    .price-details {
        padding: 0.85rem;
    }

    /* Tour info boxes */
    .tour-info-box {
        padding: 0.85rem;
        margin-bottom: 0.75rem;
    }
}

/* ========================================
    UTILITY CLASSES
======================================== */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* ========================================
    PAGE BANNER SECTION (TOUR LISTING)
======================================== */
.page-banner {
    margin-top: 0;
    padding-top: 70px;
    height: 500px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?w=1920&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
}

/* Tour details page - uses img instead of background */
.page-banner.tour-banner-section {
    height: 600px;
    padding-top: 80px;
    background: none;
    overflow: hidden;
}

.page-banner-overlay {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
}

.page-banner-content {
    position: relative;
    z-index: 2;
    color: var(--text-white);
}

.page-banner-label {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    opacity: 0.9;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-white);
}

.page-banner-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

.page-banner-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin: 0.75rem 0 0 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* For destinations/single destination - larger title */
.page-banner-content .page-banner-title {
    font-size: 3.5rem;
}

.page-banner-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.page-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-banner-buttons {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    display: flex;
    gap: 1rem;
    z-index: 10;
}

/* ========================================
    TOUR LISTING SECTION
======================================== */
.tour-listing-section {
    background: var(--bg-light);
}

.tour-listing-wrapper {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.tour-listing-main {
    flex: 1;
    min-width: 0;
}

/* Layout without sidebar: 3 cards per row */
.tour-listing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Layout with sidebar: 1 card per row */
.tour-listing-wrapper.with-sidebar .tour-listing-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
}

.tour-listing-wrapper.with-sidebar .tour-listing-card {
    display: flex;
    flex-direction: row;
}

.tour-listing-wrapper.with-sidebar .tour-listing-image-wrapper {
    width: 40%;
    height: auto;
    min-height: 300px;
}

.tour-listing-wrapper.with-sidebar .tour-listing-content {
    width: 60%;
    padding: 2rem;
}

.tour-listing-card {
    background: var(--secondary-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: block;
    text-decoration: none;
    color: inherit;
}

a.tour-listing-card {
    display: block;
    text-decoration: none;
    color: inherit;
}

a.tour-listing-card:hover {
    text-decoration: none;
    color: inherit;
}

.tour-listing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.tour-listing-image-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
}

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

.tour-listing-card:hover .tour-listing-image {
    transform: scale(1.1);
}

.tour-listing-content {
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
}

.tour-listing-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.tour-listing-info {
    margin-bottom: 0.8rem;
    flex: 1;
}

.tour-info-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.tour-info-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.tour-info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
    flex: 1;
}

.tour-info-item i {
    color: var(--primary-color);
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
}

.tour-info-item span {
    flex: 1;
}

.tour-listing-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.tour-listing-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.tour-badge.special-offer {
    background: linear-gradient(135deg, var(--primary-color), #ff7f5e);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.5rem 1rem;
}

.tour-badge.special-offer i {
    font-size: 0.75rem;
}

/* ========================================
    PAGINATION STYLES
======================================== */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    padding-top: 2rem;
}

.pagination {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pagination-btn {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: var(--secondary-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
    font-weight: 600;
}

.pagination-btn:hover:not(:disabled) {
    background: var(--gradient-primary);
    color: var(--text-white);
    border-color: var(--primary-color);
    transform: translateY(-2px) scale(1.05);
    box-shadow: var(--shadow-md);
}

.pagination-btn:active:not(:disabled) {
    transform: translateY(0) scale(1);
}

.pagination-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: #f5f5f5;
    color: #999;
}

.pagination-numbers {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.pagination-number {
    min-width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: var(--secondary-color);
    color: var(--text-dark);
    border: 2px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    box-shadow: var(--shadow-sm);
    justify-content: center;
}

.pagination-number:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: scale(1.1);
}

.pagination-number.active {
    background: var(--gradient-primary);
    color: var(--text-white);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: scale(1.1);
}

.pagination-number:hover:not(.active) {
    background: var(--bg-light);
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* ========================================
    RIGHT SIDEBAR STYLES
======================================== */
.right-sidebar {
    width: 350px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-section {
    background: var(--secondary-color);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.sidebar-section:first-child {
    position: sticky;
    top: 100px;
    max-height: calc(50vh - 2rem);
    overflow-y: auto;
    z-index: 10;
}

.sidebar-section:last-child {
    position: relative;
    max-height: none;
    overflow-y: visible;
    z-index: 1;
}

.sidebar-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--primary-color);
}

/* Latest Tours Section */
.sidebar-tours-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-tour-item {
    display: flex;
    gap: 0.8rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
    transition: var(--transition);
    cursor: pointer;
}

.sidebar-tour-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-tour-item:hover {
    transform: translateX(5px);
}

.sidebar-tour-image {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

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

.sidebar-tour-item:hover .sidebar-tour-image img {
    transform: scale(1.1);
}

.sidebar-badge {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    background: var(--primary-color);
    color: var(--text-white);
    padding: 0.3rem 0.6rem;
    border-radius: 5px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 2;
    text-transform: uppercase;
}

.sidebar-tour-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sidebar-tour-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.4;
    transition: var(--transition);
}

.sidebar-tour-item:hover .sidebar-tour-title {
    color: var(--primary-color);
}

.sidebar-tour-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.sidebar-tour-price .price-old {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 400;
}

.sidebar-tour-price .price-new {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 700;
}

/* Recent Articles Section */
.sidebar-articles-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-article-item {
    display: flex;
    gap: 0.8rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
    transition: var(--transition);
    cursor: pointer;
}

.sidebar-article-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-article-item:hover {
    transform: translateX(5px);
}

.sidebar-article-image {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}

.sidebar-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.sidebar-article-item:hover .sidebar-article-image img {
    transform: scale(1.1);
}

.sidebar-article-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sidebar-article-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    line-height: 1.4;
    transition: var(--transition);
}

.sidebar-article-item:hover .sidebar-article-title {
    color: var(--primary-color);
}

.sidebar-article-meta {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--text-light);
}

.sidebar-article-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sidebar-article-meta i {
    color: var(--primary-color);
    width: 14px;
    text-align: center;
}

/* Custom Scrollbar for Sidebar Sections */
.sidebar-section::-webkit-scrollbar {
    width: 6px;
}

.sidebar-section::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.sidebar-section::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.sidebar-section::-webkit-scrollbar-thumb:hover {
    background: #e65a3a;
}

/* ========================================
    RESPONSIVE DESIGN FOR TOUR LISTING
======================================== */
@media (max-width: 1024px) {
    /* Tour Listing Layout - Tablet */
    .tour-listing-wrapper {
        flex-direction: column;
        gap: 2rem;
    }
    
    .tour-listing-main {
        width: 100%;
    }

    .tour-listing-wrapper.with-sidebar .tour-listing-card {
        flex-direction: column;
    }

    .tour-listing-wrapper.with-sidebar .tour-listing-image-wrapper {
        width: 100%;
        height: 240px;
    }

    .tour-listing-wrapper.with-sidebar .tour-listing-content {
        width: 100%;
        padding: 1.25rem 1.5rem;
    }

    .tour-listing-wrapper.with-sidebar .tour-listing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .tour-listing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .tour-listing-card:hover {
        transform: translateY(-8px);
    }
    
    .tour-listing-image-wrapper {
        height: 220px;
    }

    /* Sidebar - Tablet */
    .right-sidebar {
        width: 100%;
        position: static;
        max-height: none;
        margin-top: 1.5rem;
    }

    .sidebar-section {
        position: static;
        max-height: none;
    }
    
    /* Display sidebar items in a grid on tablet - improved layout */
    .sidebar-tours-list,
    .sidebar-articles-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .sidebar-tour-item,
    .sidebar-article-item {
        flex-direction: column;
        border-bottom: none;
        padding-bottom: 0;
        background: var(--bg-light);
        padding: 0.85rem;
        border-radius: var(--radius-md);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }
    
    .sidebar-tour-image,
    .sidebar-article-image {
        width: 100%;
        height: 120px;
        border-radius: var(--radius-sm);
        margin-bottom: 0.75rem;
    }
    
    .sidebar-tour-content,
    .sidebar-article-content {
        width: 100%;
    }
    
    .sidebar-tour-title,
    .sidebar-article-title {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 0.5rem;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
    
    .sidebar-tour-price {
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
    }
    
    .sidebar-tour-price .price-new {
        font-size: 1rem;
    }
    
    .sidebar-tour-price .price-old {
        font-size: 0.8rem;
    }
    
    .sidebar-article-meta {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .sidebar-article-meta span {
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    /* Page Banner - Mobile */
    .page-banner {
        height: 280px;
        margin-top: 0;
        padding-top: 70px;
    }

    .page-banner-title {
        font-size: 1.65rem;
        line-height: 1.25;
        padding: 0 1rem;
    }
    
    .page-banner-subtitle {
        font-size: 0.9rem;
        padding: 0 1rem;
    }

    /* Tour Listing Layout - Mobile */
    .tour-listing-section {
        padding: 2rem 0;
    }
    
    .tour-listing-wrapper {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .tour-listing-main {
        width: 100%;
    }

    .tour-listing-wrapper.with-sidebar .tour-listing-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .tour-listing-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-bottom: 2rem;
    }
    
    /* Tour Listing Card - Mobile */
    .tour-listing-card {
        border-radius: var(--radius-md);
    }
    
    .tour-listing-card:hover {
        transform: translateY(-5px);
    }
    
    .tour-listing-image-wrapper {
        height: 200px;
    }
    
    .tour-listing-content {
        padding: 1rem 1.25rem 1.25rem;
    }
    
    .tour-listing-title {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
        line-height: 1.35;
    }
    
    .tour-listing-info {
        margin-bottom: 0.6rem;
    }

    .tour-info-row {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
        padding-bottom: 0.6rem;
        margin-bottom: 0.6rem;
    }

    .tour-info-item {
        justify-content: flex-start;
        font-size: 0.82rem;
        flex: 0 0 auto;
    }
    
    .tour-info-item i {
        font-size: 0.85rem;
    }
    
    .tour-listing-rating {
        padding-top: 0.75rem;
        margin-bottom: 0.75rem;
    }
    
    .tour-listing-rating .stars i {
        font-size: 0.85rem;
    }
    
    .tour-listing-rating .review-count {
        font-size: 0.8rem;
    }
    
    .tour-listing-footer {
        padding-top: 0.75rem;
    }
    
    .tour-listing-footer .tour-price .price-current {
        font-size: 1.15rem;
    }
    
    .tour-listing-footer .tour-price .price-old {
        font-size: 0.85rem;
    }
    
    /* Tour Badge - Mobile */
    .tour-badge {
        padding: 0.35rem 0.75rem;
        font-size: 0.75rem;
        top: 0.75rem;
        left: 0.75rem;
    }
    
    .tour-badge.special-offer {
        padding: 0.4rem 0.85rem;
    }

    /* Right Sidebar - Mobile */
    .right-sidebar {
        width: 100%;
        position: static;
        max-height: none;
        padding: 1.25rem;
        margin-top: 1rem;
        border-radius: var(--radius-md);
    }
    
    .sidebar-section {
        padding: 1.25rem;
        margin-bottom: 1.25rem;
        border-radius: var(--radius-md);
    }
    
    /* Sidebar Lists - Single Column on Mobile */
    .sidebar-tours-list,
    .sidebar-articles-list {
        display: flex;
        flex-direction: column;
        gap: 0.85rem;
    }

    .sidebar-tour-item,
    .sidebar-article-item {
        flex-direction: row;
        gap: 0.85rem;
        padding: 0.85rem;
        background: var(--bg-light);
        border-radius: var(--radius-md);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        border-bottom: none;
    }
    
    .sidebar-tour-image,
    .sidebar-article-image {
        width: 90px;
        height: 80px;
        flex-shrink: 0;
        border-radius: var(--radius-sm);
        margin-bottom: 0;
    }
    
    .sidebar-tour-content,
    .sidebar-article-content {
        flex: 1;
        min-width: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 0.35rem;
    }
    
    .sidebar-tour-title,
    .sidebar-article-title {
        font-size: 0.92rem;
        font-weight: 600;
        line-height: 1.35;
        margin-bottom: 0.25rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .sidebar-tour-price {
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
    }
    
    .sidebar-tour-price .price-new {
        font-size: 1rem;
        font-weight: 700;
    }
    
    .sidebar-tour-price .price-old {
        font-size: 0.8rem;
    }
    
    .sidebar-article-meta {
        flex-direction: row;
        gap: 0.6rem;
        font-size: 0.78rem;
    }
    
    .sidebar-article-meta span {
        display: inline-flex;
        align-items: center;
        gap: 0.3rem;
    }

    .sidebar-title {
        font-size: 1.1rem;
        font-weight: 700;
        margin-bottom: 1rem;
        padding-bottom: 0.6rem;
    }
    
    .sidebar-badge {
        padding: 0.25rem 0.5rem;
        font-size: 0.65rem;
    }

    /* Pagination - Mobile */
    .pagination-wrapper {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    
    .pagination {
        gap: 0.35rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .pagination-btn,
    .pagination-number {
        width: 38px;
        height: 38px;
        font-size: 0.85rem;
    }
    
    .pagination-btn i {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    /* Page Banner - Extra Compact */
    .page-banner {
        height: 240px;
        margin-top: 0;
        padding-top: 65px;
    }

    .page-banner-title {
        font-size: 1.4rem;
        padding: 0 0.75rem;
    }
    
    .page-banner-subtitle {
        font-size: 0.85rem;
    }
    
    /* Tour Listing Section - Extra Compact */
    .tour-listing-section {
        padding: 1.5rem 0;
    }
    
    .tour-listing-grid {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    /* Tour Listing Card - Extra Compact */
    .tour-listing-card {
        border-radius: var(--radius);
    }
    
    .tour-listing-image-wrapper {
        height: 180px;
    }
    
    .tour-listing-content {
        padding: 0.85rem 1rem 1rem;
    }

    .tour-listing-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .tour-info-row {
        gap: 0.4rem;
        padding-bottom: 0.5rem;
        margin-bottom: 0.5rem;
    }
    
    .tour-info-item {
        font-size: 0.78rem;
    }
    
    .tour-info-item i {
        font-size: 0.8rem;
        width: 14px;
    }
    
    .tour-listing-rating .stars i {
        font-size: 0.8rem;
    }
    
    .tour-listing-rating .review-count {
        font-size: 0.75rem;
    }
    
    .tour-listing-footer .tour-price .price-current {
        font-size: 1.05rem;
    }
    
    .tour-listing-footer .tour-price .price-old {
        font-size: 0.8rem;
    }
    
    /* Tour Badge - Extra Compact */
    .tour-badge {
        padding: 0.3rem 0.65rem;
        font-size: 0.7rem;
    }
    
    /* Sidebar - Extra Compact */
    .right-sidebar {
        padding: 1rem;
    }
    
    .sidebar-section {
        padding: 1rem;
        margin-bottom: 1rem;
        border-radius: var(--radius);
    }
    
    .sidebar-tours-list,
    .sidebar-articles-list {
        gap: 0.75rem;
    }
    
    .sidebar-tour-item,
    .sidebar-article-item {
        padding: 0.75rem;
        gap: 0.75rem;
        border-radius: var(--radius);
    }
    
    .sidebar-tour-image,
    .sidebar-article-image {
        width: 75px;
        height: 70px;
        border-radius: 6px;
    }
    
    .sidebar-tour-title,
    .sidebar-article-title {
        font-size: 0.88rem;
        line-height: 1.3;
        margin-bottom: 0.2rem;
    }
    
    .sidebar-tour-price .price-new {
        font-size: 0.95rem;
    }
    
    .sidebar-tour-price .price-old {
        font-size: 0.75rem;
    }
    
    .sidebar-title {
        font-size: 1rem;
        margin-bottom: 0.85rem;
        padding-bottom: 0.5rem;
    }
    
    .sidebar-article-meta {
        font-size: 0.72rem;
        gap: 0.4rem;
    }
    
    .sidebar-article-meta i {
        font-size: 0.7rem;
    }

    /* Pagination - Extra Compact */
    .pagination {
        gap: 0.25rem;
    }
    
    .pagination-btn,
    .pagination-number {
        width: 36px;
        height: 36px;
        font-size: 0.8rem;
    }
    
    /* Hide some pagination numbers on very small screens */
    .pagination-number:not(.active):not(:first-of-type):not(:last-of-type) {
        display: none;
    }
    
    .pagination-ellipsis {
        display: none;
    }
}

/* ========================================
    TOUR DETAIL PAGE STYLES
======================================== */

/* Tour Banner Section */

.banner-btn {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: var(--text-dark);
    padding: 0.9rem 1.8rem;
    border-radius: var(--radius);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.banner-btn:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-yellow));
    color: var(--text-white);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(255, 200, 87, 0.5);
}

.banner-btn:active {
    transform: translateY(-1px);
}

.banner-btn i {
    font-size: 1.1rem;
}

/* Sticky Navigation */
.tour-detail-nav {
    background: var(--secondary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 100;
    transition: var(--transition);
}

.tour-detail-nav.sticky {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    width: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.detail-nav-menu {
    display: flex;
    gap: 2rem;
    padding: 1rem 0;
    overflow-x: auto;
}

.detail-nav-menu .nav-link {
    font-weight: 500;
    color: var(--text-dark);
    padding: 0.5rem 0;
    position: relative;
    white-space: nowrap;
    transition: var(--transition);
}

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

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

.detail-nav-menu .nav-link:hover,
.detail-nav-menu .nav-link.active {
    color: var(--primary-color);
}

/* Tour Detail Wrapper */
.tour-detail-wrapper {
    padding: 3rem 2rem;
}

.tour-detail-content {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.tour-detail-main {
    flex: 1;
    min-width: 0;
}

.tour-detail-sidebar {
    width: 380px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Detail Section */
.detail-section {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #eee;
}

.detail-section:last-child {
    border-bottom: none;
}

.detail-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.detail-section-title {
    font-size: 1.8rem !important;
    font-weight: 700 !important;
    color: var(--text-dark) !important;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    line-height: 1.3 !important;
    margin: 0 !important;
}

.detail-section-title i {
    color: var(--primary-color);
}

/* Tour Title and Rating */
.tour-title-rating {
    margin-bottom: 2rem;
}

.tour-detail-title {
    font-size: 2.2rem !important;
    font-weight: 700 !important;
    color: var(--text-dark) !important;
    margin-bottom: 1rem !important;
    line-height: 1.3 !important;
}

.tour-rating-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.review-count-header {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Tour Info Grid */
.tour-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 10px;
}

.tour-info-grid .tour-info-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem !important;
    color: var(--text-dark) !important;
}

.tour-info-grid .tour-info-item i {
    color: var(--primary-color);
    font-size: 1.1rem !important;
    width: 20px;
}

.tour-info-grid .tour-info-item span {
    font-size: 0.95rem !important;
}

/* Tour Description */
.tour-description {
    margin-bottom: 2rem;
}

.tour-description p {
    margin-bottom: 1rem !important;
    line-height: 1.8 !important;
    color: var(--text-light) !important;
    font-size: 1rem !important;
}

/* Destination Content Section */
.destination-content-section {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 2px solid #eee;
}

.destination-content {
    margin: 0 auto;
    background: var(--secondary-color);
    padding: 3rem 2.5rem 3rem 3rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: relative;
}

.destination-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color) 0%, #ff7f5e 100%);
    border-radius: 10px 0 0 10px;
}

.destination-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-light);
    font-size: 1rem;
}

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

.destination-content h1,
.destination-content h2,
.destination-content h3,
.destination-content h4,
.destination-content h5,
.destination-content h6 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.3;
}

.destination-content h1 {
    font-size: 2rem;
}

.destination-content h2 {
    font-size: 1.75rem;
}

.destination-content h3 {
    font-size: 1.5rem;
}

.destination-content h4 {
    font-size: 1.25rem;
}

.destination-content h5,
.destination-content h6 {
    font-size: 1.1rem;
}

.destination-content ul,
.destination-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
    color: var(--text-light);
    line-height: 1.8;
    list-style: disc;
    list-style-position: outside;
}

.destination-content ul {
    list-style-type: disc;
}

.destination-content ol {
    list-style-type: decimal;
}

.destination-content ul li,
.destination-content ol li {
    margin-bottom: 0.75rem;
    padding-left: 0.5rem;
    display: list-item;
    list-style-position: outside;
}

.destination-content ul ul,
.destination-content ol ol,
.destination-content ul ol,
.destination-content ol ul {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
}

.destination-content ul ul {
    list-style-type: circle;
}

.destination-content ul ul ul {
    list-style-type: square;
}

.destination-content ol ol {
    list-style-type: lower-alpha;
}

.destination-content ol ol ol {
    list-style-type: lower-roman;
}

.destination-content a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: var(--transition);
}

.destination-content a:hover {
    color: #e65a3a;
}

.destination-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.destination-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--text-light);
    line-height: 1.8;
}

/* Tours Section Header */
.tours-section-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-top: 2rem;
}

.tours-section-header .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    position: relative;
    display: inline-block;
}

.tours-section-header .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #ff7f5e);
    border-radius: 2px;
}

.tours-section-header .section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 1.5rem;
    font-weight: 400;
}

/* Responsive Design for Destination Content */
@media (max-width: 768px) {
    .destination-content-section {
        margin-bottom: 3rem;
        padding-bottom: 2rem;
    }

    .destination-content {
        padding: 2rem 1.5rem 2rem 2rem;
        max-width: 100%;
    }

    .destination-content h1 {
        font-size: 1.75rem;
    }

    .destination-content h2 {
        font-size: 1.5rem;
    }

    .destination-content h3 {
        font-size: 1.25rem;
    }

    .tours-section-header {
        margin-bottom: 2rem;
        padding-top: 1.5rem;
    }

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

    .tours-section-header .section-subtitle {
        font-size: 1rem;
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .destination-content {
        padding: 1.5rem 1rem 1.5rem 1.5rem;
    }

    .tours-section-header .section-title {
        font-size: 1.75rem;
    }

    .tours-section-header .section-subtitle {
        font-size: 0.95rem;
    }
}

/* Tour Details List */
.tour-details-list {
    margin-bottom: 2rem;
}

.detail-list-item {
    display: flex;
    padding: 1.5rem 0;
    border-bottom: 1px solid #eee;
    gap: 2rem;
}

.detail-list-item:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 600 !important;
    font-size: 1rem !important;
    color: var(--text-dark) !important;
    min-width: 200px;
    flex-shrink: 0;
}

.detail-value {
    flex: 1;
    font-size: 1rem !important;
    color: var(--text-light) !important;
}

.detail-value ul {
    list-style: none;
    margin-top: 0.5rem;
}

.detail-value ul li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    padding-left: 0;
}

.detail-value ul li i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.detail-list .fas.fa-check-circle {
    color: #28a745;
}

.detail-list .fas.fa-times-circle {
    color: #dc3545;
}

.map-link {
    color: var(--primary-color);
    text-decoration: underline;
}

.map-link:hover {
    color: #e65a3a;
}

/* What to Expect */
.what-to-expect {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 10px;
}

.what-to-expect-title {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: var(--text-dark) !important;
    margin-bottom: 1.5rem !important;
    line-height: 1.3 !important;
}

.what-to-expect p {
    margin-bottom: 1rem !important;
    line-height: 1.8 !important;
    font-size: 1rem !important;
    color: var(--text-light) !important;
}

.expect-list {
    list-style: none;
    margin-top: 1.5rem;
}

.expect-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 1rem !important;
    color: var(--text-light) !important;
}

.expect-list li i {
    color: var(--primary-color);
    font-size: 0.7rem !important;
}

/* Photos Section */
.photos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.photo-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

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

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.photo-item:hover .photo-overlay {
    opacity: 1;
}

.photo-item:hover img {
    transform: scale(1.1);
}

.photo-overlay i {
    color: var(--text-white);
    font-size: 2rem;
}

/* Itinerary Section */
.itinerary-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.itinerary-day {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 10px;
}

.itinerary-day-title {
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    color: var(--text-dark) !important;
    margin-bottom: 1rem !important;
    line-height: 1.3 !important;
}

.itinerary-day-title span {
    color: var(--primary-color) !important;
    font-weight: 600 !important;
}

.itinerary-day-content {
    line-height: 1.8 !important;
    font-size: 1rem !important;
    color: var(--text-light) !important;
}

/* Map Section */
.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 500px;
    border: none;
}

/* FAQ Section */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--secondary-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 50%;
    flex-shrink: 0;
}

.faq-icon i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.faq-question h4 {
    font-size: 1rem !important;
    font-weight: 600 !important;
    color: var(--text-dark) !important;
    margin: 0 !important;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer.active {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem !important;
    margin: 0 !important;
    line-height: 1.8 !important;
    font-size: 1rem !important;
    color: var(--text-light) !important;
}

/* ========================================
   TOUR REVIEWS SECTION
   ======================================== */
.tour-reviews-section {
    margin-top: 3rem;
    padding: 2rem 0;
    background: var(--secondary-color);
}

.tour-reviews-header {
    margin-bottom: 2rem;
}

.tour-reviews-summary {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.tour-reviews-count {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.tour-reviews-average-stars {
    display: flex;
    gap: 0.2rem;
    align-items: center;
}

.tour-reviews-average-stars i {
    color: #ffc107;
    font-size: 1rem;
}

.tour-reviews-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.tour-review-item {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.tour-review-item:last-child {
    border-bottom: none;
}

.tour-review-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
    gap: 0.8rem;
}

.tour-reviewer-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 2px solid #e0e0e0;
}

.tour-reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.tour-reviewer-avatar i {
    font-size: 2.5rem;
    color: #999;
}

.tour-reviewer-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    margin: 0;
}

.tour-review-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.tour-review-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0;
}

.tour-review-description p {
    margin: 0 0 0.5rem 0;
}

.tour-review-description p:last-child {
    margin-bottom: 0;
}

.tour-review-stars {
    display: flex;
    gap: 0.2rem;
    align-items: center;
}

.tour-review-stars i.fas.fa-star {
    color: #ffc107;
    font-size: 1rem;
}

.tour-review-stars i.far.fa-star {
    color: #ddd;
    font-size: 1rem;
}

.tour-review-date {
    font-size: 0.9rem;
    color: #999;
    margin: 0;
}

/* Responsive Design for Tour Reviews */
@media (max-width: 768px) {
    .tour-review-item {
        flex-direction: row;
        gap: 1rem;
        padding: 1.25rem 0;
        align-items: flex-start;
    }

    .tour-review-left {
        min-width: auto;
        width: auto;
        flex-shrink: 0;
    }

    .tour-reviewer-avatar {
        width: 55px;
        height: 55px;
    }

    .tour-reviewer-avatar i {
        font-size: 1.5rem;
    }
    
    .tour-reviewer-name {
        font-size: 0.85rem;
        text-align: left;
    }
    
    .tour-review-right {
        gap: 0.6rem;
    }
    
    .tour-review-description {
        font-size: 0.9rem;
        line-height: 1.55;
    }
    
    .tour-review-stars i {
        font-size: 0.85rem;
    }
    
    .tour-review-date {
        font-size: 0.8rem;
    }
}

/* Sidebar Booking Box */
.sidebar-booking-box {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.booking-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.price-label {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

/* Tour Tag Label - Styled with theme colors */
.tour-tag-label {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: var(--primary-color);
    color: var(--text-white);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(249, 113, 80, 0.3);
    transition: all 0.3s ease;
    cursor: default;
}

.tour-tag-label:hover {
    background: var(--primary-dark);
    box-shadow: 0 4px 12px rgba(249, 113, 80, 0.4);
    transform: scale(1.05);
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.booking-price i.fa-gem {
    color: var(--primary-color);
    font-size: 1rem;
}

.booking-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #eee;
}

.booking-tab {
    padding: 0.8rem 1.5rem;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--text-light);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: -2px;
}

.booking-tab.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.booking-tab:hover {
    color: var(--primary-color);
}

.booking-content {
    margin-top: 1.5rem;
}

/* Booking and Enquiry Form Content */
.booking-form-content,
.enquiry-form-content {
    display: block;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease, max-height 0.4s ease, visibility 0.4s ease;
}

.booking-form-content.active,
.enquiry-form-content.active {
    opacity: 1;
    max-height: 2000px;
    visibility: visible;
    transform: translateY(0);
}

/* Form Styles */
.booking-form,
.enquiry-form {
    margin-bottom: 1.5rem;
}

.booking-form .form-group,
.enquiry-form .form-group {
    margin-bottom: 1.5rem;
}

.booking-form .form-group label,
.enquiry-form .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
}

.booking-form .form-group input,
.booking-form .form-group select,
.enquiry-form .form-group input,
.enquiry-form .form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition);
    box-sizing: border-box;
    cursor: pointer;
    background-color: var(--secondary-color);
}

.booking-form .form-group input[type="date"] {
    cursor: pointer;
    position: relative;
}

.booking-form .form-group input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 1;
}

/* Date Range Info Display */
.date-range-info {
    margin-top: 0.75rem;
    padding: 0.75rem;
    background: var(--bg-light);
    border-radius: 5px;
    border-left: 3px solid var(--primary-color);
}

.date-range-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
}

.date-range-text i {
    color: var(--primary-color);
    font-size: 0.85rem;
}

.booking-form .form-group input:focus,
.booking-form .form-group select:focus,
.enquiry-form .form-group input:focus,
.enquiry-form .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.1);
}

.enquiry-form .form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Room Input Wrapper */
.room-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.room-input-wrapper i {
    position: absolute;
    left: 1rem;
    color: var(--text-light);
    pointer-events: none;
}

.room-input-wrapper input {
    padding-left: 3rem !important;
}

/* Room Occupancy */
.room-occupancy {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 5px;
}

.room-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.occupancy-selects {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group-inline {
    display: flex;
    flex-direction: column;
}

.form-group-inline label {
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
    color: var(--text-light);
}

.form-group-inline select {
    padding: 0.6rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.9rem;
    background: var(--secondary-color);
    cursor: pointer;
}

/* Error Message */
.booking-error {
    background: #fee;
    color: #c33;
    padding: 0.75rem;
    border-radius: 5px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    border: 1px solid #fcc;
}

/* Buttons */
.proceed-booking-btn,
.submit-enquiry-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-yellow));
    color: var(--secondary-color);
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.5px;
    box-shadow: 0 4px 20px rgba(249, 113, 80, 0.3);
}

.proceed-booking-btn:hover,
.submit-enquiry-btn:hover {
    background: linear-gradient(135deg, var(--accent-yellow), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 200, 87, 0.5);
}

.proceed-booking-btn:active,
.submit-enquiry-btn:active {
    transform: translateY(0);
}

/* Checkbox Group */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
    cursor: pointer;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.85rem;
    line-height: 1.5;
    cursor: pointer;
}

.availability-note {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 5px;
}

.booking-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    margin-top: 1.5rem;
}

.wishlist-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    font-size: 0.9rem;
    transition: var(--transition);
}

.wishlist-link:hover {
    color: var(--primary-color);
}

.view-count {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Why Book With Us */
.sidebar-why-book {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.why-book-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.why-book-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.why-book-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.why-book-list li i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.why-book-list li span {
    color: var(--text-light);
    line-height: 1.6;
}

/* Contact Box */
.sidebar-contact-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff7f5e 100%);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}

.sidebar-contact-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><path d="M0,200 Q100,100 200,200 T400,200 L400,300 L0,300 Z" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.contact-box-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.contact-box-text {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.contact-item i {
    font-size: 1.2rem;
    width: 24px;
}

/* ========================================
   REVIEW FORM SECTION
======================================== */
.sidebar-review-box {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-top: 2rem;
}

.review-box-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.review-box-text {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.review-form {
    margin-top: 1rem;
}

.review-form .form-group {
    margin-bottom: 1.5rem;
}

.review-form .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
}

.review-form .form-group input,
.review-form .form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.review-form .form-group input:focus,
.review-form .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.1);
}

.review-form .form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Star Rating Styles */
.tnt-star-selector {
    margin-top: 0.5rem;
}

.tnt-stars-container {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-bottom: 0.5rem;
}

.tnt-star {
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1.5rem;
    line-height: 1;
    color: #ddd;
}

.tnt-star:hover {
    transform: scale(1.1);
    color: #ffb900;
}

.tnt-star i {
    transition: color 0.2s ease;
}

.tnt-star.tnt-star-active,
.tnt-star.tnt-star-active i {
    color: #ffb900;
}

.tnt-rating-text {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
}

/* Photo Upload Styles */
.tnt-photo-upload-wrapper {
    margin-top: 0.5rem;
}

.tnt-upload-photo-btn {
    padding: 0.5rem 0.8rem;
    background: var(--bg-light);
    border: 1px solid #ddd;
    border-radius: 5px;
    color: var(--text-dark);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.tnt-upload-photo-btn:hover {
    background: #f0f0f0;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.tnt-photo-preview {
    margin-top: 1rem;
    text-align: center;
}

.tnt-photo-preview img {
    border-radius: 50%;
    border: 2px solid #e1e1e1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.tnt-remove-photo {
    background: #b32d2e;
    color: white;
    border: 2px solid white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    cursor: pointer;
    font-size: 0.75rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    padding: 0;
    margin: 0;
}

.tnt-remove-photo:hover {
    background: #8b0000;
    transform: scale(1.1);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

/* Review Form Submit Button */
.submit-review-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-yellow));
    color: var(--secondary-color);
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(249, 113, 80, 0.3);
}

.submit-review-btn:hover {
    background: linear-gradient(135deg, var(--accent-yellow), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 200, 87, 0.5);
}

.submit-review-btn:active {
    transform: translateY(0);
}

.submit-review-btn:disabled,
.submit-review-btn.submitting {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    pointer-events: none;
}

.submit-review-btn .btn-text {
    display: inline-block;
}

.submit-review-btn .btn-loading {
    display: none;
}

.submit-review-btn:disabled .btn-text,
.submit-review-btn.submitting .btn-text {
    display: none;
}

.submit-review-btn:disabled .btn-loading,
.submit-review-btn.submitting .btn-loading {
    display: inline-block;
}

/* Ensure hidden state takes precedence */
.submit-review-btn .btn-loading.tnt-hidden {
    display: none !important;
}

.submit-review-btn .btn-loading.tnt-visible {
    display: inline-block !important;
}

.submit-review-btn .btn-loading i {
    margin-right: 0.5rem;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Review Form Messages */
.tnt-review-message {
    padding: 10px 15px;
    border-radius: 5px;
    margin: 15px 0;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}

.tnt-review-message.tnt-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.tnt-review-message.tnt-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Field Error Styles */
.tnt-field-error {
    border-color: #dc3232 !important;
    box-shadow: 0 0 0 2px rgba(220, 50, 50, 0.1) !important;
}

.tnt-field-error-message {
    color: #dc3232;
    font-size: 0.8rem;
    margin-top: 0.3rem;
    font-weight: 500;
}

/* Responsive Styles for Review Form */
@media (max-width: 768px) {
    .sidebar-review-box {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }

    .review-form .form-group input,
    .review-form .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .tnt-star {
        font-size: 1.3rem;
    }

    .tnt-upload-photo-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Popup Overlay */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.popup-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--text-white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.popup-close:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: rotate(90deg);
}

/* Gallery Popup */
.gallery-popup {
    width: 100%;
    max-width: 1200px;
}

.popup-image-container {
    width: 100%;
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.popup-image-container img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
}

.popup-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--text-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.popup-nav:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.popup-nav.prev {
    left: 20px;
}

.popup-nav.next {
    right: 20px;
}

.popup-counter {
    position: absolute;
    bottom: -50px;
    color: var(--text-white);
    font-size: 1.1rem;
    font-weight: 600;
}

/* Video Popup */
.video-popup {
    width: 100%;
    max-width: 900px;
}

.popup-video-container {
    width: 100%;
    aspect-ratio: 16/9;
    position: relative;
}

.popup-video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
}

/* Responsive Design for Tour Detail */
@media (max-width: 1024px) {
    /* Tour Detail Layout - Tablet */
    .tour-detail-content {
        flex-direction: column;
        gap: 2rem;
    }

    .tour-detail-sidebar {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .sidebar-booking-box {
        grid-column: 1 / -1;
    }

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

    .photos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .tour-detail-wrapper {
        padding: 2.5rem 1.5rem;
    }
    
    .detail-section {
        margin-bottom: 3rem;
        padding-bottom: 2.5rem;
    }
}

@media (max-width: 768px) {
    /* Tour Banner - Mobile */
    .page-banner.tour-banner-section {
        height: 320px;
        padding-top: 65px;
    }
    
    .page-banner-image img {
        object-position: center;
    }

    .page-banner-buttons {
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        flex-direction: row;
        gap: 0.75rem;
        justify-content: flex-start;
    }

    .banner-btn {
        padding: 0.65rem 1rem;
        font-size: 0.8rem;
        border-radius: var(--radius-sm);
    }
    
    .banner-btn i {
        font-size: 0.95rem;
    }

    /* Sticky Navigation - Mobile */
    .tour-detail-nav {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .tour-detail-nav.sticky {
        top: 60px;
    }
    
    .tour-detail-nav .container {
        padding: 0 0.75rem;
    }

    .detail-nav-menu {
        gap: 0.5rem;
        padding: 0.75rem 0;
        justify-content: flex-start;
    }
    
    .detail-nav-menu li {
        flex-shrink: 0;
    }
    
    .detail-nav-menu .nav-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
        background: var(--bg-light);
        border-radius: var(--radius-sm);
    }
    
    .detail-nav-menu .nav-link::after {
        display: none;
    }
    
    .detail-nav-menu .nav-link.active {
        background: var(--primary-color);
        color: var(--text-white);
    }

    /* Tour Detail Wrapper - Mobile */
    .tour-detail-wrapper {
        padding: 1.5rem 1rem;
    }
    
    .tour-detail-content {
        gap: 1.5rem;
    }
    
    .tour-detail-sidebar {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
    }

    /* Tour Title & Rating - Mobile */
    .tour-title-rating {
        margin-bottom: 1.5rem;
    }

    .tour-detail-title {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.75rem !important;
    }
    
    .tour-rating-header {
        gap: 0.75rem;
        flex-wrap: wrap;
    }
    
    .tour-rating-header .stars i {
        font-size: 0.9rem;
    }
    
    .review-count-header {
        font-size: 0.85rem;
    }

    /* Tour Info Grid - Mobile */
    .tour-info-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
        padding: 1rem;
        border-radius: var(--radius-sm);
    }
    
    .tour-info-grid .tour-info-item {
        font-size: 0.85rem;
        gap: 0.4rem;
    }
    
    .tour-info-grid .tour-info-item i {
        font-size: 1rem;
    }

    /* Tour Description - Mobile */
    .tour-description {
        font-size: 0.95rem;
        line-height: 1.65;
    }
    
    .tour-description p {
        margin-bottom: 1rem;
    }

    /* Detail Sections - Mobile */
    .detail-section {
        margin-bottom: 2.5rem;
        padding-bottom: 2rem;
    }
    
    .detail-section-header {
        margin-bottom: 1.25rem;
    }
    
    .detail-section-title {
        font-size: 1.35rem !important;
    }
    
    .detail-section-title i {
        font-size: 1.1rem;
    }

    /* Tour Details List - Mobile */
    .tour-details-list {
        gap: 1rem;
    }

    .detail-list-item {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
        background: var(--bg-light);
        border-radius: var(--radius-sm);
    }

    .detail-label {
        min-width: auto;
        font-size: 0.9rem;
        font-weight: 600;
    }
    
    .detail-list li {
        font-size: 0.9rem;
        padding: 0.3rem 0;
    }
    
    .detail-list li i {
        font-size: 0.85rem;
    }

    /* What to Expect - Mobile */
    .what-to-expect {
        padding: 1.25rem;
        border-radius: var(--radius-sm);
    }
    
    .what-to-expect-title {
        font-size: 1.15rem;
        margin-bottom: 1rem;
    }
    
    .expect-list li {
        font-size: 0.9rem;
        padding: 0.4rem 0;
    }

    /* Photos Grid - Mobile */
    .photos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .photo-item {
        height: 120px;
        border-radius: var(--radius-sm);
    }
    
    .photo-overlay i {
        font-size: 1rem;
    }

    /* Itinerary - Mobile */
    .itinerary-list {
        gap: 1rem;
    }
    
    .itinerary-day {
        padding: 1rem;
        border-radius: var(--radius-sm);
    }
    
    .itinerary-day-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .itinerary-day-title span {
        font-size: 0.9rem;
    }
    
    .itinerary-day-content {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    /* Map - Mobile */
    .map-container {
        height: 250px;
        border-radius: var(--radius-sm);
    }

    /* FAQ - Mobile */
    .faq-list {
        gap: 0.75rem;
    }
    
    .faq-item {
        border-radius: var(--radius-sm);
    }
    
    .faq-question {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .faq-question h4 {
        font-size: 0.95rem !important;
    }
    
    .faq-icon {
        width: 26px;
        height: 26px;
    }
    
    .faq-icon i {
        font-size: 0.8rem;
    }
    
    .faq-answer p {
        padding: 0 1rem 1rem !important;
        font-size: 0.9rem !important;
        line-height: 1.65 !important;
    }

    /* Reviews - Mobile */
    .tour-reviews-section {
        padding: 1.5rem 0;
    }
    
    .tour-reviews-header {
        margin-bottom: 1.25rem;
    }
    
    .tour-reviews-summary {
        gap: 0.75rem;
        flex-wrap: wrap;
    }
    
    .tour-reviews-count {
        font-size: 0.95rem;
    }
    
    .tour-reviews-average-stars i {
        font-size: 0.9rem;
    }

    .reviews-header-left,
    .reviews-header-right {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .review-item {
        flex-direction: column;
    }

    /* Sidebar Booking Box - Mobile */
    .sidebar-booking-box {
        padding: 1.25rem;
        border-radius: var(--radius-md);
    }
    
    .booking-price {
        margin-bottom: 1rem;
        gap: 0.4rem;
        flex-wrap: wrap;
    }
    
    .price-label {
        font-size: 0.7rem;
        padding: 0.25rem 0.6rem;
    }
    
    .booking-price i.fa-gem {
        font-size: 0.9rem;
    }
    
    .price-amount {
        font-size: 1.5rem;
    }
    
    .booking-tabs {
        gap: 0.25rem;
        margin-bottom: 1rem;
    }
    
    .booking-tab {
        padding: 0.7rem 0.5rem;
        font-size: 0.85rem;
    }
    
    .booking-form .form-group,
    .enquiry-form .form-group {
        margin-bottom: 0.85rem;
    }
    
    .booking-form .form-group label,
    .enquiry-form .form-group label {
        font-size: 0.85rem;
        margin-bottom: 0.35rem;
    }
    
    .booking-form .form-group input,
    .booking-form .form-group select,
    .enquiry-form .form-group input,
    .enquiry-form .form-group textarea {
        padding: 0.75rem 0.85rem;
        font-size: 16px;
        border-radius: var(--radius-sm);
    }
    
    .proceed-booking-btn,
    .submit-enquiry-btn {
        padding: 0.9rem 1rem;
        font-size: 0.9rem;
        border-radius: var(--radius-sm);
    }
    
    .booking-actions {
        margin-top: 1rem;
    }
    
    .view-count {
        font-size: 0.85rem;
    }

    /* Review Form Box - Mobile */
    .sidebar-review-box {
        padding: 1.25rem;
        border-radius: var(--radius-md);
    }
    
    .review-box-title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .review-box-text {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .review-form .form-group {
        margin-bottom: 0.85rem;
    }
    
    .review-form .form-group label {
        font-size: 0.85rem;
    }
    
    .tnt-stars-container {
        gap: 0.25rem;
    }
    
    .tnt-star {
        font-size: 1.4rem;
    }
    
    .submit-review-btn {
        padding: 0.9rem 1rem;
        font-size: 0.9rem;
        border-radius: var(--radius-sm);
    }

    /* Popup - Mobile */
    .popup-content {
        max-width: 95vw;
        max-height: 85vh;
    }
    
    .popup-close {
        top: -45px;
        width: 40px;
        height: 40px;
    }

    .popup-nav {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }

    .popup-nav.prev {
        left: 8px;
    }

    .popup-nav.next {
        right: 8px;
    }
    
    .popup-counter {
        font-size: 0.9rem;
        margin-top: 0.75rem;
    }
}

@media (max-width: 480px) {
    /* Tour Banner - Extra Compact */
    .page-banner.tour-banner-section {
        height: 280px;
        padding-top: 60px;
    }

    .page-banner-buttons {
        bottom: 0.75rem;
        left: 0.75rem;
        right: 0.75rem;
    }

    .banner-btn {
        padding: 0.55rem 0.85rem;
        font-size: 0.75rem;
        gap: 0.35rem;
    }
    
    .banner-btn i {
        font-size: 0.85rem;
    }

    /* Sticky Nav - Extra Compact */
    .tour-detail-nav.sticky {
        top: 55px;
    }

    .detail-nav-menu {
        gap: 0.35rem;
        padding: 0.6rem 0;
    }
    
    .detail-nav-menu .nav-link {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
    }

    /* Tour Detail Wrapper - Extra Compact */
    .tour-detail-wrapper {
        padding: 1.25rem 0.75rem;
    }

    .tour-detail-title {
        font-size: 1.35rem !important;
    }
    
    .tour-rating-header .stars i {
        font-size: 0.85rem;
    }
    
    .review-count-header {
        font-size: 0.8rem;
    }

    /* Tour Info Grid - Extra Compact */
    .tour-info-grid {
        grid-template-columns: 1fr;
        gap: 0.6rem;
        padding: 0.85rem;
    }
    
    .tour-info-grid .tour-info-item {
        font-size: 0.82rem;
    }

    /* Detail Sections - Extra Compact */
    .detail-section {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .detail-section-title {
        font-size: 1.2rem !important;
    }

    .detail-list-item {
        padding: 0.85rem;
    }
    
    .detail-label {
        font-size: 0.85rem;
    }
    
    .detail-list li {
        font-size: 0.85rem;
    }

    /* Photos Grid - Extra Compact */
    .photos-grid {
        gap: 0.5rem;
    }
    
    .photo-item {
        height: 100px;
    }

    /* Itinerary - Extra Compact */
    .itinerary-day {
        padding: 0.85rem;
    }
    
    .itinerary-day-title {
        font-size: 0.95rem;
    }
    
    .itinerary-day-content {
        font-size: 0.85rem;
    }

    /* Map - Extra Compact */
    .map-container {
        height: 220px;
    }

    /* FAQ - Extra Compact */
    .faq-question {
        padding: 0.85rem;
    }
    
    .faq-question h4 {
        font-size: 0.9rem !important;
    }
    
    .faq-icon {
        width: 24px;
        height: 24px;
    }
    
    .faq-answer p {
        padding: 0 0.85rem 0.85rem !important;
        font-size: 0.85rem !important;
    }

    /* Sidebar Booking Box - Extra Compact */
    .sidebar-booking-box {
        padding: 1rem;
    }
    
    .price-amount {
        font-size: 1.35rem;
    }
    
    .booking-tab {
        padding: 0.6rem 0.4rem;
        font-size: 0.8rem;
    }
    
    .proceed-booking-btn,
    .submit-enquiry-btn,
    .submit-review-btn {
        padding: 0.85rem;
        font-size: 0.85rem;
    }

    /* Review Form - Extra Compact */
    .sidebar-review-box {
        padding: 1rem;
    }
    
    .review-box-title {
        font-size: 1rem;
    }
    
    .tnt-star {
        font-size: 1.25rem;
    }

    /* Popup - Extra Compact */
    .popup-nav {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }

    .popup-nav.prev {
        left: 5px;
    }

    .popup-nav.next {
        right: 5px;
    }
}

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

/* Destinations Banner Section */

/* Destinations Section */
.destinations-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Destination Card */
.destination-card {
    background: var(--secondary-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    height: 400px;
    cursor: pointer;
}

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

.destination-card-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.destination-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destination-card:hover .destination-card-image img {
    transform: scale(1.1);
}

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    transition: background 0.5s ease;
}

.destination-card:hover .destination-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.9) 100%);
}

.destination-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: var(--text-white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 3;
    border: 2px solid var(--text-white);
}

.destination-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    color: var(--text-white);
    z-index: 2;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.destination-card:hover .destination-card-content {
    transform: translateY(0);
    opacity: 1;
}

.destination-card-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.destination-card-description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.destination-view-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-yellow));
    color: var(--text-white);
    padding: 0.8rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(249, 113, 80, 0.3);
}

.destination-view-btn:hover {
    background: linear-gradient(135deg, var(--accent-yellow), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 200, 87, 0.5);
}

/* Default state - show only title on card */
.destination-title-default {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    z-index: 3;
    transition: opacity 0.3s ease;
}

.destination-title-default h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-white);
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.destination-card:hover .destination-title-default {
    opacity: 0;
}

/* Pagination */
.pagination-container {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.pagination {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pagination-btn {
    min-width: 40px;
    height: 40px;
    padding: 0.5rem 1rem;
    background: var(--secondary-color);
    color: var(--text-dark);
    border: 1px solid #ddd;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-btn:hover:not(:disabled) {
    background: var(--primary-color);
    color: var(--text-white);
    border-color: var(--primary-color);
}

.pagination-btn.active {
    background: var(--primary-color);
    color: var(--text-white);
    border-color: var(--primary-color);
}

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

/* Single Destination Page - Tours Grid Layout */
.single-destination .tour-listing-main {
    flex: 1;
    min-width: 0;
}

.single-destination .tour-listing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Desktop/Laptop: Vertical card layout for grid */
.single-destination .tour-listing-card {
    display: flex;
    flex-direction: column;
    opacity: 1;
    transform: translateY(0px);
    transition: opacity 0.6s, transform 0.6s;
}

.single-destination .tour-listing-card .tour-listing-image-wrapper {
    width: 100%;
    height: 220px;
    flex-shrink: 0;
}

.single-destination .tour-listing-card .tour-listing-content {
    width: 100%;
    padding: 1.25rem;
}

.single-destination .tour-listing-card .tour-listing-title {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    line-height: 1.35;
}

.single-destination .tour-listing-card .tour-listing-info {
    flex-wrap: wrap;
    gap: 0.75rem;
}

.single-destination .tour-listing-card .tour-listing-info-item {
    font-size: 0.85rem;
}

/* Large Desktop: 3 columns */
@media (min-width: 1200px) {
    .single-destination .tour-listing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

/* Laptop/Medium Desktop: 2 columns */
@media (min-width: 769px) and (max-width: 1199px) {
    .single-destination .tour-listing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }
    
    .single-destination .tour-listing-card .tour-listing-image-wrapper {
        height: 200px;
    }
}

/* ========================================
    DESTINATIONS PAGE RESPONSIVE
======================================== */

@media (max-width: 1024px) {
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .page-banner-content .page-banner-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .page-banner {
        height: 300px;
        padding-top: 60px;
    }

    .page-banner-content .page-banner-title {
        font-size: 2rem;
    }

    .page-banner-label {
        font-size: 0.9rem;
    }

    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .destination-card {
        height: 350px;
    }

    .destination-card-content {
        padding: 1.5rem;
    }

    .destination-card-title {
        font-size: 1.5rem;
    }
    
    /* Single Destination Page - Tours Grid */
    .single-destination .tour-listing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .single-destination .tour-listing-card {
        flex-direction: row;
    }
    
    .single-destination .tour-listing-card .tour-listing-image-wrapper {
        width: 40%;
        height: auto;
        min-height: 180px;
    }
    
    .single-destination .tour-listing-card .tour-listing-content {
        width: 60%;
    }

    .pagination {
        gap: 0.3rem;
    }

    .pagination-btn {
        min-width: 35px;
        height: 35px;
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .page-banner {
        height: 250px;
    }

    .page-banner-content .page-banner-title {
        font-size: 1.5rem;
    }

    .page-banner-label {
        font-size: 0.8rem;
    }

    .destination-card {
        height: 300px;
    }

    .destination-card-content {
        padding: 1rem;
    }

    .destination-card-title {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }

    .destination-card-description {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .destination-view-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.8rem;
    }

    .pagination-btn {
        min-width: 30px;
        height: 30px;
        padding: 0.3rem 0.6rem;
        font-size: 0.8rem;
    }
    
    /* Single Destination - Stack cards on small mobile */
    .single-destination .tour-listing-card {
        flex-direction: column;
    }
    
    .single-destination .tour-listing-card .tour-listing-image-wrapper {
        width: 100%;
        height: 180px;
    }
    
    .single-destination .tour-listing-card .tour-listing-content {
        width: 100%;
        padding: 1rem;
    }
    
    .single-destination .tour-listing-card .tour-listing-title {
        font-size: 1.05rem;
    }
}

/* ========================================
    BLOG PAGE STYLES
======================================== */

/* Blog Banner Section */
.blog-banner-section {
    margin-top: 70px;
    height: 500px;
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?w=1920&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.blog-banner-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    padding: 0 2rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    color: var(--text-white);
}

.blog-meta-left {
    flex-shrink: 0;
}

.blog-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 5px;
    min-width: 80px;
}

.blog-date-day {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.blog-date-month {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.blog-meta-right {
    flex: 1;
}

.blog-meta-items {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.blog-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-meta-item i {
    opacity: 0.8;
}

.blog-title {
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

/* Blog Content Section */
.blog-content-section {
    padding: 4rem 0;
    background: var(--secondary-color);
}

.blog-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.blog-main {
    min-width: 0;
}

/* Blog Images */
.blog-images {
    margin-bottom: 3rem;
}

.blog-image-item {
    margin-bottom: 2rem;
}

.blog-image-item:last-child {
    margin-bottom: 0;
}

.blog-image-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}

/* Blog Post Content */
.blog-post-content {
    background: var(--secondary-color);
    margin-bottom: 3rem;
}

.blog-post-paragraph {
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.blog-post-paragraph p {
    margin-bottom: 1.5rem;
}

.blog-post-paragraph strong {
    font-weight: 600;
    color: var(--text-dark);
}

.blog-post-heading {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 2.5rem 0 1.5rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.blog-post-quote {
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    padding: 2rem;
    margin: 2.5rem 0;
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
}

/* Blog Post Footer */
.blog-post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-top: 1px solid #eee;
    margin-top: 3rem;
}

.blog-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.blog-tag {
    background: var(--bg-light);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 500;
}

.blog-share {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.blog-share-count {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.blog-share-icons {
    display: flex;
    gap: 0.75rem;
}

.share-icon {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    color: var(--text-dark);
    border-radius: 50%;
    transition: var(--transition);
}

.share-icon:hover {
    background: var(--primary-color);
    color: var(--text-white);
}

/* About the Author Section */
.blog-author-section {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--bg-light);
    border-radius: 10px;
    margin-bottom: 3rem;
}

.blog-author-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.5rem;
}

.blog-author-title {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-author-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.blog-author-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Blog Post Navigation */
.blog-post-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-bottom: 3rem;
}

.blog-nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
}

.blog-nav-link:hover {
    color: var(--primary-color);
}

.blog-nav-link i {
    font-size: 0.9rem;
}

/* Comment Section */
.blog-comment-section {
    margin-top: 3rem;
}

.blog-comment-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 2rem;
    color: var(--text-dark);
    text-align: center;
}

.blog-comment-form {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 10px;
}

.blog-comment-form .form-group {
    margin-bottom: 1.5rem;
}

.blog-comment-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.blog-comment-form input[type="text"],
.blog-comment-form input[type="email"],
.blog-comment-form input[type="url"],
.blog-comment-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition);
    box-sizing: border-box;
}

.blog-comment-form textarea {
    resize: vertical;
    min-height: 150px;
}

.blog-comment-form input:focus,
.blog-comment-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(249, 113, 80, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.blog-comment-form .checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.blog-comment-form .checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
    cursor: pointer;
}

.blog-comment-form .checkbox-group label {
    margin-bottom: 0;
    font-size: 0.85rem;
    line-height: 1.5;
    cursor: pointer;
}

.comment-submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-yellow));
    color: var(--text-white);
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(249, 113, 80, 0.3);
}

.comment-submit-btn:hover {
    background: linear-gradient(135deg, var(--accent-yellow), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 200, 87, 0.5);
}

/* Blog Sidebar */
.blog-sidebar {
    min-width: 0;
}

.blog-widget {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
}

.blog-widget:last-child {
    margin-bottom: 0;
}

.blog-widget-title {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    letter-spacing: 0.5px;
}

.blog-widget-content {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
}

.blog-widget-comments {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comment-item {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-cloud-item {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--secondary-color);
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.85rem;
    color: var(--text-dark);
    transition: var(--transition);
    cursor: pointer;
}

.tag-cloud-item:hover {
    background: var(--primary-color);
    color: var(--text-white);
    border-color: var(--primary-color);
}

/* ========================================
    BLOG PAGE RESPONSIVE
======================================== */

@media (max-width: 1024px) {
    .blog-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .blog-title {
        font-size: 2.5rem;
    }

    .blog-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .blog-meta-items {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .blog-banner-section {
        height: 400px;
        margin-top: 60px;
    }

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

    .blog-meta-items {
        flex-direction: column;
        gap: 1rem;
        text-align: left;
    }

    .blog-banner-content {
        flex-direction: row;
        text-align: left;
    }

    .blog-post-heading {
        font-size: 1.5rem;
    }

    .blog-post-footer {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .blog-post-navigation {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .blog-banner-section {
        height: 350px;
    }

    .blog-title {
        font-size: 1.5rem;
    }

    .blog-date {
        min-width: 60px;
        padding: 0.75rem;
    }

    .blog-date-day {
        font-size: 2rem;
    }

    .blog-meta-items {
        font-size: 0.85rem;
    }

    .blog-comment-form {
        padding: 1.5rem;
    }

    .blog-widget {
        padding: 1.5rem;
    }
}

/* ========================================
   ENQUIRY FORM MESSAGES & VALIDATION
======================================== */

.tnt-enquiry-message {
    padding: 15px 20px;
    border-radius: 6px;
    margin: 15px 0;
    font-weight: 500;
    text-align: center;
    display: none;
    transition: opacity 0.5s ease, transform 0.5s ease;
    opacity: 0;
    transform: translateY(-10px);
}

.tnt-enquiry-message.tnt-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
    opacity: 1;
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tnt-enquiry-message.tnt-success i {
    margin-right: 8px;
    color: #155724;
}

.tnt-enquiry-message.tnt-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
    opacity: 1;
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tnt-enquiry-message.tnt-error i {
    margin-right: 8px;
    color: #721c24;
}

/* Field Errors */
.tnt-field-error {
    border-color: #dc3232 !important;
    box-shadow: 0 0 0 3px rgba(220, 50, 50, 0.1) !important;
}

.tnt-field-error-message {
    color: #dc3232;
    font-size: 12px;
    margin-top: 5px;
    font-weight: 500;
    display: block;
}

/* Enquiry Form Button Loading States */
.submit-enquiry-btn {
    position: relative;
}

.submit-enquiry-btn .btn-text,
.submit-enquiry-btn .btn-loading {
    display: inline-block;
}

.submit-enquiry-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.submit-enquiry-btn:disabled .btn-text {
    display: none;
}

.submit-enquiry-btn:disabled .btn-loading {
    display: inline-block;
}

/* Responsive Design for Enquiry Messages */
@media (max-width: 768px) {
    .tnt-enquiry-message {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .tnt-field-error-message {
        font-size: 11px;
    }
}

/* ========================================
   DESTINATIONS PAGINATION FIXES/OVERRIDES
   - Ensure disabled class works on <a>/<span>
   - Make page number buttons circular and clearly active
======================================== */
.pagination .page-btn {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 50%;
}

.pagination .page-btn.active {
    border-radius: 50%;
}

.pagination-btn.disabled,
.pagination-btn.disabled:hover {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f5f5f5;
    color: #999;
    border-color: #e0e0e0;
    pointer-events: none;
}

/* ========================================
   CONTACT PAGE STYLES
======================================== */
.contact-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-wrapper {
    background: var(--secondary-color);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-form-header {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.contact-form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
}

.contact-form-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.contact-form-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-form label {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--text-dark);
    background: var(--secondary-color);
    transition: var(--transition);
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(249, 113, 80, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-submit-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-yellow));
    color: var(--text-white);
    padding: 0.9rem 2.5rem;
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    align-self: flex-start;
    margin-top: 0.5rem;
    box-shadow: 0 4px 20px rgba(249, 113, 80, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-submit-btn:hover {
    background: linear-gradient(135deg, var(--accent-yellow), var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(255, 200, 87, 0.5);
}

.contact-submit-btn:active {
    transform: translateY(-1px);
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-info-section {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-info-section:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.contact-info-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.contact-info-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.contact-info-text {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0 0 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-info-text:last-of-type {
    margin-bottom: 0;
}

.contact-info-text i {
    color: var(--primary-color);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.contact-map {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 1rem;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive Design for Contact Page */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-form-wrapper {
        padding: 2.5rem;
    }
    
    .contact-info-wrapper {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    /* Contact Section - Mobile */
    .contact-section {
        padding: 2.5rem 1rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
        border-radius: var(--radius-md);
    }
    
    .contact-form-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-form-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        line-height: 1.55;
    }
    
    .contact-form .form-group {
        margin-bottom: 1rem;
    }
    
    .contact-form .form-group label {
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
    }
    
    .contact-form .form-group input,
    .contact-form .form-group textarea {
        padding: 0.85rem 1rem;
        font-size: 16px;
        border-radius: var(--radius-sm);
    }
    
    .contact-form .form-group textarea {
        min-height: 120px;
    }
    
    .contact-submit-btn {
        width: 100%;
        padding: 1rem;
        font-size: 0.95rem;
        border-radius: var(--radius-sm);
    }
    
    /* Contact Info - Mobile */
    .contact-info-wrapper {
        gap: 1.5rem;
    }
    
    .contact-info-section {
        padding: 1.25rem;
        border-radius: var(--radius-md);
    }
    
    .contact-info-title {
        font-size: 1.15rem;
        margin-bottom: 1rem;
    }
    
    .contact-info-item {
        padding: 0.75rem 0;
    }
    
    .contact-info-item i {
        font-size: 1.1rem;
        width: 20px;
    }
    
    .contact-info-item span {
        font-size: 0.9rem;
    }
    
    .contact-map {
        height: 220px;
        border-radius: var(--radius-sm);
    }
}

@media (max-width: 480px) {
    /* Contact Section - Extra Compact */
    .contact-section {
        padding: 2rem 0.75rem;
    }
    
    .contact-wrapper {
        gap: 1.5rem;
    }
    
    .contact-form-wrapper {
        padding: 1.25rem;
    }
    
    .contact-form-title {
        font-size: 1.35rem;
    }
    
    .contact-form-description {
        font-size: 0.85rem;
    }
    
    .contact-form .form-group {
        margin-bottom: 0.85rem;
    }
    
    .contact-form .form-group label {
        font-size: 0.8rem;
    }
    
    .contact-form .form-group input,
    .contact-form .form-group textarea {
        padding: 0.75rem 0.85rem;
    }
    
    .contact-submit-btn {
        padding: 0.9rem;
        font-size: 0.9rem;
    }
    
    .contact-info-section {
        padding: 1rem;
    }
    
    .contact-info-title {
        font-size: 1.05rem;
    }
    
    .contact-info-item span {
        font-size: 0.85rem;
    }
    
    .contact-map {
        height: 180px;
    }
}

/* ========================================
    BLOG LISTING PAGE STYLES
======================================== */

/* Blog Listing Section */
.blog-listing-section {
    background: var(--secondary-color);
    padding: 5rem 2rem;
}

/* Blog Listing Grid - 3 columns */
.blog-listing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Blog Listing Card */
.blog-listing-card {
    position: relative;
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    background: var(--secondary-color);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-listing-card:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow: var(--shadow-xl);
    text-decoration: none;
    color: inherit;
    border-color: var(--primary-light);
}

/* Blog Image Wrapper */
.blog-listing-image-wrapper {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    background: var(--bg-light);
}

.blog-listing-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-listing-card:hover .blog-listing-image {
    transform: scale(1.1);
}

/* Blog Hover Overlay */
.blog-listing-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    padding: 2rem;
}

.blog-listing-card:hover .blog-listing-overlay {
    opacity: 1;
    visibility: visible;
}

/* Blog Overlay Content */
.blog-listing-overlay-content {
    text-align: center;
    color: var(--text-white);
    width: 100%;
}

.blog-listing-overlay-content .blog-listing-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

.blog-listing-card:hover .blog-listing-overlay-content .blog-listing-title {
    transform: translateY(0);
}

.blog-listing-meta {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
    font-size: 0.9rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s;
}

.blog-listing-card:hover .blog-listing-meta {
    opacity: 1;
    transform: translateY(0);
}

.blog-listing-date,
.blog-listing-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-white);
}

.blog-listing-date i,
.blog-listing-author i {
    color: var(--primary-color);
    font-size: 1rem;
}

/* No Blogs Message */
.no-blogs {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

/* ========================================
    BLOG LISTING PAGE RESPONSIVE
======================================== */

@media (max-width: 1024px) {
    .blog-listing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .blog-listing-image-wrapper {
        height: 300px;
    }
}

@media (max-width: 768px) {
    /* Blog Listing Section - Mobile */
    .blog-listing-section {
        padding: 2.5rem 1rem;
    }

    .blog-listing-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .blog-listing-card {
        border-radius: var(--radius-md);
    }
    
    .blog-listing-card:hover {
        transform: translateY(-6px);
    }

    .blog-listing-image-wrapper {
        height: 220px;
    }
    
    .blog-listing-image {
        border-radius: var(--radius-md);
    }

    .blog-listing-overlay {
        padding: 1.25rem;
        border-radius: var(--radius-md);
    }

    .blog-listing-overlay-content .blog-listing-title {
        font-size: 1.15rem;
        margin-bottom: 0.75rem;
        line-height: 1.35;
    }

    .blog-listing-meta {
        font-size: 0.82rem;
        gap: 0.75rem;
        flex-wrap: wrap;
    }
    
    .blog-listing-date,
    .blog-listing-author {
        display: flex;
        align-items: center;
        gap: 0.4rem;
    }
    
    .blog-listing-date i,
    .blog-listing-author i {
        font-size: 0.9rem;
    }

    /* Pagination - already styled, add specific blog page adjustments */
    .blog-listing-section .pagination {
        gap: 0.35rem;
        margin-top: 2rem;
    }

    .blog-listing-section .pagination-btn {
        width: 38px;
        height: 38px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    /* Blog Listing Section - Extra Compact */
    .blog-listing-section {
        padding: 2rem 0.75rem;
    }
    
    .blog-listing-grid {
        gap: 1rem;
    }
    
    .blog-listing-card {
        border-radius: var(--radius);
    }

    .blog-listing-image-wrapper {
        height: 200px;
    }

    .blog-listing-overlay {
        padding: 1rem;
    }

    .blog-listing-overlay-content .blog-listing-title {
        font-size: 1.05rem;
        margin-bottom: 0.6rem;
    }

    .blog-listing-meta {
        font-size: 0.78rem;
        gap: 0.6rem;
    }
    
    .blog-listing-date i,
    .blog-listing-author i {
        font-size: 0.85rem;
    }

    .blog-listing-section .pagination-btn {
        width: 34px;
        height: 34px;
        font-size: 0.8rem;
    }
}

/* ========================================
    BLOG DETAIL PAGE STYLES
======================================== */

/* Blog Detail Banner Section */
.blog-detail-banner {
    margin-top: 70px;
    height: 500px;
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?w=1920&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-detail-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.blog-detail-banner-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    padding: 0 2rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    color: var(--text-white);
}

.blog-detail-meta-left {
    flex-shrink: 0;
}

.blog-detail-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 5px;
    min-width: 80px;
}

.blog-detail-date-day {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.blog-detail-date-month {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.blog-detail-meta-right {
    flex: 1;
}

.blog-detail-meta-items {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.blog-detail-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-detail-meta-item i {
    opacity: 0.8;
}

.blog-detail-title {
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

/* Blog Detail Content Section */
.blog-detail-content-section {
    padding: 4rem 0;
    background: var(--secondary-color);
}

.blog-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.blog-detail-main {
    min-width: 0;
}

/* Blog Post Content Styling */
.blog-detail-post-content {
    background: var(--secondary-color);
    padding: 0;
}

/* Hide reading time */
.blog-detail-post-content .tnt-reading-time-info,
.tnt-reading-time-info,
.tnt-reading-time {
    display: none !important;
}

.blog-detail-post-content p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.blog-detail-post-content p:last-child {
    margin-bottom: 0;
}

.blog-detail-post-content strong {
    font-weight: 600;
    color: var(--text-dark);
}

.blog-detail-post-content h1,
.blog-detail-post-content h2,
.blog-detail-post-content h3,
.blog-detail-post-content h4,
.blog-detail-post-content h5,
.blog-detail-post-content h6 {
    margin: 2.5rem 0 1.5rem;
    color: var(--text-dark);
    line-height: 1.3;
    font-weight: 700;
}

.blog-detail-post-content h1 {
    font-size: 2rem;
}

.blog-detail-post-content h2 {
    font-size: 1.8rem;
}

.blog-detail-post-content h3 {
    font-size: 1.5rem;
}

.blog-detail-post-content h4 {
    font-size: 1.3rem;
}

.blog-detail-post-content h5,
.blog-detail-post-content h6 {
    font-size: 1.1rem;
}

/* Lists */
.blog-detail-post-content ul,
.blog-detail-post-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.blog-detail-post-content ul {
    list-style-type: disc;
}

.blog-detail-post-content ol {
    list-style-type: decimal;
}

.blog-detail-post-content ul li,
.blog-detail-post-content ol li {
    margin-bottom: 0.75rem;
    padding-left: 0.5rem;
}

.blog-detail-post-content ul ul,
.blog-detail-post-content ol ol,
.blog-detail-post-content ul ol,
.blog-detail-post-content ol ul {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
}

/* Images */
.blog-detail-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 2rem 0;
    display: block;
}

.blog-detail-post-content img.alignleft {
    float: left;
    margin: 0 2rem 1rem 0;
}

.blog-detail-post-content img.alignright {
    float: right;
    margin: 0 0 1rem 2rem;
}

.blog-detail-post-content img.aligncenter {
    display: block;
    margin: 2rem auto;
}

/* Blockquotes */
.blog-detail-post-content blockquote {
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    padding: 2rem;
    margin: 2.5rem 0;
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
}

/* Links */
.blog-detail-post-content a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: var(--transition);
}

.blog-detail-post-content a:hover {
    color: #e65a3a;
}

/* Blog Detail Sidebar */
.blog-detail-sidebar {
    min-width: 0;
}

.blog-detail-widget {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
}

.blog-detail-widget:last-child {
    margin-bottom: 0;
}

.blog-detail-widget-title {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    letter-spacing: 0.5px;
}

/* Tag Cloud */
.blog-detail-tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.blog-detail-tag-item {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--secondary-color);
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.85rem;
    color: var(--text-dark);
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
}

.blog-detail-tag-item:hover {
    background: var(--primary-color);
    color: var(--text-white);
    border-color: var(--primary-color);
    text-decoration: none;
}

/* Recent Comments */
.blog-detail-comments-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.blog-detail-comment-item {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.blog-detail-comment-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.blog-detail-comment-item a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.blog-detail-comment-item a:hover {
    color: var(--primary-color);
}

/* ========================================
    BLOG DETAIL PAGE RESPONSIVE
======================================== */

@media (max-width: 1024px) {
    .blog-detail-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .blog-detail-title {
        font-size: 2.5rem;
    }

    .blog-detail-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .blog-detail-meta-items {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    /* Blog Detail Banner - Mobile */
    .blog-detail-banner {
        height: 350px;
        margin-top: 60px;
    }
    
    .blog-detail-banner-content {
        flex-direction: row;
        text-align: left;
        gap: 1.25rem;
        padding: 0 1rem;
    }

    .blog-detail-title {
        font-size: 1.65rem;
        line-height: 1.3;
    }
    
    .blog-detail-date {
        min-width: 65px;
        padding: 0.85rem 0.65rem;
        border-radius: var(--radius-sm);
    }
    
    .blog-detail-date-day {
        font-size: 2rem;
    }
    
    .blog-detail-date-month {
        font-size: 0.8rem;
    }

    .blog-detail-meta-items {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.75rem 1.25rem;
        text-align: left;
    }
    
    .blog-detail-meta-item {
        font-size: 0.85rem;
    }
    
    .blog-detail-meta-item i {
        font-size: 0.9rem;
    }

    /* Blog Detail Content - Mobile */
    .blog-detail-content-section {
        padding: 2rem 0;
    }
    
    .blog-detail-wrapper {
        padding: 0 1rem;
        gap: 2rem;
    }
    
    .blog-detail-main {
        padding: 0;
    }
    
    .blog-detail-post-content {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .blog-detail-post-content h1 {
        font-size: 1.5rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .blog-detail-post-content h2 {
        font-size: 1.35rem;
        margin-top: 1.75rem;
        margin-bottom: 0.85rem;
    }

    .blog-detail-post-content h3 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .blog-detail-post-content p {
        margin-bottom: 1.25rem;
    }
    
    .blog-detail-post-content img {
        margin: 1.25rem 0;
        border-radius: var(--radius-sm);
    }
    
    .blog-detail-post-content ul,
    .blog-detail-post-content ol {
        padding-left: 1.25rem;
        margin: 1rem 0;
    }
    
    .blog-detail-post-content li {
        margin-bottom: 0.5rem;
    }
    
    .blog-detail-post-content blockquote {
        padding: 1.25rem;
        margin: 1.5rem 0;
        border-radius: var(--radius-sm);
        font-size: 1rem;
    }

    /* Blog Sidebar - Mobile */
    .blog-detail-sidebar {
        margin-top: 1rem;
    }
    
    .blog-detail-widget {
        padding: 1.25rem;
        border-radius: var(--radius-md);
    }
    
    .blog-detail-widget-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    /* Blog Detail Banner - Extra Compact */
    .blog-detail-banner {
        height: 300px;
        margin-top: 55px;
    }
    
    .blog-detail-banner-content {
        gap: 1rem;
        padding: 0 0.75rem;
    }

    .blog-detail-title {
        font-size: 1.4rem;
    }

    .blog-detail-date {
        min-width: 55px;
        padding: 0.65rem 0.5rem;
    }

    .blog-detail-date-day {
        font-size: 1.75rem;
    }
    
    .blog-detail-date-month {
        font-size: 0.75rem;
    }

    .blog-detail-meta-items {
        gap: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .blog-detail-meta-item {
        font-size: 0.8rem;
    }

    /* Blog Detail Content - Extra Compact */
    .blog-detail-content-section {
        padding: 1.5rem 0;
    }

    .blog-detail-wrapper {
        padding: 0 0.75rem;
    }
    
    .blog-detail-post-content {
        font-size: 0.9rem;
    }

    .blog-detail-post-content h1 {
        font-size: 1.35rem;
    }

    .blog-detail-post-content h2 {
        font-size: 1.2rem;
    }

    .blog-detail-post-content h3 {
        font-size: 1.1rem;
    }

    .blog-detail-post-content img {
        margin: 1rem 0;
    }

    .blog-detail-post-content blockquote {
        padding: 1rem;
        margin: 1.25rem 0;
        font-size: 0.95rem;
    }
    
    .blog-detail-widget {
        padding: 1rem;
    }
    
    .blog-detail-widget-title {
        font-size: 1rem;
    }
}

/* ========================================
   UTILITY CLASSES FOR INLINE STYLES
   ======================================== */

/* Honeypot field - hidden from users */
.tnt-honeypot-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

/* Hidden elements */
.tnt-hidden {
    display: none;
}

.tnt-hidden-inline {
    display: none !important;
}

/* Date range info - initially hidden */
.date-range-info {
    display: none;
}

.date-range-info.tnt-visible {
    display: block;
}

/* Booking error - initially hidden */
.booking-error {
    display: none;
}

.booking-error.tnt-visible {
    display: block;
}

/* Enquiry message - initially hidden */
.tnt-enquiry-message {
    display: none;
    margin: 15px 0;
    padding: 10px;
    border-radius: 5px;
}

.tnt-enquiry-message.tnt-visible {
    display: block;
}

/* Review message - initially hidden */
.tnt-review-message {
    display: none;
    margin: 15px 0;
    padding: 10px;
    border-radius: 5px;
}

.tnt-review-message.tnt-visible {
    display: block;
}

/* Button loading state - initially hidden */
.btn-loading {
    display: none !important;
}

.btn-loading.tnt-visible {
    display: inline-block !important;
}

/* Ensure submit review button loading state is properly hidden by default */
.submit-review-btn .btn-loading {
    display: none !important;
}

.submit-review-btn .btn-loading.tnt-visible {
    display: inline-block !important;
}

/* Rating text */
.tnt-rating-text {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #666;
}

/* Form help text */
.form-help-text {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 0.85rem;
}

/* File input - hidden */
.tnt-file-input-hidden {
    display: none;
}

/* Photo preview - initially hidden */
.tnt-photo-preview {
    display: none;
    margin-top: 10px;
    position: relative;
    text-align: center;
}

.tnt-photo-preview.tnt-visible {
    display: block;
}

/* Photo preview wrapper */
.tnt-photo-preview-wrapper {
    position: relative;
    display: inline-block;
}

/* Photo preview image */
.tnt-photo-preview-img {
    max-width: 80px;
    height: 80px;
    width: 80px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #e1e1e1;
}

/* Remove photo button - styles already in .tnt-remove-photo but ensuring positioning */
.tnt-remove-photo {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #b32d2e;
    color: white;
    border: 2px solid white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    cursor: pointer;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    padding: 0;
    margin: 0;
}

/* Video elements - initially hidden */
.tour-video {
    display: none;
}

.tour-video.tnt-visible {
    display: block;
}

.play-button {
    display: none;
}

.play-button.tnt-visible {
    display: flex;
}

/* Background image utility classes */
.hero-section-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-banner-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.blog-detail-banner-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Section background */
.section-bg-light {
    background: var(--bg-light);
}

/* Iframe border */
.tnt-iframe-no-border {
    border: 0;
}

/* Breadcrumb styles */
.tnt-breadcrumb {
    margin-bottom: 1.5rem;
}

.tnt-breadcrumb-link {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.tnt-breadcrumb-separator {
    margin-right: 0.5rem;
}

/* No tags message */
.tnt-no-tags-message {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Heart icon color */
.tnt-heart-icon {
    color: var(--primary-color);
}

/* ========================================
    ABOUT US PAGE CONTENT SECTION
======================================== */
.about-content-section {
    padding: 4rem 0;
}

.about-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

/* Style WordPress content elements */
.about-content-wrapper p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-medium);
}

.about-content-wrapper h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.about-content-wrapper h2:first-child {
    margin-top: 0;
}

.about-content-wrapper h3 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.about-content-wrapper h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

/* Images in content */
.about-content-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    margin: 2rem 0;
    box-shadow: var(--shadow-md);
}

.about-content-wrapper img.alignleft {
    float: left;
    margin-right: 2rem;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}

.about-content-wrapper img.alignright {
    float: right;
    margin-left: 2rem;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}

.about-content-wrapper img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Lists */
.about-content-wrapper ul,
.about-content-wrapper ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
    color: var(--text-medium);
    line-height: 1.8;
}

.about-content-wrapper ul li,
.about-content-wrapper ol li {
    margin-bottom: 0.75rem;
}

.about-content-wrapper ul {
    list-style-type: disc;
}

.about-content-wrapper ol {
    list-style-type: decimal;
}

/* Links */
.about-content-wrapper a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.about-content-wrapper a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Blockquotes */
.about-content-wrapper blockquote {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    border-left: 4px solid var(--primary-color);
    background: var(--bg-light);
    border-radius: var(--radius);
    font-style: italic;
    color: var(--text-medium);
}

/* Tables */
.about-content-wrapper table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    box-shadow: var(--shadow-sm);
    border-radius: var(--radius);
    overflow: hidden;
}

.about-content-wrapper table th,
.about-content-wrapper table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.about-content-wrapper table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

.about-content-wrapper table tr:last-child td {
    border-bottom: none;
}

/* Clear floats */
.about-content-wrapper::after {
    content: "";
    display: table;
    clear: both;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    /* About Content Section - Mobile */
    .about-content-section {
        padding: 2.5rem 0;
    }
    
    .about-content-wrapper {
        padding: 0 1rem;
    }
    
    .about-content-wrapper p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1.25rem;
    }
    
    .about-content-wrapper img.alignleft,
    .about-content-wrapper img.alignright {
        float: none;
        display: block;
        margin: 1.25rem auto;
        max-width: 100%;
    }
    
    .about-content-wrapper img {
        border-radius: var(--radius-sm);
    }
    
    .about-content-wrapper h2 {
        font-size: 1.45rem;
        margin-top: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .about-content-wrapper h3 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
        margin-bottom: 0.85rem;
    }
    
    .about-content-wrapper h4 {
        font-size: 1.1rem;
        margin-top: 1.25rem;
    }
    
    .about-content-wrapper ul,
    .about-content-wrapper ol {
        padding-left: 1.25rem;
        margin: 1rem 0;
    }
    
    .about-content-wrapper li {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }
    
    .about-content-wrapper blockquote {
        padding: 1.25rem;
        margin: 1.5rem 0;
        font-size: 1rem;
        border-radius: var(--radius-sm);
    }
    
    .about-content-wrapper table {
        font-size: 0.9rem;
    }
    
    .about-content-wrapper th,
    .about-content-wrapper td {
        padding: 0.75rem;
    }
}

@media (max-width: 480px) {
    /* About Content Section - Extra Compact */
    .about-content-section {
        padding: 2rem 0;
    }
    
    .about-content-wrapper {
        padding: 0 0.75rem;
    }
    
    .about-content-wrapper p {
        font-size: 0.9rem;
        line-height: 1.65;
        margin-bottom: 1rem;
    }
    
    .about-content-wrapper h2 {
        font-size: 1.3rem;
        margin-top: 1.5rem;
    }
    
    .about-content-wrapper h3 {
        font-size: 1.1rem;
        margin-top: 1.25rem;
    }
    
    .about-content-wrapper h4 {
        font-size: 1rem;
    }
    
    .about-content-wrapper ul,
    .about-content-wrapper ol {
        padding-left: 1rem;
    }
    
    .about-content-wrapper li {
        font-size: 0.9rem;
    }
    
    .about-content-wrapper blockquote {
        padding: 1rem;
        margin: 1.25rem 0;
        font-size: 0.95rem;
    }
    
    .about-content-wrapper table {
        font-size: 0.85rem;
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .about-content-wrapper th,
    .about-content-wrapper td {
        padding: 0.6rem;
        white-space: nowrap;
    }
}

/* ========================================
    TEAMS SECTION (About Us Page)
======================================== */
.teams-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.teams-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.teams-section .section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.teams-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.teams-section .section-header:hover .section-title::after {
    width: 120px;
}

.teams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.team-member-card {
    background: var(--secondary-color);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.team-member-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.team-member-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.team-member-card:hover::before {
    transform: scaleX(1);
}

.team-member-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--bg-light);
    position: relative;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.team-member-card:hover .team-member-image {
    border-color: var(--primary-light);
    box-shadow: 0 10px 25px rgba(249, 113, 80, 0.2);
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-member-card:hover .team-member-image img {
    transform: scale(1.08);
}

.team-member-placeholder {
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.team-member-initial {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.team-member-info {
    margin-top: 1rem;
}

.team-member-name {
    font-size: 1.3rem !important;
    font-weight: 600 !important;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    margin-top: 0;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.team-member-position {
    font-size: 0.95rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    font-weight: 500;
    font-style: normal;
    letter-spacing: 0.01em;
}

.team-member-social {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    color: var(--text-medium);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.2rem;
    border: 2px solid transparent;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.social-link.social-instagram:hover {
    background: var(--primary-color);
    color: var(--text-white);
    border-color: transparent;
}

.social-link.social-youtube:hover {
    background: var(--primary-color);
    color: var(--text-white);
    border-color: transparent;
}

.social-link.social-twitter:hover {
    background: var(--primary-color);
    color: var(--text-white);
    border-color: transparent;
}

.social-link.social-linkedin:hover {
    background: var(--primary-color);
    color: var(--text-white);
    border-color: transparent;
}

/* Responsive Teams Section */
@media (max-width: 768px) {
    /* Teams Section - Mobile */
    .teams-section {
        padding: 3rem 1rem;
    }
    
    .teams-section .section-header {
        margin-bottom: 2.5rem;
    }
    
    .teams-section .section-title {
        font-size: 2rem;
    }
    
    .teams-section .section-title::after {
        width: 60px;
        height: 4px;
    }
    
    .teams-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
        margin-top: 2rem;
    }
    
    .team-member-card {
        padding: 1.5rem 1rem;
        border-radius: var(--radius-lg);
    }
    
    .team-member-card:hover {
        transform: translateY(-5px);
    }
    
    .team-member-image {
        width: 100px;
        height: 100px;
        margin-bottom: 1rem;
        border-width: 3px;
    }
    
    .team-member-initial {
        font-size: 2.25rem;
    }
    
    .team-member-info {
        margin-top: 0.5rem;
    }
    
    .team-member-name {
        font-size: 1rem !important;
        margin-bottom: 0.35rem;
    }
    
    .team-member-position {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .team-member-social {
        gap: 0.75rem;
        margin-top: 1rem;
        padding-top: 1rem;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    /* Teams Section - Extra Compact */
    .teams-section {
        padding: 2.5rem 0.75rem;
    }
    
    .teams-section .section-header {
        margin-bottom: 2rem;
    }
    
    .teams-section .section-title {
        font-size: 1.65rem;
    }
    
    .teams-section .section-title::after {
        width: 50px;
        height: 3px;
    }
    
    .teams-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-top: 1.5rem;
    }
    
    .team-member-card {
        padding: 1.5rem 1.25rem;
        display: flex;
        flex-direction: row;
        text-align: left;
        gap: 1rem;
        align-items: center;
    }
    
    .team-member-card::before {
        height: 100%;
        width: 4px;
        left: 0;
        right: auto;
        transform: scaleY(0);
        transform-origin: top;
    }
    
    .team-member-card:hover::before {
        transform: scaleY(1);
    }
    
    .team-member-image {
        width: 80px;
        height: 80px;
        margin: 0;
        flex-shrink: 0;
    }
    
    .team-member-initial {
        font-size: 1.75rem;
    }
    
    .team-member-info {
        flex: 1;
        margin-top: 0;
    }
    
    .team-member-name {
        font-size: 1.05rem !important;
        margin-bottom: 0.25rem;
    }
    
    .team-member-position {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }
    
    .team-member-social {
        justify-content: flex-start;
        gap: 0.6rem;
        margin-top: 0.75rem;
        padding-top: 0.75rem;
    }
    
    .social-link {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
}

/* Field error message (for JavaScript) */
.tnt-field-error-message {
    color: #dc3232;
    font-size: 12px;
    margin-top: 5px;
}

/* Contact form message (for JavaScript) */
.tnt-contact-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 5px;
    display: none;
}

.tnt-contact-message.tnt-visible {
    display: block;
}

/* Loading fade animation for pagination */
.tnt-loading-fade {
    transition: opacity 250ms ease;
    opacity: 0.2;
}

/* ========================================
    BOOKING PAGE STYLES
======================================== */
.booking-page-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.booking-page-wrapper {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    align-items: start;
}

/* Booking Form Column */
.booking-form-column {
    background: var(--secondary-color);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
}

.booking-form-container {
    max-width: 100%;
}

.booking-form-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.booking-page-form {
    width: 100%;
}

/* Form Sections */
.form-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 2rem;
}

.form-section-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

/* Form Rows (Two Columns) */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-row:last-child {
    margin-bottom: 0;
}

/* Form Groups */
.booking-page-form .form-group {
    margin-bottom: 1.5rem;
}

.booking-page-form .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
}

.booking-page-form .form-group input[type="text"],
.booking-page-form .form-group input[type="email"],
.booking-page-form .form-group input[type="tel"],
.booking-page-form .form-group select,
.booking-page-form .form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition);
    background-color: var(--secondary-color);
    color: var(--text-dark);
}

.booking-page-form .form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234a4a4a' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.875rem center;
    padding-right: 2.5rem;
}

.booking-page-form .form-group textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

.booking-page-form .form-group input:focus,
.booking-page-form .form-group select:focus,
.booking-page-form .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(249, 113, 80, 0.1);
}

.form-help-text {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Submit Button */
.submit-booking-btn {
    width: 100%;
    padding: 1.125rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-yellow));
    color: var(--text-white);
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 20px rgba(249, 113, 80, 0.3);
}

.submit-booking-btn:hover {
    background: linear-gradient(135deg, var(--accent-yellow), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 200, 87, 0.5);
}

.submit-booking-btn:active {
    transform: translateY(0);
}

.submit-booking-btn .btn-loading {
    display: none;
}

.submit-booking-btn .btn-loading.tnt-hidden {
    display: none !important;
}

.submit-booking-btn:disabled .btn-text {
    display: none;
}

.submit-booking-btn:disabled .btn-loading {
    display: flex !important;
    align-items: center;
}

.submit-booking-btn.loading .btn-text {
    display: none;
}

.submit-booking-btn.loading .btn-loading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Booking Summary Column */
.booking-summary-column {
    position: sticky;
    top: 2rem;
}

.booking-summary-box {
    background: var(--secondary-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.summary-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
}

.summary-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.summary-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.summary-tour-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.4;
}

.summary-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-medium);
}

.summary-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.summary-item.summary-price {
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.summary-item.summary-price .summary-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.summary-item.summary-price .summary-value.price-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.summary-divider {
    height: 1px;
    background: var(--border-color);
    margin: 0.5rem 0;
}

/* Booking Message */
.tnt-booking-message {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: var(--radius);
    display: none;
}

.tnt-booking-message.tnt-visible {
    display: block;
}

.tnt-booking-message.tnt-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.tnt-booking-message.tnt-success i {
    margin-right: 0.5rem;
}

.tnt-booking-message.tnt-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.tnt-booking-message.tnt-error i {
    margin-right: 0.5rem;
}

.tnt-booking-message.tnt-hidden {
    display: none;
}

/* Responsive Booking Page */
@media (max-width: 1024px) {
    .booking-page-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .booking-summary-column {
        position: static;
    }
}

@media (max-width: 768px) {
    .booking-page-section {
        padding: 3rem 0;
    }
    
    .booking-form-column {
        padding: 2rem 1.5rem;
    }
    
    .booking-form-title {
        font-size: 1.75rem;
    }
    
    .form-section-title {
        font-size: 1.15rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .booking-summary-box {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .booking-form-column {
        padding: 1.5rem 1rem;
    }
    
    .booking-form-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .form-section {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .submit-booking-btn {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* ========================================
    COMPREHENSIVE MOBILE TYPOGRAPHY SCALING
    Ensures readable, consistent typography
    across all mobile devices
======================================== */

/* Base Typography - Tablet (1024px) */
@media (max-width: 1024px) {
    :root {
        --heading-scale: 0.92;
    }
    
    body {
        font-size: 15px !important;
    }
    
    /* Display/Hero Typography */
    .hero-title,
    .page-banner-title {
        letter-spacing: -0.01em;
    }
}

/* Base Typography - Mobile (768px) */
@media (max-width: 768px) {
    :root {
        --heading-scale: 0.85;
    }
    
    body {
        font-size: 15px !important;
        line-height: 1.6 !important;
    }
    
    /* Global Heading Styles */
    h1, .h1 {
        font-size: 1.75rem !important;
        line-height: 1.25 !important;
        margin-bottom: 0.75rem;
        letter-spacing: -0.02em;
    }
    
    h2, .h2 {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.65rem;
        letter-spacing: -0.01em;
    }
    
    h3, .h3 {
        font-size: 1.25rem !important;
        line-height: 1.35 !important;
        margin-bottom: 0.6rem;
    }
    
    h4, .h4 {
        font-size: 1.1rem !important;
        line-height: 1.4 !important;
        margin-bottom: 0.5rem;
    }
    
    h5, .h5 {
        font-size: 1rem !important;
        line-height: 1.45 !important;
    }
    
    h6, .h6 {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }
    
    /* Paragraph & Body Text */
    p {
        font-size: 0.95rem !important;
        line-height: 1.65 !important;
        margin-bottom: 1rem;
    }
    
    /* Links */
    a {
        font-size: inherit;
    }
    
    /* Lists */
    ul, ol {
        font-size: 0.95rem;
        line-height: 1.6;
        padding-left: 1.25rem;
    }
    
    li {
        margin-bottom: 0.4rem;
    }
    
    /* Form Labels & Inputs */
    label {
        font-size: 0.85rem;
        font-weight: 500;
    }
    
    input, textarea, select {
        font-size: 16px !important; /* Prevents iOS zoom */
    }
    
    /* Buttons */
    button, .btn, [type="submit"] {
        font-size: 0.95rem;
        letter-spacing: 0.01em;
    }
    
    /* Small Text */
    small, .small, .text-small {
        font-size: 0.8rem !important;
    }
    
    /* Captions & Meta */
    .meta, .caption, figcaption {
        font-size: 0.82rem;
        line-height: 1.5;
    }
    
    /* Blockquotes */
    blockquote {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Code */
    code, pre {
        font-size: 0.85rem;
    }
    
    /* Section Titles */
    .section-title {
        font-size: 1.5rem !important;
        letter-spacing: -0.02em;
    }
    
    /* Page/Banner Titles */
    .page-banner-title {
        font-size: 1.65rem !important;
        line-height: 1.25;
    }
    
    /* Tour/Card Titles */
    .tour-title,
    .tour-listing-title,
    .destination-card-title,
    .blog-listing-title {
        font-size: 1.1rem !important;
        line-height: 1.35;
    }
    
    /* Detail Page Titles */
    .tour-detail-title,
    .blog-detail-title {
        font-size: 1.65rem !important;
        line-height: 1.3;
    }
    
    /* Subsection Titles */
    .detail-section-title,
    .what-to-expect-title {
        font-size: 1.35rem !important;
    }
    
    /* Sidebar Titles */
    .sidebar-title,
    .review-box-title,
    .contact-box-title {
        font-size: 1.1rem !important;
    }
    
    /* Widget Titles */
    .widget-title,
    .blog-detail-widget-title {
        font-size: 1.1rem !important;
    }
    
    /* Price Display */
    .price-amount,
    .price-current {
        font-size: 1.35rem !important;
    }
    
    .price-old {
        font-size: 0.85rem !important;
    }
    
    /* Review Text */
    .review-text,
    .tour-review-description {
        font-size: 0.9rem !important;
        line-height: 1.6;
    }
    
    /* Info Items */
    .tour-info-item,
    .blog-listing-meta,
    .blog-detail-meta-item {
        font-size: 0.85rem !important;
    }
    
    /* Footer Typography */
    .footer-section h3 {
        font-size: 1rem !important;
    }
    
    .footer-section p,
    .footer-links a,
    .footer-about-text {
        font-size: 0.9rem !important;
    }
    
    .footer-bottom,
    .footer-bottom p {
        font-size: 0.82rem !important;
    }
}

/* Base Typography - Small Mobile (480px) */
@media (max-width: 480px) {
    :root {
        --heading-scale: 0.78;
    }
    
    body {
        font-size: 14px !important;
        line-height: 1.55 !important;
    }
    
    /* Global Heading Styles - Extra Compact */
    h1, .h1 {
        font-size: 1.5rem !important;
        line-height: 1.2 !important;
        margin-bottom: 0.6rem;
    }
    
    h2, .h2 {
        font-size: 1.3rem !important;
        line-height: 1.25 !important;
        margin-bottom: 0.55rem;
    }
    
    h3, .h3 {
        font-size: 1.15rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.5rem;
    }
    
    h4, .h4 {
        font-size: 1.02rem !important;
        line-height: 1.35 !important;
    }
    
    h5, .h5 {
        font-size: 0.95rem !important;
    }
    
    h6, .h6 {
        font-size: 0.85rem !important;
    }
    
    /* Paragraph & Body Text */
    p {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
        margin-bottom: 0.85rem;
    }
    
    /* Lists */
    ul, ol {
        font-size: 0.9rem;
        padding-left: 1rem;
    }
    
    li {
        margin-bottom: 0.35rem;
    }
    
    /* Form Labels */
    label {
        font-size: 0.8rem;
    }
    
    /* Buttons */
    button, .btn, [type="submit"] {
        font-size: 0.9rem;
    }
    
    /* Small Text */
    small, .small, .text-small {
        font-size: 0.75rem !important;
    }
    
    /* Captions & Meta */
    .meta, .caption, figcaption {
        font-size: 0.78rem;
    }
    
    /* Blockquotes */
    blockquote {
        font-size: 0.95rem;
    }
    
    /* Code */
    code, pre {
        font-size: 0.8rem;
    }
    
    /* Section Titles */
    .section-title {
        font-size: 1.35rem !important;
    }
    
    /* Page/Banner Titles */
    .page-banner-title {
        font-size: 1.4rem !important;
    }
    
    .hero-title {
        font-size: 1.5rem !important;
    }
    
    .hero-subtitle {
        font-size: 0.88rem !important;
    }
    
    /* Tour/Card Titles */
    .tour-title,
    .tour-listing-title,
    .destination-card-title,
    .blog-listing-title {
        font-size: 1rem !important;
    }
    
    /* Detail Page Titles */
    .tour-detail-title,
    .blog-detail-title {
        font-size: 1.4rem !important;
    }
    
    /* Subsection Titles */
    .detail-section-title,
    .what-to-expect-title {
        font-size: 1.2rem !important;
    }
    
    /* Sidebar Titles */
    .sidebar-title,
    .review-box-title,
    .contact-box-title {
        font-size: 1rem !important;
    }
    
    /* Widget Titles */
    .widget-title,
    .blog-detail-widget-title {
        font-size: 1rem !important;
    }
    
    /* Price Display */
    .price-amount,
    .price-current {
        font-size: 1.2rem !important;
    }
    
    .price-old {
        font-size: 0.8rem !important;
    }
    
    /* Review Text */
    .review-text,
    .tour-review-description {
        font-size: 0.88rem !important;
    }
    
    /* Info Items */
    .tour-info-item,
    .blog-listing-meta,
    .blog-detail-meta-item {
        font-size: 0.8rem !important;
    }
    
    /* Footer Typography */
    .footer-section h3 {
        font-size: 0.95rem !important;
    }
    
    .footer-section p,
    .footer-links a,
    .footer-about-text {
        font-size: 0.85rem !important;
    }
    
    .footer-bottom,
    .footer-bottom p {
        font-size: 0.78rem !important;
    }
    
    /* Navigation */
    .nav-menu li a {
        font-size: 1rem !important;
    }
    
    .detail-nav-menu .nav-link {
        font-size: 0.8rem !important;
    }
}

/* Extra Small Devices (360px and below) */
@media (max-width: 360px) {
    body {
        font-size: 13px !important;
    }
    
    h1, .h1 {
        font-size: 1.35rem !important;
    }
    
    h2, .h2 {
        font-size: 1.2rem !important;
    }
    
    h3, .h3 {
        font-size: 1.08rem !important;
    }
    
    p {
        font-size: 0.88rem !important;
    }
    
    /* Search Form - Ultra Compact */
    .search-form {
        padding: 0.65rem;
        gap: 0.4rem;
        margin: 0 0.5rem;
        width: calc(100% - 1rem);
    }
    
    .form-group label {
        font-size: 0.52rem;
        margin-bottom: 0.12rem;
    }
    
    .form-group input,
    .form-group select {
        padding: 0.4rem 0.45rem;
        font-size: 0.68rem;
    }
    
    .form-group input::placeholder {
        font-size: 0.65rem;
    }
    
    .search-btn {
        padding: 0.45rem;
        font-size: 0.7rem;
    }
    
    /* Reviews - Ultra Compact */
    .reviews-section {
        padding: 1.25rem 0.35rem;
    }
    
    .review-card {
        padding: 0.85rem 0.75rem;
    }
    
    .quote-icon {
        font-size: 1.25rem;
    }
    
    .review-text {
        font-size: 0.72rem;
        line-height: 1.45;
        margin-bottom: 0.7rem;
    }
    
    .reviewer-avatar {
        width: 32px;
        height: 32px;
    }
    
    .reviewer-details h4 {
        font-size: 0.68rem;
    }
    
    .reviewer-rating i {
        font-size: 0.55rem;
    }
    
    .reviewer-role {
        font-size: 0.62rem;
    }
    
    .section-title {
        font-size: 1.25rem !important;
    }
    
    .hero-title {
        font-size: 1.35rem !important;
    }
    
    .page-banner-title {
        font-size: 1.25rem !important;
    }
    
    .tour-detail-title,
    .blog-detail-title {
        font-size: 1.25rem !important;
    }
    
    .detail-section-title {
        font-size: 1.1rem !important;
    }
    
    .tour-title,
    .tour-listing-title {
        font-size: 0.95rem !important;
    }
    
    .price-amount,
    .price-current {
        font-size: 1.1rem !important;
    }
    
    button, .btn, [type="submit"] {
        font-size: 0.85rem;
    }
}

/* High DPI / Retina Typography Adjustments */
@media (-webkit-min-device-pixel-ratio: 2) and (max-width: 768px),
       (min-resolution: 192dpi) and (max-width: 768px) {
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeLegibility;
    }
    
    /* Slightly increase letter-spacing for retina */
    p, li, span {
        letter-spacing: 0.01em;
    }
}

/* Landscape Mobile Typography */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-title {
        font-size: 1.5rem !important;
    }
    
    .hero-subtitle {
        font-size: 0.85rem !important;
    }
    
    .page-banner-title {
        font-size: 1.5rem !important;
    }
    
    .section-title {
        font-size: 1.4rem !important;
    }
}