@charset "UTF-8";

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
    src: local('Montserrat'), local('Montserrat Regular');
}

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600 900;
    font-display: swap;
    src: local('Montserrat SemiBold'), local('Montserrat');
}

:root {
    --bg: #ffffff;
    --bg-2: #f5f7fa;
    --panel: #ffffff;
    --panel-soft: #f8f9fb;
    --text: #1a2138;
    --muted: rgba(26,33,56,.6);
    --line: rgba(0,0,0,.10);
    --accent: #e8a020;
    --accent-2: #c78a18;
    --shadow: 0 4px 20px rgba(0,0,0,.08);
    --radius: 14px;
    --gold: #e8a020;
    --gold-dark: #c78a18;
    --navy: #0a1628;
    --navy-light: #1a3a6a;
    --teal: #0d9488;
    --teal-light: #14b8a6;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    background: #f5f7fa;
    color: var(--text);
    font-size: 16px;
    line-height: 1.6;
}

a { color: inherit; }
img { max-width: 100%; display: block; }

.container-box {
    width: min(1240px, calc(100% - 2rem));
    margin-inline: auto;
}

/* =====================================================
   TOP BAR - İletişim Bilgileri
   ===================================================== */
.top-bar {
    background: linear-gradient(135deg, #0a1628 0%, #132240 100%);
    border-bottom: 1px solid rgba(232,160,32,.18);
    font-size: .82rem;
    position: relative;
    z-index: 81;
}

.top-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 40px;
    gap: .75rem;
}

.top-bar__left,
.top-bar__right {
    display: flex;
    align-items: center;
    gap: .25rem;
    flex-wrap: wrap;
}

.top-bar__item {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    color: rgba(232,237,245,.78);
    text-decoration: none;
    padding: .35rem .6rem;
    border-radius: 6px;
    transition: all .25s ease;
    white-space: nowrap;
    font-weight: 500;
}

.top-bar__item:hover {
    color: var(--gold);
    background: rgba(245,158,11,.08);
}

.top-bar__icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: var(--gold);
}

.top-bar__item--hours {
    cursor: default;
}

.top-bar__item--hours .top-bar__icon {
    color: var(--teal-light);
}

.top-bar__whatsapp {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    color: #fff;
    text-decoration: none;
    padding: .3rem .7rem;
    border-radius: 6px;
    background: rgba(37,211,102,.15);
    border: 1px solid rgba(37,211,102,.25);
    font-weight: 600;
    transition: all .25s ease;
    white-space: nowrap;
}

.top-bar__whatsapp:hover {
    background: rgba(37,211,102,.25);
    border-color: rgba(37,211,102,.45);
    box-shadow: 0 2px 10px rgba(37,211,102,.2);
}

.top-bar__whatsapp .top-bar__icon {
    color: #25D366;
    width: 15px;
    height: 15px;
}

/* Top Bar - Separator */
.top-bar__left .top-bar__item + .top-bar__item::before {
    content: '';
    display: inline-block;
    width: 1px;
    height: 14px;
    background: rgba(255,255,255,.12);
    margin-right: .35rem;
    flex-shrink: 0;
}

/* Top Bar Responsive */
@media (max-width: 1100px) {
    .top-bar__item--email span,
    .top-bar__item--hours span {
        display: none;
    }
    .top-bar__item--email .top-bar__icon,
    .top-bar__item--hours .top-bar__icon {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 760px) {
    .top-bar {
        display: none;
    }
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(22px);
    border-bottom: 2px solid var(--gold);
    box-shadow: 0 2px 16px rgba(0,0,0,.08);
}

.header-row {
    min-height: 105px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: .85rem;
    text-decoration: none;
    min-width: 0;
    flex-shrink: 0;
}

.brand-logo {
    height: 115px;
    width: auto;
    max-width: 480px;
    object-fit: contain;
    flex: 0 0 auto;
}

.brand-footer .brand-logo {
    height: 110px;
    max-width: 340px;
}

.brand-mark {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(145deg, var(--gold), var(--gold-dark));
    display: grid;
    place-items: center;
    font-weight: 900;
    color: #0a0e1a;
    box-shadow: 0 4px 15px rgba(245,158,11,.4);
    flex: 0 0 auto;
}

.brand-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.brand-text strong {
    font-size: 1.02rem;
    line-height: 1.1;
    letter-spacing: .01em;
}

.brand-text small {
    color: var(--gold);
    font-size: .78rem;
    line-height: 1.2;
    font-weight: 600;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: .15rem;
    flex: 1 1 auto;
    justify-content: center;
}

.nav-link,
.nav-trigger {
    color: #1a2138;
    text-decoration: none;
    font-weight: 700;
    font-size: .88rem;
    padding: .5rem .25rem;
    position: relative;
    border: 0;
    background: transparent;
    cursor: pointer;
    transition: color .25s ease;
    letter-spacing: .0em;
    white-space: nowrap;
}

.nav-link:hover,
.nav-trigger:hover {
    color: var(--gold);
}

.nav-link::after,
.nav-trigger::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -.3rem;
    width: 0;
    height: 2.5px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    transition: width .25s ease;
}

.nav-link:hover::after,
.nav-link.is-active::after,
.nav-trigger:hover::after {
    width: 100%;
}

.nav-link.is-active {
    color: var(--gold);
}

/* Yeni Dropdown Yapısı */
.nav-item {
    display: inline-flex;
    align-items: center;
}

.nav-item--dropdown {
    position: relative;
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 820px;
    max-width: 95vw;
    background: rgba(10,22,40,.98);
    border-top: 2px solid var(--gold);
    border-radius: 0 0 12px 12px;
    box-shadow: 0 12px 40px rgba(0,0,0,.5);
    padding: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all .25s ease;
    z-index: 100;
}

.nav-item--dropdown:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown__inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 1.5rem;
}

.nav-dropdown__col {
    display: flex;
    flex-direction: column;
}

.nav-dropdown__heading {
    color: var(--gold);
    font-weight: 700;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: .75rem;
    padding-bottom: .5rem;
    border-bottom: 1px solid rgba(232,160,32,.2);
}

.nav-dropdown__link {
    display: block;
    padding: .4rem 0;
    color: rgba(234,240,249,.7);
    text-decoration: none;
    font-size: .9rem;
    transition: color .2s ease, padding-left .2s ease;
}

.nav-dropdown__link:hover {
    color: var(--gold);
    padding-left: .3rem;
}

/* Eski Dropdown (Compatibility) */
.old-nav-dropdown {
    position: relative;
}

.dropdown-panel {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    width: min(980px, 86vw);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    padding: 1.2rem;
    border-radius: 18px;
    background: rgba(10,22,40,.98);
    border: 1px solid rgba(232,160,32,.12);
    box-shadow: 0 12px 40px rgba(0,0,0,.6);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    pointer-events: none;
    transition: .2s ease;
}

.nav-dropdown.is-open .dropdown-panel,
.nav-dropdown:hover .dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-group {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 18px;
    padding: .9rem;
}

