@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

/* Genel yapı ve tema (beyaz + mavi) */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #111827;
    background-color: #f9fafb;
    line-height: 1.5;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}
.logo img {
    width: 200px;
    height: auto;
    display: block;
}


.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #f97316;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.muted {
    font-size: 0.85rem;
    color: #6b7280;
}

.list {
    padding-left: 1.1rem;
    margin: 0.4rem 0 0;
    font-size: 0.9rem;
    color: #4b5563;
}

.list li + li {
    margin-top: 0.2rem;
}

.link-more {
    display: inline-flex;
    align-items: center;
    margin-top: 0.75rem;
    font-size: 0.88rem;
    color: #c2410c;
}

.link-more::after {
    content: "›";
    margin-left: 0.25rem;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(16px);
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid #e5e7eb;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    gap: 1rem;
}

.logo {
    display: inline-flex;
    align-items: baseline;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #111827;
}

.logo-mark {
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #fed7aa, #f97316);
    color: #111827;
    font-size: 0.95rem;
}

.logo-text {
    margin-left: 0.4rem;
    font-size: 1.05rem;
    color: #374151;
}

.nav {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    font-size: 0.9rem;
    color: #4b5563;
}

.nav a {
    position: relative;
    padding-bottom: 0.1rem;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, #fed7aa, #f97316);
    transition: width 0.18s ease-out;
}

.nav a:hover::after,
.nav a.is-active::after {
    width: 100%;
}

.nav a.is-active {
    color: #111827;
    font-weight: 600;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-dropdown {
    position: absolute;
    right: 0;
    top: 140%;
    min-width: 210px;
    padding: 0.45rem 0.55rem;
    border-radius: 0.9rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 18px 32px rgba(15, 23, 42, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-4px);
    transition: opacity 0.12s ease-out, transform 0.12s ease-out;
    z-index: 40;
}

.nav-dropdown a {
    display: block;
    padding: 0.3rem 0.45rem;
    border-radius: 0.5rem;
    font-size: 0.86rem;
    color: #4b5563;
}

.nav-dropdown a:hover {
    background: #fffbeb;
    color: #c2410c;
}

.nav-item.has-dropdown:hover .nav-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.header-phone {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 0.3rem 0.9rem;
    border-radius: 999px;
    background: linear-gradient(to right, #fed7aa, #f97316);
    color: #111827;
    font-size: 0.8rem;
    white-space: nowrap;
}

.phone-label {
    opacity: 0.8;
}

.phone-number {
    font-weight: 700;
    letter-spacing: 0.05em;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 0.18rem;
    background: none;
    border: none;
    padding: 0.4rem;
    cursor: pointer;
}

.nav-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #4b5563;
}

/* Hero */
.hero {
    position: relative;
    min-height: 380px;
    padding: 2.2rem 0 2.2rem;
    color: #111827;
    overflow: hidden;
}

/* Masaüstünde gizli; sadece mobilde hero arka planı olarak kullanılır */
.hero-mobile-bg {
    display: none;
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-image-card {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease-out;
}

.hero-image-card.is-active {
    opacity: 1;
}

.hero-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: relative;
    z-index: 1;
    background: transparent;
}

/* Hero arka plan üzerinde koyu overlay – yazıların okunaklı olması için */
.hero-overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    z-index: 0;
    pointer-events: none;
}

.hero-overlay .container {
    position: relative;
    z-index: 1;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    padding-left: 1.75rem;
    padding-right: 1.75rem;
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.2fr);
    gap: 2.1rem;
    align-items: center;
}

.hero-text h1 {
    font-size: clamp(2rem, 3vw, 2.6rem);
    margin: 0 0 0.9rem;
    letter-spacing: -0.03em;
    color: #f9fafb;
}

.hero-text h1 span {
    color: #f97316;
}

.hero-text p {
    margin: 0;
    max-width: 32rem;
    color: #e5e7eb;
    font-size: 0.98rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 1.4rem 0 0.6rem;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    padding: 0;
    margin: 0.7rem 0 0;
    list-style: none;
    font-size: 0.82rem;
    color: #e5e7eb;
}

