/* SUALLAR TURİZM - Umre Tema (umre5 tabanlı) */
:root {
    --gold: #c9a84c;
    --gold-light: #f0d98a;
    --gold-dark: #a07b28;
    --midnight: #0d2b1a;
    --midnight-light: #1a5c38;
    --white: #ffffff;
    --stone: #f4f8f5;
    --text-main: #1a2e1a;
    --text-muted: #5a7a5a;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --radius: 12px;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
    position: relative;
    -webkit-overflow-scrolling: touch;
}

html {
    height: 100%;
    overflow-x: clip;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--white);
}

body.no-scroll {
    overflow: hidden;
}

/* ===== UTILITIES ===== */
.no-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--midnight), var(--midnight-light));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    gap: 15px;
    min-height: 250px;
}

.no-image-placeholder svg {
    opacity: 0.4;
    width: 64px;
    height: 64px;
}

.no-image-placeholder.card-placeholder svg {
    width: 48px;
    height: 48px;
}
.text-sm {
    font-size: 0.875rem;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

/* ===== NAVBAR ===== */
.navbar-ethereal {
    padding: 1rem 0;
    transition: var(--transition);
    background: transparent;
    z-index: 1050;
    left: 0 !important;
    right: 0 !important;
    width: auto !important;
    max-width: 100% !important;
}

.navbar-ethereal.scrolled {
    padding: 0.8rem 0;
    background: rgba(13, 43, 26, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

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

.brand {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--white);
}

.brand-icon {
    color: var(--gold);
    display: flex;
}

.brand-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.5rem;
    flex: 1;
    justify-content: center;
    align-items: center;
}

.nav-links li {
    display: flex;
    align-items: center;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--white);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-outline-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--midnight);
}

/* Mobile Toggle */
.mobile-toggle {
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    position: relative;
    z-index: 1040;
    padding: 0;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    transform-origin: center;
}