.dropdown-group-title {
    font-size: .88rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: .65rem;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.dropdown-item,
.dropdown-footer {
    display: block;
    text-decoration: none;
    font-size: .93rem;
    color: var(--muted);
    padding: .44rem 0;
}

.dropdown-item:hover,
.dropdown-footer:hover {
    color: #fff;
}

.dropdown-footer {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: .25rem;
    padding: .8rem 1rem;
    border-radius: 14px;
    background: rgba(245,158,11,.15);
    color: var(--gold);
    font-weight: 700;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: .4rem;
    flex-shrink: 0;
}

.phone-pill {
    text-decoration: none;
    color: #0a0e1a;
    padding: .45rem .7rem;
    border-radius: 999px;
    border: 1px solid transparent;
    background: var(--gold);
    font-weight: 700;
    font-size: .82rem;
    letter-spacing: .01em;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.phone-pill:hover {
    background: #fbbf24;
    box-shadow: 0 4px 15px rgba(245,158,11,.4);
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,.12);
    background: rgba(0,0,0,.04);
    cursor: pointer;
    padding: .7rem;
    position: relative;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    height: 2px;
    background: #1a2138;
    border-radius: 999px;
    transition: all .3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.menu-toggle span:nth-child(1) {
    top: 14px;
    width: 20px;
}

.menu-toggle span:nth-child(2) {
    top: 23px;
    width: 20px;
}

.menu-toggle span:nth-child(3) {
    top: 32px;
    width: 20px;
}

/* Hamburger açık animasyonu */
.menu-toggle.is-active span:nth-child(1) {
    top: 23px;
    transform: translateX(-50%) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-50%) scale(0);
}

.menu-toggle.is-active span:nth-child(3) {
    top: 23px;
    transform: translateX(-50%) rotate(-45deg);
}

/* Mobil Menü Backdrop Overlay */
.mobile-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 79;
    opacity: 0;
    transition: opacity .3s ease;
}

.mobile-backdrop.is-active {
    display: block;
    opacity: 1;
}

.mobile-shell {
    display: none;
    border-top: 2px solid var(--gold);
    max-height: 0;
    overflow: hidden;
    overflow-y: auto;
    transition: max-height .4s cubic-bezier(0.4, 0, 0.2, 1), opacity .3s ease;
    opacity: 0;
    background: linear-gradient(180deg, #0a1628 0%, #132240 100%);
    position: relative;
    z-index: 90;
}

.mobile-shell.open {
    display: block;
    max-height: 80vh;
    opacity: 1;
}

.mobile-panel {
    padding: 1rem 0 1.2rem;
}

.mobile-link {
    display: flex;
    align-items: center;
    gap: .75rem;
    text-decoration: none;
    padding: .95rem 1rem;
    border-radius: 14px;
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all .2s ease;
}

.mobile-link:hover,
.mobile-link:active {
    background: rgba(255,255,255,.05);
    color: var(--gold);
}

.mobile-link .mobile-link-icon {
    width: 20px;
    height: 20px;
    color: var(--gold);
    flex-shrink: 0;
}

.mobile-contact {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .75rem;
    margin-top: .75rem;
    padding: 0 1rem;
}

.mobile-lang-row {
    display: flex;
    gap: .5rem;
    padding: .5rem 1rem 0;
    flex-wrap: wrap;
}

.mobile-lang-btn {
    padding: .5rem .85rem;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.2);
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.75);
    font-size: .88rem;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s ease;
}

.mobile-lang-btn:hover,
.mobile-lang-btn.is-active {
    background: rgba(245,158,11,.2);
    border-color: var(--gold);
    color: var(--gold);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    border-radius: 12px;
    border: 1px solid transparent;
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
    padding: .9rem 1.4rem;
    letter-spacing: .02em;
    cursor: pointer;
}

.btn-primary,
.primary-btn {
    background: linear-gradient(145deg, var(--gold), var(--gold-dark));
    color: #0a1628;
    font-weight: 800;
    box-shadow: 0 4px 18px rgba(232,160,32,.45);
    transition: all 0.3s ease;
}

.btn-primary:hover,
.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(232,160,32,.55);
    filter: brightness(1.08);
}

.btn-light,
.secondary-btn {
    background: rgba(255,255,255,.08);
    color: var(--text);
    border: 1px solid rgba(0,0,0,.12);
    transition: all 0.3s ease;
}

.btn-light:hover,
.secondary-btn:hover {
    background: rgba(255,255,255,.12);
    border-color: var(--gold);
}

/* Koyu zemin (mobile-shell, hero slider) içindeki btn-light */
.mobile-shell .btn-light,
.hero-slide__content .btn-light {
    color: #fff;
    border-color: rgba(255,255,255,.25);
}

.hero {
    padding: 4rem 0 4.5rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 2rem;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.05);
    border-radius: 999px;
    padding: .55rem .9rem;
    font-size: .84rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hero h1,
.section-title {
    margin: 0;
    line-height: 1.1;
    letter-spacing: -.03em;
    color: #0a1628;
}

.hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-top: .75rem;
    color: #0a1628;
}

.hero p {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .9rem;
    margin-top: 1.4rem;
}

.hero-card {
    background: linear-gradient(180deg, var(--panel), var(--panel-soft));
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 1rem;
    box-shadow: var(--shadow);
}

.hero-card img {
    width: 100%;
    border-radius: 20px;
}

/* =====================================================
   HERO SLIDER
   ===================================================== */
.hero-slider {
    position: relative;
    min-height: 540px;
    overflow: hidden;
    background: var(--bg);
}

.hero-slider__track {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: inherit;
}

/* --- Individual Slide --- */
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .75s ease, visibility .75s ease;
    z-index: 1;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-slide.is-leaving {
    opacity: 0;
    visibility: visible;
    z-index: 2;
    transition: opacity .75s ease;
}

/* Background Image */
.hero-slide__bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-slide__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.06);
    transition: transform 6s ease-out;
}

.hero-slide.is-active .hero-slide__bg img {
    transform: scale(1);
}

/* Overlay Gradient */
.hero-slide__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(10,22,40,.62) 0%,
        rgba(10,22,40,.48) 30%,
        rgba(10,22,40,.30) 60%,
        rgba(10,22,40,.15) 100%
    );
    z-index: 1;
}

/* Slide Content */
.hero-slide__content {
    position: relative;
    z-index: 2;
    padding: 5rem 0 6.5rem;
}

.hero-slide.is-active .hero-slide__content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.hero-slide__content .eyebrow {
    animation: heroSlideContentIn .65s ease .1s both;
}

.hero-slide__content h1 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    margin: .4rem 0 0;
    line-height: 1.08;
    letter-spacing: -.02em;
    color: #fff;
    font-weight: 900;
    text-shadow: 0 2px 20px rgba(0,0,0,.6), 0 1px 4px rgba(0,0,0,.4);
    animation: heroSlideContentIn .65s ease .2s both;
    max-width: 650px;
}

.hero-slide__content p {
    color: rgba(255,255,255,.92);
    font-size: 1rem;
    line-height: 1.5;
    margin: .5rem 0 0;
    max-width: 550px;
    text-shadow: 0 1px 8px rgba(0,0,0,.5);
    animation: heroSlideContentIn .65s ease .3s both;
}

.hero-slide__content .hero-actions {
    margin-top: 1rem;
    animation: heroSlideContentIn .65s ease .4s both;
}

@keyframes heroSlideContentIn {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* --- Navigation Arrows --- */
.hero-slider__arrow {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    z-index: 10;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(10,14,26,.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
    outline: none;
}

.hero-slider__arrow:hover {
    background: rgba(245,158,11,.2);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-50%) scale(1.06);
}

.hero-slider__arrow:focus-visible {
    box-shadow: 0 0 0 3px rgba(245,158,11,.5);
}

.hero-slider__arrow--prev {
    left: 1.5rem;
}

.hero-slider__arrow--next {
    right: 1.5rem;
}

/* --- Dot Navigation --- */
.hero-slider__dots {
    position: absolute;
    bottom: 6.8rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: .55rem;
}

.hero-slider__dot {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.35);
    background: transparent;
    cursor: pointer;
    transition: all .3s ease;
    padding: 0;
    outline: none;
}