.hero-highlights li {
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(15, 23, 42, 0.8);
}

.hero-slider-dots {
    position: absolute;
    left: 50%;
    bottom: 1rem;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 0.4rem;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: none;
    padding: 0;
    background: rgba(15, 23, 42, 0.35);
    cursor: pointer;
}

.hero-dot.is-active {
    width: 16px;
    background: #f97316;
}

.hero-image-card {
    border-radius: 1.3rem;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.18);
    border: 1px solid #fed7aa;
    background: #111827;
}

.hero-image-card img {
    width: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.hero-image-card figcaption {
    padding: 0.6rem 0.9rem;
    font-size: 0.8rem;
    color: #374151;
    background: #fff7ed;
}

.hero-card {
    box-shadow: none;
    background: white;
    border: 3px solid black;
    padding: 10px;
    border-radius: 20px;
    opacity: 0.9;;
}

.hero-card h2 {
    margin: 0 0 0.9rem;
    font-size: 1.15rem;
}

/* Mobil: form tetikleyici (masaüstünde gizli) */
.hero-form-trigger {
    display: none;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.hero-form-trigger:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: #f97316;
}

.hero-form-trigger-icon {
    transition: transform 0.25s ease;
}

.hero-form-wrap.is-open .hero-form-trigger-icon {
    transform: rotate(180deg);
}

/* Butonlar */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.9rem;
    padding: 0.55rem 1.1rem;
    cursor: pointer;
    transition: transform 0.12s ease-out, box-shadow 0.12s ease-out, background 0.2s ease-out,
        border-color 0.2s ease-out, color 0.2s ease-out;
}

.btn-primary {
    background: linear-gradient(135deg, #fdba74, #f97316);
    color: #111827;
    box-shadow: 0 14px 30px rgba(248, 113, 22, 0.28);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 36px rgba(248, 113, 22, 0.38);
}

.btn-outline {
    border-color: #fed7aa;
    color: #92400e;
    background: #fff7ed;
}

.btn-outline:hover {
    border-color: #f97316;
    background: #ffedd5;
}

.btn-sub {
    font-size: 0.75rem;
    font-weight: 600;
    opacity: 0.9;
    letter-spacing: 0.06em;
}

.btn-full {
    width: 100%;
    margin-top: 0.4rem;
}

/* Form */
.form-row {
    margin-bottom: 0.7rem;
}

.form-row label {
    display: block;
    font-size: 0.78rem;
    margin-bottom: 0.18rem;
    color: #4b5563;
}

.form-row input {
    width: 100%;
    border-radius: 0.9rem;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    color: #111827;
    padding: 0.45rem 0.8rem;
    font-size: 0.86rem;
    outline: none;
}

.form-row input:focus {
    border-color: #0ea5e9;
    box-shadow: 0 0 0 1px rgba(248, 113, 22, 0.35);
}

.select-input {
    width: 100%;
    border-radius: 0.9rem;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    color: #111827;
    padding: 0.45rem 0.8rem;
    font-size: 0.86rem;
}

.form-row-inline {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
}

.form-note {
    margin: 0.5rem 0 0;
    font-size: 0.75rem;
    color: #6b7280;
}

/* Sections & kartlar */
.section {
    padding: 2.1rem 0;
    background-color: #ffffff;
    color: #111827;
}

.section.section-alt {
    background: linear-gradient(135deg, #fff7ed, #eff6ff);
}

.section.section-muted {
    background: radial-gradient(circle at top, #e0f2fe, #f9fafb);
}

.section-header {
    text-align: center;
    margin-bottom: 1.2rem;
}

.section-header h2 {
    margin: 0 0 0.35rem;
    font-size: 1.4rem;
}

.section-header p {
    margin: 0;
    font-size: 0.9rem;
    color: #4b5563;
}

.section-header.align-left {
    text-align: left;
}

/* Anasayfa ek görseller */
.section-home-visual {
    padding-top: 0.5rem;
}

.home-visual-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 2rem;
    align-items: center;
}

.home-visual-image {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.1);
}

.home-visual-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 280px;
}