/* Mobile Toggle Active State */
.mobile-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(13, 43, 26, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1035;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 100px 20px 40px;
    overflow-y: auto;
    transform: translateY(-100%);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.mobile-menu-overlay.active {
    transform: translateY(0);
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.1rem;
    width: 100%;
}

.mobile-menu-content a {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.35rem;
    text-decoration: none;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
    padding: 4px 0;
    text-align: center;
    width: 100%;
}

.mobile-menu-overlay.active .mobile-menu-content a {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation for links */
.mobile-menu-overlay.active .mobile-menu-content a:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-menu-overlay.active .mobile-menu-content a:nth-child(2) {
    transition-delay: 0.15s;
}

.mobile-menu-overlay.active .mobile-menu-content a:nth-child(3) {
    transition-delay: 0.2s;
}

.mobile-menu-overlay.active .mobile-menu-content a:nth-child(4) {
    transition-delay: 0.25s;
}

.mobile-menu-overlay.active .mobile-menu-content a:nth-child(5) {
    transition-delay: 0.3s;
}

.mobile-menu-overlay.active .mobile-menu-content a:nth-child(6) {
    transition-delay: 0.35s;
}

/* ===== HERO ===== */
.hero-cinematic {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

.hero-bg img,
.hero-bg video,
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    display: block;
    transform: translate(-50%, -50%) scale(1.05);
    animation: slowZoom 20s infinite alternate;
}

/* Optimize video playback on mobile/safari by removing the heavy animation */
.hero-bg video,
.hero-video {
    animation: none !important;
    transform: translate(-50%, -50%) scale(1);
}

@keyframes slowZoom {
    from {
        transform: translate(-50%, -50%) scale(1.05);
    }

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

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

.hero-vignette {
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 150px rgba(0, 0, 0, 0.7);
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
    padding-top: 80px;
    /* Navbar space */
}

.hero-content {
    max-width: 600px;
    color: var(--white);
}

.hero-subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title span {
    color: var(--gold);
    font-style: italic;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    line-height: 1.2;
}

.hero-tagline {
    font-weight: 500;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.hero-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.btn-solid-gold {
    background: var(--gold);
    color: var(--midnight);
    padding: 16px 36px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-solid-gold:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-play-video {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.play-icon {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-play-video:hover .play-icon {
    background: var(--white);
    color: var(--midnight);
    transform: scale(1.1);
}

/* ===== TRUST BAR ===== */
.trust-bar {
    background: var(--midnight-light);
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-icon {
    color: var(--gold);
    font-size: 1.2rem;
}

/* ===== PHILOSOPHY ===== */
.philosophy-section {
    padding: 8rem 0;
    background: var(--stone);
    overflow: hidden;
}

.image-composition {
    position: relative;
}

.img-main {
    width: 90%;
    border-radius: var(--radius);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.img-float {
    position: absolute;
    bottom: -10%;
    right: 0;
    width: 50%;
    border-radius: var(--radius);
    border: 10px solid var(--stone);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.experience-badge {
    position: absolute;
    top: 50%;
    left: -30px;
    transform: translateY(-50%);
    background: var(--midnight);
    color: var(--white);
    padding: 24px;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 5px solid var(--stone);
}

.experience-badge strong {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--gold);
    line-height: 1;
}

.experience-badge span {
    font-size: 0.7rem;
    text-transform: uppercase;
    text-align: center;
    margin-top: 5px;
    opacity: 0.8;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--midnight);
    margin-bottom: 1.5rem;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 1.5rem;
}

.f-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: rgba(201, 168, 76, 0.12);
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.feature-list h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--midnight);
    margin-bottom: 8px;
}

.feature-list p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

/* ===== PRICING MATRIX ===== */
.pricing-matrix {
    padding: 8rem 0;
    background: var(--midnight);
    overflow: hidden;
}

.border-gold {
    border-color: var(--gold) !important;
}

.text-gold {
    color: var(--gold) !important;
}

.pricing-tables-container {
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card-majestic {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(201, 168, 76, 0.3);
    display: flex;
    flex-direction: column;
}

.pricing-card-action {
    margin-top: auto;
}

.pricing-card-action .btn-solid-gold {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 22px;
    border-radius: 0;
    font-size: 1rem;
    transition: all 0.4s ease;
}

.pricing-card-action .btn-solid-gold:hover {
    background: var(--midnight);
    color: var(--gold);
    transform: none; /* Keep it at the bottom */
    box-shadow: none;
}

.pricing-card-action .btn-solid-gold svg {
    transition: transform 0.3s ease;
}

.pricing-card-action .btn-solid-gold:hover svg {
    transform: translateX(5px);
}

.pricing-card-header {
    background: linear-gradient(135deg, var(--midnight-light), var(--midnight));
    color: var(--white);
    padding: 24px 32px;
    border-bottom: 3px solid var(--gold);
}

.pricing-card-header h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin: 0;
    color: var(--gold);
}

.program-date {
    font-size: 0.85rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
}

.hotel-info {
    margin: 12px 0 0 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.room-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--white);
}

.room-item {
    padding: 30px 20px;
    text-align: center;
    border-right: 1px solid #eee;
    transition: var(--transition);
}

.room-item:last-child {
    border-right: none;
}

.room-item:hover {
    background: #fdfbf7;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.room-icon {
    color: var(--gold);
    margin-bottom: 15px;
}

.room-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--midnight);
    margin-bottom: 10px;
}

.room-price {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--midnight);
    line-height: 1;
}

.room-price span {
    font-size: 1.2rem;
    color: var(--gold);
    font-family: var(--font-body);
}

.room-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 8px;
}

.child-pricing-note {
    max-width: 900px;
    margin: 2rem auto 0;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px;
    border-radius: var(--radius);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.child-pricing-note strong {
    color: var(--gold);
}

/* ===== SERVICES BREAKDOWN ===== */
.services-breakdown {
    padding: 6rem 0;
    background: var(--stone);
    overflow: hidden;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--midnight);
    margin-bottom: 2rem;
}

.check-list,
.cross-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li,
.cross-list li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 0.95rem;
    border-bottom: 1px solid #eaeaea;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 1.2rem;
}