.hero-slider__dot:hover {
    border-color: rgba(255,255,255,.65);
    transform: scale(1.15);
}

.hero-slider__dot.is-active {
    background: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 0 12px rgba(245,158,11,.5);
    transform: scale(1.2);
}

.hero-slider__dot:focus-visible {
    box-shadow: 0 0 0 3px rgba(245,158,11,.5);
}

/* --- Bottom Info Panel --- */
.hero-slider__info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    padding-bottom: 1.2rem;
    background: linear-gradient(to top, rgba(10,14,26,.85) 0%, transparent 100%);
    pointer-events: none;
}

.hero-slider__info .hero-cta-panel {
    pointer-events: auto;
}

/* --- Slider Responsive --- */
@media (max-width: 1100px) {
    .hero-slider {
        min-height: 480px;
    }

    .hero-slide__content {
        padding: 3rem 0 1.5rem;
        max-width: 100%;
        display: flex;
        flex-direction: column;
    }

    .hero-slider__dots {
        bottom: 6.2rem;
    }
}

@media (max-width: 760px) {
    .hero-slider {
        min-height: 400px;
    }

    .hero-slide {
        min-height: 400px;
    }

    .hero-slide {
        display: flex;
        flex-direction: column;
    }
    
    .hero-slide__bg,
    .hero-slide__overlay {
        position: absolute;
    }
    
    .hero-slide {
        display: flex;
    }
    
    .hero-slide__bg,
    .hero-slide__overlay {
        position: absolute;
    }
    
    .hero-slide__content {
        padding: 2.5rem 0 1.5rem;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
        position: relative;
        z-index: 2;
    }

    .hero-slide__content h1 {
        font-size: clamp(1.3rem, 4vw, 1.7rem);
        line-height: 1.1;
        margin: .35rem 0 0;
    }

    .hero-slide__content p {
        font-size: .85rem;
        line-height: 1.4;
        margin: .35rem 0 0;
    }
    
    .hero-slide__content .hero-actions {
        margin-top: auto;
        padding-top: .8rem;
    }
    
    .hero-slide__content .hero-actions .btn {
        padding: .55rem .85rem;
        font-size: .85rem;
    }

    .hero-slider__arrow {
        width: 38px;
        height: 38px;
        top: auto;
        bottom: 1.5rem;
        transform: none;
    }

    .hero-slider__arrow svg {
        width: 16px;
        height: 16px;
    }

    .hero-slider__arrow--prev {
        left: .75rem;
    }

    .hero-slider__arrow--next {
        right: .75rem;
    }

    .hero-slider__dots {
        bottom: 5.5rem;
        gap: .45rem;
    }

    .hero-slider__dot {
        width: 10px;
        height: 10px;
    }

    .hero-slider__info .split-3 {
        grid-template-columns: 1fr;
        gap: .6rem;
    }

    .hero-slider__info {
        position: relative;
        background: var(--bg);
        padding: 1rem 0 1.5rem;
    }

    .hero-slider__dots {
        bottom: auto;
        top: auto;
        position: relative;
        left: auto;
        transform: none;
        justify-content: center;
        padding: .8rem 0;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        min-height: 360px;
    }

    .hero-slide__content {
        padding: 2.5rem 0 1.2rem;
        min-height: 320px;
    }

    .hero-slide__content h1 {
        font-size: 1.3rem;
        line-height: 1.12;
        margin: .3rem 0 0;
    }
    
    .hero-slide__content .eyebrow {
        font-size: .72rem;
    }
    
    .hero-slide__content p {
        font-size: .82rem;
        line-height: 1.4;
        margin: .35rem 0 0;
    }
    
    .hero-slide__content .hero-actions {
        margin-top: auto;
        padding-top: .8rem;
    }
}

.section {
    padding: 1.25rem 0 3rem;
    background: #ffffff;
}

.section-soft {
    background: #f5f7fa;
}

.section-title {
    font-size: clamp(1.7rem, 3.5vw, 2.5rem);
    margin-bottom: .6rem;
    font-weight: 900;
    letter-spacing: -.02em;
    line-height: 1.1;
    color: #0a1628 !important;
}

.section-lead {
    color: rgba(26,33,56,.7);
    max-width: 820px;
    font-size: 1.08rem;
    line-height: 1.65;
}

.card-grid {
    display: grid;
    gap: 1.1rem;
}

.card-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.info-card,
.product-card,
.content-card,
.contact-card,
.feature-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 4px 20px rgba(0,0,0,.3);
    transition: all 0.3s ease;
}

.product-card:hover,
.info-card:hover,
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(232,160,32,.22), 0 4px 12px rgba(0,0,0,.3);
    border-color: rgba(232,160,32,.35);
}

.info-card,
.contact-card,
.feature-card {
    padding: 1.25rem;
}

.product-card {
    overflow: hidden;
    text-decoration: none;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    transition: transform .3s ease, box-shadow .3s ease;
}

.product-thumb {
    aspect-ratio: 16 / 10;
    background: linear-gradient(145deg, rgba(30,58,138,.08), rgba(13,148,136,.05));
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-body {
    padding: 1.1rem 1.1rem 1.25rem;
}

.product-body h3 {
    margin: 0 0 .5rem;
    color: #0a1628;
    font-size: 1.15rem;
}

.product-body p,
.feature-card p,
.contact-card p,
.content-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .35rem .7rem;
    border-radius: 999px;
    background: rgba(245,158,11,.15);
    color: var(--gold);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .03em;
}

.feature-list {
    display: grid;
    gap: .4rem;
    margin-top: 0.8rem;
}

.feature-list span {
    display: inline-flex;
    gap: .5rem;
    color: var(--text);
    font-weight: 500;
    font-size: 0.9rem;
}

.feature-list span::before {
    content: '•';
    color: var(--gold);
    font-size: 0.8rem;
}

.page-hero {
    padding: 2.5rem 0 3rem;
}

.page-shell {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 28px;
    padding: 1.5rem;
    box-shadow: 0 2px 16px rgba(0,0,0,.06);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem .65rem;
    color: var(--muted);
    font-size: .92rem;
    margin-bottom: .6rem;
}

.breadcrumb a {
    color: var(--gold);
    text-decoration: none;
}

.product-detail {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 1.5rem;
}

.detail-media {
    border-radius: 26px;
    overflow: hidden;
    min-height: 360px;
    background: linear-gradient(145deg, rgba(30,58,138,.2), rgba(13,148,136,.1));
    border: 1px solid var(--line);
}

.detail-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-card h2,
.content-card h3 {
    color: #0a1628;
}

.contact-card h2 {
    margin: .85rem 0 .5rem;
    color: #0a1628;
    font-size: 1.2rem;
}

.content-card {
    padding: 1.5rem;
}

.content-card h2 {
    margin: 0 0 .9rem;
    font-size: 1.4rem;
}

.content-card h3 {
    margin: 1.2rem 0 .6rem;
    font-size: 1.12rem;
}

.footer-list {
    margin: .9rem 0 0;
    padding-left: 1.2rem;
    color: var(--muted);
    line-height: 1.6;
}

.footer-list li {
    margin-bottom: .3rem;
}

.site-footer {
    border-top: 1px solid var(--line);
    background: #0a0e1a;
    padding: 3rem 0 1.2rem;
    color: #c8d6e5;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr .8fr .8fr;
    gap: 1.5rem;
}

