/* ============================================
   MODERN TOUR DETAIL PAGE STYLES
   ============================================ */

/* CSS Variables for consistent theming - WCAG AA Compliant */
:root {
    --tour-primary: #b91c1c;
    --tour-primary-dark: #991b1b;
    --tour-primary-light: #fef2f2;
    --tour-secondary: #1e293b;
    --tour-accent: #ca8a04;
    --tour-accent-light: #fef3c7;
    --tour-success: #15803d;
    --tour-success-light: #dcfce7;
    --tour-danger: #dc2626;
    --tour-danger-light: #fee2e2;
    --tour-gray-50: #f9fafb;
    --tour-gray-100: #f3f4f6;
    --tour-gray-200: #e5e7eb;
    --tour-gray-300: #d1d5db;
    --tour-gray-400: #9ca3af;
    --tour-gray-500: #6b7280;
    --tour-gray-600: #4b5563;
    --tour-gray-700: #374151;
    --tour-gray-800: #1f2937;
    --tour-gray-900: #111827;
    --tour-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    --tour-shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.06);
    --tour-shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
    --tour-shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.04);
    --tour-radius-sm: 8px;
    --tour-radius-md: 12px;
    --tour-radius-lg: 16px;
    --tour-transition: all 0.2s ease;
}

/* ============================================
   HERO SECTION
   ============================================ */
.tour-hero {
    position: relative;
    height: 480px;
    overflow: hidden;
    color: #fff;
}

.tour-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.tour-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 8s ease;
}

.tour-hero:hover .tour-hero-img {
    transform: scale(1);
}

.tour-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.2) 0%,
            rgba(0, 0, 0, 0.4) 50%,
            rgba(0, 0, 0, 0.7) 100%);
}

.tour-hero .container {
    position: relative;
    z-index: 3;
    height: 100%;
}

.tour-hero-content {
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 50px;
}

.tour-hero-main {
    max-width: 60%;
}

.tour-hero-meta {
    margin-bottom: 12px;
}

.tour-hero-location {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.9;
}

.tour-hero-location i {
    color: var(--tour-accent);
}

.tour-hero-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 16px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    color: #fff;
}

.tour-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tour-feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
}

.tour-feature-badge i {
    color: var(--tour-accent);
}

/* Hero CTA Card */
.tour-hero-cta {
    text-align: right;
}

.tour-hero-price-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--tour-radius-md);
    padding: 24px 28px;
    color: var(--tour-gray-900);
    box-shadow: var(--tour-shadow-lg);
    min-width: 260px;
}

.tour-hero-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 16px;
}

.tour-hero-price .price-from {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--tour-gray-600);
    font-weight: 500;
}

.tour-hero-price .price-amount {
    font-size: 36px;
    font-weight: 800;
    color: var(--tour-primary);
    line-height: 1.1;
}

.tour-hero-price .price-unit {
    font-size: 13px;
    color: var(--tour-gray-600);
    font-weight: 500;
}

.btn-book-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: var(--tour-primary);
    color: #fff !important;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 24px;
    border-radius: var(--tour-radius-sm);
    text-decoration: none !important;
    transition: var(--tour-transition);
}

.btn-book-hero:hover {
    background: var(--tour-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(169, 29, 34, 0.3);
}

/* ============================================
   BREADCRUMB
   ============================================ */
.tour-breadcrumb {
    background: var(--tour-gray-100);
    padding: 12px 0;
    border-bottom: 1px solid var(--tour-gray-200);
}

.tour-breadcrumb ul {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 13px;
}

.tour-breadcrumb ul li {
    display: flex;
    align-items: center;
    color: var(--tour-gray-500);
}

.tour-breadcrumb ul li:not(:last-child)::after {
    content: '/';
    margin-left: 8px;
    color: var(--tour-gray-300);
}

.tour-breadcrumb ul li a {
    color: var(--tour-gray-800);
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 500;
}

.tour-breadcrumb ul li a:hover {
    color: var(--tour-primary);
    text-decoration: underline;
}

.tour-breadcrumb ul li.active {
    color: var(--tour-primary);
    font-weight: 500;
}

/* ============================================
   SECTION NAVIGATION
   ============================================ */
.tour-section-nav-wrap {
    background: #fff;
    border-bottom: 1px solid var(--tour-gray-200);
    z-index: 100;
    transition: box-shadow 0.3s;
}

.tour-section-nav-wrap.is-sticky {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    box-shadow: var(--tour-shadow-sm);
}

.tour-section-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.tour-section-nav li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--tour-gray-700);
    text-decoration: none;
    border-bottom: 3px solid transparent;
    transition: var(--tour-transition);
}

.tour-section-nav li a:hover {
    color: var(--tour-primary);
    background: var(--tour-gray-50);
}

.tour-section-nav li.active a {
    color: var(--tour-primary);
    border-bottom-color: var(--tour-primary);
    background: var(--tour-primary-light);
}

.tour-section-nav li a i {
    font-size: 15px;
    opacity: 0.8;
}

/* ============================================
   MAIN CONTENT WRAPPER
   ============================================ */
.tour-content-wrapper {
    background: var(--tour-gray-100);
    padding: 40px 0 80px;
}

/* ============================================
   TOUR CARDS (SECTIONS)
   ============================================ */
.tour-card {
    background: #fff;
    border-radius: var(--tour-radius-md);
    box-shadow: var(--tour-shadow-sm);
    margin-bottom: 24px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.tour-card:hover {
    box-shadow: var(--tour-shadow-md);
}

.tour-card-header {
    padding: 20px 28px;
    border-bottom: 1px solid var(--tour-gray-200);
    background: linear-gradient(to right, var(--tour-gray-100), #fff);
}

.tour-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    color: var(--tour-gray-900);
    margin: 0;
}

.tour-section-title i {
    color: var(--tour-primary);
    font-size: 22px;
}

.tour-card-body {
    padding: 28px;
}

/* ============================================
   QUICK INFO
   ============================================ */
.tour-quick-info {
    background: var(--tour-gray-100);
    border-radius: var(--tour-radius-sm);
    padding: 20px;
}

.quick-info-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--tour-gray-700);
    margin: 0 0 16px;
}

.quick-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.quick-info-list li:last-child {
    margin-bottom: 0;
}

.quick-info-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--tour-primary);
    color: #fff;
    border-radius: 50%;
    font-size: 14px;
    flex-shrink: 0;
}

.quick-info-content {
    flex: 1;
}

.quick-info-content strong {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--tour-gray-600);
    font-weight: 600;
    margin-bottom: 4px;
}

.quick-info-content span {
    font-size: 14px;
    color: var(--tour-gray-900);
    font-weight: 600;
    line-height: 1.4;
}

/* ============================================
   TOUR DESCRIPTION
   ============================================ */
.tour-description {
    font-size: 15px;
    line-height: 1.8;
    color: var(--tour-gray-800);
}

.tour-description p {
    margin-bottom: 18px;
}

.tour-description h3,
.tour-description h4 {
    color: var(--tour-primary);
    margin: 28px 0 14px;
    font-weight: 700;
    font-size: 18px;
}

.tour-description ul {
    padding-left: 24px;
    margin-bottom: 18px;
}

.tour-description li {
    margin-bottom: 10px;
    color: var(--tour-gray-800);
}

/* ============================================
   ITINERARY TIMELINE
   ============================================ */
