* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background: #f8fafc;
	padding-bottom: 100px;
}


/* ============================================
   HEADER - Logo Size Fixed
   ============================================ */
.top-header {
    background: white;
    padding: 12px 20px;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Naya: Prevent overflow issues */
    min-height: 60px;
    box-sizing: border-box;
}

/* Left Side: Brand Section */
.header-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    /* Naya: Container constraints */
    max-width: 200px;
    width: 100%;
}

/* Powered by Text */
.powered-by {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
    line-height: 1;
    /* Naya: Fixed width for animation */
    width: auto;
    min-width: 0;
}

.powered-by i {
    color: #f7931e;
    font-size: 14px;
    animation: bolt 2s infinite;
}

.powered-by strong {
    color: #ff6b35;
    font-weight: 700;
}

.typewriter {
    overflow: hidden;
    white-space: nowrap;
    display: inline-block;
    width: 0;
    animation: typing 2.5s steps(20, end) forwards;
    position: relative;
}


@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}
/* Logo - SIZE FIXED HERE */

.logo-link {
    display: block;
    text-decoration: none;
    /* Container constraints - flexible */
    max-width: 220px;
    max-height: 65px;
    width: 100%;
    height: auto;
    overflow: hidden;
    /* Naya: Maintain aspect ratio */
    aspect-ratio: 3/1;
}

.site-logo {
    /* Flexible sizing */
    height: auto;
    max-height: 60px;
    width: 100%;
    max-width: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.site-logo:hover {
    transform: scale(1.05);
}

/* Right Side: Call Button */

.call-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255,107,53,0.3);
    flex-shrink: 0;
    /* Naya: Better touch target */
    min-height: 44px;
}

.call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,107,53,0.4);
}

.call-btn i {
    font-size: 18px;
    /* Naya: Better alignment */
    margin-top: -2px;
}


/* ============================================
   MOBILE - Logo Chhota
   ============================================ */

@media (max-width: 1024px) {
    .top-header {
        padding: 10px 18px;
        min-height: 55px;
    }
    
    .header-brand {
        gap: 6px;
        max-width: 160px;
    }
    
    .powered-by {
        font-size: 11px;
    }
    
    .powered-by i {
        font-size: 13px;
    }
    
    .logo-link {
        max-width: 140px;
        max-height: 45px;
    }
    
    .site-logo {
        max-height: 50px;
    }
    
    .call-btn {
        padding: 10px 16px;
        font-size: 14px;
        min-height: 40px;
    }
    
    .call-text {
        font-size: 14px;
    }
}

/* ============================================
   MOBILE BREAKPOINT (max-width: 768px)
   ============================================ */

@media (max-width: 768px) {
    .top-header {
        padding: 10px 15px;
        min-height: 50px;
    }
    
    .header-brand {
        gap: 5px;
        max-width: 140px;
    }
    
    .powered-by {
        font-size: 10px;
        gap: 4px;
    }
    
    .powered-by i {
        font-size: 12px;
    }
    
    /* Logo thoda chhota */
    .logo-link {
        max-width: 120px;
        max-height: 42px;
    }
    
    .site-logo {
        max-height: 45px;
    }
    
    .call-btn {
        padding: 10px 14px;
        border-radius: 50%;
        min-height: 40px;
        gap: 6px;
    }
    
    .call-text {
        display: none; /* Text hide on mobile */
    }
    
    /* Icon only on small mobile */
    .call-btn i {
        font-size: 20px;
        margin: 0;
    }
}

/* ============================================
   SMALL MOBILE (max-width: 480px)
   ============================================ */

@media (max-width: 480px) {
    .top-header {
        padding: 8px 12px;
        min-height: 45px;
    }
    
    .header-brand {
        max-width: 120px;
        gap: 4px;
    }
    
    .powered-by {
        font-size: 9px;
    }
    
    .powered-by i {
        font-size: 10px;
    }
    
    /* Logo aur chhota */
    .logo-link {
        max-width: 100px;
        max-height: 35px;
    }
    
    .site-logo {
        max-height: 42px;
    }
    
    .call-btn {
        padding: 10px;
        min-height: 36px;
        width: 44px; /* Fixed width for icon only */
        justify-content: center;
        border-radius: 50%;
    }
    
    /* Only icon, no text */
    .call-btn i {
        font-size: 18px;
        margin: 0;
    }
}

/* ============================================
   EXTRA SMALL DEVICES (max-width: 360px)
   ============================================ */