.home-visual-text h2 {
    margin: 0 0 0.5rem;
    font-size: 1.35rem;
    color: #111827;
}

.home-visual-text p {
    margin: 0 0 1rem;
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.55;
}

/* Örnek uçuş rota bölümü – arka plan görseli (opak) */
.section-routes-bg {
    position: relative;
    overflow: hidden;
}

.routes-bg-image {
    position: absolute;
    inset: 0;
    background-image: url("https://images.pexels.com/photos/358319/pexels-photo-358319.jpeg?auto=compress&cs=tinysrgb&w=1200");
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    z-index: 0;
}

.routes-bg-content {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.82);
    padding: 1.5rem;
    border-radius: 1.1rem;
    margin: 0 auto;
    max-width: 720px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.routes-bg-content .section-header {
    margin-bottom: 1rem;
}

.routes-bg-content .routes-table {
    margin-top: 0;
}

.stats-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    padding: 1.2rem 1.4rem;
    border-radius: 1.1rem;
    background: radial-gradient(circle at left, #fef3c7, transparent 60%),
        radial-gradient(circle at right, #e0f2fe, transparent 60%), #ffffff;
    border: 1px solid #e5e7eb;
}

.stats-item {
    text-align: center;
}

.stats-number {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: #b45309;
}

.stats-label {
    display: block;
    font-size: 0.8rem;
    color: #92400e;
}

.grid {
    display: grid;
    gap: 0.9rem;
}

.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
    background: #ffffff;
    border-radius: 1rem;
    padding: 1rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}

.card h3 {
    margin: 0 0 0.4rem;
    font-size: 1rem;
    color: #111827;
}

.card p {
    margin: 0;
    font-size: 0.86rem;
    color: #4b5563;
}

.card-link {
    display: block;
    cursor: pointer;
    transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.card-link:hover {
    border-color: #0284c7;
    box-shadow: 0 12px 28px rgba(249, 115, 22, 0.12);
    transform: translateY(-2px);
}

.card-block {
    padding: 1.25rem;
}

.card-block h2 {
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
}

/* Bilet işlemleri sayfası – açıklama kutuları, kısa "nasıl yapılır" + detay linki */
.section-intro {
    margin: 0 0 1.25rem;
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.5;
    max-width: 720px;
}

.ticket-ops-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.ticket-op-card {
    display: flex;
    flex-direction: column;
}

.ticket-op-how {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #f97316;
    margin-bottom: 0.35rem;
}

.ticket-op-how-desc {
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.45;
    margin: 0 0 0.75rem !important;
    padding-bottom: 0.75rem;
    border-bottom: 1px dashed #e5e7eb;
}

.ticket-op-card h2 {
    margin: 0 0 0.5rem;
}

.ticket-op-card .list {
    margin-bottom: 0.75rem;
}

.ticket-op-more {
    margin-top: auto;
    font-size: 0.8rem;
    font-weight: 600;
    color: #c2410c;
}

@media (max-width: 900px) {
    .ticket-ops-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .ticket-ops-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

.brand-card-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.brand-card-link:hover {
    background: #fff7ed;
    border-color: #f97316;
    transform: translateY(-2px);
}

.content-page {
    max-width: 720px;
}

.content-page h2 {
    margin: 1.5rem 0 0.5rem;
    font-size: 1.25rem;
    color: #111827;
}

.content-page h2:first-child {
    margin-top: 0;
}

.content-page h3 {
    margin: 1.1rem 0 0.4rem;
    font-size: 1.05rem;
    color: #374151;
}

.content-page p {
    margin: 0.5rem 0 0;
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.55;
}

/* Hizmetlerimiz – kutucuklardan sonra metin ve 6 maddeli iki sütun liste */
.services-intro {
    margin: 0 0 1.5rem !important;
    font-size: 1rem !important;
    color: #4b5563 !important;
    line-height: 1.6 !important;
    max-width: none;
}

.services-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.services-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.95rem;
    color: #374151;
    line-height: 1.55;
}

.services-features-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
}