.itinerary-timeline {
    position: relative;
    padding-left: 32px;
}

.itinerary-timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--tour-gray-200);
}

.itinerary-timeline h3,
.itinerary-timeline h4,
.itinerary-timeline strong {
    position: relative;
    color: var(--tour-primary);
    font-weight: 700;
    margin: 0 0 8px;
    padding-top: 4px;
}

.itinerary-timeline h3::before,
.itinerary-timeline h4::before {
    content: '';
    position: absolute;
    left: -26px;
    top: 8px;
    width: 12px;
    height: 12px;
    background: var(--tour-primary);
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 2px var(--tour-primary);
}

.itinerary-timeline p {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed var(--tour-gray-200);
    line-height: 1.75;
    color: var(--tour-gray-800);
    font-size: 15px;
}

.itinerary-timeline p:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.itinerary-timeline ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.itinerary-timeline ul li {
    position: relative;
    padding: 14px 0 14px 28px;
    border-bottom: 1px dashed var(--tour-gray-200);
    color: var(--tour-gray-800);
    line-height: 1.7;
    font-size: 15px;
}

.itinerary-timeline ul li:last-child {
    border-bottom: none;
}

.itinerary-timeline ul li::before {
    content: '';
    position: absolute;
    left: -26px;
    top: 18px;
    width: 10px;
    height: 10px;
    background: #fff;
    border: 2px solid var(--tour-primary);
    border-radius: 50%;
}

/* ============================================
   GALLERY GRID
   ============================================ */
.tour-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.gallery-item {
    display: block;
    text-decoration: none;
}

.gallery-item-inner {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--tour-radius-sm);
    overflow: hidden;
}

.gallery-item-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item-overlay i {
    color: #fff;
    font-size: 24px;
}

.gallery-item:hover .gallery-item-inner img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

/* ============================================
   INCLUDED / NOT INCLUDED
   ============================================ */
.included-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.included-column {
    padding: 24px;
    border-radius: var(--tour-radius-md);
}

.included-yes {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border: 1px solid #bbf7d0;
}

.included-no {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    border: 1px solid #fecaca;
}

.included-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.06);
}

.included-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--tour-success);
    color: #fff;
    border-radius: 50%;
    font-size: 16px;
}

.not-included-icon {
    background: var(--tour-danger);
}

.included-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: var(--tour-gray-900);
}

.included-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.included-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--tour-gray-800);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.included-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.included-list li i {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 11px;
    margin-top: 2px;
}

.included-yes .included-list li i {
    background: var(--tour-success);
    color: #fff;
}

.included-no .included-list li i {
    background: var(--tour-danger);
    color: #fff;
}

.included-list li span {
    flex: 1;
    line-height: 1.5;
}

/* Important Notes */
.important-notes {
    margin-top: 24px;
    padding: 20px 24px;
    background: linear-gradient(135deg, #fffbeb, #fef3c7);
    border: 1px solid #fde68a;
    border-radius: var(--tour-radius-md);
}

.notes-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.notes-header i {
    color: #d97706;
    font-size: 20px;
}

.notes-header h4 {
    font-size: 16px;
    font-weight: 700;
    color: #92400e;
    margin: 0;
}

.notes-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.notes-list li {
    position: relative;
    padding: 8px 0 8px 20px;
    font-size: 14px;
    color: var(--tour-gray-800);
    line-height: 1.6;
}

.notes-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #d97706;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 767px) {
    .included-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .included-column {
        padding: 20px;
    }

    .included-header {
        margin-bottom: 16px;
        padding-bottom: 12px;
    }

    .included-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .included-title {
        font-size: 16px;
    }

    .included-list li {
        font-size: 14px;
        padding: 10px 0;
    }
}

/* ============================================
   PICKUP LOCATIONS TABLE
   ============================================ */
.table-modern {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: var(--tour-radius-sm);
    overflow: hidden;
    border: 1px solid var(--tour-gray-200);
}

.table-modern thead {
    background: var(--tour-gray-100);
}

.table-modern th {
    padding: 14px 16px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--tour-gray-800);
    text-align: left;
    border-bottom: 2px solid var(--tour-gray-200);
}

.table-modern td {
    padding: 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--tour-gray-800);
    border-bottom: 1px solid var(--tour-gray-200);
    vertical-align: middle;
}

.table-modern tbody tr:last-child td {
    border-bottom: none;
}

.table-modern tbody tr:hover {
    background: var(--tour-gray-100);
}

.time-badge {
    display: inline-block;
    background: var(--tour-gray-200);
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--tour-gray-700);
}

.price-badge {
    display: inline-block;
    background: var(--tour-primary);
    color: #fff;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
}

/* Pickup Locations */
.pickup-intro {
    font-size: 15px;
    color: var(--tour-gray-700);
    margin: 0 0 20px;
}

.pickup-locations-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.pickup-location-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: var(--tour-gray-50);
    border: 1px solid var(--tour-gray-200);
    border-radius: var(--tour-radius-sm);
    transition: var(--tour-transition);
}

.pickup-location-item:hover {
    border-color: var(--tour-primary);
    background: var(--tour-primary-light);
}

.location-number {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--tour-primary);
    color: #fff;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.pickup-location-item .location-name {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    color: var(--tour-gray-900);
}

.location-check {
    color: var(--tour-success);
    font-size: 18px;
}

.pickup-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 18px;
    background: var(--tour-accent-light);
    border-radius: var(--tour-radius-sm);
    font-size: 14px;
    color: var(--tour-gray-800);
}

.pickup-note i {
    color: var(--tour-accent);
    font-size: 16px;
    margin-top: 1px;
}

/* ============================================
   SIDEBAR
   ============================================ */
.tour-sidebar {
    position: sticky;
    top: 100px;
}

/* Booking Card - Premium Design */
.tour-booking-card {
    background: #fff;
    border-radius: var(--tour-radius-md);
    box-shadow: var(--tour-shadow-lg);
    overflow: hidden;
    margin-bottom: 24px;
    border: 2px solid var(--tour-primary);
    position: relative;
}

.tour-booking-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--tour-primary), var(--tour-primary-dark));
}

.booking-card-header {
    background: linear-gradient(135deg, var(--tour-primary), var(--tour-primary-dark));
    padding: 16px 24px;
    text-align: center;
}

.booking-label {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.booking-card-body {
    padding: 28px 24px;
}

.booking-price-display {
    text-align: center;
    padding: 20px;
    background: var(--tour-gray-50);
    border-radius: var(--tour-radius-sm);
    margin-bottom: 24px;
}

.booking-price-main .price-from {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--tour-gray-600);
    font-weight: 600;
    margin-bottom: 6px;
}

.booking-price-main .price-amount {
    font-size: 48px;
    font-weight: 800;
    color: var(--tour-primary);
    line-height: 1;
}

.booking-price-main .price-unit {
    display: block;
    font-size: 14px;
    color: var(--tour-gray-600);
    font-weight: 500;
    margin-top: 6px;
}

.booking-benefits {
    margin-bottom: 24px;
    padding: 0 4px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--tour-gray-800);
    border-bottom: 1px solid var(--tour-gray-200);
}

.benefit-item:last-child {
    border-bottom: none;
}

.benefit-item i {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--tour-success-light);
    color: var(--tour-success);
    font-size: 14px;
    border-radius: 50%;
    flex-shrink: 0;
}

