/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Test Banner */
.test-banner {
    background: #ff9800;
    color: white;
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.2px;
}

:root {
    --primary: #2196a6;
    --primary-dark: #1a7a87;
    --navy: #1a3a5c;
    --orange: #e8652b;
    --gold: #f5a623;
    --turquoise: #2196a6;
    --text: #333;
    --text-light: #666;
    --border: #e0e0e0;
    --bg-light: #f5f7fa;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    line-height: 1.6;
}

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

/* Header */
.header {
    background: white;
    box-shadow: 0 1px 12px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--navy);
    font-weight: 700;
    font-size: 1.5rem;
}

.logo-icon {
    font-size: 2rem;
}

.logo picture {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 80px;
    width: auto;
    object-fit: contain;
    object-position: left center;
    display: block;
}

.nav {
    display: flex;
    gap: 0.25rem;
    align-items: center;
    height: 100%;
}

.nav-link {
    text-decoration: none;
    color: #3a4a5c;
    font-weight: 500;
    font-size: 0.92rem;
    transition: all 0.2s;
    padding: 0.5rem 0.85rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link:hover {
    color: var(--primary);
    background: rgba(33, 150, 166, 0.08);
}

/* WhatsApp Button */
.nav-btn-reserve {
    display: inline-flex;
    align-items: center;
    background: #25d366;
    color: white;
    padding: 0.55rem 1.4rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    transition: all 0.25s;
    margin-left: 0.5rem;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.nav-btn-reserve:hover {
    background: #1fb855;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.dropdown-toggle .arrow {
    font-size: 0.65rem;
    transition: transform 0.3s;
    opacity: 0.8;
    margin-left: 2px;
}

.nav-dropdown:hover .arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: white;
    min-width: 240px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    border-radius: 12px;
    padding: 0.6rem 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s;
    z-index: 1000;
    border: 1px solid rgba(0,0,0,0.06);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    color: #3a4a5c;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 0.9rem;
}

.dropdown-item-icon {
    font-size: 0.85rem;
    opacity: 0.7;
}

.dropdown-item:hover {
    background: linear-gradient(90deg, rgba(33,150,166,0.08), transparent);
    color: var(--primary);
    padding-left: 1.5rem;
}

.dropdown-item:hover .dropdown-item-icon {
    opacity: 1;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 102;
    position: relative;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--navy);
    border-radius: 3px;
    transition: all 0.3s;
}

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

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

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

/* Mobile Menu */
@media (max-width: 968px) {
    .header-content {
        padding: 0.5rem 0;
    }
    
    .logo-image {
        height: 65px;
    }
    
    .mobile-menu-toggle {
        display: flex;
        z-index: 102;
    }
    
    .nav {
        position: fixed !important;
        top: 0 !important;
        right: -300px !important;
        width: 270px !important;
        height: 100vh !important;
        height: 100dvh !important;
        background: white !important;
        flex-direction: column !important;
        padding: 4.5rem 0 2rem !important;
        gap: 0 !important;
        box-shadow: -4px 0 20px rgba(0,0,0,0.15) !important;
        transition: right 0.3s ease !important;
        z-index: 101 !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        -webkit-overflow-scrolling: touch !important;
        overscroll-behavior: contain !important;
        display: flex !important;
        align-items: stretch !important;
    }
    
    .nav.active {
        right: 0 !important;
    }
    
    body::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
        z-index: 99;
        pointer-events: none;
    }
    
    body.menu-open::after {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    
    .nav-link {
        width: 100%;
        padding: 0.9rem 1.25rem;
        border-bottom: 1px solid #f0f0f0;
        font-size: 0.95rem;
        border-radius: 0;
        white-space: normal;
        display: block;
    }
    
    .nav-link:hover {
        background: #f8f9fa;
    }
    
    /* Disable desktop hover for dropdown on mobile */
    .nav-dropdown {
        width: 100%;
        height: auto;
        display: block;
    }
    
    .nav-dropdown:hover .dropdown-menu {
        opacity: 0;
        visibility: hidden;
        max-height: 0;
    }
    
    .dropdown-toggle {
        width: 100%;
        justify-content: space-between;
        padding: 0.9rem 1.25rem;
        border-bottom: 1px solid #f0f0f0;
        display: flex;
    }
    
    .dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-radius: 0 !important;
        border: none !important;
        min-width: auto !important;
        left: auto !important;
        width: 100% !important;
    }
    
    .nav-dropdown.active .dropdown-menu {
        max-height: 600px;
    }
    
    /* Override the desktop hover rule */
    .nav-dropdown.active:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 600px;
    }
    
    .nav-dropdown.active .arrow {
        transform: rotate(180deg);
    }
    
    .dropdown-item {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.7rem 1.25rem 0.7rem 2rem;
        background: #f8f9fa;
        border-bottom: 1px solid #eee;
        font-size: 0.88rem;
        color: #555;
        white-space: normal;
        word-wrap: break-word;
    }
    
    .dropdown-item:hover {
        background: #e0f4f5;
        color: var(--primary);
        padding-left: 2rem;
    }
    
    .nav-btn-reserve {
        margin: 1rem 1.25rem 0;
        text-align: center;
        justify-content: center;
        padding: 0.8rem 1.5rem;
        border-radius: 8px;
        font-size: 0.95rem;
        display: block;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 60px;
    }
}

