/* Bazardüzü Climbing - Custom Styles */

/* Root Variables */
:root {
    --primary-color: #1a365d;
    --secondary-color: #2d5a87;
    --accent-color: #e53e3e;
    --mountain-blue: #2b6cb0;
    --mountain-gray: #4a5568;
    --snow-white: #f7fafc;
    --text-dark: #1a202c;
    --text-light: #718096;
    --bg-light: #edf2f7;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --gradient-primary: linear-gradient(135deg, #1a365d 0%, #2d5a87 100%);
    --gradient-hero: linear-gradient(135deg, rgba(26, 54, 93, 0.8) 0%, rgba(45, 90, 135, 0.6) 100%);
}

/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    background: rgba(26, 54, 93, 0.95) !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.navbar.scrolled {
    background: rgba(26, 54, 93, 0.98) !important;
    padding: 0.5rem 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--white) !important;
}

.brand-main {
    display: block;
    font-size: 1em;
    line-height: 1;
}


.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #ffc107 !important;
}

.btn-whatsapp {
    background: #25d366 !important;
    border: none !important;
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: #20ba5a !important;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    height: 70vh;
    min-height: 500px;
    max-height: 800px;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide-1 {
    background: var(--gradient-hero), 
                url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1920&h=1080&fit=crop&crop=center') center/cover;
}

.hero-slide-2 {
    background: var(--gradient-hero), 
                url('https://images.unsplash.com/photo-1464822759844-d150baec0e44?w=1920&h=1080&fit=crop&crop=center') center/cover;
}

.hero-slide-3 {
    background: var(--gradient-hero), 
                url('https://images.unsplash.com/photo-1483728642387-6c3bdd6c93e5?w=1920&h=1080&fit=crop&crop=center') center/cover;
}

.hero-section {
    display: flex;
    align-items: center;
}

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

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hero-content .container {
    position: relative;
    z-index: 3;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.hero-content .row {
    min-height: 300px;
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--snow-white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
    margin-bottom: 2.5rem;
    letter-spacing: 0.5px;
    line-height: 1.4;
    font-weight: 500;
}

.hero-cta {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 54, 93, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2d5a87 0%, #1a365d 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 54, 93, 0.4);
}

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Hero Slider Controls */
.hero-controls {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 4;
}

.hero-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-indicator.active {
    background: white;
    transform: scale(1.2);
}

.hero-indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

.hero-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 4;
    backdrop-filter: blur(10px);
}

.hero-nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.hero-nav-prev {
    left: 2rem;
}

.hero-nav-next {
    right: 2rem;
}

/* Connect Section */
.connect-section {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    z-index: 3;
}

.connect-section h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

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

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.social-link.whatsapp {
    background: #25d366;
}

.social-link.facebook {
    background: #3b5998;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-color);
}

/* Tour Cards */
.tour-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.tour-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.tour-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    aspect-ratio: 3/2;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    aspect-ratio: 3/2;
}

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

.tour-badges {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    gap: 0.5rem;
    z-index: 2;
}

.tour-badges .badge {
    padding: 0.5rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.tour-content {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
}

.tour-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.tour-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: start;
}

