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

:root {
    --primary: #1a4d2e;
    --primary-dark: #0d2e1a;
    --accent: #ff6b35;
    --accent-dark: #cc4f1f;
    --gold: #f4a261;
    --cream: #faf6f0;
    --dark: #1a1a2e;
    --gray: #6c757d;
    --light-gray: #e9ecef;
    --white: #ffffff;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}
/* Fixed navigation should never cover the destination section. */
section[id], footer[id] { scroll-margin-top: var(--nav-offset, 95px); }

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    background: var(--cream);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.5px;
}

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

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    background: rgba(13, 46, 26, 0.85);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 8px 0;
    background: rgba(13, 46, 26, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--white);
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
}

.logo-icon {
    font-size: 2.2rem;
    filter: drop-shadow(0 2px 4px rgba(255, 107, 53, 0.5));
}

.brand-logo-image { width:62px; height:46px; object-fit:contain; object-position:center; filter:drop-shadow(0 3px 5px rgba(0,0,0,.45)); transform:scale(1.35); transform-origin:center; margin:0 5px 0 2px; }
@media(max-width:600px){.brand-logo-image{width:48px;height:38px;transform:scale(1.2);margin-right:2px}.logo{font-size:1.45rem;gap:4px}}

.logo span {
    color: var(--accent);
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: var(--transition);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

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

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--accent);
    color: var(--white) !important;
    padding: 10px 25px !important;
    border-radius: 50px;
    font-weight: 600 !important;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

.nav-cta::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    border: 0;
    background: transparent;
    padding: 8px;
    touch-action: manipulation;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0d2e1a 0%, #1a4d2e 50%, #0a1f3c 100%);
}

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

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(13, 46, 26, 0.5) 0%, rgba(10, 31, 60, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    padding: 0 20px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 107, 53, 0.2);
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
    animation: fadeInDown 0.8s ease;
}

.hero h1 {
    font-size: 4.5rem;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}

.hero h1 span {
    color: var(--accent);
    display: block;
    font-size: 2.8rem;
}

.hero p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
    line-height: 1.6;
    animation: fadeInUp 1s ease;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s ease;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

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

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

.hero-stats {
    display: flex;
    gap: 50px;
    justify-content: center;
    margin-top: 60px;
    animation: fadeInUp 1.4s ease;
}

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

.hero-stat .number {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
}

.hero-stat .label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: var(--white);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

/* ===== SECTION TITLES ===== */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--primary-dark);
    line-height: 1.2;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 15px auto 0;
}

/* ===== TOURS ===== */
.tours {
    background: var(--white);
}

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

.tour-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
}

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

.tour-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.tour-content {
    padding: 25px;
}

.tour-content h3 {
    font-size: 1.6rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.tour-content p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.tour-features {
    list-style: none;
    margin-bottom: 20px;
}

.tour-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.tour-features i {
    color: var(--primary);
    font-size: 1rem;
}

.tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--light-gray);
    padding-top: 20px;
}

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

.tour-price .from {
    font-size: 0.75rem;
    color: var(--gray);
}

.tour-price .amount {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
}

.tour-price .per {
    font-size: 0.75rem;
    color: var(--gray);
}