/* Footer */
.footer {
    background: #1a2332;
    color: rgba(255,255,255,0.85);
    padding: 0;
    margin-top: 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    padding: 3rem 0 2rem;
}

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

.footer-logo-img {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-desc {
    font-size: 0.88rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
}

.footer-social {
    display: flex;
    gap: 0.6rem;
    margin-top: 0.25rem;
}

/* TURSAB Badge */
.tursab-badge {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1rem;
    padding: 0.6rem 0.85rem;
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
}

.tursab-logo {
    height: 28px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.85;
}

.tursab-text {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
    letter-spacing: 0.3px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    color: white;
    transition: all 0.2s;
}

.social-whatsapp { background: #25d366; }
.social-phone { background: var(--primary); }
.social-email { background: #6b7280; }

.social-link:hover {
    transform: translateY(-2px);
    opacity: 0.85;
}

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

.footer-col h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.6rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
}

.footer-col ul li a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: all 0.2s;
}

.footer-col ul li a:hover {
    color: white;
    padding-left: 4px;
}

.footer-bottom {
    text-align: center;
    padding: 1.25rem 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.4);
    font-size: 0.82rem;
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2.5rem 0 1.5rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-brand {
        text-align: center;
        align-items: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

/* Responsive - Remove conflicting rule */
@media (max-width: 768px) {
    .tour-header h1,
    .blog-header h1,
    .region-header h1,
    .page-header h1 {
        font-size: 1.5rem !important;
    }
}

/* Main Content Area */
main {
    min-height: 60vh;
}

/* Prevent double scrollbar when mobile menu is open */
body.menu-open {
    overflow: hidden;
}

/* Breadcrumb */
.breadcrumb {
    padding: 1.5rem 0;
    background: white;
    margin-bottom: 0;
    border-bottom: 1px solid #f0f0f0;
}

.breadcrumb .container {
    display: flex;
    justify-content: center;
}

.breadcrumb ol {
    list-style: none;
    display: flex;
    gap: 0;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    white-space: nowrap;
    min-width: 0;
}

.breadcrumb li:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
}

.breadcrumb li:last-child span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
}

.breadcrumb li:not(:first-child)::before {
    content: '›';
    color: #cbd5e0;
    font-size: 1.1rem;
    font-weight: 300;
    margin: 0 0.75rem;
    flex-shrink: 0;
}

.breadcrumb a {
    color: #718096;
    text-decoration: none;
    transition: all 0.2s;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    white-space: nowrap;
}

.breadcrumb a:hover {
    color: var(--primary);
    background: rgba(33, 150, 166, 0.08);
}

.breadcrumb span {
    color: var(--text);
    font-weight: 500;
    padding: 0.25rem 0.5rem;
}

.breadcrumb-home {
    display: none;
}

.breadcrumb-home-text {
    display: inline;
}