.tour-meta span {
    color: var(--text-light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.difficulty, .comfort {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.difficulty span, .comfort span {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.difficulty-bars, .comfort-bars {
    display: flex;
    gap: 3px;
    align-items: flex-end;
}

.bar {
    width: 6px;
    background: #e9ecef;
    border-radius: 1px;
    transition: all 0.3s ease;
}

.tour-card:hover .bar.filled {
    transform: scaleY(1.1);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.bar:nth-child(1) {
    height: 8px;
}

.bar:nth-child(2) {
    height: 12px;
}

.bar:nth-child(3) {
    height: 16px;
}

.bar.filled {
    background: var(--primary-color);
}

.bar.filled.comfort {
    background: var(--secondary-color);
}

.tour-description {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.tour-dates {
    margin-bottom: 1rem;
}

.tour-dates small {
    color: var(--text-light);
    font-size: 0.85rem;
}

.tour-price {
    margin-bottom: 1.5rem;
}

.original-price {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 1rem;
    margin-right: 0.5rem;
}

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

.tour-actions {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.tour-actions .btn {
    flex: 1;
    padding: 0.7rem 1.2rem;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.tour-actions .btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.tour-actions .btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(26, 54, 93, 0.3);
}

.btn-success {
    /* background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%); */
    border: none;
    padding: 0.6rem 1.2rem;
    /* border-radius: 25px; */
    font-weight: 600;
    /* font-size: 0.9rem; */
    text-transform: uppercase;
    /* letter-spacing: 0.5px; */
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-success:hover {
    background: linear-gradient(135deg, #20ba5a 0%, #25d366 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Tour Calendar */
.tour-calendar-section {
    background: var(--snow-white);
}

.calendar-list {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.calendar-item {
    padding: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

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

.calendar-item:hover {
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.02) 0%, rgba(45, 90, 135, 0.02) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.calendar-date {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.3;
}

.calendar-image {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    aspect-ratio: 3/2;
}

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

.calendar-item h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.tour-meta-small {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.tour-meta-small span {
    color: var(--text-light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 500;
}

.difficulty-small, .comfort-small {
    display: flex;
    gap: 2px;
    align-items: flex-end;
}

.difficulty-small .bar, .comfort-small .bar {
    width: 4px;
    border-radius: 1px;
    transition: all 0.3s ease;
}

.difficulty-small .bar:nth-child(1), .comfort-small .bar:nth-child(1) {
    height: 6px;
}

.difficulty-small .bar:nth-child(2), .comfort-small .bar:nth-child(2) {
    height: 8px;
}

.difficulty-small .bar:nth-child(3), .comfort-small .bar:nth-child(3) {
    height: 10px;
}

.difficulty-small .bar, .comfort-small .bar {
    background: #e9ecef;
}

.difficulty-small .bar.filled, .comfort-small .bar.filled {
    background: var(--primary-color);
}

.comfort-small .bar.filled {
    background: var(--secondary-color);
}

.spots {
    background: linear-gradient(135deg, var(--accent-color) 0%, #c53030 100%);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(229, 62, 62, 0.3);
}

.availability {
    text-align: center;
    padding: 0.5rem;
}

.calendar-price {
    text-align: right;
    padding: 0.5rem;
}

.calendar-price .original-price {
    display: block;
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.calendar-price .current-price {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.3rem;
}

.calendar-price small {
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 500;
    display: block;
}

/* Footer */
.footer {
    background: #2c3e50 !important;
}

.footer h5 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer p {
    color: #bdc3c7;
    line-height: 1.6;
}

.footer ul {
    color: #bdc3c7;
}

.footer ul li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rating {
    margin-top: 1rem;
}

.stars {
    color: #ffc107;
    margin-bottom: 0.5rem;
}

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

.social-links-footer .social-link {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
}

.social-link.instagram {
    background: #e4405f;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .connect-section {
        display: none;
    }
    
    .hero-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .hero-nav-prev {
        left: 1rem;
    }
    
    .hero-nav-next {
        right: 1rem;
    }
    
    .hero-controls {
        bottom: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .tour-meta {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .calendar-item .row {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .calendar-item {
        padding: 1.5rem;
    }
    
    .calendar-price {
        text-align: left;
    }
    
    .calendar-image {
        height: 120px;
        max-width: 180px;
        margin: 0 auto;
        aspect-ratio: 3/2;
    }
    
    .tour-meta-small {
        justify-content: center;
        gap: 1rem;
    }
    
    .availability {
        text-align: center;
    }
    
    .tour-hero-title {
        font-size: 2.5rem;
    }
    
    .tour-hero-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stats-row {
        justify-content: center;
    }
    
    .filter-buttons {
        justify-content: center;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        height: 60vh;
        min-height: 400px;
    }
    
    .hero-slide {
        background-attachment: scroll;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-nav-btn {
        display: none;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    /* Tour Gallery Mobile */
    .gallery-main {
        aspect-ratio: 16/9;
    }
    
    .gallery-main-img {
        height: auto;
        aspect-ratio: 16/9;
        border-radius: 0;
    }
    
    .gallery-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .gallery-thumb {
        width: 80px;
        height: 60px;
        aspect-ratio: 4/3;
        border-radius: 6px;
        flex-shrink: 0;
    }
    
    .gallery-thumbnails {
        gap: 0.6rem;
        padding: 0.4rem 0;
    }
    
    .tour-hero-meta {
        flex-direction: column;
        gap: 0.8rem;
        align-items: flex-start;
    }
    
    .tour-booking-card {
        margin-top: 1rem;
        padding: 1rem;
    }
    
    /* Tour Title Mobile */
    .tour-title-section {
        padding-top: 80px !important;
    }
    
    .tour-main-title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .tour-description-text {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }
    
    .tour-badges-simple {
        gap: 0.6rem;
    }
    
    .badge-simple {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .tour-meta-mobile {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .tour-meta-mobile .meta-item {
        padding: 0.7rem;
    }
    
    .tour-details-card {
        padding: 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    .tour-booking-card {
        position: static;
        padding: 1rem;
    }
    
    /* New Single Layout Mobile */
    .meta-item-single {
        padding: 0.6rem;
        gap: 0.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .meta-item-single i {
        font-size: 1.2rem;
        margin-bottom: 0.3rem;
    }
    
    .meta-item-single span {
        font-size: 0.8rem;
        line-height: 1.1;
    }
    
    .tour-booking-single {
        padding: 1rem;
    }
    
    .booking-actions {
        flex-direction: column;
        gap: 0.5rem !important;
    }
    
    .booking-actions .btn {
        width: 100% !important;
    }
}
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .tour-actions {
        flex-direction: column;
    }
    
    .social-links-footer {
        justify-content: center;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .tour-hero-title {
        font-size: 2rem;
    }
    
    .tour-booking-card {
        margin-top: 2rem;
    }
    
    .contact-form-card,
    .contact-info-card {
        margin-bottom: 2rem;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .social-links-contact .social-links {
        justify-content: center;
    }
    
    .mission-card,
    .feature-card,
    .testimonial-card {
        margin-bottom: 2rem;
    }
    
    .team-card {
        margin-bottom: 2rem;
    }

@media (max-width: 575.98px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .tour-content {
        padding: 1rem;
    }
    
    .calendar-item {
        padding: 1rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .tour-hero-title {
        font-size: 1.8rem;
    }
    
    .contact-form-card,
    .contact-info-card,
    .tour-section,
    .sidebar-card {
        padding: 1.5rem;
    }
    
    .filter-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .filter-btn {
        width: 100%;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .similar-tour {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

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

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

/* Page Header */
.page-header {
    background: linear-gradient(rgba(44, 85, 48, 0.8), rgba(44, 85, 48, 0.8)), 
                url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1920&h=600&fit=crop') center/cover;
    padding: 120px 0 80px;
    color: white;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Tour Filters */
.tour-filters {
    border-bottom: 1px solid #e9ecef;
}

.filter-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Tour Title Section */
.tour-title-section {
    background: var(--white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 100px !important;
}

.breadcrumb-nav {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.breadcrumb-nav a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: var(--primary-color);
}

.tour-main-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.tour-description-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.tour-badges-simple {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.badge-simple {
    background: rgba(237, 242, 247, 0.8);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.badge-simple:hover {
    background: rgba(26, 54, 93, 0.1);
    color: var(--primary-color);
    transform: translateY(-1px);
}

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

.meta-item i {
    font-size: 1.2rem;
    color: #ffc107;
}

/* Tour Booking Card */
.tour-booking-card {
    background: rgba(255,255,255,0.95);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    color: var(--text-dark);
    backdrop-filter: blur(10px);
}

.booking-price {
    text-align: center;
    margin-bottom: 1rem;
}

.booking-price .original-price {
    display: block;
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 1.1rem;
}

.booking-price .current-price {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.booking-dates {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

/* Tour Gallery Section */
.tour-gallery-section {
    background: var(--white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 2rem 0 !important;
}

/* Swiper Gallery Styles */
.gallery-swiper {
    width: 100%;
    height: 600px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.gallery-swiper .swiper-slide {
    height: 600px !important;
}

.gallery-swiper .swiper-slide img {
    width: 100% !important;
    height: 600px !important;
    object-fit: cover !important;
    display: block !important;
}

.gallery-img {
    width: 100% !important;
    height: 600px !important;
    object-fit: cover !important;
    display: block !important;
}

/* Swiper Navigation Buttons */
.gallery-swiper .swiper-button-next,
.gallery-swiper .swiper-button-prev {
    color: white;
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-top: -25px;
    transition: all 0.3s ease;
}

.gallery-swiper .swiper-button-next:hover,
.gallery-swiper .swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: scale(1.1);
}

.gallery-swiper .swiper-button-next::after,
.gallery-swiper .swiper-button-prev::after {
    font-size: 20px;
    font-weight: bold;
}

/* Swiper Pagination */
.gallery-swiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    width: 12px;
    height: 12px;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.gallery-swiper .swiper-pagination-bullet-active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Mobile Responsive */
@media (max-width: 767.98px) {
    .gallery-swiper {
        height: 500px;
    }
    
    .gallery-swiper .swiper-slide {
        height: 500px !important;
    }
    
    .gallery-swiper .swiper-slide img {
        height: 500px !important;
    }
    
    .gallery-img {
        height: 500px !important;
    }
    
    .gallery-swiper .swiper-button-next,
    .gallery-swiper .swiper-button-prev {
        width: 40px;
        height: 40px;
        margin-top: -20px;
    }
    
    .gallery-swiper .swiper-button-next::after,
    .gallery-swiper .swiper-button-prev::after {
        font-size: 16px;
    }
    
    .gallery-swiper .swiper-pagination {
        display: none !important;
    }
}

/* Tour Info Section */
.tour-info-section {
    background: var(--white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1.5rem 0;
}

/* Tour Meta Single */
.tour-meta-single {
    margin-bottom: 1.5rem;
}

.meta-item-single {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.8) 0%, rgba(237, 242, 247, 0.8) 100%);
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    justify-content: center;
}

.meta-item-single:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.meta-item-single i {
    font-size: 1.1rem;
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.meta-item-single span {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.2;
}

/* Tour Booking Single */
.tour-booking-single {
    background: var(--white);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.booking-actions {
    margin-top: 1rem;
}

.booking-actions .btn {
    margin: 0;
}

.tour-details-card {
    background: var(--white);
    border-radius: 15px;
    padding: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.tour-meta-mobile {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.tour-meta-mobile .meta-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.8) 0%, rgba(237, 242, 247, 0.8) 100%);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.tour-meta-mobile .meta-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.tour-meta-mobile .meta-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.tour-meta-mobile .meta-item span {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.tour-booking-card {
    background: var(--white);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 2rem;
}

.booking-price {
    text-align: center;
    margin-bottom: 1.5rem;
}

.booking-price .original-price {
    display: block;
    font-size: 1rem;
    color: var(--text-light);
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.booking-price .current-price {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-color);
}

.booking-dates {
    text-align: center;
    margin-bottom: 1.5rem;
}

.booking-dates small {
    color: var(--text-light);
    font-size: 0.9rem;
}

.booking-actions .btn {
    /* border-radius: 25px; */
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    transition: all 0.3s ease;
}

.booking-actions .btn-success {
    /* background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%); */
    border: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.booking-actions .btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.booking-actions .btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.booking-actions .btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(26, 54, 93, 0.3);
}

/* Tour Details Section */
.tour-details {
    background: #f8f9fa;
}

.tour-section {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
}

.tour-section h2 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--accent-color);
}

.tour-section .lead {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

/* Accordion Styling */
.accordion-button {
    background: #f8f9fa;
    border: none;
    font-weight: 600;
    color: var(--text-dark);
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: white;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(44, 85, 48, 0.25);
}

.accordion-item {
    border: 1px solid #e9ecef;
    margin-bottom: 0.5rem;
    border-radius: 10px !important;
    overflow: hidden;
}

/* Sidebar */
.sidebar-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
}

.sidebar-card h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-color);
}

.fact-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

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

/* Gallery */
/* Old gallery styles removed - now using Swiper */

/* Similar Tours */
.similar-tour {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.similar-tour img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.similar-tour-info {
    flex: 1;
}

.similar-tour-info h6 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.similar-tour-info small {
    color: var(--text-light);
    display: block;
    margin-bottom: 0.5rem;
}

/* Our Story Section */
.our-story {
    background: white;
}

.stats-row {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-light);
    font-weight: 500;
}

/* Mission Cards */
.mission-card {
    text-align: center;
    padding: 2rem 1rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-5px);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.mission-icon i {
    font-size: 2rem;
    color: white;
}

.mission-card h3 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 1rem;
}

.mission-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Team Cards */
.team-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-image {
    height: 250px;
    overflow: hidden;
}

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

.team-info {
    padding: 1.5rem;
}

.team-info h4 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-bio {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.team-certifications {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* Feature Cards */
.feature-card {
    background: white;
    padding: 2rem 1rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h4 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Testimonial Cards */
.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    height: 100%;
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content .stars {
    color: #ffc107;
    margin-bottom: 1rem;
}

.testimonial-content p {
    color: var(--text-light);
    font-style: italic;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h5 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-info small {
    color: var(--text-light);
}

/* Contact Section */
.contact-section {
    background: #f8f9fa;
}

.contact-form-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.contact-form-card h2 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--accent-color);
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: border-color 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(44, 85, 48, 0.25);
}

/* Contact Info Card */
.contact-info-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    height: fit-content;
}

.contact-info-card h3 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--accent-color);
}

.contact-methods {
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.contact-method:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon.whatsapp {
    background: #25d366;
}

.contact-icon.email {
    background: #007bff;
}

.contact-icon.phone {
    background: #28a745;
}

.contact-icon.location {
    background: #dc3545;
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-details h5 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-details p {
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.contact-details small {
    color: var(--text-light);
}

/* Social Links Contact */
.social-links-contact {
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.social-links-contact h5 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.social-links-contact .social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.social-links-contact .social-link:hover {
    transform: translateY(-3px);
}

.social-links-contact .social-link.youtube {
    background: #ff0000;
}

/* Map Section */
.map-section {
    background: white;
}

.map-container {
    height: 400px;
    overflow: hidden;
}

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

/* FAQ Section */
.faq-section {
    background: #f8f9fa !important;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-primary) !important;
}

.cta-buttons .btn {
    margin-bottom: 1rem;
}

/* Pagination Styles */
.pagination {
    margin-bottom: 0;
}

.pagination .page-link {
    color: var(--primary-color);
    background-color: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    margin: 0 3px;
    padding: 0.75rem 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 45px;
    text-align: center;
}

.pagination .page-link:hover {
    color: var(--white);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(26, 54, 93, 0.3);
}

.pagination .page-item.active .page-link {
    color: var(--white);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(26, 54, 93, 0.3);
}

.pagination .page-item.disabled .page-link {
    color: var(--text-light);
    background-color: #f8f9fa;
    border-color: #e9ecef;
    cursor: not-allowed;
    opacity: 0.6;
}

.pagination .page-item.disabled .page-link:hover {
    transform: none;
    box-shadow: none;
    background-color: #f8f9fa;
    border-color: #e9ecef;
}

/* Mobile Pagination */
@media (max-width: 575.98px) {
    .pagination .page-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
        margin: 0 2px;
        min-width: 40px;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}
