/* ==================== PAGE HERO ==================== */
.page-hero {
    position: relative;
    height: 300px;
    margin-top: 142px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.page-hero-sm {
    height: 220px;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.page-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 46, 0.65);
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></svg>') repeat;
    opacity: 0.5;
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero-title,
.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    color: #fff;
}

.page-hero p {
    font-size: 1.1rem;
    opacity: 0.7;
    max-width: 500px;
    margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #fff;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.5);
}

/* ==================== PAGE CONTENT ==================== */
.page-content {
    padding: 60px 0 80px;
    background: #fff;
}

/* ==================== CONTENT GRID (About Us) ==================== */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 50px;
    align-items: start;
}

.content-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.content-text h3 {
    font-size: 1.25rem;
    color: #1a1a2e;
    margin: 30px 0 12px;
    font-weight: 600;
}

.content-text p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 8px 0;
    font-size: 0.95rem;
    color: #444;
    border-bottom: 1px solid #f0f0f0;
}

.feature-list li:last-child {
    border-bottom: none;
}

/* Sidebar */
.content-sidebar {
    position: sticky;
    top: 90px;
}

.sidebar-card {
    background: #f8f9fa;
    border-radius: 14px;
    padding: 28px;
    margin-bottom: 20px;
    border: 1px solid #eee;
}

.sidebar-card h4 {
    font-size: 1.1rem;
    color: #1a1a2e;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gold, #C9A227);
}

.sidebar-card p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.6;
}

.sidebar-card a {
    color: var(--gold, #C9A227);
    text-decoration: none;
    font-weight: 500;
}

.sidebar-card a:hover {
    text-decoration: underline;
}

.fact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid #e8e8e8;
}

.fact-item:last-child {
    border-bottom: none;
}

.fact-number {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--gold, #C9A227);
    min-width: 60px;
}

.fact-label {
    font-size: 0.85rem;
    color: #777;
}

/* ==================== REASONS GRID (Why Choose Us) ==================== */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.reason-card {
    background: #f8f9fa;
    border-radius: 14px;
    padding: 30px 24px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid #eee;
}

.reason-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--gold, #C9A227);
}

.reason-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.reason-card h3 {
    font-size: 1.05rem;
    color: #1a1a2e;
    margin-bottom: 12px;
    font-weight: 700;
}

.reason-card p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
}

/* ==================== BANK ACCOUNTS PAGE ==================== */
.ba-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
}

.ba-main {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}

.ba-main h2 {
    font-family: var(--font-primary, 'Playfair Display', serif);
    font-size: 1.8rem;
    color: #0D1B2A;
    margin: 0 0 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #C9A227;
}

.ba-main > p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* Bank Info Box */
.ba-bank-info {
    background: linear-gradient(135deg, #0D1B2A 0%, #1a1a2e 100%);
    color: #fff;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.ba-bank-info h3 {
    color: #C9A227;
    margin: 0 0 15px;
    font-size: 1.1rem;
}

.ba-bank-info h3 svg {
    vertical-align: middle;
    margin-right: 8px;
}

.ba-bank-info p {
    color: rgba(255,255,255,0.8);
    margin: 0 0 8px;
    font-size: 0.92rem;
    line-height: 1.6;
}

.ba-bank-info p:last-child {
    margin-bottom: 0;
}

.ba-bank-info strong {
    color: #fff;
}

/* Bank Cards */
.ba-bank-details {
    margin: 30px 0;
}

.ba-bank-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    border-left: 4px solid #C9A227;
}

.ba-bank-card h4 {
    margin: 0 0 15px;
    color: #C9A227;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ba-bank-card h4 svg {
    vertical-align: middle;
    margin-right: 6px;
}

.ba-detail-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e8ecf0;
}

.ba-detail-row:last-child {
    border-bottom: none;
}

.ba-detail-label {
    color: #888;
    font-size: 0.88rem;
}

.ba-detail-value {
    color: #0D1B2A;
    font-weight: 600;
    font-size: 0.88rem;
    text-align: right;
}