.services-features-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #f97316;
}

.services-features-list li:last-child {
    margin-bottom: 0;
}

@media (max-width: 720px) {
    .services-features {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

.marka-detay-hero {
    position: relative;
}

.marka-detay-logo--hero {
    width: 100px;
    height: 56px;
    object-fit: contain;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.5rem;
    border-radius: 0.5rem;
    margin-bottom: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.marka-detay-intro {
    margin: 0 0 1.5rem !important;
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.6;
}

.marka-detay-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.marka-detay-logo {
    width: 120px;
    height: 66px;
    object-fit: contain;
    flex-shrink: 0;
    background: #f9fafb;
    padding: 0.5rem;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
}

.marka-detay-header h2 {
    margin-top: 0;
}

/* Marka detay – bölümler ve iki sütun */
.marka-detay-content {
    max-width: 900px;
}

.marka-detay-section {
    margin-bottom: 2.25rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.marka-detay-section:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.marka-detay-section-title {
    margin: 0 0 1rem !important;
    font-size: 1.2rem;
    color: #111827;
    font-weight: 700;
}

.marka-detay-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 2rem;
}

.marka-detay-col p {
    margin: 0 0 0.75rem;
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.6;
}

.marka-detay-col p:last-child {
    margin-bottom: 0;
}

.marka-detay-list {
    margin-top: 0.5rem;
    padding-left: 1.25rem;
}

.marka-detay-contact-desc {
    margin: 0 0 1rem !important;
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.6;
}

.marka-detay-table-wrap {
    overflow-x: auto;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
}

.marka-detay-contact-table {
    width: 100%;
    min-width: 280px;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.marka-detay-contact-table th,
.marka-detay-contact-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.marka-detay-contact-table thead th {
    background: #f97316;
    color: #fff;
    font-weight: 600;
}

.marka-detay-contact-table tbody tr:last-child td {
    border-bottom: none;
}

.marka-detay-contact-table tbody tr:hover {
    background: #fff;
}

.marka-detay-contact-table td:first-child {
    font-weight: 500;
    color: #374151;
}

.marka-detay-contact-table a {
    color: #c2410c;
    font-weight: 600;
    text-decoration: none;
}

.marka-detay-contact-table a:hover {
    text-decoration: underline;
}

.marka-detay-note {
    margin-top: 1rem !important;
}

/* Markalar listesi sayfası – üst ve kutucuk sonrası metin */
.markalar-intro {
    margin: 0 0 1.25rem;
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.6;
}

.markalar-after {
    margin: 1.5rem 0 0.75rem;
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.6;
}

.content-page .list {
    margin-top: 0.5rem;
}

.list-numbered {
    list-style: decimal;
}

.cta-box {
    margin-top: 1.5rem;
    padding: 1rem 1.2rem;
    background: #fff7ed;
    border-radius: 0.75rem;
    border: 1px solid #fed7aa;
    font-size: 0.9rem;
    color: #9a3412;
}

.cta-box a {
    color: #0369a1;
    font-weight: 600;
}

.step-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.1rem;
}

.step-badge {
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    min-width: 2.25rem;
    min-height: 2.25rem;
    border-radius: 50%;
    background: #f97316;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.step-card .step-content {
    flex: 1;
    min-width: 0;
}

.step-card h3 {
    margin: 0 0 0.35rem;
}

.step-card p {
    margin: 0;
}

/* Rotalar tablosu */
.routes-table {
    border-radius: 1.1rem;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    box-shadow: 0 18px 32px rgba(15, 23, 42, 0.08);
}

.routes-row {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.2fr) auto;
    padding: 0.75rem 1.1rem;
    font-size: 0.9rem;
    color: #111827;
}

.routes-row:nth-child(odd):not(.routes-row-header) {
    background: #ffffff;
}

.routes-row:nth-child(even):not(.routes-row-header) {
    background: #f9fafb;
}

.routes-row-header {
    font-weight: 600;
    background: linear-gradient(to right, #fed7aa, #f97316);
    color: #111827;
}

.link-call {
    font-size: 0.8rem;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    border: 1px solid #fed7aa;
    background: #fffbeb;
    color: #b45309;
}

.link-call:hover {
    border-color: #f97316;
}

/* Slogan şeridi (Hakkımızda ve benzeri sayfalarda) */
.slogan-strip {
    background: linear-gradient(135deg, #fed7aa, #f97316);
    color: #111827;
    padding: 1.25rem 0;
    text-align: center;
}

.slogan-text {
    margin: 0;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 700;
    letter-spacing: 0.02em;
}

/* Hakkımızda – Vizyon / Misyon blokları (görselli) */
.about-vision-mission {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.about-vm-block {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 2rem;
    align-items: stretch;
}

.about-vm-image-wrap {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.1);
    background: #f3f4f6;
    min-height: 200px;
    height: 100%;
}

.about-vm-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.about-vm-content h2 {
    margin: 0 0 0.75rem;
    font-size: 1.35rem;
    color: #111827;
}

.about-vm-content p {
    margin: 0;
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.55;
}

@media (max-width: 720px) {
    .about-vm-block {
        grid-template-columns: minmax(0, 1fr);
        gap: 1.25rem;
    }

    .about-vm-image-wrap {
        min-height: 220px;
    }

    .about-vm-image {
        height: auto;
        min-height: 220px;
    }
}

/* Hakkımızda ve sayfa düzenleri */
.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr);
    gap: 1.5rem;
    align-items: flex-start;
}

.about-grid p {
    margin-top: 0;
    font-size: 0.9rem;
    color: #4b5563;
}

.about-box {
    background: #ffffff;
    border-radius: 1.1rem;
    padding: 1rem;
    border: 1px solid #e5e7eb;
}

.about-box h3 {
    margin: 0 0 0.7rem;
    font-size: 1rem;
}

.about-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.88rem;
    color: #4b5563;
}

.about-box li + li {
    margin-top: 0.3rem;
}

.page {
    padding-bottom: 2.5rem;
}

.page-hero {
    padding: 2.1rem 0 1.4rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    color: #f9fafb;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.4));
}

.page-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr);
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    margin: 0 0 0.7rem;
    font-size: clamp(1.8rem, 2.8vw, 2.3rem);
}

