/* ==========================================================================
   1. Genel Stiller ve Temel Ayarlar
   ========================================================================== */
:root {
    --primary-color: #005f99; /* Ana Mavi */
    --secondary-color: #00a2ff; /* Vurgu Mavisi */
    --accent-color: #28a745; /* Yeni Vurgu Yeşili */
    --text-color: #333;
    --light-gray: #f4f8fa;
    --white: #fff;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

html,
body {
    overflow-x: hidden;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7; /* Okunabilirliği artır */
    color: var(--text-color);
    background-color: var(--light-gray);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex-grow: 1;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    overflow: hidden;
    padding: 0 20px;
}

/* ==========================================================================
   2. Header (Üst Menü) ve Navigasyon
   ========================================================================== */
header {
    background: rgba(255, 255, 255, 0.85); /* Modern yarı şeffaf arka plan */
    backdrop-filter: blur(10px); /* Arka planı bulanıklaştır */
    -webkit-backdrop-filter: blur(10px);
    color: var(--primary-color);
    padding: 0.8rem 0; /* Yüksekliği azalt */
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1002;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); /* Daha yumuşak gölge */
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

header .container {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 60px;
}

header .logo {
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--primary-color);
    transition: transform 0.3s ease-out;
}

header .logo:hover {
    transform: scale(1.03);
}

header nav ul.nav-links {
    list-style: none;
    display: flex;
}

header nav ul.nav-links li {
    margin-left: 25px;
}

header nav ul.nav-links li a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    transition: color 0.3s, border-color 0.3s;
    padding: 5px 0;
    border-bottom: 2px solid transparent; /* Hover için yer tutucu */
}

/* Form Message Styles */
.form-message {
    margin: 20px 0;
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    animation: slideIn 0.3s ease-out;
}

.form-message-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-message i {
    font-size: 1.2rem;
}

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

header nav ul.nav-links li a:hover,
header nav ul.nav-links li a.active-nav {
    color: var(--secondary-color);
    border-bottom: 2px solid var(--secondary-color);
}

.burger {
    display: none;
    cursor: pointer;
    z-index: 1005;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 5px;
    transition: 0.3s;
}

/* ==========================================================================
   3. Hero (Ana Karşılama) Bölümü
   ========================================================================== */
#home-hero {
    position: relative;
    display: flex;
    height: calc(100vh - 76px);
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.hero-video-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.45);
}

.hero-image-bg,
#heroVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease-out; /* Animasyon için */
}

#home-hero:hover .hero-image-bg {
    transform: scale(1.05); /* Üzerine gelince hafif zoom */
}

.hero-content {
    z-index: 1;
    padding: 20px;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.6);
}

/* ==========================================================================
   4. Buton Stilleri
   ========================================================================== */
.cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 15px 35px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
    border: 2px solid var(--secondary-color);
    margin: 5px;
    box-shadow: 0 4px 10px rgba(0, 162, 255, 0.3);
}

.cta-button:hover {
    background-color: #0077cc;
    border-color: #0077cc;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 119, 204, 0.4);
}

.cta-button.whatsapp-hero-button {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: 0 4px 10px rgba(40, 167, 69, 0.3);
}

.cta-button.whatsapp-hero-button:hover {
    background-color: #218838;
    border-color: #218838;
    box-shadow: 0 6px 15px rgba(33, 136, 56, 0.4);
}

.cta-button-small {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 10px 20px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 25px;
    margin-top: 10px;
    border: none;
    text-align: center;
    transition: background-color 0.3s, transform 0.2s;
    cursor: pointer;
}

.cta-button-small:hover {
    background-color: #0077cc;
    transform: translateY(-2px);
}

.cta-button-small.details-link {
    margin-top: auto;
}

.cta-button-small.whatsapp-button {
    background-color: var(--accent-color);
}

.cta-button-small.whatsapp-button:hover {
    background-color: #218838;
}

/* ==========================================================================
   5. İçerik Bölümleri
   ========================================================================== */
.content-section {
    padding: 50px 0;
}

.content-section.first-section {
    padding-top: 30px;
}

.content-section h2,
#pricing-page h1,
#about h1,
#gallery-page h1,
#reservation-page h1,
#contact-page h1 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--primary-color);
}

#pricing-page .page-intro {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