.brand-footer { margin-bottom: .9rem; }

.footer-lead {
    color: var(--muted);
    line-height: 1.85;
    max-width: 42rem;
}

.footer-contact {
    display: grid;
    gap: .65rem;
    margin-top: 1rem;
    color: #fff;
}

.footer-contact a {
    text-decoration: none;
}

.footer-links {
    display: grid;
    gap: .5rem;
}

.footer-links a {
    color: rgba(255,255,255,.7);
    text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--gold);
}

.footer-grid h3 {
    margin: 0 0 .9rem;
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: .75rem;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: .92rem;
}

.hero-cta-panel {
    padding: 1.2rem;
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(245,158,11,.12), rgba(30,58,138,.08));
    border: 1px solid var(--line);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-cta-panel--link {
    transition: all .3s ease;
    cursor: pointer;
}

.hero-cta-panel--link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(245,158,11,.2);
    border-color: rgba(245,158,11,.4);
    background: linear-gradient(145deg, rgba(245,158,11,.18), rgba(30,58,138,.12));
}

.hero-cta-panel--wa {
    background: linear-gradient(145deg, rgba(37,211,102,.12), rgba(30,58,138,.08));
}

.hero-cta-panel--wa:hover {
    background: linear-gradient(145deg, rgba(37,211,102,.18), rgba(30,58,138,.12));
    border-color: rgba(37,211,102,.4);
    box-shadow: 0 8px 24px rgba(37,211,102,.2);
}

.hero-cta-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    color: var(--gold);
}

.hero-cta-icon--wa {
    color: #25D366;
}

.hero-cta-panel strong {
    display: block;
    font-size: 1rem;
    color: var(--text);
    line-height: 1.3;
    margin-bottom: .15rem;
}

.muted {
    color: var(--muted);
}

.stack {
    display: grid;
    gap: 1rem;
}

.split-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.split-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.notice {
    padding: 1rem 1.1rem;
    border-radius: 18px;
    border: 1px solid rgba(245,158,11,.4);
    background: rgba(245,158,11,.12);
    color: var(--gold);
    font-weight: 600;
}

/* =====================================================
   FORM INPUTS - Dark theme readable styles
   ===================================================== */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="url"],
input[type="search"],
textarea,
select {
    width: 100%;
    padding: .85rem 1rem;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .06);
    color: var(--text);
    font-family: inherit;
    font-size: .95rem;
    line-height: 1.6;
    transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
textarea:focus,
select:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, .1);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, .18);
}

input::placeholder,
textarea::placeholder {
    color: rgba(232, 237, 245, .4);
    opacity: 1;
}

input:focus::placeholder,
textarea:focus::placeholder {
    color: rgba(232, 237, 245, .55);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='rgba(232,237,245,.6)' viewBox='0 0 16 16'%3E%3Cpath d='M4.5 6l3.5 4 3.5-4z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right .9rem center;
    padding-right: 2.5rem;
}

label {
    display: block;
    font-weight: 600;
    font-size: .9rem;
    color: var(--text);
    margin-bottom: .4rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group + .form-group {
    margin-top: .5rem;
}

/* =====================================================
   DAR DESKTOP BREAKPOINT (1100px-1240px)
   ===================================================== */
@media (max-width: 1240px) and (min-width: 1101px) {
    .header-row {
        gap: .35rem;
    }
    
    .desktop-nav {
        gap: 0;
    }
    
    .nav-link,
    .nav-trigger {
        font-size: .84rem;
        padding: .45rem .2rem;
    }
    
    .phone-pill {
        padding: .4rem .6rem;
        font-size: .78rem;
    }
    
    .header-actions {
        gap: .3rem;
    }
    
    .nav-dropdown {
        min-width: 760px;
    }
    
    .brand-logo {
        height: 100px;
        max-width: 440px;
    }
}

/* =====================================================
   TABLET BREAKPOINT (max-width: 1100px)
   ===================================================== */
@media (max-width: 1100px) {
    .desktop-nav { display: none; }
    .menu-toggle { display: inline-flex; }
    .mobile-shell { display: none; }
    .mobile-shell.open { display: block; }
    .dropdown-panel { display: none; }
    .hero-grid,
    .product-detail,
    .footer-grid,
    .card-grid-4,
    .card-grid-3 {
        grid-template-columns: 1fr;
    }
    .card-grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    .footer-grid > div:first-child {
        grid-column: 1 / -1;
    }
    .brand-logo {
        height: 85px;
        max-width: 380px;
    }
}

/* =====================================================
   MOBILE BREAKPOINT (max-width: 760px)
   ===================================================== */
@media (max-width: 760px) {
    .container-box { width: min(1240px, calc(100% - 1.2rem)); }
    .header-row { min-height: 70px; }
    .brand-logo { height: 65px; max-width: 280px; }
    .brand-mark { width: 38px; height: 38px; }
    .phone-pill { display: none; }
    
    .hero,
    .page-hero { padding-top: 2rem; padding-bottom: 2rem; }
    .section { padding-top: 1.5rem; padding-bottom: 2.5rem; }
    
    .section-title { font-size: 1.35rem; margin-bottom: .6rem; }
    .section-lead { font-size: .92rem; line-height: 1.7; }
    
    .card-grid-2,
    .card-grid-3,
    .card-grid-4,
    .split-2,
    .split-3,
    .mobile-contact { grid-template-columns: 1fr; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .footer-grid > div:first-child { grid-column: auto; }
    .footer-bottom { flex-direction: column; text-align: center; }
    
    .page-shell { padding: 1.2rem; border-radius: 20px; }
    .hero-card { padding: .75rem; border-radius: 20px; }
    .hero-card img { border-radius: 14px; }
    .eyebrow { font-size: .78rem; padding: .45rem .7rem; }
    
    /* Ürün detay responsive */
    .product-detail { gap: 1rem; }
    .detail-media { min-height: 260px; border-radius: 18px; }
    .content-card { padding: 1.2rem; }
    .content-card h2 { font-size: 1.2rem; }
    
    /* Feature list responsive */
    .feature-list { gap: .35rem; }
    .feature-list span { font-size: .85rem; }
    
    /* Footer responsive */
    .brand-footer .brand-logo { height: 80px; max-width: 260px; }
    .footer-lead { font-size: .9rem; }
    .footer-contact { gap: .5rem; font-size: .9rem; }
    .footer-links { gap: .4rem; font-size: .9rem; }
    
    /* Butonlar responsive */
    .btn { min-height: 46px; font-size: .92rem; padding: .7rem 1rem; border-radius: 12px; }
    .hero-actions { gap: .65rem; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    
    /* Info card responsive */
    .info-card { padding: 1rem; border-radius: 14px; }
    .product-body { padding: .9rem; }
    .product-body h3 { font-size: 1.05rem; }
    .tag { font-size: .75rem; padding: .3rem .55rem; }
    
    /* Lang switcher mobilde gizle (mobil menüde var) */
    .lang-switcher { display: none; }
}

/* =====================================================
   SMALL MOBILE BREAKPOINT (max-width: 480px)
   ===================================================== */
@media (max-width: 480px) {
    .container-box { width: calc(100% - 1rem); }
    .header-row { min-height: 64px; gap: .5rem; }
    .brand-logo { height: 58px; max-width: 250px; }
    .menu-toggle { width: 40px; height: 40px; border-radius: 10px; }
    .menu-toggle span:nth-child(1) { top: 12px; width: 18px; }
    .menu-toggle span:nth-child(2) { top: 20px; width: 18px; }
    .menu-toggle span:nth-child(3) { top: 28px; width: 18px; }
    .menu-toggle.is-active span:nth-child(1) { top: 20px; }
    .menu-toggle.is-active span:nth-child(3) { top: 20px; }
    .header-search-btn { width: 38px; height: 38px; }
    
    .section-title { font-size: 1.2rem; }
    .page-shell { padding: 1rem; border-radius: 16px; }
    .breadcrumb { font-size: .82rem; gap: .3rem .45rem; }
    
    .hero-cta-panel { padding: .9rem; border-radius: 16px; gap: .75rem; }
    .hero-cta-icon { width: 26px; height: 26px; }
    .hero-cta-panel strong { font-size: .88rem; }
    
    .mobile-link { padding: .85rem .8rem; font-size: .96rem; }
    .mobile-contact { padding: 0 .8rem; gap: .6rem; }
    
    .notice { padding: .85rem; font-size: .88rem; border-radius: 14px; }
}

/* =====================================================
   GALLERY / APPLICATIONS PAGE
   ===================================================== */
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.filter-btn {
    padding: .7rem 1.2rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.05);
    color: var(--muted);
    font-weight: 600;
    font-size: .92rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: rgba(255,255,255,.08);
    border-color: var(--gold);
    color: var(--text);
}

.filter-btn.is-active {
    background: linear-gradient(145deg, var(--gold), var(--gold-dark));
    border-color: var(--gold);
    color: #0a0e1a;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(245,158,11,.3);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--panel);
    border: 1px solid var(--line);
    box-shadow: 0 4px 20px rgba(0,0,0,.3);
    cursor: pointer;
    transition: all 0.4s ease;
}

.gallery-item.is-hidden {
    display: none;
}

.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(245,158,11,.25);
    border-color: rgba(245,158,11,.4);
}

.gallery-item__image {
    position: relative;
    aspect-ratio: 16 / 11;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(30,58,138,.2), rgba(13,148,136,.1));
}

