:root {
    --blue: #0056b7;
    --blue-dark: #004095;
    --blue-soft: #1a5fc1;
    --yellow: #ffcf21;
    --yellow-dark: #f0bc00;
    --white: #ffffff;
    --bg: #f3f7fc;
    --surface: #ffffff;
    --surface-alt: #eef4fb;
    --text: #17325c;
    --muted: #5e7ea8;
    --line: #d7e4f6;
    --shadow: 0 18px 40px rgba(4, 32, 84, 0.16);
    --card-shadow: 0 16px 28px rgba(0, 51, 122, 0.12);
    --container: 1240px;
    --radius: 24px;
}

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

html {
    scroll-behavior: smooth;
}

@font-face {
    font-family: 'Opettra';
    src: url('fonts/OpetTRA.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: min(var(--container), calc(100% - 48px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(0, 51, 122, 0.86);
    backdrop-filter: blur(14px);
    box-shadow: 0 10px 24px rgba(0, 34, 79, 0.18);
}

.site-header.transparent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    box-shadow: none;
}

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

.header-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex: 1 1 auto;
}

#mobile-nav-panel {
    justify-content: space-between;
}

.main-nav-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
}

.site-logo-img {
    width: auto;
    display: block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); /* Daha pürüzsüz animasyon için */
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.7)) drop-shadow(0 0 5px rgba(255, 255, 255, 0.9));
}

.site-logo-img:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.85)) drop-shadow(0 0 8px rgba(255, 255, 255, 1));
}

@media (max-width: 900px) {
    .site-logo-img {
        max-height: 80px !important;
        height: auto !important;
    }
}

@media (max-width: 640px) {
    .site-logo-img {
        max-height: 90px !important; /* Mobilde logoyu büyüttük */
        height: auto !important;
        margin: 0 auto; /* Logoyu ortalar */
        filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.95)) drop-shadow(0 0 10px rgba(255, 255, 255, 1)); /* Mobilde arka parlama efekti daha belirgin */
    }
}

.nav-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    list-style: none;
    color: rgba(255, 255, 255, 0.96);
    font-size: 1rem;
    font-weight: 800;
    flex: 1;
    margin: 0;
    padding: 0;
}

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

.nav-main a {
    transition: color 0.2s ease;
    white-space: nowrap; /* Metnin alt satıra geçmesini engeller */
    line-height: 1; /* Dikey hizalama için */
}

.menu-toggle {
    display: none;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.16);
    color: var(--white);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

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

.nav-main a:hover,
.nav-main a:focus-visible,
.nav-main a[aria-current="page"] {
    color: #d7ebff;
}

.nav-tools {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 0 0 auto;
    margin-left: 20px;
}

.search-box {
    width: 260px;
    height: 52px; /* Sabit yükseklik ile dikey hizalama düzeltildi */
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 0 20px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.20);
    backdrop-filter: blur(12px);
    color: rgba(255, 255, 255, 0.88);
}

.search-box.light {
    background: rgba(0, 86, 183, 0.08);
    color: var(--blue);
}

.search-box span {
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1;
}

.search-icon {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    border: 2.5px solid currentColor;
    border-radius: 50%;
    position: relative;
}

.search-icon::after {
    content: "";
    position: absolute;
    right: -4px;
    bottom: -3px;
    width: 6px;
    height: 2.5px;
    background: currentColor;
    transform: rotate(45deg);
    border-radius: 2px;
}

.login-button,
.button,
.info-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    height: 52px; /* Sabit yükseklik, arama kutusu ile hizalı */
    padding: 0 24px;
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    text-decoration: none;
    line-height: 1;
}

.login-button {
    background: #ffcc00;
    color: #0f2c6e;
    font-size: 1.05rem;
    height: 60px; /* Daha belirgin olması için */
}

.login-button:hover {
    background: #e6b800;
}

.login-badge {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #fff;
    color: #0f2c6e;
    font-size: 0.85rem;
    font-weight: bold;
}