.cross-list li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: bold;
    font-size: 1.1rem;
}

.contact-cta {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--gold);
}

.contact-cta h4 {
    font-family: var(--font-heading);
    color: var(--midnight);
}

.contact-cta p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* ===== FOOTER ===== */
.site-footer {
    background: #0a1f12;
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.footer-logo {
    height: 65px;
    object-fit: contain;
    display: block;
    margin-bottom: 16px;
}

.footer-about {
    font-size: 0.88rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 8px;
}

.footer-social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: var(--transition);
    text-decoration: none;
}

.footer-social-btn:hover {
    background: var(--gold);
    color: #0a1f12;
}

.footer-social-wa:hover {
    background: #25d366;
    border-color: #25d366;
    color: #fff;
}

.footer-col-title {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 18px;
}

.footer-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link-list a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-link-list a:hover {
    color: var(--gold);
}

.footer-links-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.footer-contact-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 14px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}

.footer-contact-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.3);
    flex-wrap: wrap;
    gap: 8px;
}

/* Footer Mobile */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-bottom: 28px;
    }

    .footer-links-row {
        display: none;
    }

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

/* ===== MOBİL FOOTER ===== */
.footer-mobile {
    background: #0a1f12;
    color: rgba(255, 255, 255, 0.7);
    padding: 40px 24px 28px;
    text-align: center;
}

.footer-mobile-top {
    margin-bottom: 28px;
}

.footer-mobile-logo {
    height: 60px;
    object-fit: contain;
    display: block;
    margin: 0 auto 12px;
}

.footer-mobile-tagline {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 12px;
}

.footer-mobile-about {
    font-size: 0.85rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.footer-mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.footer-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.footer-cta-wa {
    background: #25d366;
    color: #fff;
}

.footer-cta-wa:hover {
    background: #1daa55;
    color: #fff;
}

.footer-cta-phone {
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: var(--gold);
}

.footer-cta-phone:hover {
    background: var(--gold);
    color: #0a1f12;
}

.footer-mobile-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    border: 1px solid rgba(201, 168, 76, 0.1);
}

.footer-mobile-info-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: left;
    line-height: 1.5;
}

.footer-mobile-info-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-mobile-socials {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
}

.footer-mobile-bottom {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.25);
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ===== FAB ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
}

/* ===== MOBİL ALT AKSIYON BARI ===== */
.mobile-action-bar {
    display: none;
}

@media (max-width: 768px) {
    .whatsapp-float {
        display: none;
    }

    .mobile-action-bar {
        display: flex;
        justify-content: space-around;
        align-items: center;
        position: fixed;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 9999;
        background: rgba(13, 43, 26, 0.95);
        backdrop-filter: blur(10px);
        border-top: 1px solid var(--gold);
        padding: 10px 5px calc(10px + env(safe-area-inset-bottom)) 5px;
        box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.3);
    }

    .mob-bar-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        text-decoration: none;
        color: var(--white);
        flex: 1;
        transition: var(--transition);
        border-right: 1px solid rgba(255, 255, 255, 0.1) !important;
    }

    .mob-bar-item:last-child {
        border-right: none !important;
    }

    .mob-bar-item svg {
        opacity: 0.8;
        transition: var(--transition);
    }

    .mob-bar-item span {
        font-size: 0.65rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        opacity: 0.7;
    }

    /* Tüm öğeler beyaz */
    .mob-bar-phone, .mob-bar-wa, .mob-bar-social, .mob-bar-contact { 
        color: var(--white) !important; 
    }

    .mob-bar-item:hover svg,
    .mob-bar-item:hover span {
        opacity: 1;
        color: var(--gold) !important;
    }

    body {
        padding-bottom: 60px !important;
    }
}