.gallery-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-item__image img {
    transform: scale(1.08);
}

.gallery-item__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10,14,26,.92) 0%,
        rgba(10,14,26,.65) 40%,
        rgba(10,14,26,.3) 70%,
        transparent 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-item__overlay {
    opacity: 1;
}

.gallery-item__category {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    padding: .3rem .65rem;
    border-radius: 999px;
    background: rgba(245,158,11,.2);
    color: var(--gold);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .03em;
    text-transform: uppercase;
    margin-bottom: .5rem;
    width: fit-content;
}

.gallery-item__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 .3rem;
    line-height: 1.3;
}

.gallery-item__description {
    font-size: .88rem;
    color: rgba(255,255,255,.8);
    line-height: 1.5;
    margin: 0;
}

.gallery-item__info {
    padding: 1rem 1.1rem;
}

.gallery-item__info .tag {
    margin-bottom: .55rem;
}

.gallery-item__info h3 {
    margin: 0 0 .4rem;
    color: var(--text);
    font-size: 1.05rem;
    line-height: 1.3;
}

.gallery-item__info p {
    margin: 0;
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.6;
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(10,14,26,.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox.is-active {
    display: flex;
}

.lightbox__content {
    position: relative;
    max-width: 1200px;
    max-height: 90vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: lightboxFadeIn 0.3s ease;
}

@keyframes lightboxFadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.lightbox__image {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,.6);
    border: 1px solid var(--line);
}

.lightbox__caption {
    margin-top: 1.5rem;
    text-align: center;
    max-width: 600px;
}

.lightbox__caption h3 {
    color: var(--text);
    font-size: 1.3rem;
    margin: 0 0 .5rem;
}

.lightbox__caption p {
    color: var(--muted);
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
}

.lightbox__close {
    position: absolute;
    top: -3rem;
    right: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.lightbox__close:hover {
    background: rgba(245,158,11,.2);
    border-color: var(--gold);
    color: var(--gold);
    transform: rotate(90deg);
}

/* =====================================================
   FILTER TABS (uygulamalarimiz & genel)
   ===================================================== */
.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.filter-tab {
    padding: .6rem 1.1rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.05);
    color: var(--muted);
    font-weight: 600;
    font-size: .88rem;
    cursor: pointer;
    transition: all .3s ease;
    white-space: nowrap;
    font-family: inherit;
}

.filter-tab:hover {
    background: rgba(255,255,255,.08);
    border-color: var(--gold);
    color: var(--text);
}

.filter-tab.is-active {
    background: linear-gradient(145deg, var(--gold), var(--gold-dark));
    border-color: var(--gold);
    color: #0a0e1a;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(245,158,11,.3);
}

/* Gallery Responsive */
@media (max-width: 1100px) {
    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.2rem;
    }
}

@media (max-width: 760px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-filters,
    .filter-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: .4rem;
        margin-bottom: 1.5rem;
        padding-bottom: .5rem;
    }
    .gallery-filters::-webkit-scrollbar,
    .filter-tabs::-webkit-scrollbar { display: none; }
    
    .filter-btn,
    .filter-tab {
        padding: .55rem .9rem;
        font-size: .82rem;
        flex-shrink: 0;
    }
    
    .lightbox {
        padding: 1rem;
    }
    
    .lightbox__close {
        top: -2.5rem;
        width: 42px;
        height: 42px;
        font-size: 1.3rem;
    }
    
    .lightbox__image {
        max-height: 70vh;
    }
}

/* =====================================================
   HEADER SEARCH BUTTON
   ===================================================== */
.header-search-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.15);
    background: rgba(255,255,255,.06);
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
    flex-shrink: 0;
}

.header-search-btn:hover {
    background: rgba(245,158,11,.15);
    border-color: var(--gold);
    color: var(--gold);
}

/* =====================================================
   SEARCH MODAL
   ===================================================== */
.search-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
}

.search-modal.is-active {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 8vh;
}

.search-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,14,26,.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    cursor: pointer;
}

.search-modal__content {
    position: relative;
    z-index: 2;
    width: min(700px, calc(100% - 2rem));
    animation: searchModalIn .3s ease;
}

@keyframes searchModalIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.search-modal__close {
    position: absolute;
    top: -2.5rem;
    right: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.08);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all .3s ease;
}

.search-modal__close:hover {
    background: rgba(245,158,11,.2);
    border-color: var(--gold);
    color: var(--gold);
    transform: rotate(90deg);
}

.search-modal__title {
    color: var(--gold);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 1.2rem;
    text-align: center;
}

.search-modal__form {
    display: flex;
    gap: 0;
    background: rgba(255,255,255,.08);
    border: 2px solid rgba(245,158,11,.4);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color .3s ease;
}

.search-modal__form:focus-within {
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(245,158,11,.2);
}

.search-modal__input {
    flex: 1;
    padding: 1.1rem 1.4rem;
    border: none;
    background: transparent;
    color: var(--text);
    font-size: 1.1rem;
    font-family: inherit;
    outline: none;
    border-radius: 0;
    box-shadow: none;
}

.search-modal__input::placeholder {
    color: rgba(232,237,245,.4);
}

.search-modal__btn {
    width: 56px;
    border: none;
    background: var(--gold);
    color: #0a0e1a;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s ease;
    flex-shrink: 0;
}

.search-modal__btn:hover {
    background: #fbbf24;
}

.search-modal__results {
    margin-top: 1.2rem;
    max-height: 55vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(245,158,11,.3) transparent;
}

.search-modal__results::-webkit-scrollbar {
    width: 6px;
}

.search-modal__results::-webkit-scrollbar-track {
    background: transparent;
}