@media (max-width: 768px) {
    .breadcrumb {
        padding: 0.75rem 0;
    }
    
    .breadcrumb li {
        font-size: 0.82rem;
    }
    
    .breadcrumb li:not(:first-child)::before {
        margin: 0 0.35rem;
        font-size: 1rem;
    }
    
    .breadcrumb a {
        padding: 0.2rem 0.3rem;
    }
    
    .breadcrumb span {
        padding: 0.2rem 0.3rem;
    }
    
    .breadcrumb-home {
        display: inline;
        font-size: 0.9rem;
    }
    
    .breadcrumb-home-text {
        display: none;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--primary) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    margin-bottom: 3rem;
}

.hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Section */
.section {
    padding: 3rem 0;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--navy);
}

.section-subtitle {
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Region Page */
.region-header {
    margin-bottom: 3rem;
}

.region-header h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.region-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Tour Grid */
.tour-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Tour Card */
.tour-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tour-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.tour-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tour-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f0f2f5;
    flex-shrink: 0;
}

.tour-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.tour-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e0f4f5 0%, #f0fafb 100%);
    font-size: 3rem;
}

.tour-card-content {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.tour-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: var(--navy);
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.tour-card-excerpt {
    color: var(--text-light);
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tour-card-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.tour-card-cta {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: auto;
}

.tour-card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tour-card-price {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--orange);
    letter-spacing: -0.5px;
    background: #fff5f0;
    padding: 0.3rem 0.75rem;
    border-radius: 8px;
    border: 1px solid rgba(232, 101, 43, 0.15);
    white-space: nowrap;
}

.tour-card-price small {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 0;
}

@media (max-width: 768px) {
    .tour-card-price {
        font-size: 1.2rem;
    }
    .tour-card-bottom {
        justify-content: space-between;
        gap: 0.5rem;
    }
}

/* Region Grid */
.region-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.region-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.region-card:hover {
    transform: translateY(-4px);
}

.region-card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

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

.region-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

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

/* Tour Detail Page */
.tour-detail {
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.tour-hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.tour-content {
    line-height: 1.8;
    font-size: 1.05rem;
}

.tour-content h2 {
    font-family: 'Poppins', sans-serif;
    color: var(--navy);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.tour-content p {
    margin-bottom: 1rem;
}

.tour-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.blog-card-image {
    display: block;
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.blog-category-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary);
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    z-index: 1;
}

.blog-card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.blog-card h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.blog-card h2 a {
    color: var(--navy);
    text-decoration: none;
    transition: color 0.3s;
}

.blog-card h2 a:hover {
    color: var(--primary);
}

.blog-card-excerpt {
    color: var(--text-light);
    margin-bottom: 1rem;
    flex: 1;
}

.blog-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

.blog-card-meta {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Blog Filters */
.blog-filters {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 2rem 0;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    background: var(--bg-light);
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.filter-btn:hover {
    background: #e0f4f5;
    color: var(--primary);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--navy));
    color: white;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(33, 150, 166, 0.3);
}

@media (max-width: 768px) {
    .blog-filters {
        padding: 1rem;
        gap: 0.5rem;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    
    .filter-btn {
        padding: 0.6rem 0.75rem;
        font-size: 0.85rem;
        text-align: center;
        white-space: nowrap;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--primary) 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 12px;
    margin: 3rem 0;
}

.cta-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background: white;
    color: var(--primary);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s;
}

.cta-button:hover {
    transform: scale(1.05);
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.faq-question {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.faq-answer {
    color: var(--text-light);
    line-height: 1.7;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--navy);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
}

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

.btn {
    background: var(--primary);
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn:hover {
    background: var(--navy);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 2rem; }
.mt-4 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 2rem; }
.mb-4 { margin-bottom: 3rem; }

/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-header h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* About Page */
.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-section {
    margin-bottom: 3rem;
}

.about-section h2 {
    font-family: 'Poppins', sans-serif;
    color: var(--navy);
    margin-bottom: 1rem;
}

.about-section p {
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 1rem;
}

.about-section ul {
    margin-left: 2rem;
    line-height: 2;
}

.about-section ul li {
    margin-bottom: 0.5rem;
}

/* Contact Page */
.contact-layout {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form-wrapper {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

.contact-form-wrapper h2 {
    font-family: 'Poppins', sans-serif;
    color: var(--navy);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.contact-form {
    max-width: none;
    padding: 0;
    box-shadow: none;
}

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

.contact-info-section {
    margin-bottom: 2rem;
}

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

.contact-info-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    text-align: center;
}

.contact-info-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.contact-info-card h3 {
    font-family: 'Poppins', sans-serif;
    color: var(--navy);
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
}

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

.contact-info-card a {
    color: var(--primary);
    text-decoration: none;
}

.contact-info-card a:hover {
    text-decoration: underline;
}

.contact-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

@media (max-width: 640px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive - Contact (old override) */

/* Alerts */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

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

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

/* Blog Page Specific */
.blog-card a {
    text-decoration: none;
    color: inherit;
}

.blog-card h2 a {
    color: var(--navy);
    transition: color 0.3s;
}

.blog-card h2 a:hover {
    color: var(--primary);
}

.blog-meta {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.blog-card .blog-meta .date,
.blog-card .blog-meta .author {
    color: #9ca3af;
    font-size: 0.8rem !important;
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    white-space: nowrap;
    padding: 0;
    background: none;
    border-radius: 0;
}

.blog-meta .author::before {
    content: '✍️';
    font-size: 0.85rem;
}

/* Mobile: Smaller fonts but keep on same line */
@media (max-width: 640px) {
    .blog-meta {
        gap: 0.75rem;
        margin-bottom: 0.5rem;
    }
    
    .blog-card .blog-meta .date,
    .blog-card .blog-meta .author {
        font-size: 0.75rem !important;
    }
    
    .blog-meta .author::before {
        font-size: 0.8rem;
    }
}

@media (max-width: 640px) {
    .blog-card .blog-meta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .blog-meta .meta-right {
        margin-left: 0;
        width: 100%;
        justify-content: space-between;
    }
}

.read-more {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-top: 1rem;
}

.read-more:hover {
    text-decoration: underline;
}

.no-posts {
    text-align: center;
    color: var(--text-light);
    padding: 3rem 0;
}

/* FAQ Page Specific */
.faq-category {
    font-family: 'Poppins', sans-serif;
    color: var(--navy);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.faq-item {
    background: white;
    border-radius: 8px;
    padding: 0;
    margin-bottom: 0.75rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    cursor: pointer;
    border: 1px solid #eee;
    transition: border-color 0.3s;
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-item summary {
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    list-style: none;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--primary);
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item[open] summary {
    margin-bottom: 0;
    border-bottom: 1px solid #f0f0f0;
}

.faq-item p,
.faq-answer {
    color: var(--text-light);
    line-height: 1.7;
    padding: 1rem 1.5rem 1.25rem;
    margin: 0;
}

/* Responsive - Contact removed - using new layout */

/* Tour Detail Hero */
.tour-hero {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    overflow: hidden;
}

.tour-hero img {
    width: 100%;
    height: auto;
    display: block;
}

/* Tour Slider */
.tour-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #111;
    margin-bottom: 0;
}

.tour-slider-track {
    display: flex;
    transition: transform 0.4s ease;
    will-change: transform;
}

.tour-slider-slide {
    min-width: 33.333%;
    max-width: 33.333%;
    flex-shrink: 0;
    flex-grow: 0;
    overflow: hidden;
    height: 400px;
}

.tour-slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s;
}

.tour-slider-slide:hover img {
    transform: scale(1.03);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    color: white;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    backdrop-filter: blur(4px);
}

.slider-btn:hover {
    background: rgba(0,0,0,0.7);
}

.slider-prev { left: 12px; }
.slider-next { right: 12px; }

.slider-counter {
    position: absolute;
    bottom: 12px;
    right: 16px;
    background: rgba(0,0,0,0.5);
    color: white;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    backdrop-filter: blur(4px);
}

@media (max-width: 768px) {
    .tour-slider-slide {
        min-width: 100%;
        max-width: 100%;
        height: 250px;
    }
    
    .slider-btn {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
    }
    
    .slider-prev { left: 8px; }
    .slider-next { right: 8px; }
}

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

.tour-header h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.tour-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Blog Single Hero */
.blog-single {
    max-width: 900px;
    margin: 0 auto;
}

.blog-header {
    margin-bottom: 3rem;
}

.featured-image-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

@media (max-width: 768px) {
    .featured-image-wrapper {
        height: 250px;
        border-radius: 12px;
    }
}

.blog-header h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

/* Blog Single Meta - tarih solda, yazar sağda */
.blog-single .blog-meta {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    margin-bottom: 1.5rem;
}

.blog-meta .category {
    background: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.blog-meta .date {
    color: var(--text-light);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* Author Badge */
.author-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, #f0fafb, #e8f4f5);
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    border: 1px solid rgba(33, 150, 166, 0.15);
}

.author-icon {
    font-size: 0.9rem;
    line-height: 1;
}

.author-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy);
    white-space: nowrap;
}

.blog-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
}

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

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

.blog-content h2 {
    font-family: 'Poppins', sans-serif;
    color: var(--navy);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.blog-content h3 {
    font-family: 'Poppins', sans-serif;
    color: var(--navy);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
}

.blog-content ul,
.blog-content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.blog-content li {
    margin-bottom: 0.5rem;
}

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

/* Related Posts */
.related-posts {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid var(--border);
}

.related-posts h2 {
    font-family: 'Poppins', sans-serif;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.related-post-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.related-post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.related-post-image {
    width: 100%;
    height: 160px;
    overflow: hidden;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.related-post-card:hover .related-post-image img {
    transform: scale(1.05);
}

.related-post-content {
    padding: 1rem;
}

.related-post-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: var(--navy);
    margin: 0 0 0.5rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-post-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .related-posts-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .related-post-card {
        flex-direction: row;
    }
    
    .related-post-image {
        width: 120px;
        min-width: 120px;
        height: auto;
    }
    
    .related-post-content {
        padding: 0.75rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .related-post-content h3 {
        font-size: 0.88rem;
    }
}

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

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

.info-item .icon {
    font-size: 1.5rem;
}

.info-item strong {
    display: block;
    color: var(--navy);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.info-item p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text);
}

.departure-link {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
}

.departure-link:hover {
    text-decoration: underline;
}

/* Tour Content */
.tour-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
}

.tour-content h2 {
    font-family: 'Poppins', sans-serif;
    color: var(--navy);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.tour-content p {
    margin-bottom: 1.5rem;
}

.tour-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.tour-content li {
    margin-bottom: 0.5rem;
}

/* Tour Sections Spacing */
.tour-section {
    margin: 3rem 0;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.tour-section h2 {
    font-family: 'Poppins', sans-serif;
    color: var(--navy);
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* What to Bring - Checklist */
.checklist {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--bg-light);
    border-radius: 8px;
    transition: all 0.2s;
}

.checklist-item:hover {
    background: #e0f4f5;
    transform: translateX(5px);
}

.check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    font-size: 0.875rem;
    font-weight: bold;
    flex-shrink: 0;
}

/* Neler Dahil */
.inclusion-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.inclusion-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.1rem;
    background: #e8f5e9;
    color: #2e7d32;
    border-radius: 50px;
    font-size: 0.92rem;
    font-weight: 500;
}

.inclusion-icon {
    font-weight: 700;
    font-size: 1rem;
}

/* Yanınıza Almanız Gerekenler */
.bring-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.bring-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.1rem;
    background: #fef0e8;
    color: var(--orange);
    border-radius: 50px;
    font-size: 0.92rem;
    font-weight: 500;
}

.bring-icon {
    font-size: 1.2rem;
    line-height: 1;
}

/* Route Stops */
.route-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.route-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s;
    position: relative;
}

.route-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 2.25rem;
    bottom: -1.5rem;
    width: 2px;
    height: 1.5rem;
    background: linear-gradient(to bottom, var(--primary), transparent);
}

.route-item:hover {
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transform: translateX(5px);
}

.route-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), var(--navy));
    color: white;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(33, 150, 166, 0.3);
}

