/* ============================================
   PREMIUM DARK TRAVEL EXPERIENCES WEBSITE
   (Clean + Single Header)
   ============================================ */

:root {
    /* DARK MODE (Default per user request) */
    --bg-primary: #0F172A;
    --bg-secondary: #1E293B;
    --bg-tertiary: #0B1120;

    --deep-ocean: #0F172A;
    --ocean-blue: #1D4ED8;
    --accent-primary: #F97316;
    --accent-secondary: #0ea5e9;

    --text-main: #F8FAFC;
    --text-muted: #94A3B8;
    --text-white: #ffffff;

    --glass-bg: rgba(15, 23, 42, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);

    --shadow-soft: 0 10px 25px -5px rgba(0, 0, 0, 0.5), 0 8px 10px -6px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 20px rgba(249, 115, 22, 0.4);

    --overlay-grad-1: rgba(15, 23, 42, 0.6);
    --overlay-grad-2: rgba(29, 78, 216, 0.4);
    --overlay-shadow: rgba(0, 0, 0, 0.6);

    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Inter', sans-serif;

    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

html[data-theme="light"] {
    --bg-primary: #F8FAFC;
    --bg-secondary: #ffffff;
    --bg-tertiary: #e2e8f0;

    --text-main: #0F172A;
    --text-muted: #475569;

    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.4);

    --shadow-soft: 0 10px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.04);

    --overlay-grad-1: rgba(15, 23, 42, 0.3);
    --overlay-grad-2: rgba(29, 78, 216, 0.2);
    --overlay-shadow: rgba(0, 0, 0, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background: var(--bg-primary);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;

    /* fixed header boşluğu */
    padding-top: 92px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================
   HERO SECTION & SLIDER
   ============================================ */

.hero-slider {
    position: relative;
    overflow: hidden;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slider-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.28);
    z-index: 1;
}

.hero-content,
.slider-arrow,
.slider-dots {
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .hero-slider {
        height: 75vh;
        min-height: 620px;
    }

    .slide {
        background-position: center center;
    }
}

/* VIDEO SLIDE SUPPORT */
.video-slide {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.slide-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-slide.active .slide-video {
    animation: kenburnsVideo 20s ease-out forwards;
}

@keyframes kenburnsVideo {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.05);
    }
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.23, 1, 0.32, 1);
    transform: scale(1);
    will-change: opacity, transform;
}

.slide.active {
    opacity: 1;
    animation: kenburns 25s ease-out forwards;
}

@keyframes kenburns {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

.slider-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--overlay-grad-1) 0%, var(--overlay-grad-2) 100%);
    box-shadow: inset 0 0 100px var(--overlay-shadow);
    z-index: 1;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-white);
    animation: textFade 1s ease-out forwards;
    text-shadow: 0 4px 20px rgba(15, 23, 42, 0.6);
}

@keyframes textFade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.hero-brand {
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
}

/* Hero içindeki logo (büyük) */
.hero-logo-link {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 18px;
    width: fit-content;
    text-decoration: none;
    z-index: 3;
}

.hero-logo {
    height: 180px;
    margin-top: 35px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 16px 40px rgba(0, 0, 0, .65));
    transition: transform .25s ease, filter .25s ease, opacity .25s ease;
    opacity: .98;
}

.hero-logo-link:hover .hero-logo {
    transform: translateY(-2px) scale(1.03);
    filter: drop-shadow(0 22px 55px rgba(0, 0, 0, .75));
}

@media (max-width: 768px) {
    .hero-logo {
        height: 82px;
    }
}

/* particle lights */
.hero-slider::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 2px, transparent 2px) repeat;
    background-size: 50px 50px;
    animation: particles 20s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes particles {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 0 -100px;
    }
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
    z-index: 2;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.slider-dots .dot.active {
    background: var(--accent-primary);
    transform: scale(1.3);
    box-shadow: var(--shadow-glow);
}

.hero-slider:hover .slide {
    animation-play-state: paused;
}

.hero-slider {
    background-attachment: fixed;
}

.hero-background::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(100, 150, 200, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(200, 100, 150, 0.08) 0%, transparent 50%);
    animation: parallax 20s ease-in-out infinite;
}

@keyframes parallax {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(50px, 50px);
    }
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: var(--text-muted);
    font-weight: 300;
    letter-spacing: 0.05em;
    animation: heroFadeIn 1s ease-out 0.2s both;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   TOURS GRID SECTION
   ============================================ */

.tours-section {
    padding: 6rem 0;
    position: relative;
    z-index: 5;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

@media (min-width: 768px) {
    .tours-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tours-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .tours-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem;
    }
}

.tour-card {
    position: relative;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
}

.tour-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 100%, rgba(29, 78, 216, 0.4) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 2;
}

.tour-card:hover::before {
    opacity: 1;
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.3) 60%, transparent 100%);
    z-index: 1;
    transition: var(--transition-smooth);
}