.page-hero p {
    margin: 0;
    max-width: 32rem;
    color: #e5e7eb;
}

.page-hero-content {
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.page-grid-2 {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr);
    gap: 1.5rem;
}

.ticket-action-card {
    margin-top: 0.5rem;
    padding: 1rem 1.1rem;
    border-radius: 1.1rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
}

/* Markalar / kampanyalar */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.2rem;
}
.brands-grid--4col {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.brand-card .brand-logo-fallback {
    display: none;
}

/* Sayfa başlığı arka plan görselleri */
.page-hero--hakkimizda {
    background-image: url("https://images.pexels.com/photos/358319/pexels-photo-358319.jpeg?auto=compress&cs=tinysrgb&w=1200");
}

.page-hero--hizmetler {
    background-image: url("https://images.pexels.com/photos/1309644/pexels-photo-1309644.jpeg?auto=compress&cs=tinysrgb&w=1200");
}

.page-hero--islemler {
    background-image: url("https://images.pexels.com/photos/3760069/pexels-photo-3760069.jpeg?auto=compress&cs=tinysrgb&w=1200");
}

.page-hero--markalar {
    background-image: url("https://images.pexels.com/photos/776635/pexels-photo-776635.jpeg?auto=compress&cs=tinysrgb&w=1200");
}

.page-hero--kampanyalar {
    background-image: url("https://images.pexels.com/photos/912050/pexels-photo-912050.jpeg?auto=compress&cs=tinysrgb&w=1200");
}

.page-hero--iletisim {
    background-image: url("https://images.pexels.com/photos/3760069/pexels-photo-3760069.jpeg?auto=compress&cs=tinysrgb&w=1200");
}

.page-hero--kvkk,
.page-hero--sozlesmeler,
.page-hero--sss {
    background-image: url("https://images.pexels.com/photos/210990/pexels-photo-210990.jpeg?auto=compress&cs=tinysrgb&w=1200");
}

.brand-card {
    border-radius: 0.9rem;
    border: 1px solid #e5e7eb;
    padding: 1rem;
    font-size: 0.9rem;
    color: #374151;
    background: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}

.brand-logo {
    width: 80px;
    height: 44px;
    object-fit: contain;
    display: block;
}

.brand-card span {
    font-weight: 600;
    color: #111827;
}

.campaign-card {
    position: relative;
}

.badge {
    display: inline-flex;
    padding: 0.15rem 0.55rem;
    border-radius: 999px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.45rem;
}

.badge-orange {
    background: #ffedd5;
    color: #b45309;
}

/* SSS */
.faq-list {
    max-width: 720px;
}

.faq-item {
    border-radius: 0.9rem;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    padding: 0.75rem 0.9rem;
}

.faq-item + .faq-item {
    margin-top: 0.5rem;
}

.faq-item summary {
    cursor: pointer;
    list-style: none;
    font-weight: 600;
    font-size: 0.92rem;
    color: #111827;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item p {
    margin: 0.45rem 0 0;
    font-size: 0.88rem;
    color: #4b5563;
}

/* KVKK & sözleşmeler */
.legal-text {
    max-width: 760px;
    font-size: 0.9rem;
    color: #4b5563;
}

.legal-text h2 {
    font-size: 1.02rem;
    margin-top: 1.1rem;
    margin-bottom: 0.3rem;
    color: #111827;
}

.legal-text p {
    margin: 0;
}

/* İletişim */
.contact-intro {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
}

.contact-intro-image {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
    background: #f3f4f6;
}

.contact-intro-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 320px;
}