.booking-note {
    font-size: 13px;
    color: var(--tour-gray-600);
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.5;
}

.btn-book-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: linear-gradient(135deg, var(--tour-primary), var(--tour-primary-dark));
    color: #fff !important;
    font-size: 17px;
    font-weight: 700;
    padding: 18px 28px;
    border-radius: var(--tour-radius-sm);
    text-decoration: none !important;
    transition: var(--tour-transition);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.btn-book-main:hover {
    background: linear-gradient(135deg, var(--tour-primary-dark), #7f1d1d);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(185, 28, 28, 0.4);
}

.btn-book-main:active {
    transform: translateY(0);
}

.booking-redirect-notice {
    text-align: center;
    font-size: 12px;
    color: var(--tour-gray-500);
    margin: 16px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.booking-redirect-notice i {
    font-size: 11px;
}

/* Trust Card */
.tour-trust-card {
    background: #fff;
    border-radius: var(--tour-radius-md);
    box-shadow: var(--tour-shadow-md);
    padding: 24px;
    margin-bottom: 24px;
    border: 1px solid var(--tour-gray-200);
}

.trust-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    color: var(--tour-gray-900);
    margin: 0 0 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--tour-gray-100);
}

.trust-title i {
    color: var(--tour-success);
    font-size: 20px;
}

.trust-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.trust-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--tour-gray-800);
    border-bottom: 1px solid var(--tour-gray-100);
}

.trust-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.trust-list li i {
    color: var(--tour-success);
    margin-top: 3px;
    font-size: 14px;
}

/* ============================================
   CONTACT CARD V2 - Modern UI/UX
   ============================================ */

.tour-contact-card-v2 {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid var(--tour-gray-200);
    border-radius: var(--tour-radius-md);
    padding: 0;
    box-shadow: var(--tour-shadow-md);
    overflow: hidden;
    transition: var(--tour-transition);
}

.tour-contact-card-v2:hover {
    box-shadow: var(--tour-shadow-lg);
    transform: translateY(-2px);
}

/* Header Section */
.contact-card-header {
    background: linear-gradient(135deg, #fef3c7 0%, #fbbf24 100%);
    padding: 28px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-card-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.contact-icon-wrapper {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
}

.contact-icon-wrapper i {
    font-size: 26px;
    color: var(--tour-accent);
}

.tour-contact-card-v2 .contact-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--tour-gray-900);
    margin: 0 0 8px;
    position: relative;
    z-index: 1;
    display: block;
    text-align: center;
}

.contact-subtitle {
    font-size: 14px;
    color: var(--tour-gray-700);
    margin: 0;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* Contact Options Section */
.contact-options {
    padding: 20px;
    background: #fff;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    margin-bottom: 12px;
    border-radius: 10px;
    text-decoration: none !important;
    transition: var(--tour-transition);
    border: 1px solid var(--tour-gray-200);
    background: #fff;
    position: relative;
    overflow: hidden;
}

.contact-option:last-child {
    margin-bottom: 0;
}

.contact-option::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--tour-accent);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.contact-option:hover::before {
    transform: scaleY(1);
}

.contact-option:hover {
    background: var(--tour-gray-50);
    border-color: var(--tour-accent);
    transform: translateX(4px);
    box-shadow: var(--tour-shadow-sm);
}

/* Option Icons */
.option-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--tour-transition);
}

.phone-option .option-icon {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

.phone-option .option-icon i {
    color: #1e40af;
    font-size: 20px;
}

.whatsapp-option .option-icon {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
}

.whatsapp-option .option-icon i {
    color: #15803d;
    font-size: 22px;
}

.email-option .option-icon {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.email-option .option-icon i {
    color: #ca8a04;
    font-size: 18px;
}

.form-option .option-icon {
    background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
}

.form-option .option-icon i {
    color: #be185d;
    font-size: 20px;
}

.contact-option:hover .option-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Option Content */
.option-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.option-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--tour-gray-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.option-value {
    font-size: 15px;
    font-weight: 700;
    color: var(--tour-gray-900);
}

.option-arrow {
    color: var(--tour-gray-400);
    font-size: 16px;
    transition: var(--tour-transition);
    opacity: 0;
}

.contact-option:hover .option-arrow {
    opacity: 1;
    transform: translateX(4px);
}

/* Trust Indicators */
.contact-trust-indicators {
    padding: 20px;
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
    border-top: 1px solid var(--tour-gray-200);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.trust-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--tour-gray-700);
    font-weight: 500;
}

.trust-indicator i {
    color: var(--tour-success);
    font-size: 16px;
    width: 20px;
    text-align: center;
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .tour-contact-card-v2 {
        margin-bottom: 20px;
    }
    
    .contact-card-header {
        padding: 24px 20px;
    }
    
    .contact-icon-wrapper {
        width: 48px;
        height: 48px;
    }
    
    .contact-icon-wrapper i {
        font-size: 22px;
    }
    
    .tour-contact-card-v2 .contact-title {
        font-size: 20px;
    }
    
    .option-value {
        font-size: 14px;
    }
}

/* Accessibility Enhancements */
.contact-option:focus {
    outline: 2px solid var(--tour-accent);
    outline-offset: 2px;
}

.contact-option:focus-visible {
    outline: 3px solid var(--tour-accent);
    outline-offset: 3px;
}

/* Print Styles */
@media print {
    .tour-contact-card-v2 {
        border: 2px solid #000;
        page-break-inside: avoid;
    }
    
    .contact-option::before,
    .contact-card-header::before {
        display: none;
    }
}

/* Legacy Support - Keep old class for backward compatibility */
.tour-contact-card {
    display: none;
}

/* ============================================
   MOBILE STICKY BOOKING
   ============================================ */
.mobile-sticky-booking {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    background: #fff;
    border-top: 1px solid var(--tour-gray-200);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.mobile-sticky-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    max-width: 100%;
}

.mobile-sticky-price {
    display: flex;
    flex-direction: column;
}

.mobile-sticky-price .price-label {
    font-size: 11px;
    color: var(--tour-gray-600);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-weight: 600;
}

.mobile-sticky-price .price-value {
    font-size: 24px;
    font-weight: 800;
    color: var(--tour-primary);
    line-height: 1.1;
}

.mobile-sticky-price .price-unit {
    font-size: 12px;
    color: var(--tour-gray-600);
    font-weight: 500;
}

.mobile-booking-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--tour-primary);
    color: #fff !important;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 24px;
    border-radius: 999px;
    text-decoration: none !important;
    box-shadow: 0 4px 12px rgba(169, 29, 34, 0.3);
    transition: var(--tour-transition);
}