/* Blockquote */
.ba-main blockquote {
    background: linear-gradient(135deg, #C9A227 0%, #d4af37 100%);
    color: #0D1B2A;
    padding: 25px 30px;
    border-radius: 10px;
    margin: 30px 0;
    font-size: 1rem;
    font-style: italic;
    font-weight: 500;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.ba-main blockquote svg {
    flex-shrink: 0;
    opacity: 0.5;
    margin-top: 2px;
}

/* Notes */
.ba-main h3 {
    font-size: 1.2rem;
    color: #0D1B2A;
    margin: 30px 0 15px;
}

.ba-main ul {
    margin: 0 0 20px 20px;
    color: #666;
    line-height: 1.8;
    padding: 0;
}

.ba-main li {
    margin-bottom: 10px;
    font-size: 0.92rem;
}

/* Sidebar */
.ba-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.ba-sidebar-widget {
    background: #fff;
    padding: 28px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}

.ba-sidebar-widget h3 {
    font-size: 1.1rem;
    color: #0D1B2A;
    margin: 0 0 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid #C9A227;
}

.ba-sidebar-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ba-sidebar-links li {
    margin-bottom: 8px;
}

.ba-sidebar-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 8px;
    color: #555;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.25s;
}

.ba-sidebar-links a:hover,
.ba-sidebar-links a.active {
    background: #C9A227;
    color: #fff;
}

.ba-sidebar-links a svg {
    flex-shrink: 0;
}

.ba-contact-widget p {
    color: #888;
    font-size: 0.88rem;
    margin: 0 0 16px;
}

.ba-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 10px;
    transition: all 0.25s;
    border: none;
    cursor: pointer;
    font-family: inherit;
    color: #fff;
}

.ba-contact-btn:last-child {
    margin-bottom: 0;
}