.card-content {
    position: relative;
    z-index: 3;
    text-align: center;
    width: 100%;
    padding: 2rem;
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.tour-card:hover .card-content {
    transform: translateY(-10px);
}

.card-title {
    font-family: var(--font-serif);
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.card-accent {
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, var(--accent-primary), var(--ocean-blue));
    margin: 0 auto;
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
    box-shadow: 0 0 10px rgba(249, 115, 22, 0.5);
}

.tour-card:hover .card-accent {
    transform: scaleX(1);
    width: 60px;
}

.tour-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.2), 0 0 30px rgba(29, 78, 216, 0.15);
}

.tour-card:hover .card-overlay {
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(29, 78, 216, 0.4) 70%, transparent 100%);
}

/* ============================================
   SECTION STYLES
   ============================================ */

.about-section,
.pricing-section,
.contact-section {
    padding: 5rem 0;
    text-align: center;
}

.about-section {
    background: linear-gradient(135deg, rgba(30, 40, 60, 0.3) 0%, rgba(45, 55, 72, 0.2) 100%);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--glass-border);
}

.pricing-section {
    background: linear-gradient(135deg, rgba(35, 50, 70, 0.2) 0%, rgba(25, 35, 55, 0.3) 100%);
}

.contact-section {
    background: linear-gradient(135deg, rgba(45, 27, 61, 0.2) 0%, rgba(35, 45, 70, 0.2) 100%);
    padding: 6rem 0;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
    animation: fadeInUp 0.8s ease-out;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.section-note {
    font-size: 0.95rem;
    color: var(--accent-primary);
    margin-top: 1rem;
    font-weight: 500;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   FLOATING ACTION BUTTONS
   ============================================ */

.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
    animation: floatIn 0.6s ease-out;
}

@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    color: white;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.float-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.float-btn:hover::before {
    opacity: 1;
}

.float-btn.whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.float-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.float-btn.email {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
}

.float-btn:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

@media (max-width: 640px) {
    .floating-actions {
        bottom: 15px;
        right: 15px;
        gap: 12px;
    }

    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

/* ============================================
   SCROLLBAR
   ============================================ */

::-webkit-scrollbar {
    width: 6px;
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ea580c;
}

/* ============================================
   SERVICE CARDS (Images) & SCROLL
   ============================================ */

.card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transform: scale(1.01);
    transition: transform 0.6s ease;
}

.tour-card:hover .card-img {
    transform: scale(1.05);
}

.scroll-link {
    cursor: pointer;
}

/* ============================================
   SERVICE DETAILS SECTION
   ============================================ */
.service-details-section {
    padding: 2rem 0 6rem;
}

.service-detail-block {
    scroll-margin-top: 120px;
    margin-bottom: 3rem;
    padding: 3rem;
}

.service-detail-title {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    color: var(--text-main);
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.service-detail-list {
    list-style: none;
    margin-bottom: 2rem;
}

.service-detail-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.service-detail-list i {
    color: var(--accent-secondary);
}

/* ============================================
   CTA / Trust Row
   ============================================ */

.hero-cta {
    margin-top: 0.8rem;
    /* önce 2rem’di -> üste gelir */
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;

    transform: translateY(-100px);
    /* ekstra üste alır (değeri artır/azalt) */
}

.hero-btn {
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.35s ease;
    position: relative;
    font-size: 1rem;
}

.hero-btn.primary {
    background: linear-gradient(135deg, var(--accent-primary), #ea580c);
    color: white;
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.3);
}

.hero-btn.primary:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
    background: linear-gradient(135deg, #ea580c, var(--accent-primary));
}

.hero-btn.ghost {
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
}

.hero-btn.ghost:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-4px);
    border-color: #fff;
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.trust-row {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
}

.trust-row a.trust-link {
    padding: 14px 24px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
    font-size: 0.95rem;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    transition: all 0.35s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.trust-row a.trust-link:hover {
    border-color: var(--accent-primary);
    box-shadow: 0 8px 25px rgba(26, 54, 93, 0.3);
    transform: translateY(-3px);
    color: var(--accent-primary);
}

.trust-row a.trust-link::before {
    content: "✔";
    color: var(--accent-primary);
    font-weight: bold;
}

/* ============================================
   ABOUT - Premium Layout
   ============================================ */

.about-card {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 2rem;
    align-items: center;
    padding: 2.4rem;
    border-radius: 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}

.about-actions {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.about-stats {
    display: grid;
    gap: 14px;
}

.stat {
    padding: 16px 18px;
    border-radius: 16px;
    background: var(--bg-primary);
    border: 1px solid var(--glass-border);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.stat:hover {
    transform: translateY(-3px);
    border-color: var(--accent-secondary);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent-primary);
    line-height: 1.1;
}

.stat-label {
    margin-top: 6px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

@media (max-width: 900px) {
    .about-card {
        grid-template-columns: 1fr;
        padding: 1.6rem;
    }

    .about-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .about-card {
        padding: 1.25rem;
    }

    .about-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-btn {
        width: 100%;
        text-align: center;
    }
}

/* ============================================
   PRICING + CONTACT Premium kısımların
   (Sen zaten yapmıştın — burada yoksa eklemen gerekir)
   ============================================ */

/* Print */
@media print {

    .site-header,
    .floating-actions {
        display: none;
    }
}

/* SOLDAN ÇIKAN NOKTALAR (bullet) – KÖKTEN ÇÖZÜM */
.pricing-section ul,
.pricing-section li,
.contact-section ul,
.contact-section li,
.tours-section ul,
.tours-section li {
    list-style: none !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
}

/* HEADER sabit olduğu için section’lara güvenli boşluk */
.tours-section {
    padding-top: 6rem;
}

/* Video card içeriği ve overlay düzgün dursun */
.video-card {
    position: relative;
    overflow: hidden;
}

.card-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.card-content {
    position: relative;
    z-index: 2;
}

/* =========================================
   FIX PACK – PRICING + CONTACT (OVERRIDE)
   bunu CSS'in EN ALTINA yapıştır
   ========================================= */

/* Anchor tıklayınca header altında kalsın */
section[id] {
    scroll-margin-top: 110px;
}

/* Pricing/Contact içindeki liste noktaları ve soldaki “beyaz noktalar” */
#pricing ul,
#pricing li,
#contact ul,
#contact li {
    list-style: none !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
}

/* Danışmanlık: içerik taşmasın, ortada kalsın */
#pricing .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Danışmanlık başlık açıklama spacing */
#pricing .section-title {
    margin-bottom: 10px;
}

#pricing .section-description {
    margin-bottom: 12px;
}

#pricing .section-note {
    margin-top: 10px;
}