.search-modal__results::-webkit-scrollbar-thumb {
    background: rgba(245,158,11,.3);
    border-radius: 3px;
}

.search-modal__empty {
    text-align: center;
    padding: 2rem;
    color: var(--muted);
    font-size: 1rem;
}

.search-results-list {
    display: grid;
    gap: .6rem;
}

.search-result-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.2rem;
    border-radius: 14px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    text-decoration: none;
    transition: all .3s ease;
}

.search-result-item:hover {
    background: rgba(245,158,11,.1);
    border-color: rgba(245,158,11,.3);
    transform: translateX(4px);
}

.search-result-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(245,158,11,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: .15rem;
}

.search-result-content h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
}

.search-result-content p {
    margin: .25rem 0 0;
    font-size: .88rem;
    color: var(--muted);
    line-height: 1.5;
}

.search-result-cat {
    display: inline-block;
    margin-top: .35rem;
    padding: .15rem .55rem;
    border-radius: 6px;
    background: rgba(245,158,11,.12);
    color: var(--gold);
    font-size: .75rem;
    font-weight: 600;
}

/* =====================================================
   LANGUAGE SWITCHER
   ===================================================== */
.lang-switcher {
    position: relative;
    flex-shrink: 0;
}

.lang-btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .55rem .75rem;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,.12);
    background: rgba(0,0,0,.04);
    color: #1a2138;
    cursor: pointer;
    font-size: .88rem;
    font-weight: 700;
    font-family: inherit;
    transition: all .3s ease;
}

.lang-btn:hover {
    background: rgba(0,0,0,.08);
    border-color: var(--gold);
}

.lang-icon {
    color: var(--gold);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 180px;
    background: rgba(17,22,43,.98);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0,0,0,.5);
    padding: .5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all .25s ease;
    z-index: 100;
}

.lang-dropdown.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .65rem .85rem;
    border-radius: 10px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: .9rem;
    transition: all .2s ease;
}

.lang-option:hover {
    background: rgba(255,255,255,.1);
    color: #fff;
}

.lang-option.is-active {
    background: rgba(245,158,11,.15);
    color: var(--gold);
}

/* Mobil responsive */
@media (max-width: 760px) {
    .search-modal.is-active {
        padding-top: 5vh;
    }
    
    .search-modal__input {
        font-size: 1rem;
        padding: .9rem 1rem;
    }
    
    .search-result-item {
        padding: .85rem;
    }
    
    .lang-btn span {
        display: none;
    }
    
    .lang-btn {
        padding: .55rem;
    }
}

/* =====================================================
   MOBIL / TABLET RESPONSIVE IYILESTIRMELER
   ===================================================== */