.ba-btn-whatsapp { background: #25D366; }
.ba-btn-whatsapp:hover { background: #1da851; }
.ba-btn-email { background: #0D1B2A; }
.ba-btn-email:hover { background: #1a2d45; }

/* Responsive */
@media (max-width: 992px) {
    .ba-content-wrapper {
        grid-template-columns: 1fr;
    }
    .ba-sidebar {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .ba-sidebar-widget {
        flex: 1;
        min-width: 250px;
    }
}

@media (max-width: 768px) {
    .ba-main {
        padding: 25px;
    }
    .ba-main h2 {
        font-size: 1.4rem;
    }
    .ba-bank-info {
        padding: 20px;
    }
    .ba-bank-card {
        padding: 20px;
    }
    .ba-detail-row {
        flex-direction: column;
        gap: 4px;
    }
    .ba-detail-value {
        text-align: left;
    }
    .ba-sidebar-widget {
        min-width: 100%;
    }
    .ba-main blockquote {
        padding: 20px;
        font-size: 0.92rem;
    }
}

/* ==================== LEGAL CONTENT (Policies) ==================== */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #1a1a2e;
    margin: 36px 0 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 14px;
}

.legal-content ul {
    padding-left: 20px;
    margin-bottom: 16px;
}

.legal-content ul li {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 6px;
}

.legal-content a {
    color: var(--gold, #C9A227);
    text-decoration: none;
    font-weight: 500;
}

.legal-content a:hover {
    text-decoration: underline;
}

/* Cancellation highlight */
.cancellation-highlight {
    background: linear-gradient(135deg, #e8f5e9, #f1f8e9);
    border: 1px solid #c8e6c9;
    border-radius: 14px;
    padding: 30px;
    margin-bottom: 30px;
    text-align: center;
}

.cancellation-highlight h2 {
    border: none;
    margin: 0 0 10px;
    color: #2e7d32;
    font-size: 1.5rem;
}

.cancellation-highlight p {
    color: #444;
    margin: 0;
}

/* Cancellation table */
.cancellation-table {
    overflow-x: auto;
    margin: 20px 0;
}

.cancellation-table table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

.cancellation-table th {
    background: #1a1a2e;
    color: #fff;
    padding: 14px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
}

.cancellation-table td {
    padding: 14px 20px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.9rem;
    color: #444;
}

.cancellation-table tbody tr:hover {
    background: #f8f9fa;
}

.refund-full {
    color: #2e7d32;
}

.refund-partial {
    color: #f57c00;
}

.refund-none {
    color: #c62828;
}

/* ==================== TOURS WITH SIDEBAR LAYOUT ==================== */
.tours-with-sidebar {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 30px;
    align-items: start;
}

.tours-left-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
    min-width: 0;
}

.tours-grid-sidebar {
    grid-template-columns: repeat(3, 1fr) !important;
}

/* ==================== WHY BOOK WITH US ==================== */
.why-book-section {
    background: var(--color-off-white, #F8F9FA);
    border-radius: 16px;
    padding: 28px;
    border: 1px solid #e8ecf0;
}

.why-book-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-primary, #1E3A5F);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-secondary, #C9A227);
}

.why-book-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.why-book-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.why-book-icon {
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-secondary, #C9A227);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.why-book-item h4 {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--color-primary, #1E3A5F);
    margin-bottom: 4px;
}

.why-book-item p {
    font-size: 0.8rem;
    color: #6C757D;
    line-height: 1.5;
    margin: 0;
}

/* ==================== RESERVATION CARD ==================== */
.reservation-card {
    position: sticky;
    top: 90px;
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8ecf0;
}

.rc-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
    color: var(--color-primary, #1E3A5F);
}

.rc-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    color: var(--color-primary, #1E3A5F);
}

.rc-header svg {
    color: var(--color-secondary, #C9A227);
}

.rc-subtitle {
    font-size: 0.82rem;
    color: #6C757D;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--color-secondary, #C9A227);
}

.rc-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.rc-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.rc-field label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-primary, #1E3A5F);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rc-field input,
.rc-field select {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #E9ECEF;
    border-radius: 10px;
    font-size: 0.9rem;
    font-family: inherit;
    transition: border-color 0.3s;
    box-sizing: border-box;
    background: #fff;
}

.rc-field input:focus,
.rc-field select:focus {
    outline: none;
    border-color: var(--color-secondary, #C9A227);
}

.rc-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.rc-qty {
    display: flex;
    align-items: center;
    border: 2px solid #E9ECEF;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.rc-qty-btn {
    width: 34px;
    height: 38px;
    border: none;
    background: transparent;
    font-size: 1.1rem;
    cursor: pointer;
    color: var(--color-primary, #1E3A5F);
    transition: all 0.2s;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rc-qty-btn:hover {
    background: var(--color-secondary, #C9A227);
    color: #fff;
}

.rc-qty input {
    width: 100%;
    text-align: center;
    border: none;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-primary, #1E3A5F);
    background: transparent;
    padding: 0;
}

.rc-submit {
    width: 100%;
    padding: 14px;
    background: var(--color-secondary, #C9A227);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
    font-family: inherit;
    margin-top: 4px;
}

.rc-submit:hover {
    background: #A68520;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 162, 39, 0.4);
}

.rc-submit:disabled {
    background: #E9ECEF;
    color: #6C757D;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.rc-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 18px 0;
    color: #aaa;
    font-size: 0.78rem;
}

.rc-divider::before,
.rc-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #E9ECEF;
}

.rc-messaging-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rc-whatsapp,
.rc-telegram,
.rc-viber {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    color: #fff;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.rc-whatsapp { background: #25D366; }
.rc-whatsapp:hover { background: #1DA851; transform: translateY(-2px); }

.rc-telegram { background: #0088cc; }
.rc-telegram:hover { background: #006daa; transform: translateY(-2px); }

.rc-viber { background: #7360f2; }
.rc-viber:hover { background: #5a48c9; transform: translateY(-2px); }

.rc-trust {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.rc-trust span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #555;
}

.rc-success {
    text-align: center;
    padding: 20px 0;
}

.rc-success h4 {
    font-size: 1.1rem;
    color: var(--color-primary, #1E3A5F);
    margin: 12px 0 8px;
}

.rc-success p {
    font-size: 0.88rem;
    color: #555;
    margin: 4px 0;
    line-height: 1.5;
}

.rc-success strong {
    color: var(--color-secondary, #C9A227);
    font-size: 1rem;
}

/* ==================== TOUR FILTER BAR ==================== */
/* ==================== TOURS LAYOUT (sidebar + grid) ==================== */
.tours-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 30px;
    align-items: start;
}

/* ==================== FILTER SIDEBAR ==================== */
.tf-sidebar {
    position: sticky;
    top: 130px;
    background: #fff;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    border: 1px solid #eaecf0;
    overflow: hidden;
}

.tf-head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 20px;
    background: var(--color-primary, #1E3A5F);
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.2px;
}

.tf-head svg {
    opacity: 0.8;
}

.tf-count-bar {
    padding: 10px 20px;
    background: #f8f9fb;
    border-bottom: 1px solid #eaecf0;
    font-size: 0.8rem;
    color: #888;
}

.tf-count-bar span {
    font-weight: 700;
    color: var(--color-secondary, #C9A227);
}

.tf-group {
    padding: 16px 20px;
    border-bottom: 1px solid #f0f1f3;
}

.tf-group:last-of-type {
    border-bottom: none;
}

.tf-label {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-primary, #1E3A5F);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.tf-label svg {
    color: var(--color-secondary, #C9A227);
}

.tf-search {
    position: relative;
}

.tf-input {
    width: 100%;
    border: 1.5px solid #e4e7eb;
    background: #f9fafb;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 0.85rem;
    color: #1a1a1a;
    outline: none;
    font-family: 'Inter', sans-serif;
    transition: all 0.25s;
    box-sizing: border-box;
}

.tf-input:focus {
    border-color: var(--color-secondary, #C9A227);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(201,162,39,0.08);
}

.tf-input::placeholder {
    color: #b0b5be;
}

/* Category List */
.tf-cat-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tf-cat-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 12px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.85rem;
    color: #444;
    font-weight: 500;
    transition: all 0.2s;
    cursor: pointer;
}

.tf-cat-item:hover {
    background: #f0f4f8;
    color: var(--color-primary, #1E3A5F);
}

.tf-cat-item.active {
    background: var(--color-primary, #1E3A5F);
    color: #fff;
    font-weight: 600;
}

.tf-cat-item.active .tf-cat-count {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

.tf-cat-name {
    flex: 1;
}

.tf-cat-count {
    background: #f1f3f5;
    color: var(--color-secondary, #C9A227);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    min-width: 22px;
    text-align: center;
}

.tf-cat-hidden {
    display: none;
}

.tf-cat-hidden.tf-cat-visible {
    display: flex;
}

/* Duration Checkboxes */
.tf-dur-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tf-check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
    user-select: none;
}

.tf-check-item:hover {
    background: #f8f9fa;
}

.tf-check-item input[type="checkbox"] {
    display: none;
}

.tf-check-box {
    width: 18px;
    height: 18px;
    border: 2px solid #D1D5DB;
    border-radius: 4px;
    flex-shrink: 0;
    position: relative;
    transition: all 0.2s;
}

.tf-check-item input:checked ~ .tf-check-box {
    background: var(--color-secondary, #C9A227);
    border-color: var(--color-secondary, #C9A227);
}

.tf-check-item input:checked ~ .tf-check-box::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.tf-check-label {
    font-size: 0.85rem;
    color: #444;
    transition: color 0.2s;
}

.tf-check-item input:checked ~ .tf-check-box ~ .tf-check-label {
    color: var(--color-primary, #1E3A5F);
    font-weight: 600;
}

.tf-reset {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    margin: 0;
    border: none;
    background: #f3f4f6;
    color: #666;
    font-size: 0.82rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.25s;
    border-radius: 0;
}

.tf-reset:hover {
    background: var(--color-primary, #1E3A5F);
    color: #fff;
}

/* Sidebar layout: tours-grid in sidebar mode gets 2 columns */
.tours-layout .tours-grid {
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 1200px) {
    .tours-layout .tours-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .tours-layout {
        grid-template-columns: 1fr;
    }

    .tf-sidebar {
        position: static;
        border-radius: 14px;
    }

    .tours-layout .tours-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tf-cat-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4px;
    }

    .tf-dur-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4px;
    }
}

@media (max-width: 580px) {
    .tours-layout .tours-grid {
        grid-template-columns: 1fr;
    }

    .tf-cat-list,
    .tf-dur-list {
        grid-template-columns: 1fr;
    }
}

/* ==================== FILTER CARD ==================== */
.filter-card {
    position: sticky;
    top: 90px;
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8ecf0;
}

.fc-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--color-secondary, #C9A227);
    color: var(--color-primary, #1E3A5F);
}

.fc-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    color: var(--color-primary, #1E3A5F);
}

.fc-header svg {
    color: var(--color-secondary, #C9A227);
}

.fc-active-filters {
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f0f0f0;
}

.fc-active-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}

.fc-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: #EAF0F7;
    color: var(--color-primary, #1E3A5F);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.fc-tag button {
    background: none;
    border: none;
    color: var(--color-primary, #1E3A5F);
    font-size: 1rem;
    cursor: pointer;
    padding: 0 0 0 2px;
    line-height: 1;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.fc-tag button:hover {
    opacity: 1;
}

.fc-clear-all {
    background: none;
    border: none;
    color: #E74C3C;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    transition: opacity 0.2s;
}

.fc-clear-all:hover {
    opacity: 0.7;
}

.fc-group {
    margin-bottom: 18px;
}

.fc-group:last-of-type {
    margin-bottom: 14px;
}

.fc-group-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-primary, #1E3A5F);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.fc-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fc-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 6px 8px;
    border-radius: 8px;
    transition: background 0.2s;
}

.fc-checkbox:hover {
    background: #F8F9FA;
}

.fc-checkbox input[type="checkbox"] {
    display: none;
}

.fc-check {
    width: 18px;
    height: 18px;
    border: 2px solid #D1D5DB;
    border-radius: 4px;
    flex-shrink: 0;
    position: relative;
    transition: all 0.2s;
}

.fc-checkbox input:checked ~ .fc-check {
    background: var(--color-secondary, #C9A227);
    border-color: var(--color-secondary, #C9A227);
}

.fc-checkbox input:checked ~ .fc-check::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.fc-label {
    flex: 1;
    font-size: 0.85rem;
    color: #444;
    transition: color 0.2s;
}

.fc-checkbox input:checked ~ .fc-check ~ .fc-label {
    color: var(--color-primary, #1E3A5F);
    font-weight: 600;
}

.fc-count {
    font-size: 0.72rem;
    color: #999;
    background: #F1F3F5;
    padding: 2px 7px;
    border-radius: 10px;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.fc-results {
    text-align: center;
    padding-top: 14px;
    border-top: 1px solid #f0f0f0;
    font-size: 0.88rem;
    color: #6C757D;
}

.fc-results #filterResultCount {
    font-weight: 700;
    color: var(--color-secondary, #C9A227);
    font-size: 1.1rem;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tours-with-sidebar {
        grid-template-columns: 1fr 300px;
    }

    .tours-grid-sidebar {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .why-book-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-hero {
        height: 220px;
        margin-top: 104px;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .content-sidebar {
        position: static;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .bank-cards-grid {
        grid-template-columns: 1fr;
    }

    .tours-with-sidebar {
        grid-template-columns: 1fr;
    }

    .tours-grid-sidebar {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .reservation-card,
    .filter-card {
        position: static;
        order: -1;
    }

    .why-book-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .tours-grid-sidebar {
        grid-template-columns: 1fr !important;
    }
}

/* ==================== CONTACT PAGE ==================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-info-card {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 36px;
    border: 1px solid #eee;
}

.contact-info-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #1a1a2e;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--color-secondary, #C9A227);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-secondary, #C9A227);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.contact-info-icon svg {
    width: 22px;
    height: 22px;
}

.contact-info-content h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 4px;
}

.contact-info-content p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

.contact-info-content a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info-content a:hover {
    color: var(--color-secondary, #C9A227);
}

/* Contact Form Card */
.contact-form-card {
    background: #fff;
    border-radius: 16px;
    padding: 36px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    border: 1px solid #eee;
}

.contact-form-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #1a1a2e;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--color-secondary, #C9A227);
}

.contact-form-card .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form-card .form-group {
    margin-bottom: 18px;
}

.contact-form-card .form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 6px;
    text-shadow: none;
}

.contact-form-card .form-group input,
.contact-form-card .form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.3s;
    box-sizing: border-box;
    background: #fff;
    color: #343A40;
}

.contact-form-card .form-group input::placeholder,
.contact-form-card .form-group textarea::placeholder {
    color: #adb5bd;
}

.contact-form-card .form-group input:focus,
.contact-form-card .form-group textarea:focus {
    outline: none;
    border-color: var(--color-secondary, #C9A227);
    background: #fff;
}

.contact-form-card .form-group textarea {
    min-height: 130px;
    resize: vertical;
}

/* Map */
.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    border: 1px solid #eee;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
    display: block;
}

/* Contact Phone with Country Code */
.cf-phone-wrap {
    display: flex;
    position: relative;
}

.cf-phone-code {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 12px;
    border: 2px solid #e9ecef;
    border-right: none;
    border-radius: 10px 0 0 10px;
    background: #f8f9fa;
    cursor: pointer;
    white-space: nowrap;
    transition: border-color 0.3s;
    user-select: none;
    font-family: inherit;
}

.cf-phone-code:hover {
    border-color: var(--color-secondary, #C9A227);
}

.cf-flag {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    object-fit: cover;
}

.cf-code {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a1a2e;
}

.cf-phone-wrap .form-input {
    border-radius: 0 10px 10px 0;
    flex: 1;
    min-width: 0;
}

.cf-phone-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 300px;
    max-height: 350px;
    overflow: hidden;
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    z-index: 100;
    display: none;
    margin-top: 4px;
    flex-direction: column;
}

.cf-phone-dropdown.open {
    display: flex;
}

.cf-phone-option .name {
    flex: 1;
    color: #1a1a2e;
}

.cf-phone-option .code {
    color: #888;
    font-weight: 600;
    font-size: 0.82rem;
}

/* Contact Form Select */
.contact-form-card .form-group select {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.3s;
    box-sizing: border-box;
    background: #fff;
    color: #343A40;
    cursor: pointer;
    appearance: auto;
}

.contact-form-card .form-group select:focus {
    outline: none;
    border-color: var(--color-secondary, #C9A227);
}

/* Contact Responsive */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 24px;
    }

    .contact-info-title,
    .contact-form-title {
        font-size: 1.3rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .map-container iframe {
        height: 300px;
    }

    .cf-phone-dropdown {
        width: 100%;
    }
}