.contact-intro-text h2 {
    margin: 0 0 0.5rem;
    font-size: 1.35rem;
    color: #111827;
}

.contact-intro-text p {
    margin: 0;
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.55;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
    gap: 1.8rem;
    align-items: flex-start;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0.3rem 0 0;
    font-size: 0.9rem;
}

.contact-list li {
    display: flex;
    justify-content: space-between;
    gap: 1.2rem;
    padding: 0.5rem 0;
    border-bottom: 1px dashed #e5e7eb;
}

.contact-list span {
    color: #6b7280;
}

.contact-list a {
    font-weight: 500;
    color: #111827;
}

.contact-card {
    background: #ffffff;
    border-radius: 1.1rem;
    padding: 1rem;
    border: 1px solid #e5e7eb;
    font-size: 0.88rem;
    color: #4b5563;
}

.contact-card p {
    margin-top: 0;
}

.contact-disclaimer {
    font-size: 0.8rem;
    color: #6b7280;
}

.testimonials {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.testimonial-card {
    padding: 0.6rem 0.7rem;
    border-radius: 0.8rem;
    background: #fffbeb;
    border: 1px solid #fde68a;
    font-size: 0.86rem;
    color: #78350f;
}

.testimonial-name {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Footer */
.site-footer {
    margin-top: auto;
    color: #6b7280;
    font-size: 0.875rem;
}

.footer-top {
    background: linear-gradient(180deg, #1f2937 0%, #111827 100%);
    color: #e5e7eb;
    padding: 2.25rem 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 0.8fr)) minmax(0, 1fr);
    gap: 2rem;
    align-items: start;
}

.footer-brand .footer-logo {
    display: inline-flex;
    align-items: baseline;
    text-decoration: none;
    color: #fff;
    font-weight: 800;
    font-size: 1.25rem;
    margin-bottom: 0.35rem;
}

.footer-brand .logo-mark {
    color: #f97316;
}

.footer-brand .logo-text {
    color: #fff;
    font-weight: 600;
}

.footer-tagline {
    margin: 0;
    font-size: 0.8rem;
    color: #9ca3af;
    line-height: 1.4;
}

.footer-slogan {
    margin: 0.35rem 0 0;
    font-size: 0.85rem;
    font-weight: 600;
    color: #f97316;
    line-height: 1.3;
}

.footer-nav,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-nav-title {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #f97316;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.footer-nav a,
.footer-contact a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.15s ease;
}

.footer-nav a:hover,
.footer-contact a:hover {
    color: #fff;
}

.footer-phone {
    font-weight: 600;
    font-size: 1rem;
    color: #fff;
}

.footer-phone:hover {
    color: #f97316;
}

.footer-bottom {
    background: #0f172a;
    padding: 0.85rem 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.8rem;
    color: #9ca3af;
}

/* Sağ tarafta sabit dikey destek bandı (7/24 destek – mobil uyumlu arama) */
.support-strip {
    display: none;
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 90;
    width: 38px;
    min-height: 200px;
    background: #16a34a;
    color: #fff;
    text-decoration: none;
    padding: 1rem 0.4rem;
    box-shadow: -2px 0 12px rgba(0, 0, 0, 0.15);
    border-radius: 8px 0 0 8px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    transition: background 0.2s ease;
}

.support-strip:hover {
    background: #15803d;
}

.support-strip:active {
    background: #166534;
}

.support-strip-text,
.support-strip-phone {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    white-space: nowrap;
}

.support-strip-text {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.support-strip-phone {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

/* Mobil sabit buton (sadece mobilde görünür – Hemen Ara) */
.mobile-fab {
    display: none;
}

.mobile-fab-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    border: none;
}

.mobile-fab-btn:active {
    transform: scale(0.96);
}

.mobile-fab-call {
    background: linear-gradient(135deg, #fdba74, #f97316);
    color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .about-grid,
    .contact-grid,
    .contact-intro,
    .home-visual-grid,
    .footer-inner {
        grid-template-columns: minmax(0, 1fr);
        gap: 1.5rem;
    }

    .footer-brand,
    .footer-nav {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding-bottom: 1rem;
    }

    .footer-contact {
        padding-bottom: 0;
    }

    .page-hero-inner,
    .page-grid-2 {
        grid-template-columns: minmax(0, 1fr);
    }

    .contact-intro-image {
        max-height: 260px;
    }

    .contact-intro-image img {
        max-height: 260px;
    }

    .grid-3,
    .brands-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .brands-grid--4col {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .routes-row {
        grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
        row-gap: 0.25rem;
    }

    .routes-row > div:last-child {
        grid-column: 1 / -1;
        justify-self: flex-start;
    }
}

@media (max-width: 720px) {
    .nav {
        position: fixed;
        inset: 3.2rem 1.2rem auto;
        flex-direction: column;
        align-items: flex-start;
        padding: 0.9rem 1rem;
        border-radius: 0.9rem;
        background: #ffffff;
        border: 1px solid #e5e7eb;
        transform-origin: top right;
        transform: scaleY(0.8);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.16s ease-out, transform 0.16s ease-out;
    }

    .nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: scaleY(1);
    }

    .nav-item {
        width: 100%;
    }

    .nav-dropdown {
        position: static;
        margin-top: 0.25rem;
        width: 100%;
        box-shadow: none;
        transform: none;
        opacity: 1;
        pointer-events: auto;
        border-radius: 0.6rem;
        border: 1px dashed #e5e7eb;
    }

    .nav-toggle {
        display: flex;
    }

    .header-phone {
        margin-left: auto;
        font-size: 0.75rem;
        padding-inline: 0.7rem;
    }

    .header-inner {
        padding-inline: 1rem;
    }

    .hero {
        padding-top: 0;
        padding-bottom: 1.25rem;
        min-height: 320px;
    }

    /* Mobilde slider kaldırıldı, yerine tek uçak fotoğrafı */
    .hero-slider {
        display: none;
    }

    .hero-mobile-bg {
        display: block;
        position: absolute;
        inset: 0;
        z-index: 0;
        overflow: hidden;
    }

    .hero-mobile-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.5;
    }

    .hero-inner {
        padding-top: 1.25rem;
    }

    /* Örnek Uçuş Rotaları – mobilde tam ortalı ve tam genişlik */
    .section-routes-bg .routes-bg-content {
        max-width: none;
        margin: 0;
    }

    .hero-inner {
        gap: 1rem;
    }

    .hero-text h1 {
        font-size: 1.45rem;
        margin-bottom: 0.5rem;
    }

    .hero-text p {
        font-size: 0.88rem;
        line-height: 1.45;
    }

    .hero-highlights {
        margin-top: 0.5rem;
        gap: 0.4rem;
    }

    .hero-highlights li {
        padding: 0.2rem 0.5rem;
        font-size: 0.75rem;
    }

    /* Mobil: Hızlı talep formu tıklanınca açılsın */
    .hero-form-trigger {
        display: flex;
    }

    .hero-form-wrap .hero-card {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        padding-top: 0;
        padding-bottom: 0;
        margin-top: 0;
        border: none;
        transition: max-height 0.35s ease-out, opacity 0.25s ease, padding 0.25s ease;
    }

    .hero-form-wrap.is-open .hero-card {
        max-height: 520px;
        opacity: 1;
        padding: 1rem;
        margin-top: 0.75rem;
        border: 2px solid rgba(249, 115, 22, 0.4);
        border-radius: 1rem;
        background: rgba(255, 255, 255, 0.98);
    }

    .grid-3,
    .brands-grid,
    .brands-grid--4col {
        grid-template-columns: minmax(0, 1fr);
    }

    .routes-row {
        grid-template-columns: minmax(0, 1fr);
    }

    /* Sağ tarafta dikey destek bandı (mobil) */
    .support-strip {
        display: flex;
    }

    /* Mobil sabit buton: Hemen Ara */
    .mobile-fab {
        display: flex;
        justify-content: center;
        align-items: center;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 0.6rem 1rem 0.75rem;
        padding-bottom: max(0.75rem, env(safe-area-inset-bottom));
        background: linear-gradient(to top, rgba(255,255,255,0.98), rgba(255,255,255,0.95));
        backdrop-filter: blur(8px);
        border-top: 1px solid rgba(0,0,0,0.06);
        z-index: 100;
    }

    .mobile-fab-btn {
        width: 100%;
        max-width: 280px;
        min-height: 48px;
    }

    .site-footer {
        margin-bottom: 4rem;
    }
}

/* Tablet ve küçük ekranlar için ek responsive */
@media (max-width: 900px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .section {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .page-hero-content h1 {
        font-size: 1.6rem;
    }

    .stats-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 1rem;
        gap: 0.75rem;
    }

    .stats-number {
        font-size: 1.1rem;
    }

    .hero-card {
        padding: 1rem;
    }

    .form-row-inline {
        flex-direction: column;
    }

    .form-row-inline > div {
        width: 100%;
    }

    .routes-bg-content {
        padding: 1rem;
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .ticket-action-card {
        padding: 1rem;
    }
}

@media (max-width: 720px) {
    .container {
        padding-left: 0.9rem;
        padding-right: 0.9rem;
    }

    .section {
        padding-top: 1.25rem;
        padding-bottom: 1.25rem;
    }

    .stats-strip {
        grid-template-columns: minmax(0, 1fr);
    }

    .section-header h2 {
        font-size: 1.2rem;
    }

    .btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .contact-list li {
        flex-wrap: wrap;
        gap: 0.35rem;
    }

    .marka-detay-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .marka-detay-logo {
        width: 100px;
        height: 56px;
    }

    .marka-detay-two-col {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .marka-detay-contact-table th,
    .marka-detay-contact-table td {
        padding: 0.6rem 0.75rem;
        font-size: 0.9rem;
    }

    .faq-item summary {
        font-size: 0.9rem;
        padding-right: 2rem;
    }
}