/* ===== ANIMATIONS ===== */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.active.reveal-up,
.active.reveal-left,
.active.reveal-right {
    opacity: 1;
    transform: translate(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .image-composition {
        margin-bottom: 3rem;
    }

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

    .room-item {
        border-right: none;
        border-bottom: 1px solid #eee;
    }

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

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

    .hero-cinematic {
        height: auto;
        min-height: 100svh;
        align-items: flex-start;
        padding-top: 120px;
        padding-bottom: 100px;
        overflow: hidden;
    }

    .hero-bg {
        min-height: 100%;
    }

    .hero-bg img {
        height: 100%;
        min-height: 100%;
    }

    .hero-container {
        padding-top: 0;
        margin-top: 0;
    }

    .hero-content {
        padding-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .hero-desc {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .btn-solid-gold {
        text-align: center;
    }

    .btn-play-video {
        display: flex;
        justify-content: center;
    }

    .pricing-card-header {
        padding: 20px;
    }

    .pricing-card-header h3 {
        font-size: 1.25rem;
    }

    .program-date {
        display: inline-block;
        margin-top: 10px;
    }

    /* Philosophy Section Mobile */
    .philosophy-section {
        padding: 4rem 0;
    }

    .img-main {
        width: 100%;
        height: 300px;
        object-fit: cover;
    }

    .img-float {
        width: 55%;
        bottom: -5%;
        right: 0;
        border-width: 5px;
    }

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

/* ============================================================
   ORTAK SAYFA BİLEŞENLERİ
   filter sidebar · dual slider · tur kartları · layout
   ============================================================ */

/* ── İki Sütun Layout (sidebar + içerik) ── */
.page-layout-sidebar {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    padding: 48px 0 80px;
    align-items: start;
}

/* ── Ortak Tur Kartı (.tour-card) ── */
.tour-card {
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid #e5e5e5;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.tour-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
    border-color: var(--gold);
}

/* Kart Fotoğraf Alanı */
.tour-card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}

.tour-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

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

/* ── Filter Sidebar ── */
.filter-sidebar {
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid #e5e5e5;
    padding: 24px;
    position: sticky;
    top: 90px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

.filter-title {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--midnight);
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e5e5e5;
}

.filter-group {
    margin-bottom: 22px;
}

.filter-group-title {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.filter-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    cursor: pointer;
    font-size: 0.88rem;
    color: var(--text-main);
}

.filter-check input[type=checkbox] {
    width: 16px;
    height: 16px;
    accent-color: var(--midnight);
    cursor: pointer;
}

.filter-btn {
    width: 100%;
    background: var(--midnight);
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 4px;
}

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

/* ── Dual Price Range Slider ── */
.price-range-wrap {
    position: relative;
    height: 36px;
    margin: 8px 0 4px;
}

.price-range-wrap input[type=range] {
    position: absolute;
    width: 100%;
    height: 4px;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    top: 50%;
    transform: translateY(-50%);
    outline: none;
    z-index: 3;
}

.price-range-wrap input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--midnight);
    border: 3px solid #fff;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    pointer-events: all;
    transition: transform 0.2s;
}

.price-range-wrap input[type=range]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.price-range-track {
    position: absolute;
    height: 4px;
    border-radius: 4px;
    background: #e0e0e0;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 0;
}

.price-range-fill {
    position: absolute;
    height: 4px;
    border-radius: 4px;
    background: var(--midnight-light);
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    pointer-events: none;
}

.price-range-values {
    display: flex;
    justify-content: space-between;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--midnight);
    margin-top: 6px;
}

.price-range-values span {
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 2px 8px;
}



/* Rozet (sol üst) */
.tour-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    /* Varsayılan: altın badge — tip classı override edebilir */
    background: var(--gold);
    color: var(--midnight);
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.badge-umre {
    background: var(--midnight);
    color: var(--gold);
}

.badge-cultural {
    background: #6c3483;
    color: #fff;
}

.badge-nature {
    background: var(--midnight);
    color: #fff;
}

.badge-city {
    background: #2c3e50;
    color: #fff;
}

.badge-beach {
    background: #c0392b;
    color: #fff;
}

.badge-vip {
    background: var(--gold);
    color: var(--midnight);
}

/* altın VIP */
.badge-ramazan {
    background: #1a4731;
    color: var(--gold);
}

/* koyu yeşil Ramazan */