.mobile-booking-btn:active {
    transform: scale(0.98);
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

/* Tablet */
@media (max-width: 991px) {
    .tour-hero {
        height: 400px;
    }

    .tour-hero-content {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-end;
    }

    .tour-hero-main {
        max-width: 100%;
    }

    .tour-hero-title {
        font-size: 32px;
    }

    .tour-sidebar {
        position: static;
        margin-top: 24px;
    }

    .tour-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .included-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .tour-hero {
        height: 320px;
    }

    .tour-hero-content {
        padding-bottom: 30px;
    }

    .tour-hero-title {
        font-size: 26px;
    }

    .tour-hero-location {
        font-size: 12px;
    }

    .tour-feature-badge {
        font-size: 11px;
        padding: 4px 10px;
    }

    .tour-breadcrumb {
        padding: 10px 0;
    }

    .tour-breadcrumb ul {
        font-size: 12px;
        flex-wrap: wrap;
    }

    .tour-content-wrapper {
        padding: 24px 0 100px;
    }

    .tour-card-header {
        padding: 16px 20px;
    }

    .tour-section-title {
        font-size: 18px;
    }

    .tour-card-body {
        padding: 20px;
    }

    .tour-quick-info {
        margin-bottom: 20px;
    }

    .tour-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .table-modern {
        display: block;
        overflow-x: auto;
    }

    .table-modern th,
    .table-modern td {
        padding: 12px;
        font-size: 13px;
    }

    .booking-price-main .price-amount {
        font-size: 36px;
    }

    .mobile-sticky-booking {
        display: block;
    }

    /* Add safe area padding for iOS */
    .mobile-sticky-content {
        padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .tour-hero {
        height: 280px;
    }

    .tour-hero-title {
        font-size: 22px;
    }

    .tour-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mobile-sticky-price .price-value {
        font-size: 20px;
    }

    .mobile-booking-btn {
        font-size: 14px;
        padding: 12px 18px;
    }
}

/* Print Styles */
@media print {

    .tour-section-nav-wrap,
    .tour-sidebar,
    .mobile-sticky-booking {
        display: none !important;
    }

    .tour-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
}



/* Print styles - hide booking buttons */
@media print {

    .global-booking-btn,
    .travelotopos-booking-btn,
    .box_style_1.expose {
        display: none !important;
    }
}


/* ============================================
   BLOG SHOWCASE SECTION - Modern & SEO-Friendly
   ============================================ */
.blog-showcase-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.blog-showcase-header {
    text-align: center;
    margin-bottom: 60px;
}

.blog-showcase-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #b91c1c;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.blog-showcase-label i {
    font-size: 16px;
}

.blog-showcase-title {
    font-size: 42px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.blog-showcase-title span {
    color: #b91c1c;
    position: relative;
}

.blog-showcase-subtitle {
    font-size: 18px;
    color: #6b7280;
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.blog-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.blog-showcase-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.blog-showcase-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.blog-showcase-image {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.blog-showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-showcase-card:hover .blog-showcase-image img {
    transform: scale(1.08);
}

.blog-showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.5) 100%);
    opacity: 0.6;
    transition: opacity 0.4s ease;
}

.blog-showcase-card:hover .blog-showcase-overlay {
    opacity: 0.75;
}

.blog-showcase-date-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #fff;
    padding: 12px 16px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 2;
    min-width: 70px;
}

.blog-showcase-date-badge .date-day {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #b91c1c;
    line-height: 1;
}

.blog-showcase-date-badge .date-month {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

.blog-showcase-content {
    padding: 28px;
}

.blog-showcase-meta {
    margin-bottom: 16px;
}

.blog-meta-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
}

.blog-meta-date i {
    color: #b91c1c;
    font-size: 14px;
}

.blog-showcase-name {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 16px 0;
    line-height: 1.4;
    min-height: 56px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.blog-showcase-card:hover .blog-showcase-name {
    color: #b91c1c;
}

.blog-showcase-excerpt {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.7;
    margin: 0 0 20px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-showcase-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #b91c1c;
    transition: gap 0.3s ease;
}

.blog-showcase-cta i {
    transition: transform 0.3s ease;
}

.blog-showcase-card:hover .blog-showcase-cta {
    gap: 12px;
}

.blog-showcase-card:hover .blog-showcase-cta i {
    transform: translateX(4px);
}

.blog-showcase-footer {
    text-align: center;
    margin-top: 60px;
}

.blog-showcase-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(185, 28, 28, 0.3);
}

.blog-showcase-btn:hover {
    background: linear-gradient(135deg, #991b1b 0%, #7f1d1d 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(185, 28, 28, 0.4);
    color: #fff;
    text-decoration: none;
    gap: 16px;
}

.blog-showcase-btn i {
    transition: transform 0.3s ease;
}

.blog-showcase-btn:hover i {
    transform: translateX(4px);
}

/* Responsive Design - Tablet */
@media (max-width: 991px) {
    .blog-showcase-section {
        padding: 80px 0;
    }

    .blog-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .blog-showcase-title {
        font-size: 36px;
    }

    .blog-showcase-subtitle {
        font-size: 16px;
    }
}

/* Responsive Design - Mobile */
@media (max-width: 767px) {
    .blog-showcase-section {
        padding: 60px 0;
    }

    .blog-showcase-header {
        margin-bottom: 40px;
    }

    .blog-showcase-title {
        font-size: 28px;
    }

    .blog-showcase-subtitle {
        font-size: 15px;
    }

    .blog-showcase-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .blog-showcase-image {
        height: 220px;
    }

    .blog-showcase-content {
        padding: 24px;
    }

    .blog-showcase-name {
        font-size: 18px;
        min-height: auto;
    }

    .blog-showcase-footer {
        margin-top: 40px;
    }

    .blog-showcase-btn {
        padding: 16px 32px;
        font-size: 15px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .blog-showcase-label {
        font-size: 12px;
    }

    .blog-showcase-title {
        font-size: 24px;
    }

    .blog-showcase-date-badge {
        padding: 10px 12px;
        min-width: 60px;
    }

    .blog-showcase-date-badge .date-day {
        font-size: 20px;
    }

    .blog-showcase-date-badge .date-month {
        font-size: 11px;
    }
}

/* ============================================
   TOURS SHOWCASE SECTION - Modern Landing Page
   ============================================ */

.tours-showcase-section {
    padding: 80px 0 100px;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
    position: relative;
}

.tours-showcase-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(185, 28, 28, 0.15), transparent);
}

.tours-showcase-header {
    text-align: center;
    margin-bottom: 60px;
}

.tours-showcase-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #b91c1c;
    background: rgba(185, 28, 28, 0.08);
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.tours-showcase-title {
    font-size: 42px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 16px;
    line-height: 1.2;
}

.tours-showcase-title span {
    color: #b91c1c;
}

.tours-showcase-subtitle {
    font-size: 18px;
    color: #6b7280;
    margin: 0;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

.tours-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tour-showcase-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tour-showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.tour-showcase-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.tour-showcase-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.tour-showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.tour-showcase-card:hover .tour-showcase-image img {
    transform: scale(1.08);
}

.tour-showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.6) 100%);
    opacity: 0.7;
    transition: opacity 0.4s ease;
}

.tour-showcase-card:hover .tour-showcase-overlay {
    opacity: 0.85;
}

.tour-showcase-price-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #fff;
    padding: 10px 16px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.tour-showcase-price-badge .price-from {
    display: block;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6b7280;
    margin-bottom: 2px;
}

.tour-showcase-price-badge .price-amount {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #b91c1c;
    line-height: 1;
}

.tour-showcase-content {
    padding: 24px;
    background: #fff;
}