.route-content h3 {
    font-family: 'Poppins', sans-serif;
    color: var(--navy);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.route-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .tour-section {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .checklist {
        grid-template-columns: 1fr;
    }
    
    .route-item {
        padding: 1rem;
        gap: 1rem;
    }
    
    .route-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .route-item:not(:last-child)::after {
        left: 1.75rem;
    }
}

/* Tour Gallery */
.tour-gallery {
    margin: 3rem 0;
}

/* Tour FAQs */
.tour-faqs {
    margin-top: 3rem;
}

.tour-faqs h2 {
    font-family: 'Poppins', sans-serif;
    color: var(--navy);
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
}

/* Related Tours */
.related-tours-section {
    margin-top: 3rem;
    padding: 2.5rem 0 3rem;
    border-top: 1px solid var(--border);
    overflow: hidden;
}

.related-tours-section h2 {
    font-family: 'Poppins', sans-serif;
    color: var(--navy);
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
}

.related-slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
}

.related-slider-viewport {
    overflow: hidden;
    width: 100%;
    padding: 0.5rem 0 1rem;
    margin: -0.5rem 0 -1rem;
}

.related-slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease;
}

.related-slider-track .tour-card {
    min-width: calc((100% - 40px) / 3);
    max-width: calc((100% - 40px) / 3);
    flex-shrink: 0;
}