/* Gece sayısı (sağ alt) */
.tour-nights {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

/* CTA Butonu */
.tour-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--midnight);
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.tour-cta-btn:hover {
    background: var(--gold);
    color: var(--midnight);
}

/* Liste Başlık Satırı */
.list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.list-count {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.list-sort select {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 0.85rem;
    color: var(--text-main);
    background: #fff;
    cursor: pointer;
}

/* ── Detay Sayfası — Ortak ── */
.detail-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 32px;
    padding: 48px 0 80px;
    align-items: start;
}

.tour-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin: 0 0 6px;
    display: block;
}

.tour-main-title {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    color: var(--midnight);
    margin: 0 0 24px;
    line-height: 1.2;
}

/* Hero Image + Quick Info */
.tour-hero-block {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    height: 320px;
    margin-bottom: 24px;
}

.tour-hero-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 43, 26, 0.85) 0%, transparent 55%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
}

.tour-quick-info {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.tqi-item {
    color: #fff;
}

.tqi-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.65;
}

.tqi-value {
    font-size: 0.95rem;
    font-weight: 600;
}

/* Price Table */
.price-table-card {
    background: #fff;
    border: 1px solid #e8f0e8;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: 0 2px 12px rgba(13, 43, 26, 0.05);
}

.price-table-head {
    background: var(--midnight);
    color: #fff;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    padding: 10px;
    font-size: 0.78rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.price-table-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    padding: 14px 10px;
    border-bottom: 1px solid #f0f4f0;
    font-size: 0.9rem;
}

.price-table-row:last-child {
    border-bottom: none;
}

.price-table-row .label {
    text-align: left;
    font-weight: 600;
    color: var(--midnight);
}

.price-highlight {
    color: #c0392b;
    font-weight: 700;
    font-size: 1rem;
}

/* ── Price Table Responsive ── */
@media (max-width: 768px) {
    .price-table-head {
        display: none !important;
    }

    .price-table-row {
        grid-template-columns: 1fr !important;
        padding: 0 !important;
    }

    .price-table-row .label {
        background: #f8fcf9;
        padding: 12px 15px !important;
        text-align: center !important;
        border-bottom: 1px solid #e8f0e8;
        font-size: 0.75rem;
        color: var(--midnight);
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 800;
    }

    .price-table-row > div:not(.label) {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 14px 20px !important;
        border-bottom: 1px solid #f0f4f0;
        font-size: 1rem;
        text-align: right !important;
    }

    .price-table-row > div:not(.label)::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--text-muted);
        font-size: 0.85rem;
        text-align: left;
    }

    .price-table-row > div:last-child {
        border-bottom: none;
    }

    .price-highlight {
        font-size: 1.1rem !important;
    }
}


.divider, .sidebar-divider {
    height: 1px;
    background: #f0f0f0;
    margin: 20px 0;
}

.tour-img-main {
    border-radius: var(--radius);
    overflow: hidden;
    height: 340px;
    margin-bottom: 14px;
}

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

.tour-img-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 24px;
}

.tour-img-thumbs img {
    width: 100%;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0.72;
    transition: var(--transition);
}

.tour-img-thumbs img:hover {
    opacity: 1;
}

/* Highlight şeridi */
.tour-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 28px;
}

.highlight-item {
    background: #f5f5f5;
    border-radius: 10px;
    padding: 14px;
    text-align: center;
}

.highlight-icon {
    font-size: 1.4rem;
    margin-bottom: 4px;
}

.highlight-label {
    font-size: 0.68rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.highlight-val {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--midnight);
}

/* Sekme Nav */
.tab-nav {
    display: flex;
    gap: 4px;
    border-bottom: 2px solid #e5e5e5;
    margin-bottom: 24px;
}

.tab-btn {
    padding: 10px 18px;
    border: none;
    background: none;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: var(--transition);
}

.tab-btn.active {
    color: var(--midnight);
    border-bottom-color: var(--gold);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

/* Gün programı */
.day-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 16px;
    margin-bottom: 20px;
    align-items: start;
}

.day-label {
    background: var(--midnight);
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 0.72rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    padding: 8px;
    border-radius: 8px;
    line-height: 1.4;
}