.tour-book-btn {
    background: var(--primary);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.tour-book-btn:hover {
    background: var(--accent);
    transform: scale(1.05);
}

/* ===== WHY US ===== */
.why-us {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.why-us .section-header h2 {
    color: var(--white);
}

.why-us .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.why-us .section-tag {
    color: var(--accent);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.feature-card {
    text-align: center;
    padding: 40px 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.feature-card:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: var(--accent);
    transform: translateY(-8px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    background: var(--white);
}

.steps-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
}

.step {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(26, 77, 46, 0.3);
    position: relative;
    z-index: 2;
}

.step h3 {
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.step p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.step::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -15%;
    width: 30%;
    height: 3px;
    background: var(--light-gray);
    z-index: 0;
}

.step:last-child::after {
    display: none;
}

/* ===== GALLERY ===== */
.gallery {
    background: var(--cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 15px;
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-item::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 2rem;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 46, 26, 0.5);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover::after,
.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item:nth-child(4) {
    grid-column: span 2;
}

.gallery-item:nth-child(7) {
    grid-column: span 2;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: var(--white);
}

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

.testimonial-card {
    background: var(--cream);
    border-radius: 20px;
    padding: 35px;
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--accent);
    opacity: 0.2;
    position: absolute;
    top: 20px;
    right: 25px;
}

.stars {
    color: #ffc107;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.testimonial-text {
    color: var(--dark);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
}

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

.author-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
}

.author-info h4 {
    font-size: 1rem;
    color: var(--primary-dark);
}

.author-info span {
    font-size: 0.85rem;
    color: var(--gray);
}

.author-country {
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 600;
}

/* ===== FAQ ===== */
.faq {
    background: var(--cream);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

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

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    color: var(--primary-dark);
    user-select: none;
}

.faq-question .faq-icon {
    color: var(--accent);
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.faq-item.is-open .faq-icon {
    transform: rotate(180deg);
}

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

.faq-answer-inner {
    padding: 0 25px 20px;
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-item.is-open .faq-answer {
    max-height: 300px;
}

/* ===== CONTACT / CTA BANNER ===== */
.cta-banner {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 350px;
    height: 350px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.cta-banner .container {
    position: relative;
    z-index: 1;
}

.cta-banner h2 {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-banner p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.cta-banner .btn {
    background: var(--white);
    color: var(--accent);
    font-size: 1.1rem;
    padding: 18px 50px;
}

.cta-banner .btn:hover {
    background: var(--primary-dark);
    color: var(--white);
}

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

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

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

.contact-info > p {
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.7;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1rem;
    color: var(--primary-dark);
    margin-bottom: 3px;
}

.contact-item p {
    color: var(--gray);
    font-size: 0.9rem;
}

.contact-item a {
    color: var(--gray);
    text-decoration: none;
    transition: var(--transition);
}

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

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

.social-link {
    width: 45px;
    height: 45px;
    background: var(--cream);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
}

.contact-form {
    background: var(--cream);
    padding: 40px;
    border-radius: 20px;
}

.contact-form h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 25px;
}

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

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--white);
}

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

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

.hotel-verify-btn {
    margin-top: 9px;
    border: 0;
    border-radius: 8px;
    padding: 9px 13px;
    font: 600 0.82rem 'Poppins', sans-serif;
    background: var(--primary);
    color: var(--white);
    cursor: pointer;
}
.hotel-verify-btn:hover { background: var(--accent); }
.hotel-verify-note { display:block; margin-top:6px; color:var(--gray); font-size:.75rem; }

.form-submit {
    width: 100%;
    background: var(--accent);
    color: var(--white);
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.form-submit:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
}

.footer-logo span {
    color: var(--accent);
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.footer-contact-item i {
    color: var(--accent);
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    text-align: center;
    font-size: 0.85rem;
}

.footer-bottom a {
    color: var(--accent);
    text-decoration: none;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.5);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

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

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

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-15px);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--primary-dark);
        flex-direction: column;
        justify-content: center;
        gap: 25px;
        transition: right 0.3s ease;
    }

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

    .hamburger {
        display: flex;
        z-index: 1001;
    }

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

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

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

    .hero h1 {
        font-size: 3rem;
    }

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

    .hero p {
        font-size: 1.1rem;
    }

    .hero-stats {
        gap: 30px;
        flex-wrap: wrap;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

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

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

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

    .gallery-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
    }

    .gallery-item:nth-child(4),
    .gallery-item:nth-child(7) {
        grid-column: span 1;
    }

    .step::after {
        display: none;
    }
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero h1 span {
        font-size: 1.5rem;
    }

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

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .section {
        padding: 60px 0;
    }

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

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

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 180px;
    }

    .gallery-item:nth-child(1) {
        grid-column: span 1;
    }

    .contact-form {
        padding: 25px;
    }

    .cta-banner h2 {
        font-size: 2rem;
    }
}