.tour-showcase-name {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 16px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.tour-showcase-card:hover .tour-showcase-name {
    color: #b91c1c;
}

.tour-showcase-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tour-showcase-cta {
    font-size: 14px;
    font-weight: 600;
    color: #b91c1c;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.tour-showcase-cta i {
    transition: transform 0.3s ease;
}

.tour-showcase-card:hover .tour-showcase-cta {
    gap: 12px;
}

.tour-showcase-card:hover .tour-showcase-cta i {
    transform: translateX(4px);
}

.tours-showcase-footer {
    text-align: center;
    margin-top: 60px;
}

.tours-showcase-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(185, 28, 28, 0.3);
}

.tours-showcase-btn:hover {
    background: linear-gradient(135deg, #991b1b 0%, #7f1d1d 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(185, 28, 28, 0.4);
    color: #fff;
    text-decoration: none;
    gap: 16px;
}

.tours-showcase-btn i {
    transition: transform 0.3s ease;
}

.tours-showcase-btn:hover i {
    transform: translateX(4px);
}

/* Tablet Responsive */
@media (max-width: 991px) {
    .tours-showcase-section {
        padding: 60px 0 80px;
    }

    .tours-showcase-title {
        font-size: 34px;
    }

    .tours-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .tour-showcase-image {
        height: 200px;
    }
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .tours-showcase-section {
        padding: 50px 0 60px;
    }

    .tours-showcase-header {
        margin-bottom: 40px;
    }

    .tours-showcase-label {
        font-size: 11px;
        padding: 6px 16px;
    }

    .tours-showcase-title {
        font-size: 28px;
    }

    .tours-showcase-subtitle {
        font-size: 16px;
    }

    .tours-showcase-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .tour-showcase-image {
        height: 220px;
    }

    .tour-showcase-content {
        padding: 20px;
    }

    .tour-showcase-name {
        font-size: 17px;
    }

    .tours-showcase-footer {
        margin-top: 40px;
    }

    .tours-showcase-btn {
        padding: 16px 32px;
        font-size: 15px;
    }
}



/* ============================================
   HERO SLIDER - Modern Landing Page
   ============================================ */

.hero-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-slider-wrapper .master-slider {
    width: 100% !important;
}

/* Override MasterSlider inline height on container */
.hero-slider-wrapper .ms-container {
    max-height: 850px;
}

.hero-slider-wrapper .ms-slide {
    overflow: hidden;
}

/* Dark overlay on slides */
.hero-slider-wrapper .ms-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.25) 0%,
            rgba(0, 0, 0, 0.15) 40%,
            rgba(0, 0, 0, 0.55) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-slide-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Centered content container - using flexbox for robust centering */
.hero-slide-content {
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 30px 100px;
    box-sizing: border-box;
}

.hero-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
    padding: 12px 28px;
    border-radius: 4px;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(185, 28, 28, 0.4);
    flex-shrink: 0;
}

.hero-title {
    font-size: clamp(26px, 5vw, 56px);
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
    margin: 0 0 20px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    max-width: 900px;
    flex-shrink: 0;
}

.hero-subtitle {
    font-size: clamp(14px, 2vw, 20px);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
    margin: 0 0 32px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
    max-width: 600px;
    flex-shrink: 0;
}

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 42px;
    background: #fff;
    color: #b91c1c;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.hero-cta-btn:hover {
    background: #b91c1c;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    text-decoration: none;
    gap: 16px;
}

.hero-cta-btn i {
    font-size: 13px;
    transition: transform 0.3s ease;
}

.hero-cta-btn:hover i {
    transform: translateX(4px);
}

/* Custom Navigation Arrows */
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 30;
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-nav:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.05);
}

.hero-nav-prev {
    left: 30px;
}

.hero-nav-next {
    right: 30px;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll-indicator i {
    font-size: 14px;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
        opacity: 0.75;
    }

    50% {
        transform: translateX(-50%) translateY(6px);
        opacity: 1;
    }
}

/* Override MasterSlider bullets */
.hero-slider-wrapper .ms-bullets {
    bottom: 90px;
    z-index: 25;
}

.hero-slider-wrapper .ms-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.hero-slider-wrapper .ms-bullet:hover,
.hero-slider-wrapper .ms-bullet-selected {
    background: #fff;
    transform: scale(1.3);
}

/* Hide default MasterSlider arrows */
.hero-slider-wrapper .ms-nav-next,
.hero-slider-wrapper .ms-nav-prev {
    display: none !important;
}

/* Hero Slider - Tablet */
@media (max-width: 991px) {
    .hero-slide-content {
        padding: 30px 20px;
    }

    .hero-label {
        font-size: 12px;
        padding: 10px 22px;
        margin-bottom: 22px;
    }

    .hero-title {
        letter-spacing: 2px;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        margin-bottom: 32px;
    }

    .hero-cta-btn {
        padding: 16px 36px;
        font-size: 13px;
    }

    .hero-nav {
        width: 48px;
        height: 48px;
        font-size: 16px;
    }

    .hero-nav-prev {
        left: 20px;
    }

    .hero-nav-next {
        right: 20px;
    }

    .hero-scroll-indicator {
        bottom: 25px;
    }

    .hero-slider-wrapper .ms-bullets {
        bottom: 70px;
    }
}

/* Hero Slider - Mobile - Compact layout */
@media (max-width: 767px) {
    .hero-slide-content {
        padding: 30px 16px 25px;
        gap: 0;
    }

    .hero-label {
        font-size: 9px;
        padding: 6px 12px;
        letter-spacing: 1px;
        margin-bottom: 10px;
    }

    .hero-title {
        font-size: clamp(18px, 5vw, 24px);
        letter-spacing: 0.5px;
        line-height: 1.15;
        margin-bottom: 8px;
    }

    .hero-subtitle {
        font-size: clamp(11px, 2.8vw, 14px);
        line-height: 1.3;
        margin-bottom: 14px;
    }

    .hero-cta-btn {
        padding: 10px 20px;
        font-size: 11px;
        gap: 6px;
    }

    /* Hide nav arrows on mobile - use swipe */
    .hero-nav {
        display: none;
    }

    /* Hide scroll indicator on mobile for more space */
    .hero-scroll-indicator {
        display: none;
    }

    .hero-slider-wrapper .ms-bullets {
        bottom: 10px;
    }
}

/* ============================================
   TOURS SHOWCASE SECTION - Modern Landing Page
   ============================================ */

.tours-showcase-section {
    padding: 80px 0 100px;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
    position: relative;
}

.tours-showcase-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(185, 28, 28, 0.15), transparent);
}

.tours-showcase-header {
    text-align: center;
    margin-bottom: 60px;
}

.tours-showcase-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #b91c1c;
    background: rgba(185, 28, 28, 0.08);
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.tours-showcase-title {
    font-size: 42px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 16px;
    line-height: 1.2;
}

.tours-showcase-title span {
    color: #b91c1c;
}

.tours-showcase-subtitle {
    font-size: 18px;
    color: #6b7280;
    margin: 0;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

.tours-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tour-showcase-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tour-showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.tour-showcase-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.tour-showcase-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.tour-showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.tour-showcase-card:hover .tour-showcase-image img {
    transform: scale(1.08);
}

.tour-showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.6) 100%);
    opacity: 0.7;
    transition: opacity 0.4s ease;
}

.tour-showcase-card:hover .tour-showcase-overlay {
    opacity: 0.85;
}

.tour-showcase-price-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #fff;
    padding: 10px 16px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.tour-showcase-price-badge .price-from {
    display: block;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6b7280;
    margin-bottom: 2px;
}