@media (max-width: 360px) {
    .top-header {
        padding: 6px 10px;
    }
    
    .header-brand {
        max-width: 90px;
    }
    
    .powered-by {
        font-size: 8px;
        gap: 3px;
    }
    
    .powered-by strong {
        font-size: 11px;
    }
    
    .logo-link {
        max-width: 80px;
        max-height: 30px;
    }
    
    .site-logo {
        max-height: 38px;
    }
    
    .call-btn {
        width: 40px;
        min-height: 36px;
        padding: 8px;
    }
    
    .call-btn i {
        font-size: 16px;
    }
}
/* Image Slider */
.tour-slider {
	position: relative;
	height: 400px;
	background: #1e293b;
}

.swiper {
	width: 100%;
	height: 100%;

}

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

.slider-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
	padding: 30px 20px;
	z-index: 10;
}

.tour-name {
	color: white;
	font-size: 28px;
	font-weight: 800;
	margin-bottom: 8px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.tour-location {
	color: rgba(255, 255, 255, 0.9);
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
}

.image-counter {
	position: absolute;
	top: 20px;
	right: 20px;
	background: rgba(0, 0, 0, 0.6);
	color: white;
	padding: 8px 16px;
	border-radius: 20px;
	font-size: 14px;
	z-index: 10;
}

/* Tour Info Cards */
.info-section {
	padding: 12px;
	background: white;
	margin-bottom: 0px;
}

.quick-info {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 15px;
	margin-bottom: 5px;
}

.info-item {
	text-align: center;
	padding: 3px 5px;
	background: #f8fafc;
	border-radius: 12px;
	border: 1px solid #e2e8f0;
}

.info-icon {
	font-size: 24px;
	color: #ff6b35;
	margin-bottom: 3px;
}

.info-label {
	font-size: 12px;
	color: #64748b;
	margin-bottom: 4px;
}

.info-value {
	font-size: 14px;
	font-weight: 700;
	color: #1e293b;
}

/* Highlights */

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.highlight-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #fef3e2 0%, #fff7ed 100%);
    border-radius: 16px;
    border-left: 4px solid #f7931e;
}

.highlight-icon-box {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

.highlight-text h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 5px;
}

.highlight-text p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}
/* itinerary */
 .timeline {
    position: relative;
    padding-left: 35px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #ff6b35, #f7931e);
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    margin-bottom: 25px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 16px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -29px;
    top: 25px;
    width: 16px;
    height: 16px;
    background: #ff6b35;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px #ff6b35;
}

.day-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
}

.timeline-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}


.timeline-list {
    list-style: none;
    padding: 0;
}

.timeline-list li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    border-bottom: 1px dashed #e2e8f0;
    font-size: 14px;
    color: #475569;
}

.timeline-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: 700;
    font-size: 16px;
}

/* Itinerary */
.itinerary-item {
	display: flex;
	gap: 15px;
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px dashed #e2e8f0;
}

.day-content h4 {
	font-size: 18px;
	font-weight: 700;
	color: #1e293b;
	margin-bottom: 10px;
}

.day-content ul {
	margin: 0;
	padding-left: 20px;
	color: #64748b;
	font-size: 14px;
	line-height: 1.8;
}
/* In/EX */

.in-ex-card {
    border-radius: 16px;
    overflow: hidden;
}

.in-ex-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    color: white;
    font-weight: 700;
    font-size: 16px;
}

.in-ex-header.inclusion {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.in-ex-header.exclusion {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.in-ex-body {
    padding: 20px;
    font-size: 14px;
    line-height: 1.8;
}

.in-ex-card.inclusion .in-ex-body {
    background: #f0fdf4;
    color: #166534;
}

.in-ex-card.exclusion .in-ex-body {
    background: #fef2f2;
    color: #991b1b;
}
/* Footer Booking Bar */
.booking-footer {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: white;
	padding: 3px 10px;
	box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.15);
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-top: 3px solid #ff6b35;
}

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

.price-main {
	font-size: 28px;
	font-weight: 800;
	color: #ff6b35;
	line-height: 1;
}

.price-main span {
	font-size: 14px;
	color: #64748b;
	font-weight: 500;
}

.price-note {
	font-size: 12px;
	color: #22c55e;
	font-weight: 600;
	margin-top: 4px;
}

.btn-book-footer {
	background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
	color: white;
	border: none;
	padding: 16px 15px;
	border-radius: 12px;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 8px;
	box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
	transition: all 0.3s;
}

.btn-book-footer:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}

/* Booking Modal */
.modal-content {
	border-radius: 24px 24px 0 0;
	border: none;
	max-height: 90vh;
}