/* Kartlar düzgün hizalansın */
.pricing-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 16px !important;
    align-items: stretch !important;
    margin-top: 22px !important;
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Kart içi yazılar karışmasın */
.price-card {
    text-align: left !important;
    min-height: 260px;
}

/* Liste satırları net görünsün */
.price-list {
    margin: 16px 0 18px !important;
    padding: 0 !important;
}

.price-list li {
    display: flex !important;
    align-items: flex-start !important;
    gap: 10px !important;
    line-height: 1.45 !important;
}

.price-list li i {
    margin-top: 4px !important;
}

/* Butonlar kartta taşmasın */
.price-card .hero-btn,
.price-card .btn,
.price-card a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

/* =========================================
   CONTACT – premium düzen + büyük harita
   ========================================= */

#contact .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Harita büyük + düzgün */
.contact-map-wide {
    height: 460px !important;
    border-radius: 22px !important;
    overflow: hidden !important;
}

@media (max-width: 1024px) {
    .contact-map-wide {
        height: 320px !important;
    }
}

/* Harita iframe kesin dolsun */
.contact-map-wide iframe {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    border: 0 !important;
}

/* Kart grid’i düzgün */
.contact-cards {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 14px !important;
    margin-top: 18px !important;
}

@media (max-width: 1024px) {
    .contact-cards {
        grid-template-columns: 1fr !important;
    }
}

/* Kart içi taşma/hizalama */
.c-card {
    text-align: left !important;
    align-items: flex-start !important;
}

.c-text {
    word-break: break-word;
    overflow-wrap: anywhere;
}

/* Contact buton satırı */
.contact-cta-row {
    display: flex !important;
    justify-content: center !important;
    gap: 12px !important;
    flex-wrap: wrap !important;
    margin-top: 18px !important;
}

/* =========================================================
   PRICING = ABOUT STYLE (Panel + premium düzen)
   Mevcut HTML'ni bozmadan görünümü değiştirir.
   ========================================================= */

#pricing.pricing-section {
    padding: 6rem 0;
    position: relative;
}

/* pricing içindeki container biraz daha kontrollü olsun */
#pricing .container {
    max-width: 1200px;
}

/* Üst başlık alanını premium gibi toparla */
#pricing .pricing-head {
    text-align: center;
    margin-bottom: 22px;

    padding: 36px 28px;
    border-radius: 26px;

    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}

/* açıklama satırları */
#pricing .pricing-head .section-description {
    max-width: 70ch;
    margin: 10px auto 10px;
    color: var(--text-muted);
    line-height: 1.75;
}

#pricing .pricing-head .section-note {
    margin-top: 12px;
    color: var(--accent-primary);
    font-weight: 650;
}

/* Paket kart grid'i: Hakkımızda gibi aynı yükseklik ve düzen */
#pricing .pricing-grid {
    margin-top: 18px;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