/* ===== LANGUAGE SELECTOR & TOUR DETAILS ===== */
.tursab-verification-wrap { display:flex; justify-content:center; padding:0 0 35px; }
.tursab-verification { width:290px; min-height:130px; overflow:hidden; border:2px solid #fff; border-radius:8px; color:#707070; background:linear-gradient(125deg,#f0f0f0 0%,#fff 42%,#e3e3e3 100%); box-shadow:0 3px 9px rgba(0,0,0,.24); text-decoration:none; font-family:Arial,sans-serif; transition:transform .25s ease,box-shadow .25s ease; }
.tursab-verification:hover { transform:translateY(-3px); box-shadow:0 8px 18px rgba(0,0,0,.32); }
.tursab-verification-top { height:43px; display:flex; align-items:center; justify-content:center; gap:38px; padding:4px 18px 0; }
.tursab-verification-top strong { font-size:25px; letter-spacing:-1px; color:#e31e24; font-weight:800; }
.tursab-verification-top i { color:#bdbdbd; font-size:27px; }
.tursab-verification-title { border-top:1px solid #dedede; border-bottom:1px solid #e0e0e0; padding:4px 0 3px; color:#e31e24; font-size:16px; font-weight:bold; letter-spacing:.35px; text-align:center; }
.tursab-verification-content { display:flex; justify-content:space-between; align-items:center; padding:10px 18px 12px 24px; font-size:12.5px; line-height:1.15; }
.tursab-verification-content b { color:#e31e24; }.tursab-license { color:#777; text-align:right; font-size:12px; }.tursab-license strong { color:#e31e24; font-size:23px; line-height:.9; }
.language-select { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.45); color: var(--white); border-radius: 20px; padding: 7px 10px; font-family: inherit; font-size: .82rem; cursor: pointer; }
.language-select option { color: var(--dark); background: var(--white); }
.tour-media-placeholder { height:250px; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:10px; color:rgba(255,255,255,.9); background:linear-gradient(135deg,#1a4d2e,#0a1f3c); background-size:cover; background-position:center; font-weight:600; text-decoration:none; }
.tour-media-placeholder i { font-size:2.6rem; color:var(--gold); }
.tour-detail-btn { border:0; background:transparent; color:var(--primary); font-weight:700; font-family:inherit; cursor:pointer; padding:8px 0; font-size:.9rem; }
.tour-detail-btn:hover { color:var(--accent); }
.tour-modal { position:fixed; inset:0; z-index:2000; background:rgba(5,18,12,.76); padding:30px 18px; display:none; overflow-y:auto; }
.tour-modal.open { display:block; }
.tour-modal-dialog { max-width:1100px; margin:25px auto; background:var(--cream); border-radius:22px; overflow:hidden; box-shadow:var(--shadow); position:relative; }
.tour-modal-head { padding:35px 42px 28px; color:var(--white); background:linear-gradient(135deg,var(--primary-dark),var(--primary)); }
.tour-modal-head h2 { font-size:2.5rem; margin:6px 0; }
.tour-modal-close { position:absolute; top:15px; right:17px; width:42px; height:42px; border:0; border-radius:50%; cursor:pointer; background:rgba(255,255,255,.18); color:#fff; font-size:1.4rem; }
.modal-booking-btn { position:absolute; top:16px; right:70px; display:inline-flex; align-items:center; gap:7px; padding:10px 18px; border-radius:50px; background:var(--accent); color:var(--white); font:600 .85rem 'Poppins',sans-serif; text-decoration:none; transition:var(--transition); }
.modal-booking-btn:hover { background:var(--white); color:var(--primary-dark); }
@media(max-width:520px) { .modal-booking-btn { top:68px; right:17px; } .tour-modal-head { padding-top:82px; } }
.tour-modal-body { padding:38px 42px 45px; }
.tour-modal-body h3 { color:var(--primary-dark); font-size:1.6rem; margin:30px 0 14px; }
.video-slot { aspect-ratio:16/9; border:2px dashed #bdc8bf; border-radius:16px; background:#eaf0eb; display:flex; align-items:center; justify-content:center; flex-direction:column; gap:10px; color:var(--primary); text-align:center; padding:20px; }
.video-slot i { font-size:3.2rem; color:var(--accent); }
.video-slot video { width:100%; height:100%; border-radius:14px; background:#000; object-fit:contain; }
.tour-photo-grid { display:grid; grid-template-columns:repeat(5,1fr); gap:12px; }
.photo-slot { aspect-ratio:1; border:2px dashed #c5d0c6; background:#fff; border-radius:10px; display:flex; align-items:center; justify-content:center; flex-direction:column; gap:5px; color:#78857c; font-size:.76rem; text-align:center; padding:5px; }
.photo-slot i { font-size:1.25rem; color:var(--accent); }
.photo-slot img { width:100%; height:100%; object-fit:cover; border-radius:8px; }
@media(max-width:700px) { .language-select{margin-left:auto;margin-right:12px}.tour-modal-head,.tour-modal-body{padding:28px 20px}.tour-modal-head h2{font-size:2rem}.tour-photo-grid{grid-template-columns:repeat(3,1fr)} }

/* ===== BLOG & WILDLIFE GUIDE ===== */
.blog { background:var(--white); }.blog-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.blog-card { padding:30px; border:1px solid #edf0ed; border-radius:18px; background:linear-gradient(145deg,#fff,#f6faf6); transition:var(--transition); }
.blog-card:hover,.animal-card:hover { transform:translateY(-6px); box-shadow:0 14px 32px rgba(0,0,0,.1); }.blog-icon { color:var(--accent); font-size:2rem; margin-bottom:16px; }.blog-card h3,.animal-card h3 { color:var(--primary-dark); font-size:1.35rem; margin-bottom:10px; }.blog-card p,.animal-card p { color:var(--gray); line-height:1.65; font-size:.9rem; }
.wildlife { background:linear-gradient(135deg,#eaf2ea,#fdf7ef); }.animal-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }.animal-card { padding:25px; border-radius:18px; background:rgba(255,255,255,.85); border:1px solid rgba(26,77,46,.1); transition:var(--transition); }.animal-icon { font-size:2rem; margin-bottom:10px; }.animal-tag { display:inline-block; margin-top:13px; padding:4px 9px; border-radius:50px; background:#e4efe4; color:var(--primary); font-size:.72rem; font-weight:700; }
@media(max-width:968px){.blog-grid,.animal-grid{grid-template-columns:repeat(2,1fr)}} @media(max-width:600px){.blog-grid,.animal-grid{grid-template-columns:1fr}}

.booking-modal {position:fixed;inset:0;z-index:3000;display:none;align-items:center;justify-content:center;padding:18px;background:rgba(5,18,12,.75)} .booking-modal.open{display:flex}.booking-modal-box{width:min(620px,100%);max-height:92vh;overflow:auto;position:relative;background:var(--cream);border-radius:20px;padding:32px}.booking-modal-box h2{color:var(--primary-dark);margin-bottom:20px}.booking-modal-close{position:absolute;right:15px;top:12px;border:0;background:none;font-size:2rem;color:var(--primary);cursor:pointer}.booking-modal .form-group{margin-bottom:14px}

/* ===== WELCOME POPUP ===== */
.welcome-modal { position:fixed; inset:0; z-index:5000; display:flex; align-items:center; justify-content:center; padding:20px; opacity:0; visibility:hidden; pointer-events:none; background:rgba(7,24,14,.72); backdrop-filter:blur(7px); transition:opacity .55s ease, visibility .55s ease; }
.welcome-modal.open { opacity:1; visibility:visible; pointer-events:auto; }.welcome-card { width:min(740px,92vw); position:relative; overflow:hidden; border:4px solid rgba(255,255,255,.94); border-radius:25px; box-shadow:0 24px 75px rgba(0,0,0,.55); background:#fbf4df; transform:scale(.96); transition:transform .55s ease; }.welcome-modal.open .welcome-card{transform:scale(1)}.welcome-card img { display:block; width:100%; max-height:82vh; object-fit:contain; }.welcome-close { position:absolute; right:16px; top:14px; z-index:3; width:48px; height:48px; border:0; border-radius:50%; background:var(--primary-dark); color:#fff; font-size:2.35rem; line-height:1; cursor:pointer; box-shadow:0 3px 12px rgba(0,0,0,.35); }.welcome-close:hover{background:var(--accent);}.welcome-explore { position:absolute; z-index:2; right:10%; bottom:29%; width:41%; height:12%; border-radius:50px; opacity:0; cursor:pointer; } @media(max-width:600px){.welcome-modal{padding:10px}.welcome-card{border-width:3px;border-radius:16px}.welcome-close{width:38px;height:38px;right:8px;top:8px;font-size:1.9rem}}

/* Mobile / tablet reliability: never let entrance animations or a modal prevent access to page content. */
@media(max-width:968px) {
    body { overflow-y:auto !important; }
    .reveal { opacity:1 !important; transform:none !important; }
    .navbar { -webkit-backdrop-filter:blur(10px); }
    .nav-menu { overflow-y:auto; }
}

/* =========================================================
   ÇOK SAYFALI + ÇOK DİLLİ YAPI İÇİN EKLENEN BİLEŞENLER
   ========================================================= */

/* --- Hero: mobilde sabit navbar başlığı kesmesin --- */
@media (max-width: 968px) {
    .hero { min-height: auto; padding: 130px 0 70px; }
    .hero-content { padding-top: 10px; }
}
@media (max-width: 600px) {
    .hero { padding: 115px 0 55px; }
    .hero-stats { margin-top: 40px; }
}

/* --- Klavye odak görünürlüğü --- */
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
.skip-link {
    position: absolute; left: -9999px; top: 0; z-index: 6000;
    background: var(--accent); color: #fff; padding: 12px 22px;
    border-radius: 0 0 10px 0; font-weight: 600; text-decoration: none;
}
.skip-link:focus { left: 0; }

/* --- Aktif menü --- */
.nav-menu a.active { color: var(--accent); }
.nav-menu a.active::after { width: 100%; }
.nav-menu a.nav-cta.active { color: var(--white) !important; background: var(--accent-dark); }

/* --- Dil seçici --- */
.lang-switch { display: flex; align-items: center; gap: 7px; margin-left: auto; margin-right: 22px; color: rgba(255,255,255,.75); }
.lang-switch > i { font-size: .95rem; }
.language-select {
    background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.45);
    color: var(--white); border-radius: 20px; padding: 7px 10px;
    font-family: inherit; font-size: .82rem; cursor: pointer;
}
.language-select option { color: var(--dark); background: var(--white); }
.lang-noscript { display: inline-flex; gap: 8px; }
.lang-noscript a { color: var(--white); text-decoration: none; font-size: .82rem; font-weight: 600; }
.lang-noscript a:hover { color: var(--accent); }
@media (max-width: 968px) { .lang-switch { margin-right: 14px; } }
@media (max-width: 380px) { .lang-switch > i { display: none; } .lang-switch { margin-right: 8px; } }

/* --- İç sayfa başlığı --- */
.page-hero {
    position: relative; padding: 170px 0 70px; text-align: center; overflow: hidden;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, #0a1f3c 100%);
    color: var(--white);
}
.page-hero::before {
    content: ''; position: absolute; top: -55%; right: -12%;
    width: 520px; height: 520px; border-radius: 50%;
    background: radial-gradient(circle, rgba(255,107,53,.14) 0%, transparent 70%);
}
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .28; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero .section-tag { color: var(--gold); }
.page-hero h1 { font-size: 3.4rem; line-height: 1.1; margin-bottom: 14px; }
.page-hero p { max-width: 720px; margin: 0 auto; color: rgba(255,255,255,.82); font-size: 1.08rem; line-height: 1.65; }
@media (max-width: 968px) { .page-hero { padding: 140px 0 55px; } .page-hero h1 { font-size: 2.4rem; } }
@media (max-width: 600px) { .page-hero { padding: 120px 0 45px; } .page-hero h1 { font-size: 1.95rem; } .page-hero p { font-size: .96rem; } }

/* --- Breadcrumb --- */
.breadcrumb { background: var(--white); border-bottom: 1px solid var(--light-gray); padding: 14px 0; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: .87rem; }
.breadcrumb a { color: var(--primary); text-decoration: none; font-weight: 500; }
.breadcrumb a:hover { color: var(--accent); text-decoration: underline; }
.breadcrumb li + li::before { content: '/'; color: var(--gray); margin-right: 8px; }
.breadcrumb [aria-current="page"] { color: var(--gray); }

/* --- Ana sayfa: bölüm keşif şeridi --- */
.explore-strip { background: var(--cream); padding: 70px 0; }
.explore-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 900px) { .explore-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .explore-grid { grid-template-columns: 1fr; } }
.explore-card {
    display: flex; flex-direction: column; align-items: center; text-align: center;
    padding: 26px 18px; border-radius: 16px; text-decoration: none;
    background: var(--white); border: 1px solid #ecefec;
    box-shadow: 0 4px 16px rgba(0,0,0,.05); transition: var(--transition);
}
.explore-card:hover { transform: translateY(-6px); box-shadow: 0 14px 34px rgba(0,0,0,.12); border-color: var(--accent); }
.explore-card i { font-size: 1.7rem; color: var(--primary); margin-bottom: 12px; transition: var(--transition); }
.explore-card:hover i { color: var(--accent); }
.explore-card strong { color: var(--primary-dark); font-family: 'Oswald', sans-serif; font-size: 1.1rem; letter-spacing: .4px; }
.explore-card span { color: var(--gray); font-size: .84rem; line-height: 1.5; margin-top: 6px; }

/* --- Tur detay sayfası --- */
.tour-detail-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 40px; align-items: start; }
.tour-detail-main h2 { color: var(--primary-dark); font-size: 2rem; margin: 34px 0 14px; }
.tour-detail-main h2:first-child { margin-top: 0; }
.tour-detail-main p { color: var(--gray); line-height: 1.75; margin-bottom: 14px; }
.tour-detail-main ul { list-style: none; margin-bottom: 18px; }
.tour-detail-main ul li { display: flex; gap: 11px; align-items: flex-start; margin-bottom: 11px; color: var(--dark); line-height: 1.6; }
.tour-detail-main ul li i { color: var(--primary); margin-top: 4px; flex-shrink: 0; }
.tour-detail-main ul.cons li i { color: #c0392b; }

.tour-aside {
    position: sticky; top: 110px; background: var(--white); border-radius: 20px;
    padding: 30px; box-shadow: 0 8px 30px rgba(0,0,0,.09); border: 1px solid #ecefec;
}
.tour-aside .price { font-family: 'Oswald', sans-serif; font-size: 3rem; color: var(--accent); line-height: 1; }
.tour-aside .price small { font-size: .95rem; color: var(--gray); font-family: 'Poppins', sans-serif; display: block; margin-top: 4px; }
.tour-aside dl { margin: 22px 0; border-top: 1px solid var(--light-gray); }
.tour-aside dl > div { display: flex; justify-content: space-between; gap: 14px; padding: 11px 0; border-bottom: 1px solid var(--light-gray); font-size: .9rem; }
.tour-aside dt { color: var(--gray); }
.tour-aside dd { color: var(--primary-dark); font-weight: 600; text-align: right; }
.tour-aside .btn { width: 100%; justify-content: center; margin-bottom: 10px; }
.tour-aside .btn-wa { background: #25d366; color: #fff; }
.tour-aside .btn-wa:hover { background: #1da851; transform: translateY(-2px); }
.tour-aside .note { font-size: .8rem; color: var(--gray); text-align: center; line-height: 1.5; }

.timeline { list-style: none; position: relative; padding-left: 34px; }
.timeline::before { content: ''; position: absolute; left: 9px; top: 6px; bottom: 6px; width: 2px; background: var(--light-gray); }
.timeline li { position: relative; margin-bottom: 20px; }
.timeline li::before {
    content: ''; position: absolute; left: -30px; top: 5px; width: 12px; height: 12px;
    border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(255,107,53,.18);
}
.timeline strong { display: block; color: var(--primary-dark); font-family: 'Oswald', sans-serif; letter-spacing: .5px; margin-bottom: 3px; }
.timeline span { color: var(--gray); font-size: .93rem; line-height: 1.6; }
@media (max-width: 968px) { .tour-detail-grid { grid-template-columns: 1fr; } .tour-aside { position: static; } }

.tour-card .tour-title-link { color: inherit; text-decoration: none; }
.tour-card .tour-title-link:hover { color: var(--accent); }

/* --- Galeri: lightbox --- */
.lightbox { position: fixed; inset: 0; z-index: 4000; display: none; align-items: center; justify-content: center; padding: 30px; background: rgba(5,18,12,.92); }
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 88vh; border-radius: 12px; box-shadow: 0 20px 60px rgba(0,0,0,.6); }
.lightbox-close, .lightbox-prev, .lightbox-next {
    position: absolute; border: 0; cursor: pointer; color: #fff; background: rgba(255,255,255,.15);
    border-radius: 50%; width: 52px; height: 52px; font-size: 1.5rem;
    display: flex; align-items: center; justify-content: center; transition: var(--transition);
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: var(--accent); }
.lightbox-close { top: 22px; right: 22px; }
.lightbox-prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 22px; top: 50%; transform: translateY(-50%); }
.lightbox-caption { position: absolute; bottom: 22px; left: 0; right: 0; text-align: center; color: rgba(255,255,255,.85); font-size: .9rem; }
@media (max-width: 600px) { .lightbox-prev, .lightbox-next { width: 42px; height: 42px; font-size: 1.15rem; } .lightbox-prev { left: 8px; } .lightbox-next { right: 8px; } }

/* --- Galeri sayfası: eşit ızgara --- */
.gallery-page-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 16px; }
.gallery-page-grid .gallery-item { grid-column: auto !important; grid-row: auto !important; }
@media (max-width: 968px) { .gallery-page-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 190px; } }
@media (max-width: 600px)  { .gallery-page-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; gap: 10px; } }

/* --- Blog yazı gövdesi --- */
.article-body { max-width: 780px; margin: 0 auto; }
.article-body h2 { color: var(--primary-dark); font-size: 1.9rem; margin: 34px 0 14px; }
.article-body h3 { color: var(--primary); font-size: 1.35rem; margin: 26px 0 10px; }
.article-body p { color: #4a4a55; line-height: 1.85; margin-bottom: 16px; }
.article-body ul, .article-body ol { margin: 0 0 18px 22px; color: #4a4a55; line-height: 1.8; }
.article-body li { margin-bottom: 8px; }
.article-body blockquote {
    margin: 24px 0; padding: 20px 26px; border-left: 4px solid var(--accent);
    background: #f7f9f7; border-radius: 0 12px 12px 0; color: var(--primary-dark); font-style: italic; line-height: 1.75;
}
.article-meta { display: flex; flex-wrap: wrap; gap: 18px; color: var(--gray); font-size: .87rem; margin-bottom: 26px; }
.article-meta span { display: inline-flex; align-items: center; gap: 7px; }

/* --- İstatistik şeridi --- */
.stats-band { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); color: #fff; padding: 60px 0; }
.stats-band-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 30px; text-align: center; }
.stats-band .number { font-family: 'Oswald', sans-serif; font-size: 3rem; color: var(--accent); line-height: 1; }
.stats-band .label { color: rgba(255,255,255,.75); text-transform: uppercase; letter-spacing: 1.5px; font-size: .82rem; margin-top: 8px; }

/* --- Bilgi kutusu --- */
.notice { display: flex; gap: 14px; align-items: flex-start; padding: 18px 22px; border-radius: 14px; margin: 22px 0;
          background: #fff5ef; border: 1px solid #ffd9c7; color: #8a4020; line-height: 1.65; font-size: .93rem; }
.notice i { color: var(--accent); font-size: 1.15rem; margin-top: 2px; flex-shrink: 0; }
.notice.info { background: #eef5f0; border-color: #cfe3d6; color: #1f4a33; }
.notice.info i { color: var(--primary); }

/* --- Form durumu --- */
.form-status { display: none; margin-top: 16px; padding: 16px 20px; border-radius: 12px; font-size: .93rem; line-height: 1.6; }
.form-status.ok  { display: block; background: #e8f5ec; border: 1px solid #bcdcc7; color: #1c5233; }
.form-status.err { display: block; background: #fdecea; border: 1px solid #f5c2bd; color: #9b2c22; }
.form-status a { color: inherit; font-weight: 700; }

.footer-links a[aria-current="page"] { color: var(--accent); }

/* --- Yorum özeti --- */
.rating-summary { display: flex; flex-wrap: wrap; gap: 40px; align-items: center; justify-content: center;
                  background: var(--white); border-radius: 20px; padding: 34px; margin-bottom: 45px; box-shadow: 0 6px 26px rgba(0,0,0,.07); }
.rating-big { text-align: center; }
.rating-big .score { font-family: 'Oswald', sans-serif; font-size: 4rem; color: var(--accent); line-height: 1; }
.rating-big .stars { justify-content: center; margin: 6px 0; }
.rating-big small { color: var(--gray); font-size: .87rem; }
.rating-bars { flex: 1; min-width: 260px; }
.rating-bar-row { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; font-size: .85rem; color: var(--gray); }
.rating-bar { flex: 1; height: 9px; border-radius: 50px; background: var(--light-gray); overflow: hidden; }
.rating-bar span { display: block; height: 100%; background: var(--gold); border-radius: 50px; }

/* --- Mobil menü backdrop --- */
.nav-backdrop { position: fixed; inset: 0; z-index: 999; background: rgba(5,18,12,.55); opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s ease; }
.nav-backdrop.active { opacity: 1; visibility: visible; }
@media (min-width: 969px) { .nav-backdrop { display: none; } }

/* --- Hareket azaltma --- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

/* --- Yazdırma --- */
@media print {
    .navbar, .whatsapp-float, .welcome-modal, .booking-modal, .lightbox, .cta-banner, .scroll-indicator { display: none !important; }
    body { background: #fff; }
    a[href^="http"]::after { content: " (" attr(href) ")"; font-size: .8em; color: #666; }
}


/* --- Galeri: albüm kartları (tur bazlı) --- */
.album-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 968px) { .album-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .album-grid { grid-template-columns: 1fr; } }

.album-card {
    display: block; position: relative; border-radius: 20px; overflow: hidden;
    text-decoration: none; background: var(--white);
    box-shadow: 0 6px 24px rgba(0,0,0,.08); transition: var(--transition);
}
.album-card:hover { transform: translateY(-8px); box-shadow: 0 18px 44px rgba(0,0,0,.16); }
.album-cover { position: relative; height: 230px; background-size: cover; background-position: center; }
.album-cover::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(13,46,26,.15) 40%, rgba(10,31,60,.82) 100%);
}
.album-count {
    position: absolute; top: 14px; right: 14px; z-index: 2;
    background: rgba(13,46,26,.82); color: #fff; padding: 6px 14px;
    border-radius: 50px; font-size: .78rem; font-weight: 600;
    display: inline-flex; align-items: center; gap: 7px;
}
.album-body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 20px 22px; }
.album-body h3 { color: #fff; font-size: 1.4rem; margin-bottom: 4px; }
.album-body span {
    color: var(--gold); font-size: .86rem; font-weight: 600;
    display: inline-flex; align-items: center; gap: 8px;
}
.album-card:hover .album-body span i { transform: translateX(5px); }
.album-body span i { transition: transform .25s ease; }

/* --- Galeri: alt sayfa üst çubuğu --- */
.gallery-toolbar {
    display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
    margin-bottom: 36px;
}
.gallery-chip {
    padding: 9px 18px; border-radius: 50px; text-decoration: none;
    background: var(--white); border: 1px solid #dfe5e0; color: var(--primary-dark);
    font-size: .87rem; font-weight: 600; transition: var(--transition);
}
.gallery-chip:hover { border-color: var(--accent); color: var(--accent); }
.gallery-chip.active { background: var(--primary); border-color: var(--primary); color: #fff; }



/* --- Albüm başlığı: galeri fotoğraflarından slayt --- */
.page-hero-slides { position: absolute; inset: 0; overflow: hidden; }
.page-hero-slides .phs {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0; transition: opacity 1.4s ease-in-out;
}
.page-hero-slides .phs.active { opacity: .28; }
/* slayt varsa sabit arka planı gizle */
.page-hero-slides ~ .page-hero-bg,
.page-hero.has-slides > .page-hero-bg { display: none; }

@media (prefers-reduced-motion: reduce) {
    .page-hero-slides .phs { transition: none; }
}


/* --- Galeri ızgarasındaki video karesi (ilk sıra) --- */
.gallery-item.gallery-video { position: relative; }
.gallery-item.gallery-video img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item.gallery-video::after {
    content: '\f04b';
    font-family: 'Font Awesome 6 Free'; font-weight: 900;
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 62px; height: 62px; border-radius: 50%;
    background: rgba(255, 107, 53, .94); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; padding-left: 5px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .35);
    transition: var(--transition); pointer-events: none; z-index: 2;
    opacity: 1;                      /* .gallery-item::after opacity:0 veriyor */
}
/* hover'da büyüteç yerine oynat düğmesi büyüsün */
.gallery-item.gallery-video:hover::after {
    transform: translate(-50%, -50%) scale(1.12);
    opacity: 1;
}
.gallery-video-tag {
    position: absolute; top: 12px; left: 12px; z-index: 2;
    background: rgba(13, 46, 26, .85); color: #fff;
    padding: 5px 12px; border-radius: 50px;
    font-size: .74rem; font-weight: 600;
    display: inline-flex; align-items: center; gap: 6px;
}

/* --- Lightbox içinde video: fotoğrafla aynı ölçüde --- */
.lightbox video {
    max-width: 100%; max-height: 88vh;
    border-radius: 12px; background: #000;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .6);
    display: block;
}
.lightbox.is-video img { display: none; }
.lightbox:not(.is-video) video { display: none; }


/* --- Galeri afişi: yazısız, tam görünür banner --- */
.page-hero.is-banner {
    padding: 0;
    background: var(--primary-dark);
    display: block;
    line-height: 0;                 /* alttaki boşluğu kaldır */
}
.page-hero.is-banner::before { content: none; }   /* turuncu parıltıyı kaldır */

.page-hero.is-banner { text-align: center; }

/* Afiş HER çözünürlükte TAM görünür — hiçbir kenarından kırpılmaz.
   Görsel 1920x360 (5.333:1). Yükseklik tarayıcı genişliğine göre kendiliğinden
   ayarlanır. Üst sınıra dayanan çok geniş ekranlarda görsel ortada tam olarak
   sığdırılır (contain); yanlarda kalan boşluğu afişin kendi bulanık kopyası
   doldurur, böylece ne kesilme ne de düz renk bant görünür. */
.page-hero.is-banner {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 86px;              /* sabit navbar'ın altına */
}
/* yan boşlukları dolduran bulanık zemin (afişin kendi kopyası) */
.page-hero.is-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--banner);
    background-size: cover;
    background-position: center;
    filter: blur(30px) brightness(.45) saturate(.7);
    transform: scale(1.12);         /* blur kenar soluklugunu tasir */
    z-index: 0;
}
.page-hero-banner {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    /* Kırpma yok: oran korunur; yükseklik sınırına gelince genişlik daralır. */
    aspect-ratio: 1920 / 360;
    /* Tavan: onaylanan yükseklik (hero 336px). Çok geniş ekranlarda afişin
       gereğinden küçük kalmaması için tavan 12vw ile birlikte yumuşakça büyür. */
    max-height: clamp(250px, 12vw, 330px);
    object-fit: contain;            /* cover DEĞİL — hiçbir kenar kesilmez */
    object-position: center;
    margin-inline: auto;
}
@media (max-width: 968px) {
    .page-hero.is-banner { padding-top: 78px; }
    .page-hero-banner { max-height: 200px; }
}
@media (max-width: 600px) {
    .page-hero.is-banner { padding-top: 74px; }
    .page-hero-banner { max-height: 150px; }
}

/* ekran okuyucu için gizli başlık */
.visually-hidden {
    position: absolute !important;
    width: 1px; height: 1px;
    margin: -1px; padding: 0;
    overflow: hidden; clip: rect(0 0 0 0);
    white-space: nowrap; border: 0;
}