/* Footer - Mobil iyileştirmeler */
@media (max-width: 760px) {
    .site-footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-grid {
        gap: 1.2rem;
    }
    
    .footer-grid h3 {
        font-size: .95rem;
        margin-bottom: .6rem;
    }

    .footer-lead {
        font-size: .88rem;
        line-height: 1.7;
    }
    
    .footer-contact {
        font-size: .88rem;
        gap: .4rem;
    }
    
    .footer-contact a,
    .footer-contact span {
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .footer-links a {
        font-size: .88rem;
        padding: .2rem 0;
    }
    
    .footer-bottom {
        font-size: .82rem;
        gap: .4rem;
        margin-top: 1.2rem;
        padding-top: .8rem;
    }
    
    .brand-footer {
        margin-bottom: .6rem;
    }
}

/* Hero Slider - Mobil info panel düzeltmeleri */
@media (max-width: 760px) {
    .hero-cta-panel {
        padding: .85rem;
        gap: .65rem;
        border-radius: 14px;
    }
    
    .hero-cta-panel strong {
        font-size: .85rem;
        line-height: 1.25;
    }
    
    .hero-cta-panel .muted {
        font-size: .78rem;
    }
    
    .hero-cta-icon {
        width: 24px;
        height: 24px;
    }
}

/* Tablet - Hero grid ve split düzeltmeleri */
@media (max-width: 1100px) {
    .hero-grid {
        gap: 1.5rem;
    }
    
    .split-2 {
        gap: .75rem;
    }
    
    .content-card {
        padding: 1.3rem;
    }
    
    .content-card h2 {
        font-size: 1.25rem;
    }
}

/* Tablet - İletişim kartları */
@media (max-width: 1100px) and (min-width: 761px) {
    .card-grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .card-grid-3 > :last-child:nth-child(odd) {
        grid-column: 1 / -1;
    }
}

/* Mobil - İletişim kartları ve contact-card */
@media (max-width: 760px) {
    .contact-card {
        padding: 1rem;
        border-radius: 14px;
    }
    
    .contact-card h2 {
        font-size: 1.05rem;
        margin: .6rem 0 .4rem;
    }
    
    .contact-card p {
        font-size: .9rem;
    }
    
    .contact-card .btn {
        width: 100%;
        margin-bottom: .4rem;
    }
    
    .contact-card div:last-child {
        display: flex;
        flex-direction: column;
        gap: .4rem;
    }
}

/* Mobil - Hero slider info panel tek sütun düzeni */
@media (max-width: 480px) {
    .hero-slide__content p {
        font-size: .88rem;
        line-height: 1.6;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Genel metin taşma düzeltmeleri - tüm boyutlar */
.footer-contact a,
.footer-contact span,
.hero-cta-panel strong,
.hero-cta-panel .muted,
.contact-card p,
.product-body p,
.section-lead,
.content-card p {
    overflow-wrap: break-word;
    word-wrap: break-word;
}

/* RTL (Arapça) desteği */
[dir="rtl"] .hero-slide__content {
    text-align: right;
}

[dir="rtl"] .breadcrumb {
    direction: rtl;
}

[dir="rtl"] .footer-grid {
    direction: rtl;
}

[dir="rtl"] .hero-actions {
    flex-direction: row-reverse;
}

[dir="rtl"] .mobile-link {
    flex-direction: row-reverse;
}

[dir="rtl"] .top-bar__item {
    flex-direction: row-reverse;
}

[dir="rtl"] .eyebrow {
    flex-direction: row-reverse;
}

[dir="rtl"] .feature-list span {
    flex-direction: row-reverse;
}

[dir="rtl"] .search-result-item:hover {
    transform: translateX(-4px);
}

/* Tablet - Ürünler sayfası düzeltmeleri */
@media (max-width: 1100px) {
    .product-detail {
        gap: 1.2rem;
    }
    
    .detail-media {
        min-height: 280px;
    }
}

/* Mobil - Ürün detay butonlar */
@media (max-width: 760px) {
    .content-card .stack .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Info card mobil düzeltmeleri */
    .info-card {
        padding: .9rem;
    }
    
    .info-card h3 {
        font-size: .95rem;
    }
    
    .info-card p {
        font-size: .85rem;
        line-height: 1.65;
    }
}

/* Küçük mobil - genel düzeltmeler */
@media (max-width: 480px) {
    .section-lead {
        font-size: .85rem;
        line-height: 1.6;
    }
    
    .page-shell .section-title {
        font-size: 1.15rem;
    }
    
    .eyebrow {
        font-size: .72rem;
        padding: .4rem .6rem;
    }
    
    .footer-grid h3 {
        font-size: .9rem;
    }
    
    .footer-links a {
        font-size: .83rem;
    }
    
    .product-body h3 {
        font-size: .98rem;
    }
    
    .product-body p {
        font-size: .83rem;
        line-height: 1.55;
    }
    
    .tag {
        font-size: .7rem;
        padding: .25rem .5rem;
    }
}

/* =====================================================
   Quicklinks Section - Hızlı Erişim Grid
   ===================================================== */
.quicklinks-section {
    background: #0d1f3c;
    border-top: 3px solid var(--gold);
    border-bottom: 3px solid var(--gold);
    padding: 0;
}

.quicklinks-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}

.quicklink-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1rem;
    color: #fff;
    text-decoration: none;
    border-right: 1px solid rgba(232,160,32,0.2);
    transition: background 0.2s, color 0.2s;
}

.quicklink-item:last-child { border-right: none; }

.quicklink-item:hover {
    background: var(--gold);
    color: var(--bg);
}

.quicklink-item:hover svg { stroke: var(--bg); }

.quicklink-icon {
    margin-bottom: 0.8rem;
    opacity: 0.9;
}

.quicklink-icon svg { stroke: var(--gold); transition: stroke 0.2s; }
.quicklink-item:hover .quicklink-icon svg { stroke: var(--bg); }

.quicklink-title {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    margin-bottom: 0.4rem;
}

.quicklink-desc {
    font-size: 0.72rem;
    opacity: 0.75;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .quicklinks-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .quicklink-item {
        border-bottom: 1px solid rgba(232,160,32,0.2);
        padding: 1.3rem .8rem;
    }
    .quicklink-item:nth-child(even) {
        border-right: none;
    }
    .quicklink-title {
        font-size: 0.75rem;
    }
    .quicklink-desc {
        font-size: 0.68rem;
    }
}

/* =====================================================
   Beyaz Tema Renk Override'ları
   ===================================================== */

/* Footer - Koyu arka plan için açık renkler */
.site-footer h3,
.site-footer h4,
.site-footer .footer-title {
    color: #eaf0f9 !important;
}

.site-footer a,
.site-footer .footer-link {
    color: #c8d6e5 !important;
}

.site-footer a:hover {
    color: var(--gold) !important;
}

.site-footer .muted,
.site-footer p {
    color: rgba(200,214,229,.75) !important;
}

.site-footer .footer-list {
    color: rgba(200,214,229,.75) !important;
}

/* Page Hero - Beyaz arka plan uyumlu */
.page-hero {
    color: #1a2138;
}

.page-hero h1,
.page-hero .page-title {
    color: #0a1628 !important;
}

.page-hero .breadcrumb a {
    color: var(--gold);
}

.page-hero .breadcrumb a:hover {
    color: var(--gold-dark);
}

/* Tag badge - beyaz arka planda okunabilir */
.tag {
    background: rgba(10,22,40,.08);
    color: #0a1628;
    border: 1px solid rgba(10,22,40,.12);
}

/* Eyebrow - beyaz section'larda okunabilir */
.eyebrow {
    color: var(--gold);
}

@media (max-width: 480px) {
    .quicklinks-grid {
        grid-template-columns: 1fr;
    }
    .quicklink-item {
        padding: 1rem;
        flex-direction: row;
        text-align: left;
        gap: .8rem;
        border-right: none;
        border-bottom: 1px solid rgba(232,160,32,0.15);
    }
    
    /* =====================================================
       ABOUT PAGE - PRO COMPONENTS
       ===================================================== */
    
    /* About Intro Section */
    .about-intro {
        display: grid;
        grid-template-columns: 1.5fr 1fr;
        gap: 2.5rem;
        align-items: start;
    }
    
    .about-intro__title {
        font-size: 1.5rem;
        font-weight: 800;
        color: #0a1628;
        margin: .7rem 0 1rem;
        line-height: 1.2;
    }
    
    .about-intro__content p {
        color: var(--muted);
        line-height: 1.6;
    }
    
    .about-intro__stats {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-box {
        padding: 1.5rem;
        background: #fff;
        border-radius: 16px;
        border: 1px solid rgba(0,0,0,.06);
        text-align: center;
        box-shadow: 0 2px 8px rgba(0,0,0,.04);
        transition: all .3s ease;
    }
    
    .stat-box:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(0,0,0,.08);
        border-color: var(--gold);
    }
    
    .stat-box__number {
        font-size: 2.5rem;
        font-weight: 900;
        color: var(--gold);
        line-height: 1;
    }
    
    .stat-box__label {
        font-size: .85rem;
        color: var(--muted);
        margin-top: .4rem;
        font-weight: 600;
    }
    
    /* Process Cards */
    .process-card {
        position: relative;
        padding: 2rem 1.5rem 1.8rem;
        background: #fff;
        border-radius: 16px;
        border: 1px solid rgba(0,0,0,.06);
        box-shadow: 0 2px 8px rgba(0,0,0,.04);
        text-align: center;
        transition: all .3s ease;
    }
    
    .process-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(0,0,0,.08);
        border-color: var(--gold);
    }
    
    .process-card__step {
        position: absolute;
        top: -14px;
        left: 50%;
        transform: translateX(-50%);
        background: var(--gold);
        color: #fff;
        font-weight: 800;
        font-size: .8rem;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .process-card__icon {
        width: 56px;
        height: 56px;
        margin: .5rem auto 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(232,160,32,.1);
        border-radius: 14px;
        color: var(--gold);
    }
    
    .process-card__title {
        font-size: 1.05rem;
        font-weight: 700;
        color: #0a1628;
        margin: 0 0 .5rem;
    }
    
    .process-card__desc {
        font-size: .88rem;
        color: var(--muted);
        line-height: 1.5;
        margin: 0;
    }
    
    /* Service Area Cards */
    .service-area-card {
        padding: 1.5rem;
        background: #fff;
        border-radius: 14px;
        border: 1px solid rgba(0,0,0,.06);
        box-shadow: 0 2px 6px rgba(0,0,0,.03);
        transition: all .3s ease;
    }
    
    .service-area-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(0,0,0,.06);
        border-color: var(--gold);
    }
    
    .service-area-card__icon {
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(232,160,32,.1);
        border-radius: 12px;
        color: var(--gold);
        margin-bottom: .8rem;
    }
    
    .service-area-card__title {
        font-size: 1rem;
        font-weight: 700;
        color: #0a1628;
        margin: .5rem 0 .4rem;
    }
    
    .service-area-card__desc {
        font-size: .85rem;
        color: var(--muted);
        line-height: 1.5;
        margin: 0;
    }
    
    /* Why Us List */
    .whyus-list {
        margin-top: 1rem;
        display: flex;
        flex-direction: column;
        gap: .8rem;
    }
    
    .whyus-item {
        display: flex;
        gap: .75rem;
        align-items: flex-start;
        padding: .75rem 1rem;
        background: rgba(232,160,32,.04);
        border-radius: 10px;
        border-left: 3px solid var(--gold);
        font-size: .88rem;
        color: var(--muted);
        line-height: 1.5;
    }
    
    .whyus-item svg {
        flex-shrink: 0;
        margin-top: .1rem;
    }
    
    .whyus-item strong {
        color: #0a1628;
    }
    
    /* Responsive - About */
    @media (max-width: 760px) {
        .about-intro {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        .about-intro__stats {
            grid-template-columns: repeat(3, 1fr);
        }
        .stat-box__number {
            font-size: 1.8rem;
        }
        .stat-box {
            padding: 1rem;
        }
        .process-card {
            padding: 1.5rem 1rem 1.3rem;
        }
        .service-area-card {
            padding: 1.2rem;
        }
        .whyus-item {
            padding: .6rem .8rem;
            font-size: .85rem;
        }
    }
    
    @media (max-width: 480px) {
        .about-intro__stats {
            grid-template-columns: 1fr;
        }
        .about-intro__title {
            font-size: 1.25rem;
        }
    }
    
    /* =====================================================
       PROFESSIONAL CONTACT CARDS
       ===================================================== */
    .contact-card--pro {
        padding: 2rem 1.5rem;
        text-align: center;
        position: relative;
        border: 1px solid rgba(0,0,0,.08);
        border-radius: 16px;
        background: #fff;
        box-shadow: 0 2px 8px rgba(0,0,0,.04);
        transition: all .3s ease;
    }
    
    .contact-card--pro:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(0,0,0,.08);
        border-color: var(--gold);
    }
    
    .contact-card__icon {
        width: 64px;
        height: 64px;
        margin: 0 auto 1.2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, var(--gold) 0%, #f59e0b 100%);
        border-radius: 16px;
        color: #fff;
    }
    
    .contact-card__icon--mail {
        background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    }
    
    .contact-card__icon--location {
        background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    }
    
    .contact-card__icon--clock {
        background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    }
    
    .contact-card__title {
        font-size: 1.1rem;
        margin: .6rem 0 .4rem;
        color: #0a1628 !important;
        font-weight: 700;
    }
    
    .contact-card__value {
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--gold);
        margin: .8rem 0 1.2rem;
    }
    
    .contact-card__actions {
        display: flex;
        gap: .65rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .contact-card__actions .btn {
        flex: 1 1 auto;
        min-width: 120px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: .5rem;
    }
    
    .contact-card__actions .btn svg {
        flex-shrink: 0;
    }
    
    .contact-card--wide {
        text-align: left;
    }
    
    .contact-card--wide .contact-card__icon {
        margin: 0 0 1.2rem 0;
    }
    
    /* Contact Hours */
    .contact-hours {
        margin-top: 1rem;
        display: flex;
        flex-direction: column;
        gap: .75rem;
    }
    
    .contact-hours__row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: .75rem 1rem;
        background: rgba(232,160,32,.05);
        border-radius: 10px;
        border-left: 3px solid var(--gold);
    }
    
    .contact-hours__row--closed {
        background: rgba(0,0,0,.03);
        border-left-color: #94a3b8;
    }
    
    .contact-hours__day {
        font-weight: 600;
        color: #0a1628;
    }
    
    .contact-hours__time {
        font-weight: 700;
        color: var(--gold);
    }
    
    .contact-hours__row--closed .contact-hours__time {
        color: #94a3b8;
    }
    
    /* Responsive - Contact Cards */
    @media (max-width: 760px) {
        .contact-card--pro {
            padding: 1.5rem 1.2rem;
        }
        
        .contact-card__icon {
            width: 56px;
            height: 56px;
        }
        
        .contact-card__title {
            font-size: 1rem;
        }
        
        .contact-card__value {
            font-size: 1.1rem;
        }
        
        .contact-card__actions .btn {
            min-width: 100%;
            font-size: .88rem;
        }
        
        .contact-hours__row {
            padding: .6rem .8rem;
        }
    }
    
    @media (max-width: 480px) {
        .contact-card--pro {
            padding: 1.2rem 1rem;
        }
        
        .contact-card__icon {
            width: 48px;
            height: 48px;
        }
        
        .contact-card__icon svg {
            width: 24px;
            height: 24px;
        }
        
        .contact-card__title {
            font-size: .95rem;
        }
        
        .contact-card__value {
            font-size: 1rem;
            margin: .6rem 0 1rem;
        }
        
        .contact-hours {
            gap: .5rem;
        }
        
        .contact-hours__row {
            padding: .5rem .7rem;
            flex-direction: column;
            align-items: flex-start;
            gap: .25rem;
        }
        
        .contact-hours__day,
        .contact-hours__time {
            font-size: .85rem;
        }
    }
    .quicklink-item:last-child {
        border-bottom: none;
    }
    .quicklink-icon {
        margin-bottom: 0;
    }
    .quicklink-title {
        font-size: 0.78rem;
    }
    .quicklink-desc {
        font-size: 0.68rem;
    }
    .quicklink-icon svg {
        width: 28px;
        height: 28px;
    }
}