.login-button:hover,
.button:hover,
.info-action:hover,
.login-button:focus-visible,
.button:focus-visible,
.info-action:focus-visible {
    transform: translateY(-1px);
}

.login-button,
.button-primary,
.info-action {
    background: var(--yellow);
    color: #21406d;
    box-shadow: 0 12px 24px rgba(255, 207, 33, 0.24);
}

.button-secondary {
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 14px 28px rgba(0, 86, 183, 0.20);
}

.button-ghost {
    background: rgba(255, 255, 255, 0.18);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.login-badge {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
}

.hero-home {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    color: var(--white);
    background:
        linear-gradient(180deg, rgba(0, 60, 132, 0.10) 0%, rgba(0, 33, 79, 0.48) 72%, rgba(0, 24, 60, 0.68) 100%),
        url("https://images.unsplash.com/photo-1601322445587-3b999b0d4d2f?auto=format&fit=crop&w=1800&q=80")
        center center / cover no-repeat;
}

.hero-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

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

.hero-slide img,
.hero-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 6s linear; /* Yumuşak yakınlaşma efekti (Ken Burns) */
}

.hero-slide.active img,
.hero-slide.active video {
    transform: scale(1.08); /* Aktif slaytta resim yavaşça yakınlaşır */
}

.hero-slider-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 60, 132, 0.3) 0%, rgba(0, 33, 79, 0.6) 72%, rgba(0, 24, 60, 0.85) 100%);
    z-index: 0;
    pointer-events: none;
}

/* Kayan Banner (Marquee) Stilleri */
.marquee-container {
    width: 100%;
    overflow: hidden;
    display: flex;
    position: relative;
    background: transparent;
    padding: 10px 0;
}

.marquee-track {
    display: flex;
    gap: 20px;
    white-space: nowrap;
    animation: scroll-marquee 25s linear infinite;
    /* Durdurmak isterseniz hover ekleyebiliriz: */
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-item {
    flex: 0 0 auto;
    width: 300px; /* Her bir afişin sabit genişliği, dilediğiniz gibi ayarlayabilirsiniz */
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@keyframes scroll-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 10px)); } /* Yarıya gelince sıfırlanacak */
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border: none;
    color: white;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slider-nav:hover {
    background: rgba(255,255,255,0.3);
}

.slider-nav.prev {
    left: 20px;
}

.slider-nav.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-dot.active {
    background: white;
    transform: scale(1.3);
}

.hero-home::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 62, 145, 0.30) 0%, rgba(0, 72, 171, 0.08) 34%, rgba(0, 28, 69, 0.18) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 145px 0 42px;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(8px);
    font-family: 'Opettra', sans-serif;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.84rem;
}

.headline {
    max-width: 660px;
    margin-bottom: 28px;
}

.headline h1 {
    font-family: 'Opettra', sans-serif;
    font-size: clamp(2rem, 4.2vw, 3.6rem);
    line-height: 1.05;
    margin-bottom: 16px;
    text-shadow: 0 6px 20px rgba(0, 0, 0, 0.24);
}

.headline p {
    font-family: 'Opettra', sans-serif;
    max-width: 560px;
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.92);
}

.page-hero {
    position: relative;
    padding: 150px 0 86px;
    color: var(--white);
    background: linear-gradient(135deg, #004095 0%, #0f66cc 100%);
}

.page-hero::after {
    content: "";
    position: absolute;
    right: -60px;
    top: -40px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: clamp(2.4rem, 5vw, 4.1rem);
    line-height: 1;
    margin-bottom: 16px;
}

.page-hero p {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.05rem;
}

.section {
    padding: 84px 0;
}

.section-header {
    max-width: 760px;
    margin-bottom: 34px;
}

.section-header span {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--blue);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.82rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
    margin-bottom: 12px;
    color: #0d2f62;
}

.section-header p,
.muted {
    color: var(--muted);
}

.promo-row,
.grid-2,
.grid-3,
.grid-4,
.stats-grid,
.pricing-grid {
    display: grid;
    gap: 20px;
}

.promo-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 30px;
    transform: translateY(20px);
}

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