.day-content h4 {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--midnight);
    margin: 0 0 6px;
}

.day-content ul {
    margin: 0;
    padding-left: 16px;
    color: var(--text-muted);
    font-size: 0.86rem;
    line-height: 1.7;
}

/* Dahil/Hariç */
.incl-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.section-heading {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--midnight);
    margin: 0 0 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e5e5e5;
}

.incl-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.incl-list li {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    font-size: 0.87rem;
    color: var(--text-main);
    padding: 6px 0;
    border-bottom: 1px solid #f0f0f0;
}

.incl-list li:last-child {
    border: none;
}

/* Sidebar İletişim Kartı */
.contact-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
    position: sticky;
    top: 120px;
    z-index: 10;
    align-self: start;
}

.contact-card-title {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--midnight);
    margin: 0 0 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e5e5e5;
}

.price-box {
    background: linear-gradient(135deg, var(--midnight), var(--midnight-light));
    border-radius: 10px;
    padding: 16px;
    text-align: center;
    margin-bottom: 18px;
}

.price-box-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 4px;
}

.price-box-val {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.price-box-val sup {
    font-size: 1rem;
}

.price-box-sub {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.info-list li {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 0.86rem;
    color: var(--text-muted);
}

/* ── Galeri Sayfası ── */
.gallery-item {
    transition: var(--transition);
    overflow: hidden !important;
    cursor: pointer;
}

.gallery-item img {
    transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.gallery-item-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 20px 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 50%, transparent 100%);
    color: var(--white);
    opacity: 0;
    transform: translateY(15px);
    transition: var(--transition);
    z-index: 2;
    text-align: left;
}

.gallery-item:hover .gallery-item-content {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin: 0 0 6px;
    color: var(--gold);
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 700;
}

.gallery-item-desc {
    font-size: 0.88rem;
    margin: 0;
    opacity: 0.95;
    line-height: 1.6;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Custom Lightbox */
.sualar-lightbox {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    user-select: none;
    overflow: hidden;
}

.lightbox-track {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 2000px;
}

.lightbox-slide {
    position: absolute;
    transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lightbox-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.5);
    padding: 30px;
    transition: all 0.3s ease;
}

.lightbox-nav:hover {
    color: var(--gold);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-nav.prev {
    left: 5%;
}

.lightbox-nav.next {
    right: 5%;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 40px;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    z-index: 1001;
    line-height: 1;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .lightbox-slide {
        width: 100vw;
        height: 70vh;
    }

    .lightbox-nav {
        display: flex;
        padding: 15px;
        background: rgba(0, 0, 0, 0.3);
        border-radius: 50%;
        width: 50px;
        height: 50px;
        align-items: center;
        justify-content: center;
    }

    .lightbox-nav.prev {
        left: 10px;
    }

    .lightbox-nav.next {
        right: 10px;
    }

    .lightbox-close {
        top: 20px;
        right: 20px;
        font-size: 35px;
    }
}

.info-icon {
    width: 32px;
    height: 32px;
    background: #f5f5f5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sidebar-divider {
    height: 1px;
    background: #f0f0f0;
    margin-bottom: 18px;
}

.wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    padding: 14px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    transition: background 0.3s;
    margin-bottom: 10px;
}

.wa-btn:hover {
    background: #128c7e;
    color: #fff;
}

.phone-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--midnight);
    color: #fff;
    text-decoration: none;
    padding: 12px;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    transition: background 0.3s;
}

.phone-btn:hover {
    background: var(--midnight-light);
    color: #fff;
}

.sidebar-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 12px;
    line-height: 1.6;
}