/* Kartların premium görünümü */
#pricing .price-card {
    border-radius: 20px;
    padding: 22px;

    background: var(--bg-primary);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
    overflow: hidden;

    display: flex;
    flex-direction: column;
}

/* hover */
#pricing .price-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent-secondary);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

/* kart başlıkları */
#pricing .price-name {
    font-family: var(--font-serif);
    font-size: 2rem;
    letter-spacing: -0.01em;
}

#pricing .price-sub {
    color: var(--text-muted);
}

/* liste */
#pricing .price-list {
    margin: 18px 0 18px;
    padding: 0;
    display: grid;
    gap: 10px;
}

#pricing .price-list li {
    color: rgba(255, 255, 255, 0.92);
}

#pricing .price-list li i {
    color: var(--accent-primary);
}

#pricing .price-list li.muted {
    color: rgba(176, 184, 196, 0.75);
}

#pricing .price-list li.muted i {
    color: rgba(176, 184, 196, 0.55);
}

/* butonlar alta yapışsın (kartların boyu eşitlensin) */
#pricing .price-card .full {
    margin-top: auto;
}

/* Önerilen kart: hafif highlight */
#pricing .price-card.featured {
    border-color: rgba(212, 175, 55, 0.45);
    box-shadow: 0 28px 90px rgba(212, 175, 55, 0.10), 0 18px 55px rgba(0, 0, 0, 0.28);
}

#pricing .price-card.featured:hover {
    transform: translateY(-10px);
}

/* Badge */
#pricing .badge {
    background: rgba(212, 175, 55, 0.16);
    color: rgba(212, 175, 55, 0.98);
    border: 1px solid rgba(212, 175, 55, 0.35);
    padding: 8px 10px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
}

/* Karşılaştırma paneli de aynı theme */
#pricing .compare-wrap {
    margin-top: 18px;
    padding: 26px;
    border-radius: 26px;

    background: rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.35);
}

/* table */
#pricing .compare-title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    margin-bottom: 14px;
}

#pricing .compare-table {
    display: grid;
    gap: 10px;
    overflow: auto;
}

#pricing .compare-row {
    display: grid;
    grid-template-columns: 1.6fr repeat(3, 1fr);
    gap: 10px;
}

#pricing .compare-row .cell {
    padding: 14px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

#pricing .compare-row .cell.feature {
    text-align: left;
    color: rgba(255, 255, 255, 0.92);
}

#pricing .compare-row.head .cell {
    background: rgba(212, 175, 55, 0.10);
    border-color: rgba(212, 175, 55, 0.18);
    font-weight: 800;
}

#pricing .compare-row .fa-check {
    color: var(--accent-primary);
}

#pricing .compare-row .fa-xmark {
    color: rgba(176, 184, 196, 0.70);
}

/* CTA */
#pricing .pricing-cta {
    margin-top: 16px;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 1024px) {
    #pricing .pricing-grid {
        grid-template-columns: 1fr;
    }

    #pricing .compare-row {
        grid-template-columns: 1.3fr repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    #pricing .pricing-head {
        padding: 26px 16px;
    }

    #pricing .compare-row {
        min-width: 640px;
        /* yatay scroll */
    }
}

/* =========================
   PREMIUM HEADER (HTML'İNE UYUMLU)
   ========================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    border: 0;
    box-shadow: none;
}

/* Floating glass pill */
.navbar {
    width: min(1180px, calc(100% - 28px));
    margin: 14px auto 0;
    padding: 12px 16px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;

    border-radius: 999px;

    background: rgba(10, 14, 20, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    box-shadow:
        0 18px 55px rgba(0, 0, 0, 0.45),
        0 1px 0 rgba(255, 255, 255, 0.10) inset;

    transition: transform .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

/* Logo */
.hero-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding-left: 6px;
}

.hero-logo {
    height: 52px;
    /* LOGO BOYUTU: istersen 56-60 yap */
    width: auto;
    object-fit: contain;
    display: block;

    image-rendering: -webkit-optimize-contrast;
    filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.45));
    transform: translateZ(0);
    transition: transform .2s ease, filter .2s ease;
}

.hero-logo-link:hover .hero-logo {
    transform: translateY(-1px) scale(1.02);
    filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.55));
}

/* Menu */
.nav-content {
    display: flex;
    justify-content: flex-end;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;

    text-decoration: none;
    font-weight: 800;
    font-size: 0.92rem;
    letter-spacing: .15px;

    padding: 10px 14px;
    border-radius: 999px;

    color: rgba(255, 255, 255, 0.92);
    transition: background .2s ease, transform .2s ease, color .2s ease, box-shadow .2s ease;
}

.nav-link:hover {
    background: rgba(212, 175, 55, 0.14);
    color: #f5d76e;
    transform: translateY(-1px);
    box-shadow: 0 10px 26px rgba(212, 175, 55, 0.16);
}