.related-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: white;
    color: var(--navy);
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    transition: all 0.2s;
}

.related-btn:hover {
    background: var(--primary);
    color: white;
}

.related-prev { left: 0.5rem; }
.related-next { right: 0.5rem; }

@media (max-width: 768px) {
    .related-slider-wrapper {
        padding: 0 2.5rem;
    }
    
    .related-slider-track .tour-card {
        min-width: calc((100% - 20px) / 2);
        max-width: calc((100% - 20px) / 2);
    }
    
    .related-btn {
        width: 34px;
        height: 34px;
        font-size: 1.2rem;
    }
    
    .related-prev { left: 0.25rem; }
    .related-next { right: 0.25rem; }
}

@media (max-width: 480px) {
    .related-slider-wrapper {
        padding: 0 2.5rem;
    }
    
    .related-slider-track .tour-card {
        min-width: 100%;
        max-width: 100%;
    }
}

.tour-gallery h2 {
    font-family: 'Poppins', sans-serif;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.gallery-item {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: scale(1.05);
}

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

/* Responsive */
@media (max-width: 768px) {
    .tour-header h1,
    .blog-header h1 {
        font-size: 2rem;
    }
    
    .tour-intro {
        font-size: 1.1rem;
    }
    
    .tour-info-grid {
        grid-template-columns: 1fr 1fr;
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .tour-info-grid .info-item {
        gap: 0.5rem;
    }
    
    .tour-info-grid .info-item .icon {
        font-size: 1rem;
    }
    
    .tour-info-grid .info-item strong {
        font-size: 0.78rem;
    }
    
    .tour-info-grid .info-item p {
        font-size: 0.82rem;
        word-break: break-word;
    }
    
    .departure-link {
        font-size: 0.82rem;
        word-break: break-word;
    }
}


/* Gallery Grid - Mobile First */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

@media (min-width: 640px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: scale(1.02);
}

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

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

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

.zoom-icon {
    font-size: 3rem;
    color: white;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

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

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: fixed;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.1);
}

.lightbox-close {
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
    line-height: 1;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-counter {
    color: white;
    margin-top: 1rem;
    font-size: 1.125rem;
    text-align: center;
}

/* Mobile Lightbox Adjustments */
@media (max-width: 768px) {
    .lightbox-close,
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1.4rem;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
    }
    
    .lightbox-prev {
        left: 8px;
        top: 45%;
    }
    
    .lightbox-next {
        right: 8px;
        top: 45%;
    }
    
    .lightbox-content {
        width: 100%;
        padding: 0 3rem;
    }
    
    .lightbox-content img {
        max-height: 70vh;
        width: 100%;
        object-fit: contain;
    }
    
    .lightbox-counter {
        font-size: 0.9rem;
        margin-top: 0.5rem;
    }
}

/* Blog Content Images */
.blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
    cursor: pointer;
    transition: transform 0.3s;
}