/* ── Responsive (ortak) ── */
@media (max-width: 992px) {

    .page-layout-sidebar,
    .detail-layout {
        grid-template-columns: 1fr;
    }

    .filter-sidebar,
    .contact-card {
        position: static;
    }

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

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

@media (max-width: 576px) {
    .tour-highlights {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ── Umre Kart Listesi (.tours-grid) ── */
.tours-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Umre'de .tours-sort span gösterimi */
.tours-sort {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ── Tur Listeleri (Yurtiçi/Yurtdışı) ── */
.yd-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.tour-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    text-decoration: none;
}

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

.tour-card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.yd-card-body {
    padding: 16px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.yd-dest {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold);
    margin-bottom: 4px;
}

.yd-name {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--midnight);
    margin: 0 0 10px;
    line-height: 1.4;
}

.yd-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
    flex: 1;
}

.yd-meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.yd-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid #f0f0f0;
}

.yd-price-from {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.yd-price-val {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--midnight);
}

/* Featured Banner */
.featured-banner {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 260px;
    margin-bottom: 24px;
    display: block;
    text-decoration: none;
}

.featured-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.featured-banner:hover img {
    transform: scale(1.04);
}

.featured-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.78) 35%, rgba(0, 0, 0, 0.2));
    display: flex;
    align-items: center;
    padding: 32px;
}

.featured-content {
    max-width: 380px;
    color: #fff;
}

.featured-tag {
    display: inline-block;
    background: var(--gold);
    color: var(--midnight);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.featured-title {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    margin: 0 0 8px;
}

.featured-meta {
    font-size: 0.85rem;
    opacity: 0.75;
    margin-bottom: 12px;
}

.featured-price {
    font-size: 1rem;
    font-weight: 700;
}

.featured-price span {
    font-size: 1.4rem;
    color: var(--gold);
}

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

/* ── Umre Turları (Yatay Kart) ── */
.tour-card-horizontal {
    display: grid;
    grid-template-columns: 240px 1fr;
    min-height: 200px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    text-decoration: none;
    margin-bottom: 20px;
}

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

.tour-card-horizontal .tour-card-img {
    height: 100%;
    min-height: 200px;
    position: relative;
}

.tour-card-horizontal .tour-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.airline-chip {
    display: inline-block;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 3px 10px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--midnight);
}

.tour-airline {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.tour-prices {
    display: flex;
    gap: 16px;
    align-items: flex-end;
    flex-wrap: wrap;
}


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

.price-tier-label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 3px;
}

.price-tier-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--midnight);
    line-height: 1;
}

.price-tier-value sup {
    font-size: 0.6rem;
}

.price-tier.featured .price-tier-value {
    color: #c0392b;
    font-size: 1.1rem;
}

.tour-card-body-horizontal {
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
}

@media (max-width: 640px) {
    .tour-card-horizontal {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .tour-card-horizontal .tour-card-img {
        height: 180px;
        min-height: 0;
    }
}

.tour-card-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--midnight);
    margin: 0 0 10px;
    line-height: 1.4;
}

.tour-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 15px;
}

.tour-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.tour-card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
    margin-top: auto;
}

.tour-card-top {
    flex: 1;
}

.tour-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    z-index: 2;
}

.badge-umre { background: var(--midnight); }
.badge-vip { background: var(--gold); color: var(--midnight); }
.badge-ramazan { background: #c0392b; }

.tour-nights {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    backdrop-filter: blur(4px);
}

/* ── İletişim Sayfası ── */
.contact-wrapper {
    padding: 80px 0 100px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: stretch;
    margin-bottom: 60px;
}

.contact-info-section .section-subtitle {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 12px;
    display: block;
}

.contact-info-section .section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--midnight);
    margin-bottom: 24px;
    line-height: 1.2;
}

.contact-info-section .section-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
}

.info-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: var(--transition);
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--gold);
}

.info-card-icon {
    width: 54px;
    height: 54px;
    background: var(--midnight);
    color: var(--gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-card-content h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--midnight);
    margin: 0 0 8px;
}

.info-card-content p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.info-card-note {
    font-size: 0.8rem;
    opacity: 0.8;
}

.wa-card {
    background: linear-gradient(135deg, #128c7e 0%, #075e54 100%);
    border: none;
    color: #fff;
    align-items: center;
}

.wa-card .info-card-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.wa-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.3);
    border-color: transparent;
}

.wa-card .info-card-content h4,
.wa-card .info-card-content p {
    color: #fff;
}