/* Aktif link */
.nav-link.active {
    background: rgba(212, 175, 55, 0.18);
    border: 1px solid rgba(212, 175, 55, 0.25);
    color: #f5d76e;
}

/* Scroll olunca premium dark */
.site-header.scrolled .navbar {
    transform: translateY(-4px) scale(0.98);
    background: rgba(8, 10, 14, 0.78);
    border-color: rgba(212, 175, 55, 0.22);
    box-shadow:
        0 22px 70px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(212, 175, 55, 0.10) inset;
}

/* Header altında içerik kaymasın */
body {
    padding-top: 92px;
}

/* Responsive */
@media (max-width: 900px) {
    .navbar {
        width: calc(100% - 18px);
        padding: 10px 12px;
    }

    .hero-logo {
        height: 38px;
    }

    .nav-links {
        gap: 6px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .nav-link {
        padding: 9px 10px;
        font-size: 0.86rem;
    }
}

/* === FIX: Header yazıları görünür olsun === */

/* navbar arka planını biraz aç */
.navbar {
    background: rgba(10, 14, 20, 0.62) !important;
    border-color: rgba(255, 255, 255, 0.18) !important;
}

/* linkleri net beyaz yap */
.nav-link {
    color: #ffffff !important;
    opacity: 1 !important;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.55);
}

/* hover */
.nav-link:hover {
    color: #f5d76e !important;
    background: rgba(212, 175, 55, 0.18) !important;
}

/* active */
.nav-link.active {
    color: #f5d76e !important;
    background: rgba(212, 175, 55, 0.20) !important;
    border: 1px solid rgba(212, 175, 55, 0.30) !important;
}

/* scroll olunca da yazılar aynı net kalsın */
.site-header.scrolled .nav-link {
    color: #ffffff !important;
}

/* logo biraz daha net dursun */
.hero-logo {
    filter: drop-shadow(0 12px 26px rgba(0, 0, 0, 0.60)) !important;
}

/* =====================================
   PREMIUM FLOATING LOGO
   ===================================== */

.floating-logo {
    position: fixed;
    top: -50px;
    left: 40px;
    z-index: 1200;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.floating-logo img {
    height: 200px;
    /* Reduced from massive 150px to a balanced premium size */
    width: auto;
    object-fit: contain;

    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.5));
    transition: transform .3s ease, filter .3s ease;
}

.floating-logo:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 12px 30px rgba(212, 175, 55, 0.35));
}

.floating-logo::before {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.25), transparent 70%);
    filter: blur(35px);
    top: -20px;
    left: -20px;
    z-index: -1;
}