.blog-content img:hover {
    transform: scale(1.02);
}

/* Reservation Form - Modal */
.reservation-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    backdrop-filter: blur(4px);
}

.reservation-modal-overlay.active {
    display: flex;
}

.reservation-modal {
    background: white;
    border-radius: 16px;
    padding: 1.5rem 1.75rem;
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from { opacity: 0; transform: translateY(30px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.reservation-modal-close {
    position: absolute;
    top: 0.75rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
    z-index: 1;
}

.reservation-modal-close:hover {
    color: #333;
}

.reservation-modal h2 {
    font-family: 'Poppins', sans-serif;
    color: var(--navy);
    margin: 0 0 0.15rem;
    font-size: 1.3rem;
}

.reservation-modal-tour {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

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

.reservation-form .form-group {
    margin-bottom: 0.7rem;
}

.reservation-form .form-group label {
    display: block;
    margin-bottom: 0.25rem;
    font-weight: 500;
    color: var(--navy);
    font-size: 0.85rem;
}

.reservation-form .form-group input,
.reservation-form .form-group textarea {
    width: 100%;
    padding: 0.55rem 0.7rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.92rem;
    transition: border-color 0.2s;
}

.reservation-form .form-group input:focus,
.reservation-form .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(33, 150, 166, 0.1);
}

.btn-reserve-form {
    display: block;
    width: 100%;
    background: var(--orange);
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
    box-shadow: 0 2px 8px rgba(232, 101, 43, 0.3);
    text-align: center;
    margin-top: 0.25rem;
}

.btn-reserve-form:hover {
    background: #d4561f;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(232, 101, 43, 0.4);
}

/* Reservation Success */
.reservation-success {
    text-align: center;
    padding: 2rem 1rem;
}

.success-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.reservation-success h2 {
    font-family: 'Poppins', sans-serif;
    color: var(--navy);
    margin: 0 0 0.5rem;
    font-size: 1.4rem;
}

.reservation-success p {
    color: var(--text-light);
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
}

.reservation-success .btn {
    margin-top: 1.5rem;
    width: 100%;
}

/* Tour Price Bar */
.tour-price-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    background: linear-gradient(135deg, #fff8f3 0%, #fff0e8 100%);
    border: 2px solid var(--orange);
    border-radius: 14px;
    padding: 1.25rem 1.75rem;
    margin-bottom: 2rem;
}

.tour-price-bar--no-price {
    background: linear-gradient(135deg, #f0fafb 0%, #e0f4f5 100%);
    border-color: var(--primary);
}

.price-bar-left {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.price-bar-amount {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--orange);
    line-height: 1.1;
}

.price-bar-per {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

.price-bar-child {
    width: 100%;
    font-size: 0.88rem;
    color: var(--text-light);
}

.price-bar-call {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy);
}

.price-bar-btn {
    flex-shrink: 0;
    background: var(--orange);
    color: white;
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s;
    box-shadow: 0 4px 15px rgba(232, 101, 43, 0.35);
    white-space: nowrap;
    letter-spacing: 0.2px;
}

.price-bar-btn:hover {
    background: #d4561f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 101, 43, 0.45);
}

@media (max-width: 640px) {
    .tour-price-bar {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
        gap: 1rem;
    }
    
    .price-bar-left {
        justify-content: center;
    }
    
    .price-bar-child {
        text-align: center;
    }
    
    .price-bar-btn {
        width: 100%;
        padding: 1rem;
    }
    
    .price-bar-amount {
        font-size: 1.75rem;
    }
    
    .reservation-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .reservation-modal {
        padding: 1rem;
        max-height: 95vh;
    }
    
    .reservation-modal h2 {
        font-size: 1.1rem;
        margin-bottom: 0;
    }
    
    .reservation-modal-tour {
        font-size: 0.8rem;
        margin-bottom: 0.6rem;
    }
    
    .reservation-form .form-group {
        margin-bottom: 0.35rem;
    }
    
    .reservation-form .form-row {
        gap: 0;
    }
    
    .reservation-form .form-group label {
        font-size: 0.78rem;
        margin-bottom: 0.1rem;
    }
    
    .reservation-form .form-group input,
    .reservation-form .form-group textarea {
        padding: 0.4rem 0.6rem;
        font-size: 0.85rem;
    }
    
    .btn-reserve-form {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
        margin-top: 0.15rem;
    }
    
    .reservation-modal-close {
        top: 0.4rem;
        right: 0.6rem;
        font-size: 1.6rem;
    }
}
