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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --dark: #1a1a1a;
    --transition: all 0.3s ease;
}

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

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

/* HEADER */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-menu a:hover {
    color: var(--secondary-color);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    list-style: none;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown.active>a i {
    transform: rotate(180deg);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    padding: 0.7rem 1.5rem;
    display: block;
}

.dropdown>a i {
    transition: transform 0.3s ease;
}

.dropdown-menu a:hover {
    background: var(--light-bg);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
}

/* HERO SECTION */
.hero {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

.hero-content {
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

.btn {
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background: transparent;
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* PAGE HEADER */
.page-header {
    height: 50vh;
    min-height: 300px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?w=1920&h=1080&fit=crop') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

.page-header-content {
    z-index: 2;
    position: relative;
}

.page-header-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.page-header-content p {
    font-size: 1.5rem;
    animation: fadeInUp 1s ease 0.2s both;
}

/* SECTIONS */
section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    margin: 1rem auto;
}

/* TOURS SECTION */
.tours-section {
    background: var(--light-bg);
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.tour-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

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

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

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.tour-content {
    padding: 1.5rem;
}

.tour-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.tour-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.8;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-clamp: 3;
}

.tour-content-1 {
    padding: 1.5rem;
    white-space: pre-line;
}

.tour-content-1 h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.tour-content-1 p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.8;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.tour-info {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.tour-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.tour-info i {
    color: var(--secondary-color);
}

.tour-btn {
    display: inline-block;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.tour-btn:hover {
    color: var(--primary-color);
}

/* SERVICES */
.services-section {
    background: var(--white);
}

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

.service-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    flex-grow: 1;
}

.service-btn {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    transition: var(--transition);
}

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

/* GALLERY */
.gallery-section {
    background: var(--light-bg);
}

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

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    height: 300px;
    cursor: pointer;
    position: relative;
}

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

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

/* FEEDBACK */
.feedback-section {
    background: var(--white);
}

.feedback-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.feedback-track {
    position: relative;
    overflow: hidden;
}

.feedback-slide {
    display: none;
    animation: fadeIn 0.5s ease;
}

.feedback-slide.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.feedback-content {
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feedback-stars {
    color: #f39c12;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.feedback-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.feedback-author {
    color: var(--primary-color);
    font-size: 1.2rem;
}

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

.slider-btn {
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 0.7rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

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

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--secondary-color);
}

/* ABOUT US */
.about-section {
    background: var(--light-bg);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #555;
}

.about-text h4 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
}

.why-choose-us {
    list-style: none;
    margin-top: 1.5rem;
}

.why-choose-us li {
    padding: 0.8rem 0;
    color: #555;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.why-choose-us i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

/* CONTACT */
.contact-section {
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.error-message {
    color: var(--accent-color);
    font-size: 0.9rem;
    margin-top: 0.3rem;
    display: block;
    min-height: 1.2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-top: 0.3rem;
}

.contact-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #666;
}

.social-media {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* Simple loader for submit button */
.loader {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255,255,255,0.45);
    border-top-color: #ffffff;
    border-radius: 50%;
    margin-right: 8px;
    vertical-align: middle;
    animation: spin 0.8s linear infinite;
}

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

.btn[disabled] {
    opacity: 0.8;
    cursor: not-allowed;
}

/* FOOTER */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-section p {
    color: #ccc;
    line-height: 1.8;
}

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

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

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        padding: 2rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        gap: 1rem;
        align-items: stretch;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu>li>a {
        width: 100%;
        justify-content: center;
        padding: 0.8rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transform: none;
        box-shadow: none;
        background: var(--light-bg);
        margin-top: 0;
        padding: 0;
        transition: all 0.3s ease;
        width: 100%;
        margin-left: 0;
    }

    .dropdown-menu a {
        padding: 0.8rem 1.5rem;
        text-align: center;
    }

    .dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 500px;
        margin-top: 0.5rem;
        padding: 0.5rem 0;
    }

    .dropdown.active>a i {
        transform: rotate(180deg);
    }

    .page-header {
        height: 40vh;
        min-height: 250px;
    }

    .page-header-content h1 {
        font-size: 2rem;
    }

    .page-header-content p {
        font-size: 1.2rem;
    }

    .hero-slide {
        background-size: cover;
        background-position: center center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .tours-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-header {
        height: 35vh;
        min-height: 200px;
    }

    .page-header-content h1 {
        font-size: 1.5rem;
    }

    .page-header-content p {
        font-size: 1rem;
    }

    .hero-slide {
        background-size: cover;
        background-position: center center;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}

/* VIDEO GALLERY */
.video-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.video-item {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s;
    cursor: pointer;
}

.video-item:hover {
    transform: translateY(-10px);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
    overflow: hidden;
    background-color: #000;
}

.video-wrapper img.poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: none;
    /* Ilki gizlin */
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(0, 77, 64, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.play-button:hover {
    background-color: rgba(0, 100, 80, 0.9);
}

.play-button::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 20px solid white;
    border-top: 12px transparent solid;
    border-bottom: 12px transparent solid;
    margin-left: 5px;
}

.video-caption {
    padding: 1rem;
    text-align: center;
    font-weight: bold;
    background-color: #ffffff;
}

footer {
    background-color: #004d40;
    color: white;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .video-gallery {
        grid-template-columns: 1fr;
    }
}










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

.tours-section h2 {
    text-align: center;
    color: #004d40;
    margin-bottom: 2.5rem;
    font-size: 2.2rem;
}

.tour-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.tour-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

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

.card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

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

.popular-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #ff4444;
    color: white;
    padding: 0.4rem 0.9rem;
    font-size: 0.9rem;
    font-weight: bold;
    border-radius: 20px;
    z-index: 2;
}

.rating {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.35rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.card-content {
    padding: 1.5rem;
}

.card-title {
    font-size: 1.4rem;
    margin: 0 0 0.8rem;
    color: #004d40;
}

.location {
    display: flex;
    align-items: center;
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.location::before {
    content: "📍 ";
    margin-right: 5px;
}

.details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1rem 0;
    font-size: 0.9rem;
}

.detail-item {
    background-color: #e0f2f1;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
}

.price-info {
    margin: 1rem 0;
}

.duration {
    font-weight: bold;
    color: #004d40;
}

.group-price {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    font-size: 1.1rem;
}

.next-departure {
    color: #d32f2f;
    font-weight: bold;
}

.read-more {
    display: block;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(90deg, #ff5722, #f57c00);
    color: white;
    text-align: center;
    font-weight: bold;
    border: none;
    border-radius: 0 0 12px 12px;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
}

.read-more:hover {
    background: linear-gradient(90deg, #e64a19, #ef6c00);
}

.tour-location-chip {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #004d40;
    color: white;
    padding: 0.4rem 0.9rem;
    font-size: 0.85rem;
    border-radius: 20px;
    z-index: 2;
}

@media (max-width: 768px) {
    .tour-cards {
        grid-template-columns: 1fr;
    }
}

/* ========== TOUR DETAIL PAGE (TmTourism-style) ========== */
.tour-detail-page {
    padding: 2rem 0 4rem;
    min-height: 60vh;
}

.tour-detail-page .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* Breadcrumb */
.tour-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    align-items: center;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.25rem;
}

.tour-breadcrumb a {
    color: var(--secondary-color);
    text-decoration: none;
}

.tour-breadcrumb a:hover {
    text-decoration: underline;
}

.tour-breadcrumb span {
    color: #999;
}

/* Tour banner (single image, no slider) */
.tour-banner {
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 420px;
    background: #111 center / cover no-repeat;
    border-radius: 12px 12px 0 0;
}

/* Carousel (legacy, unused on tour page) */
.carousel-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 420px;
    background: #111;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    font-size: 1.25rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.carousel-btn:hover {
    background: #fff;
    color: var(--secondary-color);
}

.carousel-btn.prev {
    left: 12px;
}

.carousel-btn.next {
    right: 12px;
}

.carousel-counter {
    position: absolute;
    bottom: 12px;
    right: 12px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Gallery thumbnails */
.gallery-thumbnails {
    display: flex;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: #f5f5f5;
    border-radius: 0 0 12px 12px;
    flex-wrap: wrap;
}

.gallery-thumbnails .thumbnail {
    width: 70px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    border: 3px solid transparent;
    opacity: 0.7;
    transition: opacity 0.2s, border-color 0.2s;
}

.gallery-thumbnails .thumbnail:hover {
    opacity: 1;
}

.gallery-thumbnails .thumbnail.active {
    border-color: var(--secondary-color);
    opacity: 1;
}

/* Tour detail card */
.tour-detail-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 2rem;
}

.tour-detail-card .card-body {
    padding: 1.75rem 1.5rem;
}

.tour-detail-card .card-title {
    font-size: 1.75rem;
    color: #004d40;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.tour-detail-card .short_description {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.tour-detail-card .short_description p {
    margin-bottom: 0.5rem;
}

/* Stats row (days, groups, options) */
.tour-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.tour-stat-box {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1rem 0.75rem;
    transition: box-shadow 0.2s;
}

.tour-stat-box:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.tour-stat-box i {
    display: block;
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.35rem;
}

.tour-stat-box .stat-value {
    font-size: 1.35rem;
    font-weight: 700;
    color: #333;
}

.tour-stat-box .stat-label {
    font-size: 0.85rem;
    color: #666;
}

/* Alert */
.tour-detail-card .alert {
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tour-detail-card .alert-info {
    background: #e3f2fd;
    color: #1565c0;
    border: 1px solid #90caf9;
}

.tour-detail-card .alert-info i {
    color: #1565c0;
}

/* Accordion */
.tour-accordion .card {
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    overflow: hidden;
}

.tour-accordion .card-header {
    padding: 0;
    background: #fff;
    border-bottom: none;
}

.tour-accordion .card-header .btn-link {
    display: block;
    width: 100%;
    padding: 1rem 1.25rem;
    text-align: left;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: background 0.2s;
}

.tour-accordion .card-header .btn-link:hover {
    background: #f5f5f5;
    color: #333;
}

.tour-accordion .card-header .btn-link h6 {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tour-accordion .chevron-icon {
    transition: transform 0.25s ease;
    color: #666;
}

.tour-accordion .card-header .btn-link[aria-expanded="true"] .chevron-icon {
    transform: rotate(180deg);
}

.tour-accordion .collapse {
    display: none;
}

.tour-accordion .collapse.show {
    display: block;
}

.tour-accordion .card-body {
    padding: 1rem 1.25rem;
    border-top: 1px solid #eee;
    background: #fafafa;
}

.tour-accordion .card-body ul {
    margin: 0;
    padding-left: 1.25rem;
    line-height: 1.8;
    color: #555;
}

.tour-accordion .card-body p {
    margin: 0 0 0.75rem;
    color: #555;
    line-height: 1.7;
}

.tour-accordion .card-body p:last-child {
    margin-bottom: 0;
}

/* Tour program section header */
.tour-program-title {
    font-size: 1.25rem;
    color: #333;
    margin: 1.5rem 0 1rem;
    padding-bottom: 0.5rem;
}

/* Tags */
.tour-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.tour-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: #e0f2f1;
    color: #004d40;
    padding: 0.4rem 0.85rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.tour-tag i {
    font-size: 0.85rem;
}

.tour-detail-page .mb-0 {
    margin-bottom: 0;
}

/* Legacy row/col fix for tour page (no Bootstrap) */
.tour-detail-page .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
}

.tour-detail-page .col-3 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    padding: 0 0.5rem;
}

@media (max-width: 768px) {
    .tour-detail-page .col-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .tour-banner,
    .carousel-container {
        max-height: 280px;
    }

    .tour-stats-row {
        grid-template-columns: 1fr;
    }

    .tour-detail-card .card-title {
        font-size: 1.4rem;
    }
}