/* ==========================================================================
   6. Tur Kartları (Tour Items)
   ========================================================================== */
.tour-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.tour-table.featured-tours-table {
    margin-top: 30px;
}

.tour-item {
    background-color: var(--white);
    padding: 0; /* Padding'i iç elementlere taşı */
    border-radius: 12px; /* Daha yuvarlak köşeler */
    border: 1px solid #e0e0e0;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    overflow: hidden; /* Resmin köşelerini yuvarlatmak için */
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.tour-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.tour-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    /* border-radius kaldırıldı, parent'tan alacak */
}

.tour-item-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* İçeriğin kartı doldurmasını sağla */
}

.tour-item h4 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.tour-item p {
    margin-bottom: 15px; /* Boşluk artırıldı */
    font-size: 0.95rem;
    flex-grow: 1; /* Paragrafın esnek büyümesini sağla */
}

.tour-item ul {
    list-style-position: inside;
    padding-left: 0;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.tour-item ul li {
    margin-bottom: 4px;
}

.tour-item .open-rezervasyon-modal {
    margin-top: 10px;
}

.toggle-details-btn {
    background-color: #f0f0f0;
    color: #333;
    padding: 8px 15px;
    font-size: 0.9rem;
    border-radius: 20px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    transition: background-color 0.3s;
    cursor: pointer;
}

.toggle-details-btn:hover {
    background-color: #e0e0e0;
}

.tour-details-content {
    display: none; /* JavaScript ile yönetilecek */
    font-size: 0.9rem;
    color: #555;
    border-top: 1px dashed #eee;
    padding-top: 10px;
    margin-top: 10px;
}

.tour-details-content ul {
    list-style-type: disc;
    padding-left: 20px;
}

/* ==========================================================================
   7. Hakkımızda (About) Bölümü
   ========================================================================== */
#about p {
    font-size: 1.05rem;
    margin-bottom: 15px;
    text-align: justify;
    line-height: 1.8;
}

.about-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
    margin: 0 auto 25px;
    display: block;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

#about-canyon .about-canyon-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}

#about-canyon .about-canyon-text,
#about-canyon .about-canyon-image {
    flex: 1;
    min-width: 300px;
}

#about-canyon .about-canyon-text p {
    font-size: 1.05rem;
    text-align: justify;
}

#about-canyon .about-canyon-text p:not(:first-child) {
    margin-top: 15px;
}

#about-canyon .about-canyon-image {
    text-align: center;
}

#about-canyon .about-canyon-image img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

#why-us.why-us-section {
    background-color: #e0f2ff; 
    padding: 40px 20px; 
    border-radius:8px;
}

#why-us .why-us-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    text-align: center;
    margin-top: 30px;
}

#why-us .why-us-item {
    flex: 1;
    min-width: 250px;
}

#why-us .why-us-item i {
    font-size: 2.5rem; /* İkonları büyüt */
    color: var(--secondary-color);
    margin-bottom: 15px;
    background-color: rgba(0, 162, 255, 0.1);
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    transition: transform 0.3s, background-color 0.3s;
}

#why-us .why-us-item:hover i {
    transform: scale(1.1);
    background-color: rgba(0, 162, 255, 0.2);
}

#pricing-page .pricing-notes,
#gallery-page .gallery-notes {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9rem;
    color: #555;
}

#gallery-page .gallery-notes a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

#gallery-page .gallery-notes a:hover {
    text-decoration: underline;
}

#reservation-page .page-intro {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

#reservation-page .reservation-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

#contact-page .page-intro {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

#contact-page .contact-details h3,
#contact-page .contact-form-container h3 {
    margin-bottom: 20px;
}

#contact-page .contact-details .working-hours {
    margin-top: 30px;
    color: var(--primary-color);
}

#contact-page .contact-form-container .form-intro {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

#contact-page .map-container {
    margin-top: 50px;
    text-align: center;
}

#contact-page .map-container iframe {
    border: 0;
    border-radius: 8px;
}

#contact-page .map-container .map-notes {
    font-size: 0.9rem;
    margin-top: 10px;
}