.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e5e5;
    height: 100%;
    min-height: 500px;
}

/* ── TOUR DETAILS REFINEMENTS ── */
.itinerary-timeline {
    position: relative;
    padding: 20px 0;
}

.itinerary-item {
    display: flex;
    gap: 30px;
    position: relative;
    padding-bottom: 40px;
    align-items: flex-start;
}

.itinerary-day-box {
    flex-shrink: 0;
    width: 100px;
    background: #112211; /* Dark green box */
    color: var(--gold);
    border-radius: 12px;
    padding: 12px 8px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.itinerary-day-box .day-num {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 4px;
    opacity: 0.8;
}

.itinerary-day-box .day-city {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
}

.itinerary-content {
    flex-grow: 1;
    padding-top: 5px;
}

.itinerary-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--midnight);
    margin-bottom: 12px;
    display: block;
}

.itinerary-desc {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.7;
}

.itinerary-desc ul {
    list-style: none;
    padding-left: 0;
}

.itinerary-desc ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
}

.itinerary-desc ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #4d664d;
    font-size: 1.2rem;
}

/* Dahil / Hariç Grid */
.incl-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.section-heading {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--midnight);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.rich-text-content ul {
    list-style: none;
    padding: 0;
}

.rich-text-content ul li {
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
    font-size: 1.05rem;
    color: #333;
}

/* Önemli Bilgiler */
.notes-list ul {
    list-style: none;
    padding: 0;
}

.notes-list ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: #333;
}

.notes-list ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #4d664d;
    font-size: 1.5rem;
    line-height: 1;
}

@media (max-width: 768px) {
    .incl-grid {
        grid-template-columns: 1fr;
    }
    .itinerary-item {
        flex-direction: column;
        gap: 15px;
    }
    .itinerary-day-box {
        width: 100%;
        display: flex;
        justify-content: center;
        gap: 10px;
        padding: 8px;
    }
    .itinerary-day-box .day-num, .itinerary-day-box .day-city {
        margin-bottom: 0;
    }
}

.map-container iframe {
    width: 100% !important;
    height: 100% !important;
    display: block;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .map-container {
        min-height: 400px;
    }
}

.wa-card-link {
    text-decoration: none;
    display: block;
}

.brand-logo {
    height: 60px;
    object-fit: contain;
}
/* Empty States */
.empty-state {
    text-align: center;
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px dashed #dee2e6;
    margin: 20px 0;
}
.empty-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
    opacity: 0.5;
}
.empty-state p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

/* ===== TOUR DETAIL - QUICK INFO BOX ===== */
.tour-quick-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.tqi-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0 15px;
    border-right: 1px solid #f0f0f0;
}

.tqi-item:last-child {
    border-right: none;
}

.tqi-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold-dark);
    font-weight: 700;
}

.tqi-value {
    font-size: 0.95rem;
    color: var(--midnight);
    font-weight: 500;
}

.tqi-value strong {
    color: var(--midnight);
}

/* Responsive fix for Quick Info */
@media (max-width: 768px) {
    .tqi-item {
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
        padding: 10px 0;
    }
    .tqi-item:last-child {
        border-bottom: none;
    }
}

/* Tour Summary Text */
.tour-summary-text {
    font-size: 1.1rem;
    color: var(--midnight-light);
    margin-bottom: 25px;
    font-style: italic;
    border-left: 4px solid var(--gold);
    padding-left: 20px;
    line-height: 1.6;
}

/* ===== RICH PROGRAM CONTENT STYLES ===== */
.rich-program-content {
    line-height: 1.8;
    color: var(--text-main);
    font-size: 1.05rem;
}

.rich-program-content h3 {
    font-family: var(--font-heading);
    color: var(--midnight);
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.4rem;
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    padding-bottom: 10px;
}

.rich-program-content p {
    margin-bottom: 20px;
}

.rich-program-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}

.rich-program-content ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
}

.rich-program-content ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 1.5rem;
    line-height: 1;
}

.rich-program-content strong {
    color: var(--midnight-light);
}