/* Header artık sağa yaslı */
.navbar {
    width: fit-content;
    margin: 14px 40px 0 auto;
    /* sağa yasla */
    padding: 12px 22px;

    border-radius: 999px;

    background: rgba(10, 14, 20, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    box-shadow:
        0 18px 55px rgba(0, 0, 0, 0.45),
        0 1px 0 rgba(255, 255, 255, 0.10) inset;

    transition: all .25s ease;
}

/* Menü hizalama */
.nav-links {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.92rem;
    color: #fff;
    text-decoration: none;
    transition: all .2s ease;
}

.nav-link:hover {
    background: rgba(212, 175, 55, 0.18);
    color: #f5d76e;
    transform: translateY(-1px);
}

/* Scroll efekti */
.site-header.scrolled .navbar {
    background: rgba(8, 10, 14, 0.95) !important;
    transform: scale(0.98);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Responsive */
@media (max-width: 900px) {
    .floating-logo {
        left: 20px;
        top: 15px;
    }

    .floating-logo img {
        height: 45px;
    }

    .navbar {
        margin: 15px 20px 0 auto;
        padding: 10px 16px;
    }
}

/* ============================================
   MOBILE OPTIMIZATIONS & PERFORMANCE
   ============================================ */

/* Safe Layout Rules */
img,
video {
    max-width: 100%;
    height: auto;
}

body {
    overflow-x: hidden;
}

/* Play Overlay for Video Cards */
.play-overlay {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.8);
    opacity: 1;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.play-overlay.hidden {
    opacity: 0;
    transform: scale(1.2);
}

@media (min-width: 769px) {

    /* Hide play overlay on desktop because it plays on hover */
    .play-overlay {
        display: none;
    }
}

/* Hamburger Menu Logic */
.hamburger {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s;
    outline: none;
}

.hamburger:hover {
    color: var(--accent-primary);
}

@media (max-width: 900px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        display: none;
    }

    .nav-content {
        position: absolute;
        top: 110%;
        right: 0;
        background: rgba(10, 14, 20, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        padding: 1.5rem;
        min-width: 240px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }

    .nav-content.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-content.active .nav-links {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        width: 100%;
    }

    .nav-content.active .nav-link {
        width: 100%;
        padding: 12px 16px;
        border-radius: 8px;
        font-size: 1rem;
        text-align: left;
    }
}

/* Performance Optimizations for Mobile */
@media (max-width: 768px) {

    /* Prevent overflow issues */
    .container {
        padding: 0 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .site-header {
        backdrop-filter: blur(8px) !important;
        -webkit-backdrop-filter: blur(8px) !important;
    }

    .tour-card {
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    }
}

/* Reduced Motion preference */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ============================================
   PREMIUM CONTACT SECTION
   ============================================ */

.contact-section {
    padding: 6rem 0;
    position: relative;
    background: linear-gradient(135deg, rgba(15, 20, 25, 0.4) 0%, rgba(20, 25, 35, 0.6) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-head {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

/* Contact Form */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.input-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.input-group label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.input-field {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 14px 18px;
    color: var(--text-main);
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input-field::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.input-field:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
}

textarea.input-field {
    resize: vertical;
    min-height: 120px;
}

.hero-btn.primary.full {
    width: 100%;
    margin-top: 1rem;
}

.form-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 1rem;
}

/* Success Message */
.form-success-message {
    display: none;
    position: absolute;
    inset: 0;
    background: rgba(15, 20, 25, 0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 10;
    padding: 2rem;
    animation: fadeIn 0.4s ease forwards;
}

.form-success-message.active {
    display: flex;
}

.form-success-message i {
    font-size: 4rem;
    color: #25d366;
    margin-bottom: 1rem;
}

.form-success-message h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.form-success-message p {
    color: var(--text-muted);
}

/* Info Cards */
.info-cards-row {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.c-info-card {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    text-decoration: none;
    color: var(--text-main);
    transition: all 0.3s ease;
}

a.c-info-card:hover {
    transform: translateX(10px);
    border-color: rgba(212, 175, 55, 0.4);
    background: rgba(212, 175, 55, 0.05);
}

.c-info-card .icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.c-info-card .text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    font-weight: 600;
}

.c-info-card .text span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Map Container */
.contact-map-container {
    position: relative;
    width: 100%;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.map-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(15, 20, 25, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--text-main);
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.map-badge i {
    color: var(--accent-primary);
}

/* FAQ Section */
.faq-section {
    margin-top: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-primary);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: var(--accent-primary);
    background: var(--bg-secondary);
}

.faq-question {
    width: 100%;
    padding: 1.2rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    color: var(--text-main);
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--accent-primary);
}

.faq-question i {
    color: var(--accent-primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-inner {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
    .contact-grid {
        gap: 2rem;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-head {
        margin-bottom: 2rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .faq-section {
        margin-top: 3rem;
    }

    .info-cards-row {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .c-info-card {
        flex: 1 1 100%;
    }
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--accent-primary) 0%, #1e3a8a 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.contact-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Glass Card */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.contact-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    margin-bottom: 4rem;
}

.contact-form-wrapper {
    padding: 3rem;
    position: relative;
}

.premium-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: opacity 0.4s ease;
}

.premium-form.fade-out {
    opacity: 0;
    pointer-events: none;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
}

.form-group label span {
    font-weight: 400;
    opacity: 0.6;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    padding: 1rem 1.25rem;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.4s ease;
    outline: none;
    font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-primary);
    background: var(--bg-primary);
    box-shadow: 0 0 0 4px rgba(26, 54, 93, 0.1);
}

.custom-select-wrapper select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23a1a1aa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    background-size: 1rem;
    cursor: pointer;
}

.custom-select-wrapper select option {
    background-color: var(--bg-primary);
    color: var(--text-main);
}

.premium-btn-gold {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
    cursor: pointer;
    border: none;
}

.premium-btn-gold .btn-icon {
    transition: transform 0.3s ease;
}

.premium-btn-gold:hover .btn-icon {
    transform: translateX(4px);
}

.form-success-state {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(20, 22, 28, 0.95);
    border-radius: 20px;
    padding: 3rem;
    opacity: 1;
    transition: opacity 0.4s ease;
    z-index: 10;
}

.form-success-state.hidden {
    opacity: 0;
    pointer-events: none;
}

.success-icon {
    width: 64px;
    height: 64px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.form-success-state h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.form-success-state p {
    color: var(--text-muted);
    margin: 0;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    text-decoration: none;
    color: inherit;
    transition: transform 0.4s ease, border-color 0.4s ease, background-color 0.4s ease;
}

.info-card.hover-lift:hover {
    transform: translateY(-3px);
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(255, 255, 255, 0.03);
}

.info-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.info-card:hover .info-icon {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
}

.info-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #fff;
}

.info-content p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

.premium-map-container {
    flex-grow: 1;
    min-height: 250px;
    position: relative;
    overflow: hidden;
    padding: 0;
    border-radius: 20px;
}

.map-overlay-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 0.5rem 1.25rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.map-overlay-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-primary);
}

.premium-map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(100%) invert(92%) contrast(85%);
    opacity: 0.8;
    transition: opacity 0.4s ease;
}

.premium-map-container:hover iframe {
    opacity: 1;
}

.faq-container {
    padding: 3rem;
}

.faq-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
    color: #fff;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 850px;
    margin: 0 auto;
}

.accordion-item {
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.2);
    transition: border-color 0.4s ease;
}

.accordion-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
    outline: none;
}