.tour-showcase-price-badge .price-amount {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #b91c1c;
    line-height: 1;
}

.tour-showcase-content {
    padding: 24px;
    background: #fff;
}

.tour-showcase-name {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 16px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.tour-showcase-card:hover .tour-showcase-name {
    color: #b91c1c;
}

.tour-showcase-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tour-showcase-cta {
    font-size: 14px;
    font-weight: 600;
    color: #b91c1c;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.tour-showcase-cta i {
    transition: transform 0.3s ease;
}

.tour-showcase-card:hover .tour-showcase-cta {
    gap: 12px;
}

.tour-showcase-card:hover .tour-showcase-cta i {
    transform: translateX(4px);
}

.tours-showcase-footer {
    text-align: center;
    margin-top: 60px;
}

.tours-showcase-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(185, 28, 28, 0.3);
}

.tours-showcase-btn:hover {
    background: linear-gradient(135deg, #991b1b 0%, #7f1d1d 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(185, 28, 28, 0.4);
    color: #fff;
    text-decoration: none;
    gap: 16px;
}

.tours-showcase-btn i {
    transition: transform 0.3s ease;
}

.tours-showcase-btn:hover i {
    transform: translateX(4px);
}

/* Tours Showcase - Tablet */
@media (max-width: 991px) {
    .tours-showcase-section {
        padding: 60px 0 80px;
    }

    .tours-showcase-title {
        font-size: 34px;
    }

    .tours-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .tour-showcase-image {
        height: 200px;
    }
}

/* Tours Showcase - Mobile */
@media (max-width: 767px) {
    .tours-showcase-section {
        padding: 50px 0 60px;
    }

    .tours-showcase-header {
        margin-bottom: 40px;
    }

    .tours-showcase-label {
        font-size: 11px;
        padding: 6px 16px;
    }

    .tours-showcase-title {
        font-size: 28px;
    }

    .tours-showcase-subtitle {
        font-size: 16px;
    }

    .tours-showcase-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .tour-showcase-image {
        height: 220px;
    }

    .tour-showcase-content {
        padding: 20px;
    }

    .tour-showcase-name {
        font-size: 17px;
    }

    .tours-showcase-footer {
        margin-top: 40px;
    }

    .tours-showcase-btn {
        padding: 16px 32px;
        font-size: 15px;
    }
}

/* ============================================
   GET STARTED EXPERIENCE SECTION
   ============================================ */
.gs-experience-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    overflow: hidden;
}

.gs-experience-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Visual Side */
.gs-experience-visual {
    position: relative;
}

.gs-visual-main {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.gs-visual-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.gs-visual-main:hover .gs-visual-img {
    transform: scale(1.05);
}

.gs-visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(185, 28, 28, 0.1) 0%, transparent 100%);
}

/* Floating Stats Card */
.gs-stats-card {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: #fff;
    padding: 24px 32px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 24px;
    z-index: 2;
}

.gs-stat-item {
    text-align: center;
}

.gs-stat-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: #b91c1c;
    line-height: 1;
}

.gs-stat-label {
    display: block;
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

.gs-stat-divider {
    width: 1px;
    height: 40px;
    background: #e5e7eb;
}

/* Award Badge */
.gs-award-badge {
    position: absolute;
    top: 20px;
    right: -20px;
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 25px rgba(185, 28, 28, 0.35);
    z-index: 2;
}

.gs-award-badge i {
    color: #fbbf24;
}

/* Content Side */
.gs-experience-content {
    padding-left: 20px;
}

.gs-experience-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fef2f2;
    color: #b91c1c;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.gs-experience-tag i {
    font-size: 12px;
}

.gs-experience-title {
    font-size: 42px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.2;
    margin: 0 0 20px;
}

.gs-experience-title span {
    color: #b91c1c;
}

.gs-experience-subtitle {
    font-size: 17px;
    color: #6b7280;
    line-height: 1.7;
    margin: 0 0 40px;
}

/* Steps Container */
.gs-steps-container {
    position: relative;
    margin-bottom: 45px;
}

.gs-steps-line {
    position: absolute;
    left: 22px;
    top: 45px;
    bottom: 45px;
    width: 2px;
    background: linear-gradient(180deg, #b91c1c 0%, #fecaca 100%);
}

.gs-step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 16px 0;
    position: relative;
}

.gs-step-number {
    position: relative;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 1;
}

.gs-step-number span {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.gs-step-pulse {
    position: absolute;
    inset: -4px;
    border: 2px solid rgba(185, 28, 28, 0.3);
    border-radius: 50%;
    animation: stepPulse 2s ease-in-out infinite;
}

@keyframes stepPulse {

    0%,
    100% {
        opacity: 0;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.gs-step-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 6px;
}

.gs-step-content p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}

/* CTA Group */
.gs-cta-group {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.gs-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(185, 28, 28, 0.3);
}

.gs-cta-primary:hover {
    background: linear-gradient(135deg, #991b1b 0%, #7f1d1d 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(185, 28, 28, 0.4);
    color: #fff;
    text-decoration: none;
    gap: 16px;
}

.gs-cta-primary i {
    transition: transform 0.3s ease;
}

.gs-cta-primary:hover i {
    transform: translateX(4px);
}

.gs-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: transparent;
    color: #374151;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.gs-cta-secondary:hover {
    background: #f9fafb;
    border-color: #d1d5db;
    color: #1f2937;
    text-decoration: none;
}

.gs-cta-secondary i {
    color: #b91c1c;
}

/* Get Started - Tablet Responsive */
@media (max-width: 991px) {
    .gs-experience-section {
        padding: 80px 0;
    }

    .gs-experience-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .gs-experience-visual {
        max-width: 550px;
        margin: 0 auto;
    }

    .gs-experience-content {
        padding-left: 0;
        text-align: center;
    }

    .gs-experience-title {
        font-size: 36px;
    }

    .gs-steps-container {
        max-width: 450px;
        margin: 0 auto 45px;
        text-align: left;
    }

    .gs-cta-group {
        justify-content: center;
    }

    .gs-stats-card {
        left: 50%;
        transform: translateX(-50%);
    }

    .gs-award-badge {
        right: 20px;
    }
}

/* Get Started - Mobile Responsive */
@media (max-width: 767px) {
    .gs-experience-section {
        padding: 60px 0;
    }

    .gs-experience-wrapper {
        gap: 50px;
    }

    .gs-visual-img {
        height: 320px;
    }

    .gs-stats-card {
        position: relative;
        left: 0;
        bottom: 0;
        transform: none;
        margin-top: 20px;
        justify-content: center;
    }

    .gs-award-badge {
        position: relative;
        top: 0;
        right: 0;
        display: inline-flex;
        margin-top: 15px;
    }

    .gs-experience-visual {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .gs-visual-main {
        width: 100%;
    }

    .gs-experience-title {
        font-size: 28px;
    }

    .gs-experience-subtitle {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .gs-steps-line {
        left: 20px;
    }

    .gs-step-number {
        width: 40px;
        height: 40px;
    }

    .gs-step-number span {
        font-size: 16px;
    }

    .gs-step-content h4 {
        font-size: 16px;
    }

    .gs-step-content p {
        font-size: 13px;
    }

    .gs-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .gs-cta-primary,
    .gs-cta-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   MODERN FOOTER STYLES
   ============================================ */
.gs-footer {
    background: #1f2937;
    color: #e5e7eb;
}

.gs-footer-main {
    padding: 60px 0 50px;
}

.gs-footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
    gap: 40px;
}

/* Footer Brand */
.gs-footer-brand {
    padding-right: 20px;
}

.gs-footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
}

.gs-footer-logo i {
    color: #b91c1c;
    font-size: 20px;
}

.gs-footer-tagline {
    font-size: 14px;
    color: #9ca3af;
    margin: 0 0 20px;
    line-height: 1.6;
}

.gs-footer-award {
    margin-top: 16px;
}

.gs-footer-award img {
    max-height: 100px;
    width: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.gs-footer-award img:hover {
    transform: scale(1.05);
}

/* Footer Title */
.gs-footer-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 20px;
    position: relative;
    padding-bottom: 12px;
}

.gs-footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: #b91c1c;
}

/* Footer Links */
.gs-footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.gs-footer-links ul li {
    margin-bottom: 10px;
}

.gs-footer-links ul li a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #9ca3af;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.gs-footer-links ul li a:hover {
    color: #fff;
    padding-left: 4px;
}