/* ==========================================================================
   8. Galeri ve Lightbox
   ========================================================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    aspect-ratio: 4/3;
}

.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem; 
    color: rgba(255, 255, 255, 0.9); 
    text-shadow: 0 0 10px rgba(0,0,0,0.5); 
    pointer-events: none; 
    opacity: 0.8;
    transition: opacity 0.3s, transform 0.3s;
}

.gallery-item a:hover .play-button-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease-out, filter 0.3s;
    cursor: pointer;
}

.gallery-item img:hover {
    transform: scale(1.05);
    filter: brightness(0.8);
}

.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 1003;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-modal-content {
    margin: auto;
    display: block;
    width: auto;
    max-width: 90%;
    max-height: 85vh;
}

#lightboxCaption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 50px;
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: 700;
    transition: 0.3s;
    cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: #bbb;
    text-decoration: none;
}

/* ==========================================================================
   9. İletişim ve Rezervasyon Formu (Modal)
   ========================================================================== */
.contact-info-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-around;
    align-items: flex-start;
}

.contact-details,
.contact-form-container {
    flex: 1;
    min-width: 300px;
}

.contact-details p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.contact-details .icon-text {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.contact-details .icon-text i {
    color: #0077cc;
    font-size: 1.5rem;
    margin-right: 15px;
    width: 25px;
    text-align: center;
}

.contact-details .icon-text a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-details .icon-text a:hover {
    color: #00a2ff;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1004;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    padding-top: 5vh;
}

.modal-content {
    background-color: #fefefe;
    margin: 5vh auto; /* Dikeyde ortala */
    padding: 20px;
    border: 1px solid #888;
    width: 95%; /* Mobilde daha geniş */
    max-width: 500px; /* Max genişlik */
    border-radius: 8px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.modal-content h3 {
    color: #005f99;
    margin-top: 0;
    margin-bottom: 10px;
    text-align: center;
}

.modal-content p.modal-intro {
    font-size: 0.9rem;
    color: #555;
    text-align: center;
    margin-bottom: 20px;
}

.modal-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: 700;
    position: absolute;
    top: 10px;
    right: 20px;
}

.modal-close:hover,
.modal-close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-submit-button {
    background-color: #0077cc;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.3s;
    display: block;
    width: 100%;
    margin-top: 10px;
}

.form-submit-button:hover {
    background-color: #005f99;
}

/* ==========================================================================
   10. Müşteri Yorumları (Testimonials)
   ========================================================================== */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.testimonial-item {
    background-color: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    border-top: 4px solid var(--secondary-color); /* Üstten çizgi */
    border-left: none; /* Sol çizgiyi kaldır */
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 4px solid var(--white);
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
    margin-top: -65px; /* Kartın üzerine taşır */
    background-color: var(--light-gray);
}

.testimonial-text {
    margin-bottom: 15px;
    font-style: italic;
    color: #555;
    font-size: 0.95rem;
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary-color);
}

/* ==========================================================================
   11. Teşekkür Sayfası
   ========================================================================== */
.thank-you-section {
    text-align: center;
    padding: 80px 20px;
}

.thank-you-section i {
    font-size: 5rem;
    color: #28a745;
    margin-bottom: 20px;
}

.thank-you-section h1 {
    color: #005f99;
    margin-bottom: 15px;
}

.thank-you-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* ==========================================================================
   12. Footer (Alt Bilgi)
   ========================================================================== */
footer {
    background-color: #00406b;
    color: #e0f2ff;
    padding: 40px 0 20px 0; /* Daha fazla üst boşluk */
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
    text-align: left;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--white);
    border-bottom: 1px solid var(--secondary-color);
    padding-bottom: 10px;
    display: inline-block;
}