.accordion-icon {
    width: 20px;
    height: 20px;
    position: relative;
    flex-shrink: 0;
}

.accordion-icon::before,
.accordion-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: var(--accent-primary);
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
}

.accordion-icon::before {
    width: 12px;
    height: 2px;
}

.accordion-icon::after {
    width: 2px;
    height: 12px;
}

.accordion-header[aria-expanded="true"] .accordion-icon::after {
    transform: translate(-50%, -50%) rotate(90deg) scale(0);
}

.accordion-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
}

.accordion-header[aria-expanded="true"]+.accordion-content {
    grid-template-rows: 1fr;
}

.accordion-inner {
    overflow: hidden;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.accordion-inner p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    margin: 0;
}

@media (max-width: 900px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .premium-map-container {
        min-height: 320px;
        margin-top: 1rem;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 4rem 1rem;
    }

    .contact-form-wrapper,
    .faq-container {
        padding: 2rem 1.25rem;
    }

    .info-card {
        padding: 1rem;
    }

    .glass-card {
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }
}

/* ==========================================================================
   SCHOOLS GRID SECTION
   ========================================================================== */
.schools-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .schools-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

.school-card {
    padding: 1.5rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.video-container video,
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.school-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 1rem;
    text-align: left;
}

.school-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--accent-primary);
    margin: 0;
}

.school-desc {
    color: var(--text-main);
    font-size: 1rem;
    line-height: 1.6;
    flex-grow: 1;
    margin: 0;
}

/* Theme toggle (navbar inline) */
.theme-toggle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    color: var(--text-main);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.theme-toggle:hover {
    transform: translateY(-2px);
    background: var(--bg-secondary);
}

.theme-toggle .fa-sun {
    display: none;
}

html[data-theme="light"] .theme-toggle .fa-sun {
    display: inline-block;
}

html[data-theme="light"] .theme-toggle .fa-moon {
    display: none;
}

/* =========================
   LOGO MOBILE SIZE FIX
   ========================= */

/* Tablet ve altı */
@media (max-width: 900px) {
    .floating-logo {
        top: 10px !important;
        left: 14px !important;
    }

    .floating-logo img {
        height: 72px !important;
        /* burada büyüklük */
        width: auto !important;
    }
}

/* Telefon (daha küçük ekran) */
@media (max-width: 480px) {
    .floating-logo {
        top: 8px !important;
        left: 12px !important;
    }

    .floating-logo img {
        height: 82px !important;
        /* telefonda biraz daha büyük */
    }
}

/* ============================================
   TRUST DETAILS SECTION
   ============================================ */

.trust-details-section {
    padding: 6rem 0 2rem;
    position: relative;
    z-index: 5;
}

.trust-detail-block {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    scroll-margin-top: 120px;
    margin-bottom: 4rem;
    padding: 3rem;
    border-radius: 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

@media (min-width: 992px) {
    .trust-detail-block {
        flex-direction: row;
        align-items: center;
    }

    .trust-detail-block.reverse {
        flex-direction: row-reverse;
    }

    .trust-detail-content,
    .trust-detail-image {
        flex: 1;
    }
}

.trust-detail-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.trust-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 4/3;
    transition: transform 0.5s ease;
}

.trust-detail-block:hover .trust-detail-image img {
    transform: scale(1.03);
}

.trust-detail-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.trust-detail-content p {
    color: var(--text-main);
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .trust-detail-block {
        padding: 2rem;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .trust-detail-block {
        padding: 1.5rem;
    }
}

/* ============================================
   LANGUAGE SWITCHER PREMIUM
   ============================================ */

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 20px;
}