.modal-header {
	background: linear-gradient(135deg, #ff6b35, #f7931e);
	color: white;
	padding: 20px;
	border-radius: 10px 10px 0 0 !important;
	border: none;
}

.modal-title {
	font-weight: 700;
	font-size: 20px;
}

/* Stepper */
.stepper {
	display: flex;
	justify-content: space-between;
	padding: 20px;
	background: #f8fafc;
	border-bottom: 1px solid #e2e8f0;
	position: relative;
}

.stepper::before {
	content: '';
	position: absolute;
	top: 35px;
	left: 50px;
	right: 50px;
	height: 3px;
	background: #e2e8f0;
	z-index: 0;
}

.step {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	position: relative;
	z-index: 1;
	background: #f8fafc;
	padding: 0 10px;
}

.step-number {
	width: 35px;
	height: 35px;
	background: #e2e8f0;
	color: #64748b;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 14px;
	transition: all 0.3s;
}

.step.active .step-number {
	background: #ff6b35;
	color: white;
	transform: scale(1.1);
}

.step.completed .step-number {
	background: #22c55e;
	color: white;
}

.step-label {
	font-size: 11px;
	color: #64748b;
	font-weight: 600;
	white-space: nowrap;
}

.step.active .step-label {
	color: #ff6b35;
}

/* Step Content */
.step-content {
	display: none;
	padding: 25px;
	animation: fadeIn 0.3s;
}

.step-content.active {
	display: block;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.step-heading {
	font-size: 22px;
	font-weight: 700;
	color: #1e293b;
	margin-bottom: 20px;
}

/* Traveler Options */
.traveler-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 15px;
	margin-bottom: 25px;
}

.traveler-card {
	border: 2px solid #e2e8f0;
	border-radius: 16px;
	padding: 20px;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s;
	position: relative;
}

.traveler-card:hover {
	border-color: #ff6b35;
	transform: translateY(-3px);
}

.traveler-card.selected {
	border-color: #ff6b35;
	background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(247, 147, 30, 0.05) 100%);
}

.traveler-card.selected::after {
	content: '\F26E';
	font-family: 'bootstrap-icons';
	position: absolute;
	top: -10px;
	right: -10px;
	width: 30px;
	height: 30px;
	background: #ff6b35;
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	box-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
}

.traveler-icon {
	font-size: 32px;
	margin-bottom: 10px;
}

.traveler-count {
	font-size: 18px;
	font-weight: 700;
	color: #1e293b;
	margin-bottom: 4px;
}

.traveler-price {
	font-size: 14px;
	color: #ff6b35;
	font-weight: 700;
}

/* Counter for exact number */
.exact-counter {
	background: #f8fafc;
	border-radius: 16px;
	padding: 20px;
	margin-top: 20px;
}

.counter-label {
	font-size: 14px;
	color: #64748b;
	margin-bottom: 15px;
	text-align: center;
}