.grid-3,
.pricing-grid {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4,
.stats-grid {
    grid-template-columns: repeat(4, 1fr);
}

.promo-card,
.card,
.info-card,
.price-card,
.stat-card,
.contact-card,
.table-wrap,
.timeline-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--card-shadow);
}

.promo-card {
    position: relative;
    padding: 24px;
    border-radius: 8px;
    background: #0f40a1; /* Opet tarzı mavi */
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    min-height: 160px;
    transition: transform 0.2s ease, background 0.2s ease;
}

.promo-card:hover {
    background: #1450c2;
    transform: translateY(-5px);
}

.promo-card small {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: auto;
    opacity: 0.9;
}

.promo-card h2 {
    font-size: 1.35rem;
    font-weight: 900;
    font-style: italic;
    margin-bottom: 6px;
    line-height: 1.1;
    text-transform: none;
}

.promo-card p {
    font-size: 0.85rem;
    line-height: 1.4;
    opacity: 0.85;
    font-weight: 500;
    margin-bottom: 0;
}

.icon-box {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    font-size: 1.2rem;
    font-weight: 800;
}

.promo-badge {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: grid;
    place-items: center;
    font-weight: 900;
    font-size: 1.2rem;
    color: #ffcc00; /* İkon/badge rengi sarı */
    border: 1px solid rgba(255,255,255,0.2);
}

.promo-card.featured {
    background: #0d368b;
}

.card,
.info-card,
.price-card,
.stat-card,
.contact-card,
.timeline-card {
    padding: 28px;
}

.icon-box {
    margin-bottom: 18px;
    background: rgba(0, 86, 183, 0.08);
    color: var(--blue);
}

.card h3,
.info-card h3,
.price-card h3,
.contact-card h3,
.timeline-card h3 {
    margin-bottom: 10px;
    color: #103564;
    font-size: 1.24rem;
}

.card p,
.info-card p,
.price-card p,
.contact-card p,
.stat-card p {
    color: var(--muted);
}

.stat-card strong {
    display: block;
    margin-bottom: 8px;
    color: #0d2f62;
    font-size: 2rem;
}

.list {
    list-style: none;
    display: grid;
    gap: 12px;
}

.list li {
    position: relative;
    padding-left: 22px;
    color: var(--muted);
}

.list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--yellow);
    box-shadow: 0 0 0 5px rgba(255, 207, 33, 0.18);
}

.info-strip {
    padding: 38px 0;
    color: var(--white);
    background: linear-gradient(90deg, #0b4ea2 0%, #0e66cc 100%);
}

.info-strip-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.info-strip h3 {
    font-size: 1.7rem;
}

.info-strip p {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.88);
}

.table-wrap {
    overflow: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
}

th,
td {
    padding: 18px 20px;
    border-bottom: 1px solid var(--line);
    text-align: left;
}

th {
    color: #0d2f62;
    background: #f4f8fd;
    font-size: 0.95rem;
}

td {
    color: var(--muted);
}

tr:last-child td {
    border-bottom: 0;
}

.price-tag {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(0, 86, 183, 0.08);
    color: var(--blue);
    font-weight: 800;
}

.timeline {
    display: grid;
    gap: 14px;
}

.timeline-item {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}

.timeline-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.timeline-item strong {
    display: block;
    margin-bottom: 6px;
    color: #0d2f62;
}

.contact-panel {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 20px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.field,
textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #f9fbff;
    color: var(--text);
    font: inherit;
}

textarea {
    min-height: 140px;
    resize: vertical;
}

.field-full {
    grid-column: 1 / -1;
}

.floating-tab {
    position: fixed;
    top: 45%; /* Biraz yukarı alındı */
    transform: translateY(-50%) rotate(180deg);
    right: 0;
    z-index: 40;
    writing-mode: vertical-rl;
    padding: 16px 8px; /* Boyutu küçültüldü */
    border-radius: 0 10px 10px 0; 
    background: #ffcc00;
    color: #0f2c6e;
    font-size: 0.85rem; /* Yazı boyutu küçültüldü */
    font-weight: 900;
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: background 0.2s ease, transform 0.3s ease;
}