/* Desktop language buttons */
.lang-desktop {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Buton stil */
.lang-btn {
    border: 1px solid rgba(212, 175, 55, 0.35);
    background: rgba(212, 175, 55, 0.08);
    color: #d4af37;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all .25s ease;
    backdrop-filter: blur(6px);
}

/* Hover efekti */
.lang-btn:hover {
    background: linear-gradient(135deg, #d4af37, #b8962e);
    color: #000;
    border-color: #d4af37;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(212, 175, 55, 0.35);
}

/* Aktif dil */
.lang-btn.active {
    background: linear-gradient(135deg, #d4af37, #b8962e);
    color: #000;
    border-color: #d4af37;
    box-shadow: 0 6px 18px rgba(212, 175, 55, 0.45);
}

/* Mobile language dropdown */
.lang-mobile {
    display: none;
    position: relative;
}

.lang-dropdown {
    position: absolute;
    top: 48px;
    right: 0;
    background: rgba(10, 14, 20, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 8px;
    display: none;
    flex-direction: column;
    gap: 6px;
    min-width: 150px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    z-index: 1201;
}

.lang-dropdown button {
    background: none;
    border: none;
    color: #fff;
    padding: 8px 12px;
    text-align: left;
    cursor: pointer;
    border-radius: 8px;
    font-size: 14px;
}

.lang-dropdown button:hover {
    background: rgba(255, 255, 255, 0.08);
}

.lang-globe {
    font-size: 26px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    border: none;
    cursor: pointer;
    padding: 6px 10px;
    transition: all 0.25s ease;
    color: #fff;
    line-height: 1;
}

.lang-globe:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* ============================================
   HERO / SLIDER CLEAN FIX
   ============================================ */

.hero-slider {
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 760px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slider-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--overlay-grad-1) 0%, var(--overlay-grad-2) 100%);
    box-shadow: inset 0 0 100px var(--overlay-shadow);
    z-index: 1;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-white);
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-shadow: 0 4px 20px rgba(15, 23, 42, 0.6);
}

.hero-cta {
    margin-top: 0.8rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    transform: translateY(-100px);
}

.hero-cta .hero-btn {
    min-width: 220px;
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.trust-row {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
    max-width: 980px;
}

.trust-row a.trust-link {
    padding: 14px 24px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
    font-size: 0.95rem;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    transition: all 0.35s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    white-space: normal;
    min-height: 52px;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow.prev {
    left: 18px;
}

.slider-arrow.next {
    right: 18px;
}

.slider-dots {
    position: absolute;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    z-index: 3;
}

/* ============================================
   TABLET
   ============================================ */

@media (max-width: 991px) {
    .hero-slider {
        height: 88vh;
        min-height: 720px;
    }

    .hero-content {
        padding: 0 18px;
    }

    .hero-cta {
        gap: 12px;
    }

    .hero-cta .hero-btn {
        min-width: 210px;
    }

    .trust-row {
        gap: 10px;
        margin-top: 24px;
    }

    .trust-row a.trust-link {
        font-size: 0.9rem;
        padding: 10px 14px;
    }
}

/* ============================================
   MOBILE
   ============================================ */

@media (max-width: 768px) {

    /* language switcher */
    .lang-desktop {
        display: none;
    }

    .lang-mobile {
        display: block;
    }

    /* hero slider */
    .hero-slider {
        height: 78vh;
        min-height: 680px;
        padding-top: 92px;
        padding-bottom: 28px;
        align-items: center;
    }

    .slide {
        background-size: cover;
        background-position: center center;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        padding: 0 16px;
        margin-top: 0;
    }

    .hero-cta {
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 14px;
        margin-top: 0;
        margin-bottom: 18px;
        transform: translateY(-38px);
    }

    .hero-cta .hero-btn {
        width: 100%;
        max-width: 320px;
        min-width: unset;
        min-height: 56px;
        font-size: 1rem;
        border-radius: 16px;
    }

    .trust-row {
        width: 100%;
        max-width: 420px;
        margin-top: 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        justify-content: center;
    }

    .trust-row a.trust-link {
        width: 100%;
        min-height: 72px;
        font-size: 0.88rem;
        line-height: 1.3;
        padding: 10px 10px;
        border-radius: 14px;
        justify-content: center;
        text-align: center;
    }

    .slider-arrow {
        width: 48px;
        height: 48px;
        top: 54%;
    }

    .slider-arrow.prev {
        left: 8px;
    }

    .slider-arrow.next {
        right: 8px;
    }

    .slider-dots {
        bottom: 14px;
    }
}

/* ============================================
   SMALL MOBILE
   ============================================ */

@media (max-width: 480px) {
    .hero-slider {
        height: 76vh;
        min-height: 640px;
        padding-top: 84px;
        padding-bottom: 22px;
    }

    .hero-content {
        padding: 0 14px;
    }

    .hero-cta {
        transform: translateY(-190px);
        gap: 12px;
        margin-bottom: 14px;
    }

    .hero-cta .hero-btn {
        width: 100%;
        max-width: 300px;
        min-height: 54px;
        font-size: 0.96rem;
    }

    .trust-row {
        max-width: 360px;
        gap: 8px;
    }

    .trust-row a.trust-link {
        min-height: 66px;
        font-size: 0.8rem;
        padding: 9px 9px;
        border-radius: 12px;
    }

    .slider-arrow {
        width: 44px;
        height: 44px;
        top: 53%;
    }

    .slider-arrow.prev {
        left: 6px;
    }

    .slider-arrow.next {
        right: 6px;
    }

    .slider-dots {
        bottom: 12px;
    }
}