/* =====================================================
   TEKLİF FORMU (2026-07-25)
   ===================================================== */
.teklif-form-wrap {
    max-width: 780px;
    margin: 0 auto;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: clamp(1.5rem, 4vw, 2.75rem);
}

.teklif-form__head {
    text-align: center;
    margin-bottom: 1.75rem;
}

.teklif-form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.25rem;
}

.teklif-form__grid .form-group--full {
    grid-column: 1 / -1;
}

@media (max-width: 640px) {
    .teklif-form__grid { grid-template-columns: 1fr; }
}

.teklif-form .form-group { margin-bottom: 0; }

.teklif-form label {
    display: block;
    font-size: .875rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: .4rem;
}

.teklif-form label .req { color: #dc2626; margin-inline-start: .15rem; }

.teklif-form input[type="text"],
.teklif-form input[type="tel"],
.teklif-form input[type="email"],
.teklif-form textarea {
    width: 100%;
    padding: .8rem .95rem;
    font: inherit;
    font-size: .95rem;
    color: var(--text);
    background: var(--panel-soft);
    border: 1px solid var(--line);
    border-radius: 10px;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
    -webkit-appearance: none;
    appearance: none;
}

.teklif-form textarea {
    min-height: 140px;
    resize: vertical;
    line-height: 1.6;
}

.teklif-form input::placeholder,
.teklif-form textarea::placeholder { color: var(--muted); opacity: 1; }

.teklif-form input:focus,
.teklif-form textarea:focus {
    outline: none;
    background: var(--panel);
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(232, 160, 32, .18);
}

.teklif-form .form-group--hata input,
.teklif-form .form-group--hata textarea {
    border-color: #dc2626;
    background: rgba(220, 38, 38, .04);
}

.teklif-form .alan-hata {
    display: block;
    font-size: .8125rem;
    color: #dc2626;
    margin-top: .35rem;
}

/* bal küpü: gerçek kullanıcı görmez, ekran okuyucu da atlar */
.teklif-form .hp-alan {
    position: absolute !important;
    left: -9999px !important;
    width: 1px; height: 1px;
    overflow: hidden;
}

.teklif-form__alt {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.teklif-form__kvkk {
    font-size: .8125rem;
    color: var(--muted);
    line-height: 1.5;
    flex: 1 1 260px;
    margin: 0;
}

.teklif-form button[type="submit"] { min-width: 190px; justify-content: center; }
.teklif-form button[type="submit"][disabled] { opacity: .6; cursor: not-allowed; }

/* geri bildirim kutuları */
.form-bildirim {
    border-radius: 12px;
    padding: 1rem 1.15rem;
    margin-bottom: 1.5rem;
    font-size: .95rem;
    line-height: 1.55;
    display: flex;
    align-items: flex-start;
    gap: .7rem;
}

.form-bildirim svg { flex-shrink: 0; margin-top: .1rem; }

.form-bildirim--ok {
    background: rgba(13, 148, 136, .08);
    border: 1px solid rgba(13, 148, 136, .35);
    color: #0f766e;
}

.form-bildirim--hata {
    background: rgba(220, 38, 38, .06);
    border: 1px solid rgba(220, 38, 38, .3);
    color: #b91c1c;
}

/* Arapça (RTL) */
[dir="rtl"] .teklif-form label,
[dir="rtl"] .teklif-form input,
[dir="rtl"] .teklif-form textarea { text-align: right; }