.floating-tab:hover {
    background: #e6b800;
    transform: translateY(-50%) rotate(180deg) translateX(4px); /* Hoverda hafif dışarı çıkar */
}

footer {
    padding: 30px 0 44px;
    color: #6d86aa;
    background: #eef4fb;
}

.footer-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.gallery-link {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 18px;
}

.gallery-link::after {
    content: "Buyut";
    position: absolute;
    right: 14px;
    bottom: 14px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(0, 45, 106, 0.72);
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 800;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 28px;
    background: rgba(7, 23, 52, 0.86);
}

.lightbox.is-open {
    display: flex;
}

.lightbox-dialog {
    width: min(1000px, 100%);
    position: relative;
}

.lightbox-image {
    width: 100%;
    max-height: 82vh;
    object-fit: contain;
    border-radius: 20px;
    background: #ffffff;
}

.lightbox-close {
    position: absolute;
    top: -16px;
    right: -4px;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: var(--yellow);
    color: #17325c;
    font-size: 1.4rem;
    font-weight: 900;
    cursor: pointer;
}

.lightbox-caption {
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    font-weight: 700;
}

.video-cover {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 18px;
    margin-bottom: 16px;
    border: 1px solid var(--line);
}

.video-meta {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(0, 86, 183, 0.08);
    color: var(--blue);
    font-size: 0.84rem;
    font-weight: 800;
}

@media (max-width: 1180px) {
    .nav-shell {
        flex-wrap: wrap;
        justify-content: center;
    }

    .promo-row,
    .grid-3,
    .grid-4,
    .stats-grid,
    .pricing-grid,
    .contact-panel {
        grid-template-columns: 1fr;
    }
}

.site-footer {
    padding: 60px 0 30px;
    background: #061834;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-main {
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand h2 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 14px;
}

.footer-links h3 {
    color: var(--white);
    font-size: 1.05rem;
    margin-bottom: 18px;
}

.footer-links ul {
    list-style: none;
    display: grid;
    gap: 10px;
}

.footer-links a:hover {
    color: var(--yellow);
}

.footer-bottom {
    padding-top: 24px;
    text-align: center;
}

.floating-contact {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 100;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.float-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.float-whatsapp {
    background-color: #25D366;
}

.float-phone {
    background-color: #0056b7;
}

.float-btn svg {
    width: 32px;
    height: 32px;
}

@media (max-width: 900px) {
    .container {
        width: min(var(--container), calc(100% - 30px));
    }

    .nav-shell {
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap; /* Changed to wrap so the mobile menu can fall to the next row */
        flex-direction: column; /* Mobilde dikey hizalama */
    }

    .nav-shell > div:first-child {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 10px; /* Menü açma butonu ve logoyu ayır */
    }

    .nav-shell > div:first-child > a {
        flex: 1;
        display: flex;
        justify-content: center;
        padding-left: 52px; /* Hamburger menü butonu genişliği kadar boşluk vererek tam ortalama sağla */
    }

    .menu-toggle {
        display: inline-flex;
    }

    #mobile-nav-panel {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        padding: 24px;
        background: rgba(0, 51, 122, 0.95); /* Menü açıldığında net görünmesi için */
        backdrop-filter: blur(14px);
        border-radius: 12px;
        margin-top: 10px;
    }

    #mobile-nav-panel.is-open {
        display: flex;
    }

    .main-nav-wrapper {
        justify-content: flex-start;
    }

    .nav-main {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .nav-tools {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .search-box,
    .login-button {
        width: 100%;
    }

    .hero-content {
        padding-top: 200px;
    }

    .headline h1 {
        line-height: 1;
    }

    .grid-2,
    .form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .brand {
        font-size: 1.9rem;
    }

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

    .promo-card {
        min-height: 150px;
        padding: 24px 22px;
    }

    .promo-card h2 {
        font-size: 1.25rem;
    }

    .floating-tab {
        display: none;
    }
}
