/* ========================================
   DALYAN TEKNE KOOPERATİFİ - MAIN CSS
   Full Responsive & SEO Optimized
   ======================================== */

/* ========================================
   CSS VARIABLES & RESET
   ======================================== */
:root {
    --primary-color: #0077be;
    --secondary-color: #ff4757;
    --dark-color: #1e272e;
    --light-color: #f1f2f6;
    --white-color: #ffffff;
    --text-color: #2f3542;
    --gray-color: #747d8c;
    --success-color: #2ed573;
    --shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --font-primary: 'Poppins', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    line-height: 1.7;
    color: var(--text-color);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    width: 100%;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

/* Section Headers */
.section-header {
    margin-bottom: 50px;
}

.section-subtitle {
    display: inline-block;
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.section-description {
    font-size: 16px;
    color: var(--gray-color);
    max-width: 700px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
}

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

.btn-primary:hover {
    background: #ff3838;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 71, 87, 0.3);
}

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

.btn-secondary:hover {
    background: #006ba6;
    transform: translateY(-2px);
}

.btn-light {
    background: var(--white-color);
    color: var(--dark-color);
}

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

.btn-text {
    color: var(--secondary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-text:hover {
    gap: 12px;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--white-color);
    box-shadow: var(--shadow);
}

/* Top Bar */
.top-bar {
    background: var(--dark-color);
    color: var(--white-color);
    padding: 10px 0;
    font-size: 13px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.contact-info {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.contact-info a,
.contact-info span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white-color);
}

.contact-info a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

/* Navbar */
.navbar {
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    width: 130px;
    height: auto;
    border-radius: 8px;
    object-fit: contain;
    flex-shrink: 0;
}

.logo-text h1 {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.1;
    margin-bottom: 3px;
    letter-spacing: 0.5px;
}

.logo-text p {
    font-size: 10px;
    color: var(--gray-color);
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    font-weight: 600;
    font-size: 14px;
    color: var(--dark-color);
    padding: 8px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.has-dropdown {
    position: relative;
}

.has-dropdown>.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
}

.has-dropdown>.nav-link i {
    font-size: 10px;
    transition: var(--transition);
}

.has-dropdown:hover>.nav-link i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--white-color);
    border-radius: 0 0 12px 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 10px 0;
    border-top: 3px solid #2ed573;
    display: block;
}

.has-dropdown:hover>.dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.dropdown-menu li {
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.dropdown-menu li a:hover {
    background: #f8f9fa;
    color: var(--secondary-color);
    border-left-color: var(--secondary-color);
    padding-left: 28px;
}

.language-selector a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 15px;
    background: var(--light-color);
    border-radius: 20px;
}

.language-selector img {
    width: 20px;
    height: 15px;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--dark-color);
    border-radius: 3px;
    transition: var(--transition);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    margin-top: 130px;
    height: calc(100vh - 130px);
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

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

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

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

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    color: var(--white-color);
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 17px;
    margin-bottom: 35px;
    line-height: 1.7;
    max-width: 600px;
    opacity: 0.95;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.hero-nav {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    gap: 15px;
    z-index: 3;
}

.hero-prev,
.hero-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid var(--white-color);
    border-radius: 50%;
    color: var(--white-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
}

.hero-prev:hover,
.hero-next:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* ========================================
   ABOUT SECTION - REDESIGNED
   ======================================== */
.about-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    overflow: visible;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-visual {
    position: relative;
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 20px;
    min-height: 480px;
}

.about-cta-box {
    background: linear-gradient(180deg, #39b5e8 0%, #2196d4 100%);
    color: var(--white-color);
    padding: 40px 25px;
    border-radius: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(33, 150, 212, 0.3);
    position: relative;
    z-index: 10;
}

.about-cta-box i {
    font-size: 42px;
    margin-bottom: 20px;
    opacity: 0.95;
}

.about-cta-box h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-cta {
    display: inline-block;
    padding: 14px 30px;
    background: #ff6b4f;
    color: white;
    border-radius: 30px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 107, 79, 0.4);
}

.btn-cta:hover {
    background: #ff5236;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 79, 0.5);
}

.about-images-stack {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.stack-img {
    position: absolute;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.stack-img:hover {
    transform: scale(1.02) rotate(0deg) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    z-index: 20 !important;
}

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

.stack-img-1 {
    width: 220px;
    height: 180px;
    top: 0;
    left: 0;
    transform: rotate(-5deg);
    z-index: 3;
}

.stack-img-2 {
    width: 280px;
    height: 200px;
    top: 30px;
    left: 100px;
    transform: rotate(3deg);
    z-index: 4;
}

.stack-img-3 {
    width: 320px;
    height: 180px;
    bottom: 0;
    left: 40px;
    transform: rotate(-2deg);
    z-index: 2;
}

.about-content-right {
    padding-top: 20px;
}

.about-subtitle {
    display: inline-block;
    color: var(--secondary-color);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.about-decoration {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}

.about-decoration .dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.6;
}

.about-decoration .dot:first-child {
    opacity: 1;
}

.about-decoration i {
    color: var(--primary-color);
    font-size: 20px;
    margin-left: 8px;
}

.about-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--dark-color);
    margin: 0 0 30px 0;
    line-height: 1.1;
}

.about-intro {
    font-size: 15px;
    font-weight: 500;
    color: var(--dark-color);
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-desc {
    font-size: 14px;
    color: var(--gray-color);
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-guarantee {
    display: flex;
    gap: 18px;
    align-items: center;
    padding: 25px 30px;
    background: linear-gradient(135deg, #e8f4f8 0%, #d6eef5 100%);
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 5px 20px rgba(0, 119, 190, 0.1);
}

.guarantee-icon {
    flex-shrink: 0;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #ffa726 0%, #ff9100 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 26px;
    box-shadow: 0 5px 15px rgba(255, 145, 0, 0.35);
}

.guarantee-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.guarantee-content p {
    font-size: 13px;
    color: var(--gray-color);
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 1100px) {
    .about-wrapper {
        gap: 50px;
    }

    .about-visual {
        grid-template-columns: 160px 1fr;
    }

    .stack-img-1 {
        width: 180px;
        height: 150px;
    }

    .stack-img-2 {
        width: 240px;
        height: 170px;
        left: 80px;
    }

    .stack-img-3 {
        width: 280px;
        height: 160px;
    }
}

@media (max-width: 992px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-visual {
        grid-template-columns: 160px 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .about-content-right {
        text-align: center;
    }

    .about-decoration {
        justify-content: center;
    }

    .about-guarantee {
        text-align: left;
        max-width: 450px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }

    .about-visual {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .about-cta-box {
        order: -1;
        padding: 30px 20px;
    }

    .about-images-stack {
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 15px;
        min-height: auto;
    }

    .stack-img {
        position: relative;
        transform: none !important;
        width: 100% !important;
        height: auto !important;
        top: auto !important;
        left: auto !important;
        bottom: auto !important;
    }

    .stack-img img {
        height: 200px;
    }

    .about-title {
        font-size: 32px;
    }

    .about-guarantee {
        flex-direction: column;
        text-align: center;
    }
}

/* ========================================
   PARTNERS SECTION
   ======================================== */
.partners-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    overflow: hidden;
}

.partners-slider-wrapper {
    overflow: hidden;
    padding: 40px 0;
    position: relative;
}

.partners-slider-wrapper::before,
.partners-slider-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.partners-slider-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #f8f9fa, transparent);
}

.partners-slider-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #f8f9fa, transparent);
}

.partners-slider {
    display: flex;
    gap: 60px;
    animation: slide 40s linear infinite;
}

.partners-slider:hover {
    animation-play-state: paused;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.partner-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    height: 100px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.partner-item img {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* ========================================
   TOURS SECTION
   ======================================== */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tour-card {
    background: var(--white-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

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

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

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

.tour-price {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: var(--white-color);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
}

.tour-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.tour-card:hover .tour-overlay {
    opacity: 1;
}

.tour-link {
    color: var(--white-color);
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tour-content {
    padding: 25px;
}

.tour-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--gray-color);
}

.tour-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.tour-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.tour-rating {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 15px;
}

.stars {
    color: #ffa500;
    font-size: 16px;
}

.review-count {
    font-size: 13px;
    color: var(--gray-color);
}

.tour-excerpt {
    font-size: 14px;
    color: var(--gray-color);
    line-height: 1.6;
    margin-bottom: 15px;
}

/* ========================================
   STATS SECTION
   ======================================== */
.stats-section {
    position: relative;
    padding: 0;
    background: #f5f5f5;
    overflow: hidden;
}

.stats-wrapper {
    display: grid;
    grid-template-columns: 45% 55%;
    min-height: 600px;
}

.stats-image-side {
    position: relative;
    overflow: hidden;
}

.stats-image-side::before {
    content: '';
    position: absolute;
    top: 0;
    right: -50px;
    width: 100px;
    height: 100%;
    background: linear-gradient(90deg, transparent, #49b6d4);
    z-index: 1;
    transform: skewX(-5deg);
}

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

.stats-badge {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    background: white;
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stats-badge img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: contain;
}

.stats-content-side {
    background: linear-gradient(135deg, #49b6d4 0%, #3ca8c5 100%);
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stats-subtitle {
    display: inline-block;
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
    opacity: 0.9;
    position: relative;
    padding-left: 50px;
}

.stats-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 40px;
    height: 2px;
    background: white;
}

.stats-title {
    font-size: 38px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.stats-desc {
    font-size: 14px;
    color: white;
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 450px;
}

.stats-grid-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 35px;
}

.stat-box {
    display: flex;
    gap: 15px;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    padding: 18px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-icon-new {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.stat-info h3 {
    font-size: 28px;
    font-weight: 800;
    color: white;
    margin: 0;
    line-height: 1;
}

.stat-info p {
    font-size: 11px;
    color: white;
    opacity: 0.85;
    margin: 4px 0 0 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stats-contact {
    display: flex;
    gap: 18px;
    align-items: center;
    background: white;
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    max-width: 380px;
}

.contact-icon-new {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #49b6d4 0%, #3ca8c5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    flex-shrink: 0;
}

.contact-info-new span {
    display: block;
    font-size: 13px;
    color: #666;
    margin-bottom: 3px;
}

.contact-info-new a {
    font-size: 22px;
    font-weight: 700;
    color: #49b6d4;
    transition: color 0.3s ease;
}

.contact-info-new a:hover {
    color: #3ca8c5;
}

@media (max-width: 992px) {
    .stats-wrapper {
        grid-template-columns: 1fr;
    }

    .stats-image-side {
        height: 350px;
    }

    .stats-image-side::before {
        display: none;
    }

    .stats-content-side {
        padding: 50px 30px;
    }

    .stats-title {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .stats-grid-new {
        grid-template-columns: 1fr;
    }

    .stats-contact {
        flex-direction: column;
        text-align: center;
    }
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

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

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

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

.service-content {
    padding: 25px;
}

.service-label {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white-color);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-content p {
    font-size: 14px;
    color: var(--gray-color);
    line-height: 1.6;
}

/* ========================================
   GALLERY SECTION
   ======================================== */
.gallery-section {
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

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

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 119, 190, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 48px;
    color: var(--white-color);
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    position: relative;
    padding: 100px 0;
    background-image: url('../images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 39, 46, 0.85);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: var(--white-color);
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* ========================================
   BLOG SECTION
   ======================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--white-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

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

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

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

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: var(--gray-color);
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials-section {
    padding: 80px 0;
    background: var(--light-color);
}

.testimonial-item {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-logo {
    margin-bottom: 30px;
}

.testimonial-logo img {
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

blockquote {
    font-size: 20px;
    font-style: italic;
    color: var(--dark-color);
    line-height: 1.8;
    margin-bottom: 30px;
}

cite {
    font-style: normal;
}

cite strong {
    display: block;
    font-size: 18px;
    color: var(--dark-color);
    margin-bottom: 5px;
}

cite span {
    font-size: 14px;
    color: var(--gray-color);
}

.testimonial-dots {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 30px;
}

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

.dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}

/* ========================================
   FOOTER - REDESIGNED
   ======================================== */
.footer {
    background: #1a1a1a;
    color: var(--white-color);
}

.footer-main {
    padding: 50px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
    gap: 30px;
}

.footer-col-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-divider {
    width: 3px;
    height: 20px;
    background: var(--secondary-color);
    border-radius: 2px;
    flex-shrink: 0;
}

.footer-col h3 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin: 0;
    text-transform: uppercase;
}

.footer-col p {
    font-size: 13px;
    line-height: 1.7;
    opacity: 0.75;
    margin-bottom: 25px;
}

.footer-contact-intro {
    margin-bottom: 18px !important;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo-text .logo-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--secondary-color);
    letter-spacing: 0.5px;
    line-height: 1.1;
}

.footer-logo-text .logo-subtitle {
    font-size: 9px;
    font-weight: 600;
    opacity: 0.7;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-contact {
    margin: 0;
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 13px;
}

.footer-contact i {
    color: var(--secondary-color);
    font-size: 14px;
    margin-top: 2px;
    width: 14px;
    flex-shrink: 0;
}

.footer-contact a,
.footer-contact span {
    opacity: 0.85;
    line-height: 1.5;
}

.footer-contact a:hover {
    color: var(--secondary-color);
    opacity: 1;
}

.footer-posts {
    margin: 0;
    padding: 0;
}

.footer-posts li {
    margin-bottom: 18px;
    padding-bottom: 0;
    border-bottom: none;
}

.footer-posts li:last-child {
    margin-bottom: 0;
}

.footer-posts a {
    font-size: 13px;
    display: block;
    margin-bottom: 5px;
    opacity: 0.85;
    line-height: 1.4;
}

.footer-posts a:hover {
    color: var(--secondary-color);
    opacity: 1;
}

.footer-posts .post-date {
    font-size: 11px;
    opacity: 0.5;
    display: block;
}

.footer-map {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.footer-map iframe {
    display: block;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 18px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 12px;
    opacity: 0.6;
    margin: 0;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-col {
        text-align: center;
    }

    .footer-col-header {
        justify-content: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-contact li {
        justify-content: center;
    }
}

.scroll-top {
    width: 45px;
    height: 45px;
    background: var(--secondary-color);
    border: none;
    border-radius: 50%;
    color: var(--white-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.scroll-top:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

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

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

@keyframes pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.05);
    }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .section-title {
        font-size: 32px;
    }

    .about-content,
    .stats-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tours-grid,
    .services-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    .section-padding {
        padding: 50px 0;
    }

    .section-title {
        font-size: 28px;
    }

    /* Header */
    .top-bar {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white-color);
        flex-direction: column;
        padding: 40px 20px;
        transition: var(--transition);
        box-shadow: var(--shadow);
    }

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

    /* Hero */
    .hero {
        height: 500px;
        margin-top: 80px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 16px;
    }

    /* Grids */
    .tours-grid,
    .services-grid,
    .blog-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 24px;
    }

    .about-cta-box {
        position: static;
        margin-top: 20px;
        max-width: 100%;
    }
}

/* Print Styles */
@media print {

    .header,
    .hero-nav,
    .btn,
    .footer {
        display: none;
    }
}

/* ========================================
   LIGHTBOX
   ======================================== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    animation: zoomIn 0.3s ease;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 40px;
    color: var(--white-color);
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--secondary-color);
    transform: rotate(90deg);
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* ========================================
   HAMBURGER ACTIVE STATE
   ======================================== */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ========================================
   LOADING STATE
   ======================================== */
body:not(.loaded) {
    overflow: hidden;
}

body:not(.loaded)::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white-color);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

body:not(.loaded)::after {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 4px solid var(--light-color);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 999999;
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* ========================================
   SCROLL INDICATOR
   ======================================== */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    z-index: 9999;
    transform-origin: left;
}

/* ========================================
   PAGE HERO (Alt Sayfalar)
   ======================================== */
.page-hero {
    position: relative;
    height: 300px;
    background: linear-gradient(135deg, #1e3a5f 0%, #0d2137 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 130px;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" stroke="rgba(255,255,255,0.03)" stroke-width="0.5" fill="none"/></svg>') repeat;
    opacity: 0.5;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white-color);
}

.page-hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    opacity: 0.8;
}

.breadcrumb a {
    color: var(--white-color);
    transition: var(--transition);
}

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

.breadcrumb span {
    opacity: 0.6;
}

/* ========================================
   PAGE CONTENT
   ======================================== */
.page-content {
    background: #f8f9fa;
}

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

.content-block {
    display: flex;
    gap: 30px;
    background: var(--white-color);
    padding: 40px;
    border-radius: 16px;
    margin-bottom: 30px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.content-block:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.content-block:last-child {
    margin-bottom: 0;
}

.content-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #005a8c 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 28px;
    box-shadow: 0 8px 25px rgba(0, 119, 190, 0.3);
}

.content-text h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.content-text .lead {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 15px;
}

.content-text p {
    font-size: 15px;
    color: var(--gray-color);
    line-height: 1.8;
    margin-bottom: 12px;
}

.content-text p:last-child {
    margin-bottom: 0;
}

.content-highlight {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: linear-gradient(135deg, #e8f4f8 0%, #d6eef5 100%);
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
    border-left: 4px solid var(--primary-color);
}

.content-highlight i {
    color: var(--primary-color);
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.content-highlight p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-color);
}

.content-highlight.eco {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-left-color: var(--success-color);
}

.content-highlight.eco i {
    color: var(--success-color);
}

.content-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.contact-item i {
    color: var(--secondary-color);
    font-size: 16px;
    width: 20px;
}

.contact-item a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-item a:hover {
    color: var(--secondary-color);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 25px 0;
}

.spec-item {
    text-align: center;
    padding: 20px 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
}

.spec-value {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 5px;
}

.spec-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--gray-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .page-hero {
        height: 220px;
        margin-top: 80px;
    }

    .page-hero-content h1 {
        font-size: 28px;
    }

    .content-block {
        flex-direction: column;
        padding: 25px;
    }

    .content-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================================
   ABOUT PAGE SECTIONS (Yeni Tasarım)
   ======================================== */
.about-page-section {
    padding: 100px 0;
}

.about-page-section.alt-bg {
    background: #f8f9fa;
}

.about-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-row.reverse {
    direction: rtl;
}

.about-row.reverse>* {
    direction: ltr;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #005a8c 100%);
    color: var(--white-color);
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 119, 190, 0.4);
}

.badge-year {
    display: block;
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
}

.badge-text {
    font-size: 12px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tursab-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--white-color);
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.tursab-badge img {
    width: 80px;
    height: auto;
}

.about-text .section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.about-text h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.2;
    margin-bottom: 25px;
}

.about-text .lead {
    font-size: 17px;
    font-weight: 500;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 15px;
    color: var(--gray-color);
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-features {
    display: flex;
    gap: 25px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #e9ecef;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #e8f4f8 0%, #d6eef5 100%);
    color: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.feature-item span {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark-color);
}

.contact-box {
    background: linear-gradient(135deg, #1e3a5f 0%, #0d2137 100%);
    padding: 25px 30px;
    border-radius: 16px;
    margin-top: 25px;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--white-color);
    font-size: 14px;
    margin-bottom: 12px;
}

.contact-row:last-child {
    margin-bottom: 0;
}

.contact-row i {
    color: var(--secondary-color);
    font-size: 16px;
    width: 20px;
}

.contact-row a {
    color: var(--white-color);
    font-weight: 600;
}

.contact-row a:hover {
    color: var(--secondary-color);
}

.specs-row {
    display: flex;
    gap: 20px;
    margin: 30px 0;
}

.spec {
    flex: 1;
    text-align: center;
    padding: 20px 15px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #005a8c 100%);
    border-radius: 12px;
    color: var(--white-color);
}

.spec strong {
    display: block;
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.spec span {
    font-size: 11px;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.eco-note {
    display: flex;
    gap: 15px;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    padding: 20px;
    border-radius: 12px;
    margin-top: 25px;
    border-left: 4px solid var(--success-color);
}

.eco-note i {
    color: var(--success-color);
    font-size: 24px;
    flex-shrink: 0;
}

.eco-note p {
    margin: 0;
    font-size: 14px;
    color: var(--dark-color);
}

@media (max-width: 992px) {
    .about-row {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-row.reverse {
        direction: ltr;
    }

    .about-text h2 {
        font-size: 30px;
    }

    .about-features {
        flex-wrap: wrap;
    }
}

@media (max-width: 576px) {
    .about-page-section {
        padding: 60px 0;
    }

    .about-image img {
        height: 300px;
    }

    .about-badge {
        bottom: -15px;
        right: 15px;
        padding: 15px 20px;
    }

    .badge-year {
        font-size: 28px;
    }

    .specs-row {
        flex-wrap: wrap;
    }

    .spec {
        flex: 1 1 45%;
    }
}

/* ========================================
   BANK ACCOUNTS PAGE
   ======================================== */
.bank-accounts-section {
    background: #f8f9fa;
    padding: 80px 0 !important;
}

.bank-accounts-section .container {
    max-width: 1000px;
}

.bank-intro {
    text-align: center;
    font-size: 16px;
    color: #747d8c;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.bank-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 30px !important;
}

.bank-card {
    display: block !important;
    background: #ffffff !important;
    border: 1px solid #dee2e6 !important;
    border-radius: 8px !important;
    overflow: hidden !important;
}

.bank-logo {
    padding: 30px !important;
    text-align: center !important;
    border-bottom: 1px solid #e9ecef !important;
    background: #fafafa !important;
    display: block !important;
}

.bank-logo img {
    height: 40px !important;
    width: auto !important;
    margin: 0 auto !important;
    object-fit: contain !important;
    display: inline-block !important;
}

.bank-info {
    padding: 25px 30px !important;
    display: block !important;
}

.bank-row {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 12px 0 !important;
    border-bottom: 1px solid #f1f2f6 !important;
    font-size: 14px !important;
}

.bank-row:last-child {
    border-bottom: none !important;
}

.bank-row .label {
    font-weight: 700 !important;
    color: #1e272e !important;
}

.bank-row .value {
    color: #57606f !important;
}

.bank-row.iban .value {
    font-family: 'Courier New', monospace !important;
    letter-spacing: 1px !important;
}

@media (max-width: 768px) {
    .bank-grid {
        grid-template-columns: 1fr !important;
    }

    .bank-row {
        flex-direction: column !important;
        text-align: center !important;
        gap: 4px !important;
    }
}

/* ========================================
   HR FORM PAGE
   ======================================== */
.hr-form-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.hr-form-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.06);
}

.form-notice {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #e0f2f1;
    color: #00695c;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    font-size: 14px;
    font-weight: 500;
}

.form-notice i {
    font-size: 18px;
}

.hr-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.hr-form .form-row-3 {
    grid-template-columns: 1fr 1fr 1fr;
}

.hr-form .form-group {
    display: flex;
    flex-direction: column;
}

.hr-form label {
    font-size: 14px;
    font-weight: 600;
    color: #1e272e;
    margin-bottom: 8px;
}

.hr-form input[type="text"],
.hr-form input[type="email"],
.hr-form input[type="tel"],
.hr-form select,
.hr-form textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 14px;
    font-family: inherit;
    color: #2f3542;
    background: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hr-form input:focus,
.hr-form select:focus,
.hr-form textarea:focus {
    outline: none;
    border-color: #0077be;
    box-shadow: 0 0 0 3px rgba(0, 119, 190, 0.1);
}

.hr-form input::placeholder,
.hr-form textarea::placeholder {
    color: #adb5bd;
}

.hr-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23747d8c' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.hr-form textarea {
    resize: vertical;
    min-height: 100px;
}

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

.input-with-icon .input-icon {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f2f6;
    border: 1px solid #dee2e6;
    border-right: none;
    border-radius: 6px 0 0 6px;
    color: #747d8c;
}

.input-with-icon input {
    padding-left: 55px;
    border-radius: 6px;
}

.form-submit {
    margin-top: 30px;
    text-align: center;
}

.form-submit .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #0077be 0%, #005a8c 100%);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 119, 190, 0.35);
}

@media (max-width: 768px) {
    .hr-form-wrapper {
        padding: 25px;
        margin: 0 15px;
    }

    .hr-form .form-row,
    .hr-form .form-row-3 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-notice {
        font-size: 13px;
    }
}

/* ========================================
   REFERENCES PAGE
   ======================================== */
.references-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.references-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.references-intro h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1e272e;
    margin-bottom: 15px;
}

.references-intro p {
    font-size: 16px;
    color: #747d8c;
    line-height: 1.7;
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.reference-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.reference-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.reference-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.reference-logo img {
    max-height: 60px;
    max-width: 140px;
    object-fit: contain;
}

.reference-card h3 {
    font-size: 14px;
    font-weight: 600;
    color: #1e272e;
    margin: 0;
}

.references-cta {
    text-align: center;
    padding: 40px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.references-cta p {
    font-size: 18px;
    color: #1e272e;
    margin-bottom: 20px;
    font-weight: 500;
}

.references-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 35px;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #0077be 0%, #005a8c 100%);
    border: none;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.references-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 119, 190, 0.35);
}

@media (max-width: 992px) {
    .references-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .references-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .references-intro h2 {
        font-size: 26px;
    }

    .reference-card {
        padding: 25px 15px;
    }
}

/* ========================================
   FAQ PAGE
   ======================================== */
.faq-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.faq-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.faq-intro h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1e272e;
    margin-bottom: 15px;
}

.faq-intro p {
    font-size: 16px;
    color: #747d8c;
    line-height: 1.7;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #eee;
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question span {
    font-size: 16px;
    font-weight: 600;
    color: #1e272e;
}

.faq-question i {
    font-size: 14px;
    color: #747d8c;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-question {
    border-bottom: 1px solid #eee;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 20px 25px;
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-intro h2 {
        font-size: 26px;
    }

    .faq-question {
        padding: 18px 20px;
    }

    .faq-question span {
        font-size: 15px;
    }

    .faq-answer p {
        padding: 15px 20px;
        font-size: 14px;
    }
}

/* ========================================
   PRIVACY PAGE
   ======================================== */
.privacy-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.privacy-block {
    margin-bottom: 35px;
}

.privacy-block:last-of-type {
    margin-bottom: 0;
}

.privacy-block h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1e272e;
    margin-bottom: 20px;
}

.privacy-block h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1e272e;
    margin-bottom: 15px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.privacy-block:first-child h3 {
    border-top: none;
    padding-top: 0;
}

.privacy-block p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.privacy-block p:last-child {
    margin-bottom: 0;
}

.privacy-block a {
    color: #0077be;
    text-decoration: none;
}

.privacy-block a:hover {
    text-decoration: underline;
}

.privacy-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.privacy-list li {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.privacy-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 16px;
    width: 6px;
    height: 6px;
    background: #0077be;
    border-radius: 50%;
}

.privacy-update {
    margin-top: 40px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #0077be;
}

.privacy-update p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

@media (max-width: 768px) {
    .privacy-content {
        padding: 30px 20px;
    }

    .privacy-block h2 {
        font-size: 24px;
    }

    .privacy-block h3 {
        font-size: 18px;
    }

    .privacy-block p {
        font-size: 14px;
    }
}

/* ========================================
   SERVICES PAGE
   ======================================== */
.services-page-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.services-page-intro {
    text-align: center;
    margin-bottom: 50px;
}

.services-page-intro h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1e272e;
    margin-bottom: 15px;
}

.services-page-intro p {
    font-size: 16px;
    color: #747d8c;
}

.services-page-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-page-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-page-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

.service-page-card:hover .service-page-image img {
    transform: scale(1.05);
}

.service-page-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 50%;
    padding: 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.service-page-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.service-page-content {
    padding: 25px;
}

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

.service-page-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .services-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-page-grid {
        grid-template-columns: 1fr;
    }

    .services-page-intro h2 {
        font-size: 28px;
    }

    .service-page-image {
        height: 200px;
    }
}

/* ========================================
   TOURS PAGE
   ======================================== */
.tours-page-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.tours-page-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.tours-page-intro h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1e272e;
    margin-bottom: 15px;
}

.tours-page-intro p {
    font-size: 16px;
    color: #747d8c;
    line-height: 1.7;
}

.tours-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tour-page-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
}

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

.tour-page-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.tour-page-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.tour-page-price {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ff4757 0%, #ff3838 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 20px;
    box-shadow: 0 5px 20px rgba(255, 71, 87, 0.4);
    z-index: 2;
}

.tour-page-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: white;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.tour-page-badge img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 50%;
}

.tour-page-content {
    padding: 30px;
}

.tour-page-meta {
    display: flex;
    justify-content: space-around;
    padding: 20px 0;
    margin-bottom: 20px;
    border-bottom: 2px solid #f1f2f6;
}

.tour-page-meta-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.tour-page-meta-item i {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #e8f4f8 0%, #d6eef5 100%);
    color: #0077be;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.tour-page-meta-item span {
    font-size: 13px;
    color: #747d8c;
    font-weight: 600;
}

.tour-page-title {
    font-size: 22px;
    font-weight: 700;
    color: #1e272e;
    margin-bottom: 15px;
    line-height: 1.3;
}

.tour-page-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.tour-page-stars {
    color: #ffa500;
    font-size: 18px;
    letter-spacing: 2px;
}

.tour-page-reviews {
    font-size: 14px;
    color: #747d8c;
}

.tour-page-excerpt {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.tour-page-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: linear-gradient(135deg, #0077be 0%, #005a8c 100%);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tour-page-link:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 119, 190, 0.4);
}

@media (max-width: 992px) {
    .tours-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .tours-page-intro h2 {
        font-size: 28px;
    }

    .tour-page-image {
        height: 240px;
    }
}

/* ========================================
   TOUR DETAIL PAGE
   ======================================== */
.tour-detail-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.tour-detail-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.tour-detail-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
}

/* Sol Taraf - Galeri ve İçerik */
.tour-detail-left {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.tour-detail-gallery {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.tour-detail-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-detail-thumbnails {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    padding: 15px;
    background: #f8f9fa;
}

.tour-detail-thumb {
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.tour-detail-thumb:hover,
.tour-detail-thumb.active {
    border-color: #0077be;
    transform: scale(1.05);
}

.tour-detail-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-detail-info {
    padding: 40px;
}

.tour-detail-header {
    margin-bottom: 30px;
}

.tour-detail-category {
    display: inline-block;
    background: linear-gradient(135deg, #e8f4f8 0%, #d6eef5 100%);
    color: #0077be;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.tour-detail-title {
    font-size: 32px;
    font-weight: 800;
    color: #1e272e;
    margin-bottom: 15px;
    line-height: 1.2;
}

.tour-detail-rating {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f1f2f6;
}

.tour-detail-stars {
    color: #ffa500;
    font-size: 20px;
    letter-spacing: 3px;
}

.tour-detail-reviews {
    font-size: 15px;
    color: #747d8c;
}

.tour-detail-description {
    margin-top: 30px;
}

.tour-detail-description h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1e272e;
    margin-bottom: 15px;
}

.tour-detail-description p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.tour-detail-highlights {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    padding: 25px;
    border-radius: 12px;
    margin-top: 25px;
}

.tour-detail-highlights h4 {
    font-size: 16px;
    font-weight: 700;
    color: #2ed573;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tour-detail-highlights h4 i {
    font-size: 20px;
}

.tour-detail-highlights ul {
    list-style: none;
    padding: 0;
}

.tour-detail-highlights li {
    font-size: 14px;
    color: #1e272e;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.tour-detail-highlights li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2ed573;
    font-weight: 700;
    font-size: 16px;
}

/* Sağ Taraf - Rezervasyon Kartı */
.tour-detail-right {
    position: sticky;
    top: 150px;
    height: fit-content;
}

.tour-booking-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    border: 2px solid #f1f2f6;
}

.tour-booking-price {
    text-align: center;
    padding: 25px;
    background: linear-gradient(135deg, #0077be 0%, #005a8c 100%);
    border-radius: 15px;
    margin-bottom: 30px;
    color: white;
}

.tour-booking-price-label {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tour-booking-price-amount {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
}

.tour-booking-features {
    margin-bottom: 30px;
}

.tour-booking-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 12px;
}

.tour-booking-feature i {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #e8f4f8 0%, #d6eef5 100%);
    color: #0077be;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.tour-booking-feature-text {
    flex: 1;
}

.tour-booking-feature-label {
    font-size: 12px;
    color: #747d8c;
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tour-booking-feature-value {
    font-size: 16px;
    font-weight: 700;
    color: #1e272e;
}

.tour-booking-notice {
    background: linear-gradient(135deg, #fff3cd 0%, #ffe69c 100%);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #ffc107;
    margin-bottom: 25px;
}

.tour-booking-notice p {
    font-size: 13px;
    color: #856404;
    margin: 0;
    line-height: 1.6;
    font-weight: 600;
}

.tour-booking-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px;
    background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

.tour-booking-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

.tour-booking-whatsapp i {
    font-size: 24px;
}

.tour-booking-contact {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #f1f2f6;
}

.tour-booking-contact p {
    font-size: 13px;
    color: #747d8c;
    margin-bottom: 10px;
}

.tour-booking-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0077be;
    font-weight: 700;
    font-size: 18px;
}

.tour-booking-phone:hover {
    color: #005a8c;
}

/* Tabs */
.tour-detail-tabs {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin-top: 30px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.tour-tabs-nav {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 2px solid #f1f2f6;
}

.tour-tab-button {
    padding: 15px 30px;
    background: transparent;
    border: none;
    color: #747d8c;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.tour-tab-button:hover {
    color: #0077be;
}

.tour-tab-button.active {
    color: #0077be;
}

.tour-tab-button.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: #0077be;
}

.tour-tab-content {
    display: none;
}

.tour-tab-content.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.tour-tab-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1e272e;
    margin-bottom: 20px;
}

.tour-tab-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.tour-tab-content ul {
    list-style: none;
    padding: 0;
}

.tour-tab-content li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 15px;
    color: #666;
}

.tour-tab-content li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #0077be;
    font-weight: 700;
}

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

    .tour-detail-right {
        position: static;
    }

    .tour-detail-gallery {
        height: 400px;
    }

    .tour-detail-title {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .tour-detail-gallery {
        height: 300px;
    }

    .tour-detail-thumbnails {
        grid-template-columns: repeat(3, 1fr);
    }

    .tour-detail-info {
        padding: 25px;
    }

    .tour-detail-tabs {
        padding: 25px;
    }

    .tour-tabs-nav {
        flex-direction: column;
    }

    .tour-booking-price-amount {
        font-size: 36px;
    }

    .tour-booking-card {
        padding: 25px;
    }
}