.footer-col p, .footer-col ul {
    font-size: 0.95rem;
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #e0f2ff;
    text-decoration: none;
    transition: color 0.3s, padding-left 0.3s;
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-socials {
    margin-top: 15px;
}

.footer-socials a {
    color: #e0f2ff;
    font-size: 1.5rem;
    margin-right: 15px;
    transition: color 0.3s, transform 0.3s;
}

.footer-socials a:hover {
    color: var(--secondary-color);
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.9rem;
}

.footer-bottom .designer-link {
    color: #e0f2ff;
    text-decoration: underline;
    font-weight: 400;
}

.footer-bottom .designer-link:hover {
    text-decoration: none;
    color: var(--secondary-color);
}

/* ==========================================================================
   13. Sabit İkonlar (Sticky Icons)
   ========================================================================== */
.sticky-icons-container {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1001; /* Modal'ın arkasında kalmaması için z-index artırıldı */
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
}

.whatsapp-sticky-button,
.instagram-sticky-button {
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, background-color 0.3s;
    position: relative;
}

.whatsapp-sticky-button {
    background-color: var(--accent-color);
    width: 60px;
    height: 60px;
    font-size: 2rem;
    margin-top: 10px;
}

.instagram-sticky-button {
    background-color: #e1306c;
    width: 50px;
    height: 50px;
    font-size: 1.7rem;
}

.whatsapp-sticky-button:hover {
    background-color: #218838;
    transform: scale(1.1);
}

.instagram-sticky-button:hover {
    background-color: #c13584;
    transform: scale(1.1);
}

.whatsapp-sticky-button::after {
    content: "Bilgi almak için tıklayınız!";
    position: absolute;
    top: 50%;
    right: calc(100% + 10px);
    transform: translateY(-50%) translateX(15px);
    background-color: rgba(40, 40, 40, 0.9);
    color: #fff;
    padding: 7px 12px;
    border-radius: 5px;
    white-space: nowrap;
    font-size: 0.8rem;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease-in-out, transform 0.25s ease-in-out, visibility 0.25s ease-in-out;
    pointer-events: none;
    z-index: 1001;
}

.whatsapp-sticky-button:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

/* ==========================================================================
   14. Mobil ve Tablet (Responsive) Stilleri
   ========================================================================== */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    .content-section h2, 
    #pricing-page h1,
    #about h1,
    #gallery-page h1,
    #reservation-page h1,
    #contact-page h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    header {
        padding: 0.7rem 0;
    }

    header .container {
        padding: 0 15px;
        min-height: 45px;
    }

    ul.nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        background-color: #fff;
        flex-direction: column;
        width: 75%;
        height: 100vh;
        align-items: center;
        justify-content: flex-start;
        padding-top: calc(45px + 20px);
        transition: right 0.4s ease-in-out;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.15);
        border-left: 1px solid #eaeaea;
        overflow-y: auto;
        z-index: 1003;
    }

    ul.nav-links.nav-active {
        right: 0;
    }

    ul.nav-links li {
        margin: 18px 0;
        opacity: 0;
    }

    .burger {
        display: block;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1005;
    }

    #home-hero {
        height: calc(100vh - 60px);
    }

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

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

    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .content-section h2 {
        font-size: 1.8rem;
    }

    .tour-category h3 {
        font-size: 1.5rem;
    }

    .tour-item h4 {
        font-size: 1.2rem;
    }

    .tour-table,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        width: 95%;
        padding: 20px;
        margin-top: 20px;
    }

    .modal-close {
        top: 10px;
        right: 15px;
    }

    .lightbox-modal-content {
        max-width: 95%;
    }

    .sticky-icons-container {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-sticky-button {
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
        margin-top: 8px;
    }

    .instagram-sticky-button {
        width: 42px;
        height: 42px;
        font-size: 1.4rem;
    }

    .whatsapp-sticky-button::after {
        display: none;
    }
}

/* ==========================================================================
   15. Animasyonlar
   ========================================================================== */
@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    ul.nav-links li {
        opacity: 0;
    }
}

.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
    background-color: var(--primary-color);
}

.toggle .line2 {
    opacity: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
    background-color: var(--primary-color);
}

/* Thank You Page Styles */
.thank-you-section {
    text-align: center;
    padding: 60px 20px;
}

.thank-you-section > i {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 30px;
    display: block;
}

.thank-you-section h1 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.thank-you-section > p {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.next-steps {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 40px;
}

.next-steps h3 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.step-item {
    text-align: center;
    padding: 20px;
}

.step-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    display: block;
}

.step-item h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.step-item p {
    color: var(--text-color);
    font-size: 0.95rem;
}

.contact-info {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 40px;
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-method:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

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

.contact-method i {
    font-size: 1.2rem;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.action-buttons .cta-button {
    margin: 0;
}

/* Responsive adjustments for thank you page */
@media (max-width: 768px) {
    .thank-you-section h1 {
        font-size: 2rem;
    }
    
    .thank-you-section > p {
        font-size: 1.1rem;
    }
    
    .next-steps,
    .contact-info {
        padding: 25px 20px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-methods {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-method {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .action-buttons .cta-button {
        width: 100%;
        max-width: 300px;
    }
}