.gs-footer-links ul li a i {
    font-size: 10px;
    color: #b91c1c;
    transition: transform 0.2s ease;
}

.gs-footer-links ul li a:hover i {
    transform: translateX(3px);
}

/* Footer Contact */
.gs-contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.gs-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 14px;
}

.gs-contact-list li i {
    color: #b91c1c;
    font-size: 14px;
    margin-top: 3px;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.gs-contact-list li span,
.gs-contact-list li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s ease;
    line-height: 1.5;
}

.gs-contact-list li a:hover {
    color: #fff;
}

/* Newsletter */
.gs-footer-newsletter p {
    font-size: 14px;
    color: #9ca3af;
    margin: 0 0 16px;
    line-height: 1.6;
}

.gs-newsletter-form {
    margin-bottom: 20px;
}

.gs-newsletter-input-group {
    display: flex;
    background: #374151;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #4b5563;
    transition: border-color 0.2s ease;
}

.gs-newsletter-input-group:focus-within {
    border-color: #b91c1c;
}

.gs-newsletter-input-group input {
    flex: 1;
    padding: 14px 16px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 14px;
    outline: none;
}

.gs-newsletter-input-group input::placeholder {
    color: #6b7280;
}

.gs-newsletter-input-group button {
    padding: 14px 18px;
    background: #b91c1c;
    border: none;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s ease;
}

.gs-newsletter-input-group button:hover {
    background: #991b1b;
}

/* Social Links */
.gs-footer-social {
    display: flex;
    gap: 10px;
}

.gs-footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #374151;
    border-radius: 8px;
    color: #9ca3af;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.gs-footer-social a:hover {
    background: #b91c1c;
    color: #fff;
    transform: translateY(-3px);
}

/* Footer Bottom */
.gs-footer-bottom {
    padding: 20px 0;
    background: #111827;
    border-top: 1px solid #374151;
}

.gs-footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.gs-copyright {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
}

.gs-credits {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
}

.gs-credits i {
    color: #b91c1c;
    margin: 0 2px;
}

.gs-credits a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s ease;
}

.gs-credits a:hover {
    color: #fff;
}

/* Footer - Tablet Responsive */
@media (max-width: 991px) {
    .gs-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px 30px;
    }

    .gs-footer-brand {
        padding-right: 0;
    }
}

/* Footer - Mobile Responsive */
@media (max-width: 767px) {
    .gs-footer-main {
        padding: 50px 0 40px;
    }

    .gs-footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }

    .gs-footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .gs-footer-links ul li a {
        justify-content: center;
    }

    .gs-contact-list li {
        justify-content: center;
        text-align: left;
    }

    .gs-footer-social {
        justify-content: center;
    }

    .gs-footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .gs-footer-award {
        display: flex;
        justify-content: center;
    }
}

/* ============================================
   BLOG DETAIL PAGE STYLES
   Modern, Professional, SEO-Friendly Design
   ============================================ */

/* Blog Detail Hero Section */
.blog-detail-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    padding: 80px 0 60px;
    overflow: hidden;
}

.blog-detail-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.blog-detail-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 8s ease;
}

.blog-detail-hero:hover .blog-detail-hero-img {
    transform: scale(1);
}

.blog-detail-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(0, 0, 0, 0.75) 100%);
    z-index: 2;
}

.blog-detail-hero .container {
    position: relative;
    z-index: 3;
}

.blog-detail-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

/* Breadcrumb */
.blog-detail-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    font-size: 14px;
}

.breadcrumb-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: #fff;
    text-decoration: none;
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-current {
    color: rgba(255, 255, 255, 0.7);
}

/* Hero Title */
.blog-detail-hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 24px 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Hero Meta */
.blog-detail-hero-meta {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.blog-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 15px;
    font-weight: 500;
}

.blog-meta-item i {
    color: var(--tour-primary);
    font-size: 16px;
}

/* Article Content */
.blog-detail-article {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.blog-detail-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.blog-detail-content {
    background: #fff;
    border-radius: var(--tour-radius-lg);
    box-shadow: var(--tour-shadow-lg);
    overflow: hidden;
}

/* Featured Image */
.blog-detail-featured-image {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.blog-detail-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Article Body */
.blog-detail-body {
    padding: 50px 60px;
    font-size: 17px;
    line-height: 1.8;
    color: var(--tour-gray-800);
}

.blog-detail-body h1,
.blog-detail-body h2,
.blog-detail-body h3,
.blog-detail-body h4,
.blog-detail-body h5,
.blog-detail-body h6 {
    color: var(--tour-gray-900);
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 16px;
    line-height: 1.3;
}

.blog-detail-body h2 {
    font-size: 32px;
    margin-top: 48px;
}

.blog-detail-body h3 {
    font-size: 26px;
    margin-top: 40px;
}

.blog-detail-body h4 {
    font-size: 22px;
}

.blog-detail-body p {
    margin-bottom: 20px;
}

.blog-detail-body img {
    max-width: 100%;
    height: auto;
    border-radius: var(--tour-radius-md);
    margin: 32px 0;
    box-shadow: var(--tour-shadow-md);
}

.blog-detail-body ul,
.blog-detail-body ol {
    margin: 24px 0;
    padding-left: 28px;
}

.blog-detail-body li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.blog-detail-body blockquote {
    margin: 32px 0;
    padding: 24px 28px;
    border-left: 4px solid var(--tour-primary);
    background: var(--tour-gray-50);
    border-radius: 0 var(--tour-radius-md) var(--tour-radius-md) 0;
    font-style: italic;
    color: var(--tour-gray-700);
}

.blog-detail-body a {
    color: var(--tour-primary);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.blog-detail-body a:hover {
    color: var(--tour-primary-dark);
}

.blog-detail-body strong {
    font-weight: 600;
    color: var(--tour-gray-900);
}

/* Share Section */
.blog-detail-share {
    padding: 40px 60px;
    border-top: 1px solid var(--tour-gray-200);
    background: var(--tour-gray-50);
}

.share-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    color: var(--tour-gray-900);
    margin: 0 0 20px 0;
}

.share-title i {
    color: var(--tour-primary);
    font-size: 20px;
}

.share-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--tour-shadow-sm);
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--tour-shadow-md);
    text-decoration: none;
}