.counter-box {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

.counter-btn {
	width: 50px;
	height: 50px;
	border: 2px solid #ff6b35;
	background: white;
	color: #ff6b35;
	border-radius: 12px;
	font-size: 24px;
	cursor: pointer;
	transition: all 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
}

.counter-btn:hover {
	background: #ff6b35;
	color: white;
}

.counter-value {
	font-size: 36px;
	font-weight: 800;
	color: #1e293b;
	min-width: 60px;
	text-align: center;
}

/* Hotel Options */
.hotel-list {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.hotel-card {
	display: flex;
	gap: 15px;
	padding: 15px;
	border: 2px solid #e2e8f0;
	border-radius: 16px;
	cursor: pointer;
	transition: all 0.3s;
}

.hotel-card:hover {
	border-color: #ff6b35;
}

.hotel-card.selected {
	border-color: #ff6b35;
	background: rgba(255, 107, 53, 0.05);
}

.hotel-image {
	width: 100px;
	height: 100px;
	background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 40px;
	flex-shrink: 0;
}

.hotel-info {
	flex: 1;
}

.hotel-name {
	font-size: 16px;
	font-weight: 700;
	color: #1e293b;
	margin-bottom: 6px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.hotel-stars {
	color: #fbbf24;
	font-size: 14px;
}

.hotel-features {
	font-size: 13px;
	color: #64748b;
	margin-bottom: 10px;
	line-height: 1.5;
}

.hotel-price-tag {
	font-size: 20px;
	font-weight: 800;
	color: #ff6b35;
}

.hotel-price-tag span {
	font-size: 13px;
	color: #64748b;
	font-weight: 500;
}

/* Food Options */
.food-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 15px;
}

.food-card {
	border: 2px solid #e2e8f0;
	border-radius: 16px;
	padding: 20px;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s;
}

.food-card:hover {
	border-color: #ff6b35;
}

.food-card.selected {
	border-color: #ff6b35;
	background: rgba(255, 107, 53, 0.05);
}

.food-icon {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 15px;
	font-size: 28px;
}

.veg-icon {
	background: #dcfce7;
	color: #16a34a;
}

.jain-icon {
	background: #dbeafe;
	color: #2563eb;
}

.nonveg-icon {
	background: #fef3c7;
	color: #d97706;
}

.food-name {
	font-size: 16px;
	font-weight: 700;
	color: #1e293b;
	margin-bottom: 4px;
}

.food-desc {
	font-size: 13px;
	color: #64748b;
	margin-bottom: 8px;
}

.food-price {
	font-size: 14px;
	font-weight: 700;
	color: #ff6b35;
}

/* Summary Step */
.summary-box {
	background: #f8fafc;
	border-radius: 20px;
	padding: 25px;
	margin-bottom: 25px;
}

.summary-title {
	font-size: 18px;
	font-weight: 700;
	color: #1e293b;
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 2px dashed #e2e8f0;
}

.summary-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 0;
	border-bottom: 1px solid #e2e8f0;
}

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

.summary-item.total {
	border-top: 2px solid #ff6b35;
	margin-top: 15px;
	padding-top: 20px;
}

.summary-label {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #64748b;
	font-size: 15px;
}

.summary-label i {
	color: #ff6b35;
	font-size: 18px;
}

.summary-value {
	font-weight: 700;
	color: #1e293b;
	font-size: 15px;
}

.summary-item.total .summary-value {
	font-size: 24px;
	color: #ff6b35;
}

/* Payment Methods */
.payment-options {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.payment-card {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 18px;
	border: 2px solid #e2e8f0;
	border-radius: 16px;
	cursor: pointer;
	transition: all 0.3s;
}

.payment-card:hover {
	border-color: #ff6b35;
}

.payment-card.selected {
	border-color: #ff6b35;
	background: rgba(255, 107, 53, 0.05);
}

.payment-icon {
	width: 50px;
	height: 50px;
	background: #f1f5f9;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	color: #64748b;
}

.payment-card.selected .payment-icon {
	background: #ff6b35;
	color: white;
}

.payment-info h4 {
	font-size: 16px;
	font-weight: 700;
	color: #1e293b;
	margin-bottom: 4px;
}

.payment-info p {
	font-size: 13px;
	color: #64748b;
	margin: 0;
}

/* Contact Form */
.contact-form {
	margin-top: 25px;
}

.form-group {
	margin-bottom: 20px;
}

.form-label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: #374151;
	margin-bottom: 8px;
}

.form-input {
	width: 100%;
	padding: 10px 10px;
	border: 1px solid #e2e8f0;
	border-radius: 6px;
	font-size: 18px;
	transition: all 0.3s;
}

.form-input:focus {
	outline: none;
	border-color: #ff6b35;
	box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.input-with-icon {
	position: relative;
}

.input-with-icon i {
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	color: #ff6b35;
	font-size: 18px;
}

.input-with-icon .form-input {
	padding-left: 48px;
}

/* Modal Footer */
.modal-footer {
	padding: 20px 25px;
	border-top: 1px solid #e2e8f0;
	display: flex;
	gap: 12px;
}

.btn-step {
	flex: 1;
	padding: 16px;
	border-radius: 12px;
	font-weight: 700;
	font-size: 16px;
	cursor: pointer;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	transition: all 0.3s;
}

.btn-prev {
	background: #f1f5f9;
	color: #64748b;
}

.btn-prev:hover {
	background: #e2e8f0;
}

.btn-next {
	background: linear-gradient(135deg, #ff6b35, #f7931e);
	color: white;
	box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-next:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Success State */
.booking-success {
	text-align: center;
	padding: 40px 20px;
}

.success-icon {
	width: 100px;
	height: 100px;
	background: linear-gradient(135deg, #22c55e, #16a34a);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 30px;
	animation: scaleIn 0.5s ease;
}

.success-icon i {
	font-size: 50px;
	color: white;
}

@keyframes scaleIn {
	0% {
		transform: scale(0);
	}

	50% {
		transform: scale(1.2);
	}

	100% {
		transform: scale(1);
	}
}

.success-title {
	font-size: 28px;
	font-weight: 800;
	color: #1e293b;
	margin-bottom: 10px;
}

.success-text {
	color: #64748b;
	margin-bottom: 30px;
}

.booking-id-box {
	background: #f8fafc;
	border-radius: 16px;
	padding: 20px;
	margin-bottom: 30px;
}

.booking-label {
	font-size: 14px;
	color: #64748b;
	margin-bottom: 8px;
}

.booking-id {
	font-size: 32px;
	font-weight: 800;
	color: #ff6b35;
	letter-spacing: 2px;
}

/* Loading */
.btn-loading {
	position: relative;
	color: transparent !important;
}

.btn-loading::after {
	content: '';
	position: absolute;
	width: 24px;
	height: 24px;
	top: 50%;
	left: 50%;
	margin-left: -12px;
	margin-top: -12px;
	border: 3px solid #ffffff;
	border-radius: 50%;
	border-top-color: transparent;
	animation: spinner 0.8s linear infinite;
}

@keyframes spinner {
	to {
		transform: rotate(360deg);
	}
}

/* Desktop View */
@media (min-width: 768px) {
	body {
		padding-bottom: 0;
	}

	.tour-slider {
		height: 500px;
	}

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

	.traveler-grid {
		grid-template-columns: repeat(4, 1fr);
	}

	.food-grid {
		grid-template-columns: repeat(4, 1fr);
	}

	.booking-footer {
		display: none;
	}

	.desktop-book {
		display: block;
		padding: 15px;
		background: white;
		margin:15px;
		border-radius: 20px;
		box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	}

	.desktop-price {
		font-size: 36px;
		font-weight: 800;
		color: #ff6b35;
	}
    
    .desktop-price span {
        font-size: 14px;
        color: #64748b;
        font-weight: 500;
    }

	.btn-book-desktop {
		width: 100%;
		margin-top: 20px;
	}
}

@media (max-width: 767px) {
	.desktop-book {
		display: none;
	}
}

/* Inclusion/Exclusion Section */
.in-ex-tabs {
	background: white;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.tab-buttons {
	display: flex;
	border-bottom: 2px solid #e2e8f0;
}

.tab-btn {
	flex: 1;
	padding: 18px;
	background: #f8fafc;
	border: none;
	font-size: 16px;
	font-weight: 600;
	color: #64748b;
	cursor: pointer;
	transition: all 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.tab-btn.active {
	background: white;
	color: #ff6b35;
	border-bottom: 3px solid #ff6b35;
}

.tab-content {
	padding: 2px;
}

.tab-pane {
	display: none;
}

.tab-pane.active {
	display: block;
	animation: fadeIn 0.3s;
}

.in-ex-content-box {
	font-size: 14px;
	line-height: 1.8;
}

.in-ex-content-box.inclusion {
	color: #166534;
	background: #f0fdf4;
	padding: 20px;
	border-radius: 12px;
}

.in-ex-content-box.exclusion {
	color: #991b1b;
	background: #fef2f2;
	padding: 20px;
	border-radius: 12px;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}
/* ============================================ STICKY TABS ============================================ */
.sticky-tabs-wrapper {
    position: sticky;        /* Dono devices par sticky */
    top: 100px;              /* Header ke niche fix */
    z-index: 999;
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-bottom: 1px solid #e2e8f0;
}

.tabs-scroll-container {
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.tabs-scroll-container::-webkit-scrollbar {
    display: none;
}

.tour-tabs {
    display: flex;
    gap: 0;
    min-width: max-content;
}

.tour-tab {
    padding: 16px 20px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.tour-tab:hover {
    color: #ff6b35;
    background: #fff7ed;
}

.tour-tab.active {
    color: #ff6b35;
    border-bottom-color: #ff6b35;
    background: #fff7ed;
}

@media (min-width: 1024px) {
    .sticky-tabs-wrapper {
        margin-bottom: 30px;
        /* border-radius: 16px; */
        overflow: hidden;
        grid-column: 1 / -1;
        /* position: sticky aur top: 70px inherit hoga */
    }
    
    .tour-tabs {
        justify-content: center;
    }
}
/* ============================================ TAB CONTENT  ============================================ */
/* Swipe indicator (optional - visual feedback) */
.swipe-indicator {
    display: none;
}

@media (max-width: 767px) {
    .swipe-indicator {
        display: flex;
        justify-content: center;
        gap: 8px;
        padding: 10px;
        margin-bottom: 10px;
    }
    
    .swipe-dot {
        width: 6px;
        height: 6px;
        background: #cbd5e1;
        border-radius: 50%;
        transition: all 0.3s;
    }
    
    .swipe-dot.active {
        background: #ff6b35;
        width: 20px;
        border-radius: 3px;
    }
}
.tab-sections {
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
	margin: 0 auto;
    padding-bottom: 100px;
    touch-action: pan-y; 
    -webkit-overflow-scrolling: touch;
}
.tab-section {
    display: none;
    animation: fadeIn 0.4s ease;
    /* Har section ke upar gap taaki tabs ke niche na aaye */
    scroll-margin-top: 140px; /* Header(70) + Tabs(70) approx */
    min-height: 100px;
}

.tab-section.active {
    display: block;
}

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

.content-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f5f9;
}

.section-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.section-title {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
}

.description-content {
    font-size: 15px;
    line-height: 1.8;
    color: #475569;
}
/* Highlits */
/* itinerary */
/* Inclusion/Exclusion */
/* Policy */
.policy-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 25px;
    border-left: 4px solid #ff6b35;
}

.policy-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
/* Mobile par footer adjust */
@media (max-width: 767px) {
    .tab-sections {
        padding-bottom: 80px; 
    }
    
    .tab-section {
        scroll-margin-top: 120px; 
    }
}

@media (min-width: 768px) {
    .tab-sections {
        padding-bottom: 20px;
    }
}
/* Extra css jo blade file main cadd kare statish ne */
.collapse {
	visibility: visible !important;
}

.pac-container {
	z-index: 9999 !important;
}

.btn:hover {
    background-color: #ff8c00;
}
.cab-button-plus-minus,
.btn--primary {
	background-color: #ff9200;
	color: white !important;
	margin-bottom: 12px;
}

.btn-outline--primary {
	border: 1px solid #ff9200;
}

.btn-outline--primary.active {
	border: 1px solid #ff9200;
	background-color: #ff9200;
	color: white;
}

.gj-datepicker-bootstrap [role=right-icon] button .gj-icon {
	top: 14px;
	right: 5px;
}

.gj-timepicker-bootstrap [role=right-icon] button .gj-icon {
	top: 14px;
	right: 5px;
}

.pickuplats,
.droplats {
	border: 1px !important;
	width: 13px !important;
	position: relative !important;
	height: 12px !important;
}

.iti--allow-dropdown {
	width: 100%;
}

.loading-parent {
	margin-top: 10rem;
	position: fixed;
	z-index: 9999;
	justify-content: center;
	display: flex;
}

.d--none {
	display: none;
}
/* yaha se change hoga ager nhi aaya to accha se */
/* ============================================
   PACKAGE TABLE - Clean & Professional
   ============================================ */

.col-12.mt-2.px-3 {
    background: #fff;
    border-radius: 12px;
    padding: 16px !important;
    border: 1px solid #e5e7eb;
}

/* Header */
.package-header-row {
    background: #f9fafb;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 12px;
}

.header-label {
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
}

.header-label i {
    color: #f97316;
    font-size: 14px;
}

.cab-tab-font-header {
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
}

.header-divider {
    display: none;
}

/* Data Rows */
.col-12.mt-2.px-3 > .row.my-2 {
    padding: 14px 12px;
    margin-bottom: 8px;
    border-bottom: 1px solid #f3f4f6;
    align-items: center;
}

.col-12.mt-2.px-3 > .row.my-2:last-of-type {
    border-bottom: none;
}

/* Group Size */
.col-12.mt-2.px-3 > .row.my-2 .col-4:first-child .fw-bold {
    font-size: 15px;
    color: #111827;
    font-weight: 600;
}

.col-12.mt-2.px-3 > .row.my-2 .col-4:first-child span {
    color: #374151;
}

/* Price */
.col-12.mt-2.px-3 > .row.my-2 .col-4:nth-child(2) .small {
    color: #6b7280;
    font-size: 13px;
}

.col-12.mt-2.px-3 > .row.my-2 .col-4:nth-child(2) .fw-bold .small {
    color: #111827;
    font-weight: 600;
}

.person_total_amounts,
.h4.text-danger {
    color: #059669 !important;
    font-size: 16px;
    font-weight: 700;
}

/* Add Button */
.person_use_add {
    background: #f97316 !important;
    color: #fff !important;
    padding: 8px 16px !important;
    border-radius: 6px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    transition: all 0.2s !important;
}

.person_use_add:hover {
    background: #ea580c !important;
}

/* Counter */
.person_use_book {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 4px;
}

.cab-button-plus-minus {
    width: 28px !important;
    height: 28px !important;
    background: #f3f4f6 !important;
    border-radius: 4px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #374151 !important;
    margin: 0 !important;
}

.cab-button-plus-minus:hover {
    background: #e5e7eb !important;
}

.cab-button-plus-minus i {
    font-size: 14px !important;
    margin: 0 !important;
    color: #374151 !important;
}

.person_use_input {
    width: 36px !important;
    height: 28px !important;
    border: none !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #111827 !important;
    text-align: center !important;
}

/* Error */
.OnepersonMessageShow {
    color: #dc2626 !important;
    font-size: 11px;
    margin-top: 6px;
}

/* Hide extra dividers */
.col-12.mt-2.px-3 > .row.my-2 + .row {
    display: none;
}

/* Mobile */
@media (max-width: 768px) {
    .col-12.mt-2.px-3 {
        padding: 12px !important;
    }
    
    .cab-tab-font-header {
        font-size: 10px;
    }
    
    .col-12.mt-2.px-3 > .row.my-2 .col-4:first-child .fw-bold {
        font-size: 14px;
    }
}
/* ============================================
   TOUR PACKAGES CSS - Existing Classes Ke Saath
   ============================================ */

/* --- Tab Pane Styling --- */
.tab-pane.fade.text-justify {
    background: #ffffff;
    border-radius: 10px;
    padding: 0;
    transition: all 0.3s ease;
}

.tab-pane.fade.text-justify.active.show {
    animation: fadeInUp 0.4s ease-out;
}

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

/* --- Specification Container --- */
.pt-2.specification {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 10px;
    padding: 20px !important;
    scrollbar-width: thin;
    scrollbar-color: var(--web-primary, #ff8c00) #e9ecef;
}

.pt-2.specification::-webkit-scrollbar {
    width: 8px;
}

.pt-2.specification::-webkit-scrollbar-track {
    background: #e9ecef;
    border-radius: 4px;
}

.pt-2.specification::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 4px;
}

/* --- Package Row Styling --- */
.pt-2.specification > .row {
    background: #ffffff;
    border-radius: 10px;
    margin-bottom: 16px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.pt-2.specification > .row:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* --- Hotel Filter Classes (Dynamic) --- */
[class*="filters-hotel-"] {
    transition: all 0.3s ease;
}

/* --- Image Styling --- */
.pt-2.specification img {
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.pt-2.specification img:hover {
    transform: scale(1.05);
}

/* --- Custom Class Add Styling --- */
[class*="custom-class-add_"] {
    transition: all 0.3s ease;
}

[class*="custom-class-addsm_"] {
    line-height: 1.5;
}

[class*="custom-class-addmd_"] {
    line-height: 1.6;
}

/* --- Hotels Package Add Button Area --- */
[class*="hotels_package_add_"] {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

/* --- Add Button Styling --- */
[class*="other_package_add1"] {
    background: linear-gradient(135deg, #ff6b35, #f7931e) !important;
    color: #ffffff !important;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
}

[class*="other_package_add1"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 94, 0, 0.89);
}

/* --- Quantity Control Container --- */
[class*="other_package_add_"] {
    background: #f8f9fa;
    border-radius: 25px;
    padding: 8px 12px;
}

/* --- Plus Minus Buttons --- */
.cab-button-plus-minus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #ffffff;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cab-button-plus-minus:hover {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff !important;
    transform: scale(1.1);
}

.cab-button-plus-minus i {
    font-size: 18px !important;
    margin: 0 !important;
    transition: all 0.2s ease;
}

.cab-button-plus-minus:hover i {
    color: #ffffff;
}

/* --- Included Packages Plus Button --- */
.included_packages_plus {
    opacity: 0.6;
    cursor: not-allowed;
}

/* --- Input Field Styling --- */
[class*="other_package_add_value"] {
    background: #ffffff;
    border-radius: 6px !important;
    font-weight: 600;
    color: #333;
    margin: 0 8px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 2px;
}

.included_packages {
    background: #e8f5e9 !important;
    color: #2e7d32 !important;
    border-color: #4caf50 !important;
}

/* --- Error Message Styling --- */
.OnepersonMessageShow,
[class*="OnepersonMessageShow"] {
    display: block;
    margin-top: 8px;
    font-size: 11px;
    font-weight: 500;
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* --- Custom Button Styling --- */
.customBtn {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%) !important;
    color: #ffffff !important;
    font-weight: 600;
    font-size: 12px;
    border: none !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.customBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.4);
}

/* --- Custom Options Section --- */
.customOptions {
    background: #fff3cd;
    border-radius: 8px;
    padding: 12px;
    margin: 10px 0;
    border-left: 4px solid #ffc107;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 500px;
    }
}

/* --- Hotel Filter Buttons --- */
.hotel-filter {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 10px 0;
}

.filter-hotel {
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-width: 2px;
}

.filter-hotel:hover {
    transform: translateY(-1px);
}

.filter-hotel.active {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff !important;
    border-color: linear-gradient(135deg, #ff6b35, #f7931e);
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
}

/* --- Close Button in Custom Options --- */
[class*="custom-new-class-add_"] {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    border-radius: 50% !important;
    transition: all 0.3s ease !important;
}

[class*="custom-new-class-add_"]:hover {
    transform: rotate(90deg);
}

/* --- Hotel Title Change Included --- */
.hotel-title-change-included {
    display: inline-block;
    background: #d4edda;
    color: #155724;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- Collapse/Details Section --- */
[data-bs-toggle="collapse"] {
    color: var(--web-primary, #ff8c00) !important;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

[data-bs-toggle="collapse"] i {
    transition: transform 0.3s ease;
}

[data-bs-toggle="collapse"][aria-expanded="true"] i {
    transform: rotate(180deg);
}

.collapse .card {
    border: none;
    background: #f8f9fa;
    border-radius: 8px;
    margin-top: 10px;
}

.collapse .card-body {
    padding: 16px;
    font-size: 13px;
    line-height: 1.7;
    color: #555;
}

/* --- Divider Line --- */
hr {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #dee2e6, transparent);
    margin: 16px 0;
}

/* --- Text Utilities --- */
.text-success.fw-bold.h5 {
    font-size: 14px;
    margin: 0;
}

/* --- Responsive Adjustments --- */
@media (max-width: 576px) {
    .pt-2.specification {
        padding: 12px !important;
    }
    
    .pt-2.specification > .row {
        padding: 12px;
    }
    
    [class*="other_package_add1"] {
        font-size: 11px;
        padding: 6px 12px !important;
    }
    
    .cab-button-plus-minus {
        width: 28px;
        height: 28px;
    }
    
    [class*="other_package_add_value"] {
        width: 35px !important;
        height: 30px !important;
    }
}

@media (max-width: 768px) {
    [class*="hotels_package_add_"] {
        justify-content: flex-start;
        margin-top: 10px;
    }
}

/* --- Included Package Highlight --- */
.row:has(.included_packages) {
    background: linear-gradient(135deg, #e8f5e9 0%, #ffffff 100%);
    border-color: #4caf50;
}

/* --- Price Display --- */
.fw-bold span:last-child {
    color:  #ff6b35;
    font-size: 14px;
}

/* --- Warning Text --- */
.text-danger.fw-bolder {
    padding: 8px 12px;
    border-radius: 6px;
    display: inline-block;
    font-size: 11px;
}
/* Nav tab */
/* ============================================
   TAB NAVIGATION - Responsive (Mobile/Desktop/Tablet)
   ============================================ */

#tab-navigation {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 5px;
    background: #f8fafc;
    border-radius: 12px;
    margin: 10px 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex-wrap: nowrap !important; /* Override inline style */
}

#tab-navigation::-webkit-scrollbar {
    display: none;
}

/* Nav Items */
#tab-navigation .navItems {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Tab Links */
#tab-navigation .navlinks {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    color: #64748b;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0;
}

#tab-navigation .navlinks.active {
    background: #ff6b35;
    border-color: #ff6b35;
    color: white;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

#tab-navigation .navlinks:not(.disabled):hover {
    border-color: #ff6b35;
    color: #ff6b35;
    transform: scale(1.1);
}

/* Tab Text */
#tab-navigation .navItems span {
    font-size: 13px;
    color: #475569;
    font-weight: 600;
    white-space: nowrap;
    margin-left: 8px;
}

/* Arrow Icons */
#tab-navigation .fa-angle-double-right {
    color: #cbd5e1;
    font-size: 14px;
    padding: 0 5px;
}

/* First item (150px wala) */
#tab-navigation .navItems[style*="150px"] {
    width: auto !important; /* Override inline */
    min-width: fit-content;
}

/* ============================================
   MOBILE VIEW (Up to 767px)
   ============================================ */
@media (max-width: 767px) {
    #tab-navigation {
        padding: 8px;
        gap: 12px;
        border-radius: 8px;
    }
    
    #tab-navigation .navlinks {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    #tab-navigation .navItems span {
        font-size: 11px;
        margin-left: 4px;
    }
    
    #tab-navigation .fa-angle-double-right {
        font-size: 12px;
        padding: 0 2px;
    }
    
    /* Hide text on very small screens, show only numbers */
    @media (max-width: 480px) {
        #tab-navigation .navItems span {
            display: none;
        }
        
        #tab-navigation .navItems[style*="150px"] {
            width: auto !important;
        }
    }
}

/* ============================================
   TABLET VIEW (768px - 1023px)
   ============================================ */
@media (min-width: 768px) and (max-width: 1023px) {
    #tab-navigation {
        padding: 12px;
        gap: 8px;
        justify-content: center;
    }
    
    #tab-navigation .navlinks {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
    
    #tab-navigation .navItems span {
        font-size: 14px;
    }
}

/* ============================================
   DESKTOP VIEW (1024px and above)
   ============================================ */
@media (min-width: 1024px) {
    #tab-navigation {
        padding: 10px;
        gap: 2px;
        justify-content: center;
        max-width: 1200px;
        margin: 15px auto;
    }
    
    #tab-navigation .navlinks {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }
    
    #tab-navigation .navItems span {
        font-size: 15px;
        margin-left: 10px;
    }
    
    #tab-navigation .fa-angle-double-right {
        font-size: 16px;
        padding: 0 8px;
    }
}