.share-facebook {
    background: #1877f2;
    color: #fff;
}

.share-facebook:hover {
    background: #0c63d4;
    color: #fff;
}

.share-twitter {
    background: #1da1f2;
    color: #fff;
}

.share-twitter:hover {
    background: #0d8bd9;
    color: #fff;
}

.share-linkedin {
    background: #0077b5;
    color: #fff;
}

.share-linkedin:hover {
    background: #005885;
    color: #fff;
}

.share-email {
    background: var(--tour-gray-700);
    color: #fff;
}

.share-email:hover {
    background: var(--tour-gray-900);
    color: #fff;
}

/* Blog Navigation */
.blog-detail-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 40px 60px;
    border-top: 1px solid var(--tour-gray-200);
}

.blog-nav-link {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 24px;
    background: var(--tour-gray-50);
    border-radius: var(--tour-radius-md);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.blog-nav-link:hover {
    background: #fff;
    border-color: var(--tour-primary);
    transform: translateY(-2px);
    box-shadow: var(--tour-shadow-md);
    text-decoration: none;
}

.blog-nav-prev {
    text-align: left;
}

.blog-nav-next {
    text-align: right;
}

.nav-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--tour-gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-nav-next .nav-label {
    justify-content: flex-end;
}

.nav-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--tour-gray-900);
    line-height: 1.4;
}

.blog-nav-placeholder {
    /* Empty space when no prev/next article */
}

/* Back to Blog Button */
.blog-detail-back {
    padding: 30px 60px 50px;
    text-align: center;
}

.back-to-blog-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--tour-primary) 0%, var(--tour-primary-dark) 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(185, 28, 28, 0.3);
}

.back-to-blog-btn:hover {
    background: linear-gradient(135deg, var(--tour-primary-dark) 0%, #7f1d1d 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(185, 28, 28, 0.4);
    color: #fff;
    text-decoration: none;
    gap: 16px;
}

.back-to-blog-btn i {
    transition: transform 0.3s ease;
}

.back-to-blog-btn:hover i {
    transform: scale(1.1);
}

/* ============================================
   BLOG DETAIL RESPONSIVE STYLES
   ============================================ */

/* Tablet */
@media (max-width: 991px) {
    .blog-detail-hero {
        min-height: 450px;
        padding: 60px 0 50px;
    }

    .blog-detail-hero-title {
        font-size: 38px;
    }

    .blog-detail-article {
        padding: 60px 0;
    }

    .blog-detail-body {
        padding: 40px 40px;
        font-size: 16px;
    }

    .blog-detail-body h2 {
        font-size: 28px;
    }

    .blog-detail-body h3 {
        font-size: 24px;
    }

    .blog-detail-share {
        padding: 30px 40px;
    }

    .blog-detail-navigation {
        padding: 30px 40px;
    }

    .blog-detail-back {
        padding: 25px 40px 40px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .blog-detail-hero {
        min-height: 400px;
        padding: 50px 0 40px;
    }

    .blog-detail-hero-title {
        font-size: 32px;
    }

    .blog-detail-hero-meta {
        gap: 16px;
    }

    .blog-meta-item {
        font-size: 14px;
    }

    .blog-detail-article {
        padding: 50px 0;
    }

    .blog-detail-featured-image {
        height: 300px;
    }

    .blog-detail-body {
        padding: 30px 24px;
        font-size: 16px;
    }

    .blog-detail-body h2 {
        font-size: 26px;
        margin-top: 32px;
    }

    .blog-detail-body h3 {
        font-size: 22px;
        margin-top: 28px;
    }

    .blog-detail-body h4 {
        font-size: 20px;
    }

    .blog-detail-share {
        padding: 30px 24px;
    }

    .share-buttons {
        gap: 10px;
    }

    .share-btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .blog-detail-navigation {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 30px 24px;
    }

    .blog-nav-link {
        padding: 20px;
    }

    .blog-nav-next {
        text-align: left;
    }

    .blog-nav-next .nav-label {
        justify-content: flex-start;
    }

    .blog-detail-back {
        padding: 25px 24px 40px;
    }

    .back-to-blog-btn {
        padding: 14px 28px;
        font-size: 14px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .blog-detail-hero {
        min-height: 350px;
        padding: 40px 0 30px;
    }

    .blog-detail-hero-title {
        font-size: 26px;
    }

    .blog-detail-breadcrumb {
        font-size: 13px;
        gap: 8px;
    }

    .blog-detail-hero-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .blog-detail-featured-image {
        height: 250px;
    }

    .blog-detail-body {
        padding: 24px 20px;
        font-size: 15px;
    }

    .blog-detail-body h2 {
        font-size: 24px;
    }

    .blog-detail-body h3 {
        font-size: 20px;
    }

    .blog-detail-share {
        padding: 24px 20px;
    }

    .share-title {
        font-size: 16px;
    }

    .share-buttons {
        flex-direction: column;
    }

    .share-btn {
        width: 100%;
        justify-content: center;
    }

    .blog-detail-navigation {
        padding: 24px 20px;
    }

    .nav-label {
        font-size: 12px;
    }

    .nav-title {
        font-size: 15px;
    }

    .blog-detail-back {
        padding: 20px 20px 30px;
    }

    .back-to-blog-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Print Styles */
@media print {

    .blog-detail-hero-bg,
    .blog-detail-share,
    .blog-detail-navigation,
    .blog-detail-back {
        display: none;
    }

    .blog-detail-hero {
        min-height: auto;
        padding: 20px 0;
    }

    .blog-detail-hero-title {
        color: #000;
        text-shadow: none;
    }

    .blog-detail-article {
        padding: 0;
    }

    .blog-detail-content {
        box-shadow: none;
    }

    .blog-detail-body {
        padding: 20px 0;
    }
}

/* ============================================
   GALLERY SHOWCASE SECTION - Modern & Responsive
   ============================================ */
.gallery-showcase-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.gallery-showcase-header {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-showcase-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--tour-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.gallery-showcase-label i {
    font-size: 16px;
}

.gallery-showcase-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--tour-gray-900);
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.gallery-showcase-title span {
    color: var(--tour-primary);
}

.gallery-diviver {
    width: 80px;
    height: 4px;
    background: var(--tour-primary);
    border-radius: 2px;
    margin: 0 auto;
}

.gallery-showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.gallery-showcase-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    display: block;
    cursor: pointer;
    box-shadow: var(--tour-shadow-md);
}

.gallery-showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-showcase-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-showcase-overlay i {
    color: #fff;
    font-size: 32px;
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-showcase-item:hover img {
    transform: scale(1.1);
}

.gallery-showcase-item:hover .gallery-showcase-overlay {
    opacity: 1;
}

.gallery-showcase-item:hover .gallery-showcase-overlay i {
    transform: scale(1);
}

.gallery-showcase-footer {
    text-align: center;
    margin-top: 40px;
}

.gallery-showcase-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--tour-primary);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(185, 28, 28, 0.3);
}

.gallery-showcase-btn:hover {
    background: var(--tour-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(185, 28, 28, 0.4);
    color: #fff;
}

.gallery-showcase-btn i {
    transition: transform 0.3s ease;
}

.gallery-showcase-btn:hover i {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 991px) {
    .gallery-showcase-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-showcase-title {
        font-size: 32px;
    }

    .gallery-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .gallery-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}