:root {
    --purple-1: #5c2d91;
    --purple-2: #3b1467;
    --purple-3: #26083f;
    --purple-4: #7c49b8;

    --navy-1: #07152d;
    --navy-2: #091c3b;

    --blue-1: #2b67f6;
    --yellow-1: #f7b731;

    --white: #ffffff;
    --bg: #eef1f7;
    --text: #13233f;
    --muted: #62708a;
    --border: #dde4f0;
}

/* GENEL */

* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
}

body.site-body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: var(--bg);
    color: var(--text);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding-bottom: 0;
    overflow-x: hidden;
}

.site-page {
    flex: 1 0 auto;
}

.container {
    width: min(1180px, 92%);
    margin: 0 auto;
}

/* ÜST BİLGİ ŞERİDİ */

.top-notice {
    background: var(--purple-1);
    color: #fff;
    font-size: 13px;
    text-align: center;
    padding: 9px 0;
}

.top-notice span {
    display: block;
    line-height: 1.4;
}

/* HEADER */

.topbar {
    background: linear-gradient(90deg, var(--purple-3), var(--purple-2));
    color: #fff;
    box-shadow: 0 8px 26px rgba(22, 12, 45, .18);
    position: sticky;
    top: 0;
    z-index: 30;
}

.topbar-inner {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
}

.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.logo img {
    height: 38px;
    width: auto;
    display: block;
}

.logo-text {
    font-weight: 900;
    font-size: 28px;
    color: #fff;
    letter-spacing: -.5px;
}

.desktop-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    flex: 1;
    justify-content: center;
}

.desktop-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: 16px;
    opacity: .96;
}

.desktop-menu a:hover {
    opacity: 1;
    text-decoration: underline;
}

.top-call {
    background: #fff;
    color: var(--purple-2);
    text-decoration: none;
    font-weight: 900;
    padding: 14px 26px;
    border-radius: 14px;
    white-space: nowrap;
    box-shadow: 0 8px 20px rgba(0,0,0,.12);
}

/* HEADER ALTI BANNER */

.top-banner {
    width: 100%;
    background: var(--bg);
    padding: 0;
}

.top-banner .container {
    width: min(1180px, 92%);
    margin: 0 auto;
    position: relative;
}

.top-slider-track {
    position: relative;
}

.top-slide {
    display: none;
    width: 100%;
    line-height: 0;
    text-decoration: none;
}

.top-slide.active {
    display: block;
}

.top-slide picture {
    display: block;
    width: 100%;
}

.top-banner-img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 12px 30px rgba(20, 16, 45, .14);
}

.top-slider-dots {
    position: absolute;
    left: 50%;
    bottom: 12px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.top-slider-dots button {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,.55);
    cursor: pointer;
    padding: 0;
}

.top-slider-dots button.active {
    background: #fff;
}


.top-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    width: 46px;
    height: 70px;
    border: none;
    border-radius: 12px;
    background: rgba(38, 8, 63, 0.26);
    color: rgba(255,255,255,0.92);
    font-size: 54px;
    line-height: 1;
    font-weight: 300;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s ease;
    backdrop-filter: blur(2px);
}

.top-slider-arrow:hover {
    background: rgba(38, 8, 63, 0.48);
    color: #fff;
}

.top-slider-prev {
    left: 16px;
}

.top-slider-next {
    right: 16px;
}

/* HERO - YEDEK ALAN */

.hero {
    padding: 28px 0 24px;
}

.hero .container {
    background:
        radial-gradient(circle at 85% 20%, rgba(255,255,255,.10), transparent 25%),
        linear-gradient(135deg, #321053 0%, #5c2d91 45%, #2a0b45 100%);
    color: #fff;
    border-radius: 0 0 28px 28px;
    padding: 42px 30px;
    position: relative;
    overflow: hidden;
    min-height: 250px;
}

.badge {
    display: inline-block;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.20);
    color: #fff;
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 14px;
}

h1 {
    margin: 0 0 14px;
    font-size: 42px;
    line-height: 1.08;
    max-width: 760px;
}

h2 {
    margin: 0 0 18px;
    font-size: 30px;
    color: var(--navy-2);
}

.hero p {
    margin: 0;
    font-size: 17px;
    line-height: 1.6;
    max-width: 760px;
    color: rgba(255,255,255,.92);
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 26px;
}

/* GENEL BUTONLAR */

.btn {
    border: none;
    border-radius: 14px;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 900;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .2s ease;
    font-family: inherit;
}

.btn:hover {
    transform: translateY(-1px);
}

.primary {
    background: var(--yellow-1);
    color: #111;
}

.secondary {
    background: #fff;
    color: var(--purple-2);
}

.blue-btn {
    background: var(--blue-1);
    color: #fff;
}

.full {
    width: 100%;
}

/* GÜVEN KUTULARI */

.trust {
    padding: 18px 0 24px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.trust-grid div {
    background: #fff;
    border-radius: 18px;
    padding: 18px;
    border: 1px solid var(--border);
    box-shadow: 0 8px 22px rgba(15, 30, 70, .06);
}

.trust-grid strong {
    display: block;
    font-size: 16px;
    color: var(--navy-2);
    margin-bottom: 5px;
}

.trust-grid span {
    color: var(--muted);
    line-height: 1.45;
    font-size: 14px;
}

/* PAKETLER BÖLÜMÜ */

.packages {
    padding: 24px 0 56px;
}

.section-head {
    margin-bottom: 18px;
}

.section-head p {
    color: var(--muted);
    margin: 0;
}

.package-section-head {
    display: block;
    text-align: center;
    margin-bottom: 42px;
}

.package-section-head h2 {
    font-size: 34px;
    font-weight: 700;
    color: #0b2554;
    margin-bottom: 10px;
}

.package-section-head p {
    margin: 0;
    color: #61708a;
    font-size: 17px;
    line-height: 1.5;
}

/* PAKET KART GRID */

.package-grid,
.package-price-grid {
    display: grid;
}

.package-price-grid {
    grid-template-columns: repeat(3, 320px);
    justify-content: center;
    gap: 28px;
    max-width: 1060px;
    margin: 0 auto;
    align-items: stretch;
}

/* PAKET KART */

.package-card.package-price-card,
.package-price-card {
    width: 320px;
    max-width: 320px;
    min-height: 610px;
    height: auto;
    background: #fff;
    border: 1px solid #e1e1e1;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,.12);
    padding: 0;
    display: flex;
    flex-direction: column;
    position: relative;
}

.package-price-card::before {
    display: none;
}

/* PAKET GÖRSELİ */

.package-price-card .package-image {
    width: 100%;
    height: 175px;
    min-height: 175px;
    max-height: 175px;
    flex: 0 0 175px;
    overflow: hidden;
    position: relative;
    background: #321053;
}

.package-price-card .package-image img {
    width: 100%;
    height: 175px;
    min-height: 175px;
    max-height: 175px;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.package-image-placeholder {
    width: 100%;
    height: 100%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    font-weight: 800;
    font-size: 22px;
    background:
        radial-gradient(circle at top right, rgba(255,255,255,.12), transparent 30%),
        linear-gradient(135deg, #2b0a47, #642a92);
}

.package-floating-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(255,255,255,.95);
    color: #5c2d91;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    z-index: 2;
}

/* PAKET İÇERİK */

.package-price-card .package-body {
    padding: 24px 26px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
    height: 100%;
}

.package-price-card h3 {
    color: #5c2d91;
    font-size: 23px;
    line-height: 1.15;
    text-align: center;
    margin: 0 0 18px;
    min-height: 54px;
}

.package-pricing {
    text-align: center;
    margin-bottom: 22px;
    min-height: 58px;
}

.price-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 7px;
    line-height: 1.2;
    color: #000;
    margin-bottom: 4px;
    flex-wrap: wrap;
}

.price-row .price-text {
    font-size: 14px;
    color: #000;
    font-weight: 500;
}

.price-row strong {
    font-size: 29px;
    font-weight: 900;
    color: #000;
    letter-spacing: -1px;
}

.price-row em {
    font-style: normal;
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

.price-row-small .price-text {
    font-size: 14px;
}

.price-row-small strong {
    font-size: 20px;
    letter-spacing: 0;
}

.price-row-small em {
    font-size: 16px;
}

/* Eski fiyat yapısı kalırsa bozulmasın */

.package-price {
    text-align: center;
    color: #020617;
    line-height: 1;
    margin-bottom: 4px;
}

.package-price strong {
    font-size: 44px;
    font-weight: 900;
    letter-spacing: -1px;
}

.package-price span {
    font-size: 24px;
    font-weight: 900;
    margin-left: 4px;
}

.package-price-note {
    text-align: center;
    color: #4b1d83;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 18px;
    min-height: 18px;
}

/* PAKET ÖZELLİKLER */

.package-features {
    margin: 0;
    padding: 0;
    list-style: none;
    color: #111827;
    font-size: 14px;
    line-height: 1.42;
    flex: 1 1 auto;
    min-height: 150px;
}

.package-features li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
}

.package-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: -2px;
    color: #5c2d91;
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
}

.package-short-text {
    color: #111827;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
    flex: 1 1 auto;
    min-height: 150px;
}

/* DETAYLI BİLGİ */

.package-detail-toggle {
    border-top: 1px solid #e5e7eb;
    padding-top: 10px;
    min-height: 42px;
}

.package-detail-toggle summary {
    cursor: pointer;
    color: #5c2d91;
    font-weight: 900;
    font-size: 14px;
    list-style: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.package-detail-toggle summary::-webkit-details-marker {
    display: none;
}

.package-detail-toggle summary::before {
    content: "▾";
    display: inline-block;
    background: #5c2d91;
    color: #fff;
    width: 15px;
    height: 15px;
    border-radius: 2px;
    font-size: 10px;
    line-height: 15px;
    text-align: center;
}

.package-detail-toggle[open] summary::before {
    content: "▴";
}

.package-detail-content {
    margin-top: 12px;
    color: #667085;
    font-size: 14px;
    line-height: 1.55;
}

.package-detail-content p {
    margin: 0 0 8px;
}

/* PAKET BUTONLAR */

.package-actions {
    border-top: 1px solid #e5e7eb;
    margin-top: 12px;
    padding-top: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.package-detail-btn {
    background: #5c2d91;
    color: #fff;
    border-radius: 8px;
    width: 100%;
    height: 48px;
}

.package-apply-btn {
    width: 190px;
    max-width: 190px;
    min-width: 190px;
    height: 46px;
    margin: 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(90deg, #5c2d91, #6d37aa);
    color: #fff;
    border-radius: 8px;
    border: none;
    box-shadow: 0 8px 18px rgba(92, 45, 145, 0.20);
    transition: 0.2s ease;
}

.package-detail-btn:hover,
.package-apply-btn:hover {
    transform: translateY(-1px);
    opacity: .96;
}

.package-apply-btn:hover {
    background: linear-gradient(90deg, #4f247f, #5f2f96);
    color: #fff;
}

/* SAYFA İÇERİK */

.page-content {
    padding: 34px 0 48px;
}

.content-card {
    background: #fff;
    border-radius: 24px;
    padding: 32px;
    border: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(9, 28, 59, .06);
}

.content-card h1 {
    margin-top: 0;
}

.content-card p {
    color: var(--muted);
    line-height: 1.7;
}

.kategori-hero {
    margin-bottom: 28px;
}

.dynamic-content {
    margin-bottom: 22px;
}

/* ADIMLAR */

.info-section {
    padding: 0 0 50px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.steps div {
    background: #fff;
    border-radius: 22px;
    padding: 22px;
    border: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(9, 28, 59, .06);
}

.steps b {
    display: inline-flex;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: var(--purple-1);
    color: #fff;
    margin-bottom: 10px;
}

.steps h3 {
    margin: 0 0 8px;
    color: var(--navy-2);
    font-size: 20px;
}

.steps p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

/* FOOTER */

.footer {
    background: #f6eeff;
    color: #101828;
    padding: 56px 0 24px;
    margin-top: auto;
    flex-shrink: 0;
    border-top: 1px solid #ece7f5;
}

.footer-top {
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.footer-intro h3 {
    margin: 0 0 12px;
    font-size: 28px;
    color: #1a1a1a;
}

.footer-intro p {
    margin: 0;
    max-width: 900px;
    line-height: 1.8;
    color: #4b5563;
    font-size: 15px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    margin: 0 0 16px;
    font-size: 16px;
    font-weight: 800;
    color: #111827;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: #111827;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
}

.footer-col a:hover {
    color: #5c2d91;
}

.footer-divider {
    height: 2px;
    background: #cdaeff;
    margin: 36px 0 22px;
    border-radius: 2px;
}

.footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
}

.footer-copy {
    font-size: 14px;
    color: #4b5563;
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px;
}

.footer-bottom-links a {
    color: #5c2d91;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}

.footer-bottom-links a:hover {
    text-decoration: underline;
}

.footer-note {
    text-align: right;
    font-size: 14px;
    color: #5c2d91;
    font-weight: 700;
}

/* MOBİL ALT BAR */

.mobile-bar {
    display: none;
}

/* MODAL */

.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(7, 21, 45, .65);
    z-index: 60;
    padding: 20px;
    overflow-y: auto;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #fff;
    width: min(460px, 100%);
    border-radius: 24px;
    padding: 25px;
    position: relative;
    border-top: 6px solid var(--purple-1);
}

.modal-content h2 {
    color: var(--navy-2);
    margin-top: 0;
}

.modal-content p {
    color: var(--muted);
    line-height: 1.5;
}

.close {
    position: absolute;
    right: 14px;
    top: 8px;
    border: none;
    background: transparent;
    font-size: 32px;
    cursor: pointer;
    color: var(--navy-2);
}

form label {
    display: block;
    margin-top: 12px;
    margin-bottom: 6px;
    font-weight: 700;
    color: var(--navy-2);
}

form input[type="text"],
form input[type="tel"] {
    width: 100%;
    height: 48px;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0 12px;
    font-size: 16px;
    outline: none;
}

form input:focus {
    border-color: var(--purple-1);
    box-shadow: 0 0 0 3px rgba(92, 45, 145, .12);
}

.check {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    line-height: 1.5;
    color: var(--muted);
}

#formResult {
    margin-top: 12px;
    font-weight: 700;
    color: var(--navy-2);
}

/* TABLET */

@media (max-width: 1100px) {
    .package-price-grid {
        grid-template-columns: repeat(2, 320px);
    }
}

@media (max-width: 992px) {
    .desktop-menu {
        gap: 16px;
    }

    .desktop-menu a {
        font-size: 14px;
    }

    .trust-grid,
    .steps {
        grid-template-columns: 1fr;
    }
}

/* MOBİL */

@media (max-width: 768px) {
    body.site-body {
        padding-bottom: 68px;
    }

    .container {
        width: 92%;
    }

    .top-notice {
        font-size: 12px;
        padding: 8px 10px;
    }

    .top-notice span {
        white-space: normal;
    }

    .topbar-inner {
        min-height: 76px;
        justify-content: center;
    }

    .desktop-menu,
    .top-call {
        display: none;
    }

    .logo img {
        height: 36px;
    }

    .logo-text {
        font-size: 22px;
    }

    .top-banner {
        padding: 0 0 16px;
    }

    .top-banner .container {
        width: 100%;
    }

    .top-banner-img {
        width: 100%;
        border-radius: 0;
        box-shadow: 0 8px 20px rgba(20, 16, 45, .12);
    }

    .top-slider-dots {
        bottom: 8px;
    }
    .top-slider-arrow {
        width: 36px;
        height: 54px;
        font-size: 42px;
        border-radius: 10px;
        background: rgba(38, 8, 63, 0.28);
    }

    .top-slider-prev {
        left: 8px;
    }

    .top-slider-next {
        right: 8px;
    }

    .hero {
        padding: 0 0 18px;
    }

    .hero .container {
        border-radius: 0 0 26px 26px;
        padding: 30px 20px;
    }

    h1 {
        font-size: 31px;
    }

    h2 {
        font-size: 24px;
    }

    .hero p {
        font-size: 15px;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .trust {
        padding-top: 12px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .package-section-head {
        margin-bottom: 24px;
    }

    .package-section-head h2 {
        font-size: 28px;
    }

    .package-section-head p {
        font-size: 15px;
    }

    .package-price-grid {
        grid-template-columns: 1fr;
        max-width: 340px;
        gap: 22px;
    }

    .package-price-card {
        width: 100%;
        max-width: 340px;
        min-height: auto;
    }

    .package-price-card .package-image,
    .package-price-card .package-image img {
        height: 170px;
        min-height: 170px;
        max-height: 170px;
        flex-basis: 170px;
    }

    .package-price-card .package-body {
        padding: 22px;
    }

    .package-price-card h3 {
        font-size: 21px;
        margin-bottom: 18px;
        min-height: auto;
    }

    .package-pricing {
        min-height: auto;
        margin-bottom: 18px;
    }

    .price-row strong {
        font-size: 28px;
    }

    .price-row-small strong {
        font-size: 20px;
    }

    .package-features,
    .package-short-text {
        min-height: auto;
    }

    .package-apply-btn {
        width: 100%;
        max-width: 210px;
        min-width: auto;
    }

    .content-card {
        padding: 24px;
    }

    .mobile-bar {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        height: 68px;
        background: #fff;
        border-top: 1px solid var(--border);
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        z-index: 45;
        box-shadow: 0 -8px 24px rgba(15, 23, 42, .10);
    }

    .mobile-cta-item {
        border: none;
        background: #fff;
        color: var(--purple-2);
        font-weight: 900;
        font-size: 12px;
        text-decoration: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        cursor: pointer;
        font-family: inherit;
    }

    .mobile-cta-icon {
        width: 22px;
        height: 22px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-cta-icon svg {
        width: 22px;
        height: 22px;
        fill: currentColor;
        display: block;
    }

    .mobile-cta-form {
        background: linear-gradient(90deg, #5c2d91, #6d37aa);
        color: #fff;
    }

    .mobile-cta-item:active {
        transform: scale(.96);
    }

    .modal {
        padding: 12px;
    }

    .modal.active {
        align-items: flex-end;
    }

    .modal-content {
        border-radius: 24px 24px 0 0;
    }

    .footer {
        padding: 40px 0 88px;
    }

    .footer-intro h3 {
        font-size: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-divider {
        margin: 28px 0 20px;
    }

    .footer-bottom {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-copy,
    .footer-note {
        text-align: center;
    }

    .footer-bottom-links {
        gap: 14px 18px;
    }
}
/* ÇEREZ BANNER */

.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 18px;
    z-index: 80;
    display: none;
    padding: 0 16px;
}

.cookie-banner.active {
    display: block;
}

.cookie-banner-inner {
    width: min(1040px, 100%);
    margin: 0 auto;
    background: rgba(255,255,255,.98);
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    box-shadow: 0 14px 42px rgba(15, 23, 42, .18);
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-text strong {
    display: block;
    color: #26083f;
    font-size: 17px;
    margin-bottom: 6px;
}

.cookie-text p {
    margin: 0;
    color: #475467;
    font-size: 13px;
    line-height: 1.55;
    max-width: 720px;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    border: none;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
}

.cookie-reject {
    background: #f2f4f7;
    color: #344054;
}

.cookie-accept {
    background: linear-gradient(90deg, #5c2d91, #6d37aa);
    color: #fff;
    box-shadow: 0 8px 18px rgba(92, 45, 145, .18);
}

.cookie-btn:hover {
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .cookie-banner {
        bottom: 78px;
        padding: 0 10px;
    }

    .cookie-banner-inner {
        display: block;
        padding: 16px;
        border-radius: 16px;
    }

    .cookie-text strong {
        font-size: 16px;
    }

    .cookie-text p {
        font-size: 12px;
    }

    .cookie-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        margin-top: 14px;
    }

    .cookie-btn {
        width: 100%;
        padding: 12px 10px;
    }
}

/* MOBİL FORM DÜZELTME */

.modal {
    z-index: 120;
}

.modal-content {
    max-height: calc(100dvh - 40px);
    overflow-y: auto;
}

@media (max-width: 768px) {
    .modal {
        padding: 10px;
        align-items: center;
    }

    .modal.active {
        align-items: center;
        justify-content: center;
    }

    .modal-content {
        width: 100%;
        max-height: calc(100dvh - 95px);
        overflow-y: auto;
        border-radius: 20px;
        padding: 20px;
        margin-bottom: 68px;
    }

    .modal-content h2 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .modal-content p {
        font-size: 13px;
        margin-bottom: 10px;
    }

    form label {
        margin-top: 9px;
        margin-bottom: 5px;
        font-size: 13px;
    }

    form input[type="text"],
    form input[type="tel"] {
        height: 40px;
        font-size: 14px;
        border-radius: 10px;
    }

    .check {
        font-size: 11px;
        line-height: 1.35;
    }

    .modal-content .btn.full {
        height: 44px;
        padding: 10px 14px;
        border-radius: 10px;
    }

    #formResult {
        font-size: 12px;
        margin-top: 8px;
    }
}

/* FORM HATA / BAŞARI MESAJLARI */

.field-error-message {
    display: none;
    margin-top: 6px;
    color: #b42318;
    background: #fef3f2;
    border: 1px solid #fecdca;
    border-radius: 8px;
    padding: 8px 10px;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.35;
}

.field-error-message:not(:empty) {
    display: block;
}

.input-error {
    border-color: #f04438 !important;
    box-shadow: 0 0 0 3px rgba(240, 68, 56, .12) !important;
}

#formResult {
    margin-top: 12px;
    font-weight: 800;
    line-height: 1.4;
}

.form-result-error {
    color: #b42318 !important;
    background: #fef3f2;
    border: 1px solid #fecdca;
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 13px;
}

.form-result-success {
    color: #027a48 !important;
    background: #ecfdf3;
    border: 1px solid #abefc6;
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 13px;
}

@media (max-width: 768px) {
    .field-error-message {
        font-size: 11px;
        padding: 7px 9px;
    }

    .form-result-error,
    .form-result-success {
        font-size: 12px;
        padding: 9px 10px;
    }
}

:root {
    --purple-1: #5c2d91;
    --purple-2: #3b1467;
    --purple-3: #26083f;
    --purple-4: #7c49b8;

    --navy-1: #07152d;
    --navy-2: #091c3b;

    --blue-1: #2b67f6;
    --yellow-1: #f7b731;

    --white: #ffffff;
    --bg: #eef1f7;
    --text: #13233f;
    --muted: #62708a;
    --border: #dde4f0;
}

/* GENEL */

* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
}

body.site-body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: var(--bg);
    color: var(--text);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding-bottom: 0;
    overflow-x: hidden;
}

.site-page {
    flex: 1 0 auto;
}

.container {
    width: min(1180px, 92%);
    margin: 0 auto;
}

/* ÜST BİLGİ ŞERİDİ */

.top-notice {
    background: var(--purple-1);
    color: #fff;
    font-size: 13px;
    text-align: center;
    padding: 9px 0;
}

.top-notice span {
    display: block;
    line-height: 1.4;
}

/* HEADER */

.topbar {
    background: linear-gradient(90deg, var(--purple-3), var(--purple-2));
    color: #fff;
    box-shadow: 0 8px 26px rgba(22, 12, 45, .18);
    position: sticky;
    top: 0;
    z-index: 30;
}

.topbar-inner {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
}

.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.logo img {
    height: 38px;
    width: auto;
    display: block;
}

.logo-text {
    font-weight: 900;
    font-size: 28px;
    color: #fff;
    letter-spacing: -.5px;
}

.desktop-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    flex: 1;
    justify-content: center;
}

.desktop-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: 16px;
    opacity: .96;
}

.desktop-menu a:hover {
    opacity: 1;
    text-decoration: underline;
}

.top-call {
    background: #fff;
    color: var(--purple-2);
    text-decoration: none;
    font-weight: 900;
    padding: 14px 26px;
    border-radius: 14px;
    white-space: nowrap;
    box-shadow: 0 8px 20px rgba(0,0,0,.12);
}

/* HEADER ALTI BANNER */

.top-banner {
    width: 100%;
    background: var(--bg);
    padding: 0;
}

.top-banner .container {
    width: min(1180px, 92%);
    margin: 0 auto;
    position: relative;
}

.top-slider-track {
    position: relative;
}

.top-slide {
    display: none;
    width: 100%;
    line-height: 0;
    text-decoration: none;
}

.top-slide.active {
    display: block;
}

.top-slide picture {
    display: block;
    width: 100%;
}

.top-banner-img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 12px 30px rgba(20, 16, 45, .14);
}

.top-slider-dots {
    position: absolute;
    left: 50%;
    bottom: 12px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.top-slider-dots button {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,.55);
    cursor: pointer;
    padding: 0;
}

.top-slider-dots button.active {
    background: #fff;
}


.top-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    width: 46px;
    height: 70px;
    border: none;
    border-radius: 12px;
    background: rgba(38, 8, 63, 0.26);
    color: rgba(255,255,255,0.92);
    font-size: 54px;
    line-height: 1;
    font-weight: 300;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s ease;
    backdrop-filter: blur(2px);
}

.top-slider-arrow:hover {
    background: rgba(38, 8, 63, 0.48);
    color: #fff;
}

.top-slider-prev {
    left: 16px;
}

.top-slider-next {
    right: 16px;
}

/* HERO - YEDEK ALAN */

.hero {
    padding: 28px 0 24px;
}

.hero .container {
    background:
        radial-gradient(circle at 85% 20%, rgba(255,255,255,.10), transparent 25%),
        linear-gradient(135deg, #321053 0%, #5c2d91 45%, #2a0b45 100%);
    color: #fff;
    border-radius: 0 0 28px 28px;
    padding: 42px 30px;
    position: relative;
    overflow: hidden;
    min-height: 250px;
}

.badge {
    display: inline-block;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.20);
    color: #fff;
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 14px;
}

h1 {
    margin: 0 0 14px;
    font-size: 42px;
    line-height: 1.08;
    max-width: 760px;
}

h2 {
    margin: 0 0 18px;
    font-size: 30px;
    color: var(--navy-2);
}

.hero p {
    margin: 0;
    font-size: 17px;
    line-height: 1.6;
    max-width: 760px;
    color: rgba(255,255,255,.92);
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 26px;
}

/* GENEL BUTONLAR */

.btn {
    border: none;
    border-radius: 14px;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 900;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .2s ease;
    font-family: inherit;
}

.btn:hover {
    transform: translateY(-1px);
}

.primary {
    background: var(--yellow-1);
    color: #111;
}

.secondary {
    background: #fff;
    color: var(--purple-2);
}

.blue-btn {
    background: var(--blue-1);
    color: #fff;
}

.full {
    width: 100%;
}

/* GÜVEN KUTULARI */

.trust {
    padding: 18px 0 24px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.trust-grid div {
    background: #fff;
    border-radius: 18px;
    padding: 18px;
    border: 1px solid var(--border);
    box-shadow: 0 8px 22px rgba(15, 30, 70, .06);
}

.trust-grid strong {
    display: block;
    font-size: 16px;
    color: var(--navy-2);
    margin-bottom: 5px;
}

.trust-grid span {
    color: var(--muted);
    line-height: 1.45;
    font-size: 14px;
}

/* PAKETLER BÖLÜMÜ */

.packages {
    padding: 24px 0 56px;
}

.section-head {
    margin-bottom: 18px;
}

.section-head p {
    color: var(--muted);
    margin: 0;
}

.package-section-head {
    display: block;
    text-align: center;
    margin-bottom: 42px;
}

.package-section-head h2 {
    font-size: 34px;
    font-weight: 700;
    color: #0b2554;
    margin-bottom: 10px;
}

.package-section-head p {
    margin: 0;
    color: #61708a;
    font-size: 17px;
    line-height: 1.5;
}

/* PAKET KART GRID */

.package-grid,
.package-price-grid {
    display: grid;
}

.package-price-grid {
    grid-template-columns: repeat(3, 320px);
    justify-content: center;
    gap: 28px;
    max-width: 1060px;
    margin: 0 auto;
    align-items: stretch;
}

/* PAKET KART */

.package-card.package-price-card,
.package-price-card {
    width: 320px;
    max-width: 320px;
    min-height: 610px;
    height: auto;
    background: #fff;
    border: 1px solid #e1e1e1;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,.12);
    padding: 0;
    display: flex;
    flex-direction: column;
    position: relative;
}

.package-price-card::before {
    display: none;
}

/* PAKET GÖRSELİ */

.package-price-card .package-image {
    width: 100%;
    height: 175px;
    min-height: 175px;
    max-height: 175px;
    flex: 0 0 175px;
    overflow: hidden;
    position: relative;
    background: #321053;
}

.package-price-card .package-image img {
    width: 100%;
    height: 175px;
    min-height: 175px;
    max-height: 175px;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.package-image-placeholder {
    width: 100%;
    height: 100%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    font-weight: 800;
    font-size: 22px;
    background:
        radial-gradient(circle at top right, rgba(255,255,255,.12), transparent 30%),
        linear-gradient(135deg, #2b0a47, #642a92);
}

.package-floating-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(255,255,255,.95);
    color: #5c2d91;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    z-index: 2;
}

/* PAKET İÇERİK */

.package-price-card .package-body {
    padding: 24px 26px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
    height: 100%;
}

.package-price-card h3 {
    color: #5c2d91;
    font-size: 23px;
    line-height: 1.15;
    text-align: center;
    margin: 0 0 18px;
    min-height: 54px;
}

.package-pricing {
    text-align: center;
    margin-bottom: 22px;
    min-height: 58px;
}

.price-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 7px;
    line-height: 1.2;
    color: #000;
    margin-bottom: 4px;
    flex-wrap: wrap;
}

.price-row .price-text {
    font-size: 14px;
    color: #000;
    font-weight: 500;
}

.price-row strong {
    font-size: 29px;
    font-weight: 900;
    color: #000;
    letter-spacing: -1px;
}

.price-row em {
    font-style: normal;
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

.price-row-small .price-text {
    font-size: 14px;
}

.price-row-small strong {
    font-size: 20px;
    letter-spacing: 0;
}

.price-row-small em {
    font-size: 16px;
}

/* Eski fiyat yapısı kalırsa bozulmasın */

.package-price {
    text-align: center;
    color: #020617;
    line-height: 1;
    margin-bottom: 4px;
}

.package-price strong {
    font-size: 44px;
    font-weight: 900;
    letter-spacing: -1px;
}

.package-price span {
    font-size: 24px;
    font-weight: 900;
    margin-left: 4px;
}

.package-price-note {
    text-align: center;
    color: #4b1d83;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 18px;
    min-height: 18px;
}

/* PAKET ÖZELLİKLER */

.package-features {
    margin: 0;
    padding: 0;
    list-style: none;
    color: #111827;
    font-size: 14px;
    line-height: 1.42;
    flex: 1 1 auto;
    min-height: 150px;
}

.package-features li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
}

.package-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: -2px;
    color: #5c2d91;
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
}

.package-short-text {
    color: #111827;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
    flex: 1 1 auto;
    min-height: 150px;
}

/* DETAYLI BİLGİ */

.package-detail-toggle {
    border-top: 1px solid #e5e7eb;
    padding-top: 10px;
    min-height: 42px;
}

.package-detail-toggle summary {
    cursor: pointer;
    color: #5c2d91;
    font-weight: 900;
    font-size: 14px;
    list-style: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.package-detail-toggle summary::-webkit-details-marker {
    display: none;
}

.package-detail-toggle summary::before {
    content: "▾";
    display: inline-block;
    background: #5c2d91;
    color: #fff;
    width: 15px;
    height: 15px;
    border-radius: 2px;
    font-size: 10px;
    line-height: 15px;
    text-align: center;
}

.package-detail-toggle[open] summary::before {
    content: "▴";
}

.package-detail-content {
    margin-top: 12px;
    color: #667085;
    font-size: 14px;
    line-height: 1.55;
}

.package-detail-content p {
    margin: 0 0 8px;
}

/* PAKET BUTONLAR */

.package-actions {
    border-top: 1px solid #e5e7eb;
    margin-top: 12px;
    padding-top: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.package-detail-btn {
    background: #5c2d91;
    color: #fff;
    border-radius: 8px;
    width: 100%;
    height: 48px;
}

.package-apply-btn {
    width: 190px;
    max-width: 190px;
    min-width: 190px;
    height: 46px;
    margin: 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(90deg, #5c2d91, #6d37aa);
    color: #fff;
    border-radius: 8px;
    border: none;
    box-shadow: 0 8px 18px rgba(92, 45, 145, 0.20);
    transition: 0.2s ease;
}

.package-detail-btn:hover,
.package-apply-btn:hover {
    transform: translateY(-1px);
    opacity: .96;
}

.package-apply-btn:hover {
    background: linear-gradient(90deg, #4f247f, #5f2f96);
    color: #fff;
}

/* SAYFA İÇERİK */

.page-content {
    padding: 34px 0 48px;
}

.content-card {
    background: #fff;
    border-radius: 24px;
    padding: 32px;
    border: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(9, 28, 59, .06);
}

.content-card h1 {
    margin-top: 0;
}

.content-card p {
    color: var(--muted);
    line-height: 1.7;
}

.kategori-hero {
    margin-bottom: 28px;
}

.dynamic-content {
    margin-bottom: 22px;
}

/* ADIMLAR */

.info-section {
    padding: 0 0 50px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.steps div {
    background: #fff;
    border-radius: 22px;
    padding: 22px;
    border: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(9, 28, 59, .06);
}

.steps b {
    display: inline-flex;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: var(--purple-1);
    color: #fff;
    margin-bottom: 10px;
}

.steps h3 {
    margin: 0 0 8px;
    color: var(--navy-2);
    font-size: 20px;
}

.steps p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

/* FOOTER */

.footer {
    background: #f6eeff;
    color: #101828;
    padding: 56px 0 24px;
    margin-top: auto;
    flex-shrink: 0;
    border-top: 1px solid #ece7f5;
}

.footer-top {
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.footer-intro h3 {
    margin: 0 0 12px;
    font-size: 28px;
    color: #1a1a1a;
}

.footer-intro p {
    margin: 0;
    max-width: 900px;
    line-height: 1.8;
    color: #4b5563;
    font-size: 15px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    margin: 0 0 16px;
    font-size: 16px;
    font-weight: 800;
    color: #111827;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: #111827;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
}

.footer-col a:hover {
    color: #5c2d91;
}

.footer-divider {
    height: 2px;
    background: #cdaeff;
    margin: 36px 0 22px;
    border-radius: 2px;
}

.footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
}

.footer-copy {
    font-size: 14px;
    color: #4b5563;
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px;
}

.footer-bottom-links a {
    color: #5c2d91;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}

.footer-bottom-links a:hover {
    text-decoration: underline;
}

.footer-note {
    text-align: right;
    font-size: 14px;
    color: #5c2d91;
    font-weight: 700;
}

/* MOBİL ALT BAR */

.mobile-bar {
    display: none;
}

/* MODAL */

.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(7, 21, 45, .65);
    z-index: 60;
    padding: 20px;
    overflow-y: auto;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #fff;
    width: min(460px, 100%);
    border-radius: 24px;
    padding: 25px;
    position: relative;
    border-top: 6px solid var(--purple-1);
}

.modal-content h2 {
    color: var(--navy-2);
    margin-top: 0;
}

.modal-content p {
    color: var(--muted);
    line-height: 1.5;
}

.close {
    position: absolute;
    right: 14px;
    top: 8px;
    border: none;
    background: transparent;
    font-size: 32px;
    cursor: pointer;
    color: var(--navy-2);
}

form label {
    display: block;
    margin-top: 12px;
    margin-bottom: 6px;
    font-weight: 700;
    color: var(--navy-2);
}

form input[type="text"],
form input[type="tel"] {
    width: 100%;
    height: 48px;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0 12px;
    font-size: 16px;
    outline: none;
}

form input:focus {
    border-color: var(--purple-1);
    box-shadow: 0 0 0 3px rgba(92, 45, 145, .12);
}

.check {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    line-height: 1.5;
    color: var(--muted);
}

#formResult {
    margin-top: 12px;
    font-weight: 700;
    color: var(--navy-2);
}

/* TABLET */

@media (max-width: 1100px) {
    .package-price-grid {
        grid-template-columns: repeat(2, 320px);
    }
}

@media (max-width: 992px) {
    .desktop-menu {
        gap: 16px;
    }

    .desktop-menu a {
        font-size: 14px;
    }

    .trust-grid,
    .steps {
        grid-template-columns: 1fr;
    }
}

/* MOBİL */

@media (max-width: 768px) {
    body.site-body {
        padding-bottom: 68px;
    }

    .container {
        width: 92%;
    }

    .top-notice {
        font-size: 12px;
        padding: 8px 10px;
    }

    .top-notice span {
        white-space: normal;
    }

    .topbar-inner {
        min-height: 76px;
        justify-content: center;
    }

    .desktop-menu,
    .top-call {
        display: none;
    }

    .logo img {
        height: 36px;
    }

    .logo-text {
        font-size: 22px;
    }

    .top-banner {
        padding: 0 0 16px;
    }

    .top-banner .container {
        width: 100%;
    }

    .top-banner-img {
        width: 100%;
        border-radius: 0;
        box-shadow: 0 8px 20px rgba(20, 16, 45, .12);
    }

    .top-slider-dots {
        bottom: 8px;
    }
    .top-slider-arrow {
        width: 36px;
        height: 54px;
        font-size: 42px;
        border-radius: 10px;
        background: rgba(38, 8, 63, 0.28);
    }

    .top-slider-prev {
        left: 8px;
    }

    .top-slider-next {
        right: 8px;
    }

    .hero {
        padding: 0 0 18px;
    }

    .hero .container {
        border-radius: 0 0 26px 26px;
        padding: 30px 20px;
    }

    h1 {
        font-size: 31px;
    }

    h2 {
        font-size: 24px;
    }

    .hero p {
        font-size: 15px;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .trust {
        padding-top: 12px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .package-section-head {
        margin-bottom: 24px;
    }

    .package-section-head h2 {
        font-size: 28px;
    }

    .package-section-head p {
        font-size: 15px;
    }

    .package-price-grid {
        grid-template-columns: 1fr;
        max-width: 340px;
        gap: 22px;
    }

    .package-price-card {
        width: 100%;
        max-width: 340px;
        min-height: auto;
    }

    .package-price-card .package-image,
    .package-price-card .package-image img {
        height: 170px;
        min-height: 170px;
        max-height: 170px;
        flex-basis: 170px;
    }

    .package-price-card .package-body {
        padding: 22px;
    }

    .package-price-card h3 {
        font-size: 21px;
        margin-bottom: 18px;
        min-height: auto;
    }

    .package-pricing {
        min-height: auto;
        margin-bottom: 18px;
    }

    .price-row strong {
        font-size: 28px;
    }

    .price-row-small strong {
        font-size: 20px;
    }

    .package-features,
    .package-short-text {
        min-height: auto;
    }

    .package-apply-btn {
        width: 100%;
        max-width: 210px;
        min-width: auto;
    }

    .content-card {
        padding: 24px;
    }

    .mobile-bar {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        height: 68px;
        background: #fff;
        border-top: 1px solid var(--border);
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        z-index: 45;
        box-shadow: 0 -8px 24px rgba(15, 23, 42, .10);
    }

    .mobile-cta-item {
        border: none;
        background: #fff;
        color: var(--purple-2);
        font-weight: 900;
        font-size: 12px;
        text-decoration: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        cursor: pointer;
        font-family: inherit;
    }

    .mobile-cta-icon {
        width: 22px;
        height: 22px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-cta-icon svg {
        width: 22px;
        height: 22px;
        fill: currentColor;
        display: block;
    }

    .mobile-cta-form {
        background: linear-gradient(90deg, #5c2d91, #6d37aa);
        color: #fff;
    }

    .mobile-cta-item:active {
        transform: scale(.96);
    }

    .modal {
        padding: 12px;
    }

    .modal.active {
        align-items: flex-end;
    }

    .modal-content {
        border-radius: 24px 24px 0 0;
    }

    .footer {
        padding: 40px 0 88px;
    }

    .footer-intro h3 {
        font-size: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-divider {
        margin: 28px 0 20px;
    }

    .footer-bottom {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-copy,
    .footer-note {
        text-align: center;
    }

    .footer-bottom-links {
        gap: 14px 18px;
    }
}
/* ÇEREZ BANNER */

.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 18px;
    z-index: 80;
    display: none;
    padding: 0 16px;
}

.cookie-banner.active {
    display: block;
}

.cookie-banner-inner {
    width: min(1040px, 100%);
    margin: 0 auto;
    background: rgba(255,255,255,.98);
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    box-shadow: 0 14px 42px rgba(15, 23, 42, .18);
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-text strong {
    display: block;
    color: #26083f;
    font-size: 17px;
    margin-bottom: 6px;
}

.cookie-text p {
    margin: 0;
    color: #475467;
    font-size: 13px;
    line-height: 1.55;
    max-width: 720px;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    border: none;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
}

.cookie-reject {
    background: #f2f4f7;
    color: #344054;
}

.cookie-accept {
    background: linear-gradient(90deg, #5c2d91, #6d37aa);
    color: #fff;
    box-shadow: 0 8px 18px rgba(92, 45, 145, .18);
}

.cookie-btn:hover {
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .cookie-banner {
        bottom: 78px;
        padding: 0 10px;
    }

    .cookie-banner-inner {
        display: block;
        padding: 16px;
        border-radius: 16px;
    }

    .cookie-text strong {
        font-size: 16px;
    }

    .cookie-text p {
        font-size: 12px;
    }

    .cookie-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        margin-top: 14px;
    }

    .cookie-btn {
        width: 100%;
        padding: 12px 10px;
    }
}

/* MOBİL FORM DÜZELTME */

.modal {
    z-index: 120;
}

.modal-content {
    max-height: calc(100dvh - 40px);
    overflow-y: auto;
}

@media (max-width: 768px) {
    .modal {
        padding: 10px;
        align-items: center;
    }

    .modal.active {
        align-items: center;
        justify-content: center;
    }

    .modal-content {
        width: 100%;
        max-height: calc(100dvh - 95px);
        overflow-y: auto;
        border-radius: 20px;
        padding: 20px;
        margin-bottom: 68px;
    }

    .modal-content h2 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .modal-content p {
        font-size: 13px;
        margin-bottom: 10px;
    }

    form label {
        margin-top: 9px;
        margin-bottom: 5px;
        font-size: 13px;
    }

    form input[type="text"],
    form input[type="tel"] {
        height: 40px;
        font-size: 14px;
        border-radius: 10px;
    }

    .check {
        font-size: 11px;
        line-height: 1.35;
    }

    .modal-content .btn.full {
        height: 44px;
        padding: 10px 14px;
        border-radius: 10px;
    }

    #formResult {
        font-size: 12px;
        margin-top: 8px;
    }
}

/* FORM HATA / BAŞARI MESAJLARI */

.field-error-message {
    display: none;
    margin-top: 6px;
    color: #b42318;
    background: #fef3f2;
    border: 1px solid #fecdca;
    border-radius: 8px;
    padding: 8px 10px;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.35;
}

.field-error-message:not(:empty) {
    display: block;
}

.input-error {
    border-color: #f04438 !important;
    box-shadow: 0 0 0 3px rgba(240, 68, 56, .12) !important;
}

#formResult {
    margin-top: 12px;
    font-weight: 800;
    line-height: 1.4;
}

.form-result-error {
    color: #b42318 !important;
    background: #fef3f2;
    border: 1px solid #fecdca;
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 13px;
}

.form-result-success {
    color: #027a48 !important;
    background: #ecfdf3;
    border: 1px solid #abefc6;
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 13px;
}

@media (max-width: 768px) {
    .field-error-message {
        font-size: 11px;
        padding: 7px 9px;
    }

    .form-result-error,
    .form-result-success {
        font-size: 12px;
        padding: 9px 10px;
    }
}

.package-actions-split {
    display: grid;
    gap: 8px;
}

.package-apply-btn-secondary {
    background: #ffffff;
    color: #5b2aa0;
    border: 1px solid rgba(91, 42, 160, .25);
}

.package-apply-btn-secondary:hover {
    background: #f4efff;
}

/* BAŞVURU MODAL - ÖDEME SEÇİMİ */

.modal-step-hidden {
    display: none;
}

.payment-choice-grid {
    display: grid;
    gap: 12px;
    margin-top: 16px;
}

.payment-choice-card {
    width: 100%;
    border: 2px solid rgba(92, 45, 145, .18);
    background: #fff;
    border-radius: 16px;
    padding: 16px;
    cursor: pointer;
    text-align: center;
    font-family: inherit;
    transition: .2s ease;
}

.payment-choice-card:hover {
    border-color: var(--purple-1);
    box-shadow: 0 8px 20px rgba(92, 45, 145, .14);
    transform: translateY(-1px);
}

.payment-choice-title {
    display: block;
    color: var(--purple-1);
    font-weight: 900;
    font-size: 15px;
    margin-bottom: 6px;
}

.payment-choice-card strong {
    display: block;
    color: #111827;
    font-size: 16px;
    line-height: 1.35;
}

.payment-choice-card em {
    display: block;
    width: 100%;
    margin-top: 12px;
    background: linear-gradient(90deg, #5c2d91, #6d37aa);
    color: #fff;
    border-radius: 10px;
    padding: 10px;
    font-style: normal;
    font-weight: 900;
}

.selected-payment-box {
    background: #f4efff;
    border: 1px solid rgba(92, 45, 145, .20);
    border-radius: 14px;
    padding: 12px;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
}

.selected-payment-box strong {
    color: var(--purple-2);
    font-size: 14px;
    line-height: 1.35;
}

.selected-payment-box button {
    border: none;
    background: #fff;
    color: var(--purple-1);
    border-radius: 8px;
    padding: 8px 10px;
    font-weight: 900;
    cursor: pointer;
}

@media (max-width: 768px) {
    .payment-choice-card {
        padding: 13px;
    }

    .payment-choice-card strong {
        font-size: 14px;
    }

    .selected-payment-box {
        display: block;
    }

    .selected-payment-box button {
        margin-top: 8px;
    }
}

/* FATURALI ADRES ADIMI */

.modal-step-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 14px;
}

.address-help {
    background: #f4efff;
    border: 1px solid rgba(92, 45, 145, .18);
    border-radius: 12px;
    padding: 10px 12px;
    font-size: 13px;
    color: #4b1d83 !important;
    margin-bottom: 12px;
}

.address-select {
    width: 100%;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0 12px;
    font-size: 14px;
    outline: none;
    background: #fff;
}

.address-select:focus {
    border-color: var(--purple-1);
    box-shadow: 0 0 0 3px rgba(92, 45, 145, .12);
}

.address-select:disabled {
    background: #f2f4f7;
    color: #98a2b3;
    cursor: not-allowed;
}

.selected-address-box {
    margin-top: 12px;
    margin-bottom: 12px;
    background: #ecfdf3;
    border: 1px solid #abefc6;
    border-radius: 12px;
    padding: 10px 12px;
}

.selected-address-box strong {
    display: block;
    color: #027a48;
    margin-bottom: 4px;
}

.selected-address-box p {
    margin: 0;
    color: #344054;
    font-size: 13px;
    line-height: 1.45;
}

@media (max-width: 768px) {
    .modal-step-buttons {
        grid-template-columns: 1fr;
    }

    .address-select {
        height: 40px;
        font-size: 13px;
    }
}

/* ADRES SEÇİMİ - ARAMALI SELECT */
.address-search {
    width: 100%;
    height: 38px;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0 11px;
    font-size: 14px;
    outline: none;
    margin-bottom: 6px;
    background: #fff;
}

.address-search:focus {
    border-color: var(--purple-1);
    box-shadow: 0 0 0 3px rgba(92, 45, 145, .12);
}

.address-search:disabled {
    background: #f2f4f7;
    color: #98a2b3;
    cursor: not-allowed;
}

.address-select {
    margin-bottom: 10px;
}

.address-select option[disabled] {
    color: #98a2b3;
}

/* ADRES SEÇİMİ - TEK SATIR ARAMALI COMBO SELECT */
.address-select-native {
    display: none !important;
}

.address-combo {
    position: relative;
    width: 100%;
    margin-bottom: 10px;
}

.address-combo-toggle {
    width: 100%;
    min-height: 44px;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0 42px 0 12px;
    font-size: 14px;
    line-height: 1.25;
    text-align: left;
    background: #fff;
    color: #101828;
    font-family: inherit;
    cursor: pointer;
    position: relative;
    transition: .2s ease;
}

.address-combo-toggle::after {
    content: "▾";
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #667085;
    font-size: 13px;
}

.address-combo.open .address-combo-toggle {
    border-color: var(--purple-1);
    box-shadow: 0 0 0 3px rgba(92, 45, 145, .12);
}

.address-combo.open .address-combo-toggle::after {
    content: "▴";
}

.address-combo-toggle.has-value {
    color: #111827;
    font-weight: 800;
}

.address-combo-toggle:disabled,
.address-combo.disabled .address-combo-toggle {
    background: #f2f4f7;
    color: #98a2b3;
    cursor: not-allowed;
}

.address-combo-panel {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 4px);
    z-index: 140;
    background: #fff;
    border: 1px solid #d9d6e8;
    border-radius: 12px;
    box-shadow: 0 18px 42px rgba(15, 23, 42, .18);
    padding: 8px;
}

.address-combo-search {
    width: 100%;
    height: 38px;
    border: 1px solid var(--border);
    border-radius: 9px;
    padding: 0 10px;
    font-size: 14px;
    outline: none;
    margin-bottom: 8px;
    background: #fff;
    font-family: inherit;
}

.address-combo-search:focus {
    border-color: var(--purple-1);
    box-shadow: 0 0 0 3px rgba(92, 45, 145, .10);
}

.address-combo-options {
    max-height: 210px;
    overflow-y: auto;
    border-radius: 8px;
}

.address-combo-option {
    width: 100%;
    border: none;
    background: transparent;
    color: #101828;
    display: block;
    text-align: left;
    padding: 10px 10px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.25;
    font-family: inherit;
}

.address-combo-option:hover,
.address-combo-option.selected {
    background: #f4efff;
    color: #4b1d83;
    font-weight: 800;
}

.address-combo-empty {
    color: #98a2b3;
    font-size: 13px;
    padding: 10px;
}

@media (max-width: 768px) {
    .address-combo-toggle {
        min-height: 40px;
        font-size: 13px;
    }

    .address-combo-panel {
        position: static;
        margin-top: 5px;
    }

    .address-combo-options {
        max-height: 170px;
    }
}

/* İnternetli başvuru modalı - kompakt adres ve kampanya seçim düzeltmeleri */
#basvuruModal .modal-content.modal-step-address-active,
#basvuruModal .modal-content.modal-step-internet-active {
    width: min(620px, 100%);
    max-height: calc(100dvh - 34px);
    padding: 18px 22px;
}

#basvuruModal .modal-content.modal-step-address-active h2,
#basvuruModal .modal-content.modal-step-internet-active h2 {
    font-size: 26px;
    margin: 0 0 6px;
}

#basvuruModal .modal-content.modal-step-address-active #modalPackageName,
#basvuruModal .modal-content.modal-step-internet-active #modalPackageName {
    margin: 0 0 12px;
    font-size: 14px;
}

#modalStepAddress:not(.modal-step-hidden) {
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
    gap: 8px 10px;
    align-items: center;
}

#modalStepAddress > .selected-payment-box,
#modalStepAddress > .address-help,
#modalStepAddress > #internetAdslBox,
#modalStepAddress > .selected-address-box,
#modalStepAddress > #adresError,
#modalStepAddress > .modal-step-buttons {
    grid-column: 1 / -1;
}

#modalStepAddress > label {
    margin: 0;
    font-size: 13px;
    line-height: 1.25;
}

#modalStepAddress .address-help,
#modalStepInternetOptions .address-help {
    margin: 6px 0;
    padding: 10px 12px;
    font-size: 12px;
    line-height: 1.45;
}

#internetAdslBox label {
    margin-top: 0;
}

#internetAdslBox input {
    height: 40px;
    font-size: 14px;
}

#modalStepAddress .address-combo {
    position: relative;
    min-width: 0;
}

#modalStepAddress .address-combo-toggle {
    width: 100%;
    height: 40px;
    border: 1px solid #d9dfe9;
    background: #fff;
    border-radius: 10px;
    padding: 0 34px 0 12px;
    text-align: left;
    font-weight: 700;
    font-size: 13px;
    color: #101828;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
}

#modalStepAddress .address-combo-toggle:after {
    content: '⌄';
    position: absolute;
    right: 14px;
    color: #5c2d91;
}

#modalStepAddress .address-combo.disabled .address-combo-toggle,
#modalStepAddress .address-combo-toggle:disabled {
    background: #f6f7f9;
    color: #98a2b3;
    cursor: not-allowed;
}

#modalStepAddress .address-select-native {
    display: none !important;
}

#modalStepAddress .address-combo-panel {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 4px);
    z-index: 999;
    background: #fff;
    border: 1px solid #d6bbfb;
    border-radius: 12px;
    box-shadow: 0 14px 34px rgba(16, 24, 40, .18);
    padding: 8px;
}

#modalStepAddress .address-combo-search {
    width: 100%;
    height: 36px;
    border: 1px solid #d9dfe9;
    border-radius: 9px;
    padding: 0 10px;
    font-size: 13px;
    margin-bottom: 8px;
}

#modalStepAddress .address-combo-options {
    max-height: 190px;
    overflow-y: auto;
    display: grid;
    gap: 4px;
}

#modalStepAddress .address-combo-option {
    border: 0;
    border-radius: 8px;
    background: #fff;
    padding: 9px 10px;
    text-align: left;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

#modalStepAddress .address-combo-option:hover,
#modalStepAddress .address-combo-option.active {
    background: #f3eafd;
    color: #5c2d91;
}

#modalStepAddress .modal-step-buttons,
#modalStepInternetOptions .modal-step-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 8px;
}

#modalStepInternetOptions:not(.modal-step-hidden) {
    display: block;
}

#modalStepInternetOptions .field-error-message {
    margin-bottom: 8px;
}

.internet-offer-list {
    display: grid;
    gap: 8px;
    margin-top: 10px;
}

.internet-offer-card {
    width: 100%;
    border: 1px solid #e2d8f6;
    background: #fff;
    border-radius: 13px;
    padding: 12px 14px;
    text-align: left;
    cursor: pointer;
    transition: .18s ease;
}

.internet-offer-card:hover,
.internet-offer-card.active {
    border-color: #6b35a8;
    background: #f7f2ff;
    box-shadow: 0 0 0 3px rgba(107, 53, 168, .12);
}

.internet-offer-main {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: flex-start;
}

.internet-offer-card strong {
    display: block;
    color: #1b1037;
    font-size: 14px;
    line-height: 1.25;
}

.internet-offer-card em {
    color: #5c2d91;
    font-style: normal;
    font-size: 14px;
    font-weight: 900;
    white-space: nowrap;
}

.internet-offer-card span,
.internet-offer-card small {
    display: block;
    margin-top: 5px;
    color: #667085;
    font-size: 12px;
    line-height: 1.35;
}

.internet-option-box {
    margin-top: 10px;
    border: 1px solid #eee7fb;
    background: #fbf9ff;
    border-radius: 13px;
    padding: 12px;
}

.internet-option-box h3 {
    font-size: 15px;
    margin: 0 0 8px;
}

.internet-check-row {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid #eee7fb;
    border-radius: 10px;
    padding: 9px 10px;
    margin: 6px 0;
    cursor: pointer;
}

.internet-check-row input {
    margin-top: 3px;
}

.internet-check-row strong {
    display: block;
    font-size: 13px;
    color: #1b1037;
}

.internet-check-row small {
    display: block;
    font-size: 11px;
    color: #667085;
    margin-top: 2px;
}

@media (max-width: 620px) {
    #basvuruModal .modal-content.modal-step-address-active,
    #basvuruModal .modal-content.modal-step-internet-active {
        width: 100%;
        padding: 16px;
    }

    #modalStepAddress:not(.modal-step-hidden) {
        display: block;
    }

    #modalStepAddress > label {
        display: block;
        margin-top: 8px;
        margin-bottom: 5px;
    }

    #modalStepAddress .address-combo-toggle,
    #internetAdslBox input {
        height: 39px;
    }

    #modalStepAddress .address-combo-panel {
        position: relative;
        top: 4px;
        margin-bottom: 8px;
    }

    #modalStepAddress .modal-step-buttons,
    #modalStepInternetOptions .modal-step-buttons {
        grid-template-columns: 1fr;
    }

    .internet-offer-main {
        display: block;
    }

    .internet-offer-card em {
        display: block;
        margin-top: 5px;
    }
}


/* İnternetli başvuru modalı - kompakt adres ve kampanya seçim düzeltmeleri */
#basvuruModal .modal-content.modal-step-address-active,
#basvuruModal .modal-content.modal-step-internet-active {
    width: min(620px, 100%);
    max-height: calc(100dvh - 34px);
    padding: 18px 22px;
}

#basvuruModal .modal-content.modal-step-address-active h2,
#basvuruModal .modal-content.modal-step-internet-active h2 {
    font-size: 26px;
    margin: 0 0 6px;
}

#basvuruModal .modal-content.modal-step-address-active #modalPackageName,
#basvuruModal .modal-content.modal-step-internet-active #modalPackageName {
    margin: 0 0 12px;
    font-size: 14px;
}

#modalStepAddress:not(.modal-step-hidden) {
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
    gap: 8px 10px;
    align-items: center;
}

#modalStepAddress > .selected-payment-box,
#modalStepAddress > .address-help,
#modalStepAddress > #internetAdslBox,
#modalStepAddress > .selected-address-box,
#modalStepAddress > #adresError,
#modalStepAddress > .modal-step-buttons {
    grid-column: 1 / -1;
}

#modalStepAddress > label {
    margin: 0;
    font-size: 13px;
    line-height: 1.25;
}

#modalStepAddress .address-help,
#modalStepInternetOptions .address-help {
    margin: 6px 0;
    padding: 10px 12px;
    font-size: 12px;
    line-height: 1.45;
}

#internetAdslBox label {
    margin-top: 0;
}

#internetAdslBox input {
    height: 40px;
    font-size: 14px;
}

#modalStepAddress .address-combo {
    position: relative;
    min-width: 0;
}

#modalStepAddress .address-combo-toggle {
    width: 100%;
    height: 40px;
    border: 1px solid #d9dfe9;
    background: #fff;
    border-radius: 10px;
    padding: 0 34px 0 12px;
    text-align: left;
    font-weight: 700;
    font-size: 13px;
    color: #101828;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
}

#modalStepAddress .address-combo-toggle:after {
    content: '⌄';
    position: absolute;
    right: 14px;
    color: #5c2d91;
}

#modalStepAddress .address-combo.disabled .address-combo-toggle,
#modalStepAddress .address-combo-toggle:disabled {
    background: #f6f7f9;
    color: #98a2b3;
    cursor: not-allowed;
}

#modalStepAddress .address-select-native {
    display: none !important;
}

#modalStepAddress .address-combo-panel {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 4px);
    z-index: 999;
    background: #fff;
    border: 1px solid #d6bbfb;
    border-radius: 12px;
    box-shadow: 0 14px 34px rgba(16, 24, 40, .18);
    padding: 8px;
}

#modalStepAddress .address-combo-search {
    width: 100%;
    height: 36px;
    border: 1px solid #d9dfe9;
    border-radius: 9px;
    padding: 0 10px;
    font-size: 13px;
    margin-bottom: 8px;
}

#modalStepAddress .address-combo-options {
    max-height: 190px;
    overflow-y: auto;
    display: grid;
    gap: 4px;
}

#modalStepAddress .address-combo-option {
    border: 0;
    border-radius: 8px;
    background: #fff;
    padding: 9px 10px;
    text-align: left;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

#modalStepAddress .address-combo-option:hover,
#modalStepAddress .address-combo-option.active {
    background: #f3eafd;
    color: #5c2d91;
}

#modalStepAddress .modal-step-buttons,
#modalStepInternetOptions .modal-step-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 8px;
}

#modalStepInternetOptions:not(.modal-step-hidden) {
    display: block;
}

#modalStepInternetOptions .field-error-message {
    margin-bottom: 8px;
}

.internet-offer-list {
    display: grid;
    gap: 8px;
    margin-top: 10px;
}

.internet-offer-card {
    width: 100%;
    border: 1px solid #e2d8f6;
    background: #fff;
    border-radius: 13px;
    padding: 12px 14px;
    text-align: left;
    cursor: pointer;
    transition: .18s ease;
}

.internet-offer-card:hover,
.internet-offer-card.active {
    border-color: #6b35a8;
    background: #f7f2ff;
    box-shadow: 0 0 0 3px rgba(107, 53, 168, .12);
}

.internet-offer-main {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: flex-start;
}

.internet-offer-card strong {
    display: block;
    color: #1b1037;
    font-size: 14px;
    line-height: 1.25;
}

.internet-offer-card em {
    color: #5c2d91;
    font-style: normal;
    font-size: 14px;
    font-weight: 900;
    white-space: nowrap;
}

.internet-offer-card span,
.internet-offer-card small {
    display: block;
    margin-top: 5px;
    color: #667085;
    font-size: 12px;
    line-height: 1.35;
}

.internet-option-box {
    margin-top: 10px;
    border: 1px solid #eee7fb;
    background: #fbf9ff;
    border-radius: 13px;
    padding: 12px;
}

.internet-option-box h3 {
    font-size: 15px;
    margin: 0 0 8px;
}

.internet-check-row {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid #eee7fb;
    border-radius: 10px;
    padding: 9px 10px;
    margin: 6px 0;
    cursor: pointer;
}

.internet-check-row input {
    margin-top: 3px;
}

.internet-check-row strong {
    display: block;
    font-size: 13px;
    color: #1b1037;
}

.internet-check-row small {
    display: block;
    font-size: 11px;
    color: #667085;
    margin-top: 2px;
}

@media (max-width: 620px) {
    #basvuruModal .modal-content.modal-step-address-active,
    #basvuruModal .modal-content.modal-step-internet-active {
        width: 100%;
        padding: 16px;
    }

    #modalStepAddress:not(.modal-step-hidden) {
        display: block;
    }

    #modalStepAddress > label {
        display: block;
        margin-top: 8px;
        margin-bottom: 5px;
    }

    #modalStepAddress .address-combo-toggle,
    #internetAdslBox input {
        height: 39px;
    }

    #modalStepAddress .address-combo-panel {
        position: relative;
        top: 4px;
        margin-bottom: 8px;
    }

    #modalStepAddress .modal-step-buttons,
    #modalStepInternetOptions .modal-step-buttons {
        grid-template-columns: 1fr;
    }

    .internet-offer-main {
        display: block;
    }

    .internet-offer-card em {
        display: block;
        margin-top: 5px;
    }
}

/* İnternet akışı - son düzenlemeler */
.internet-adsl-alert {
    background: #fff8e6;
    border: 1px solid #ffd37a;
    border-radius: 12px;
    padding: 10px 12px;
    margin-bottom: 10px;
}

.internet-adsl-alert label {
    margin-top: 0 !important;
}

.internet-adsl-alert input {
    background: #fff;
}

.internet-extra-choice-wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 10px;
}

.internet-sub-choice-title {
    margin: 8px 0 4px;
    padding: 7px 10px;
    border-radius: 9px;
    background: #f8f4ff;
    color: #37115e;
    font-size: 13px;
    font-weight: 700;
}

.internet-sub-choice-title strong {
    float: right;
    color: #067647;
}

.internet-check-row-strong {
    background: #fffaf0 !important;
    border-color: #f6c35b !important;
}

.internet-offer-card .internet-offer-main strong {
    letter-spacing: -0.2px;
}

.internet-offer-card small {
    color: #56627a;
    line-height: 1.35;
}

.modal-content.modal-step-address-active,
.modal-content.modal-step-internet-active {
    max-height: 92vh;
}

.modal-content.modal-step-internet-active .internet-offer-list {
    max-height: 46vh;
    overflow: auto;
    padding-right: 4px;
}


/* İnternet kampanya seçim ekranı - kompakt iki kolon */
#basvuruModal .modal-content.modal-step-internet-active {
    width: min(96vw, 980px);
    max-width: 980px;
    max-height: 92vh;
    overflow: hidden;
    padding: 22px 24px 0;
}

#basvuruModal .modal-content.modal-step-internet-active #basvuruForm {
    display: flex;
    flex-direction: column;
    min-height: 0;
}

#basvuruModal .modal-content.modal-step-internet-active #modalStepInternetOptions {
    display: flex;
    flex-direction: column;
    min-height: 0;
}

#basvuruModal .modal-content.modal-step-internet-active .selected-payment-box,
#basvuruModal .modal-content.modal-step-internet-active .address-help,
#basvuruModal .modal-content.modal-step-internet-active #internetOptionsError,
#basvuruModal .modal-content.modal-step-internet-active #internetCampaignLoading {
    flex: 0 0 auto;
}

.internet-options-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(285px, .72fr);
    gap: 14px;
    align-items: start;
    min-height: 0;
    margin-top: 10px;
}

.internet-list-title {
    font-weight: 800;
    color: #220043;
    font-size: 14px;
    margin: 0 0 8px;
}

.internet-offers-column,
.internet-extras-column {
    min-width: 0;
}

.internet-offer-list {
    display: grid;
    gap: 8px;
    max-height: 48vh;
    overflow: auto;
    padding: 2px 6px 2px 0;
    margin: 0;
}

.internet-offer-card {
    width: 100%;
    text-align: left;
    border: 1px solid #ddd2ff;
    background: #fff;
    border-radius: 14px;
    padding: 11px 12px;
    cursor: pointer;
    transition: .15s ease;
}

.internet-offer-card.active {
    border-color: #663399;
    box-shadow: 0 0 0 2px rgba(102, 51, 153, .12);
    background: #faf7ff;
}

.internet-offer-main {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: flex-start;
}

.internet-offer-card strong {
    display: block;
    font-size: 15px;
    line-height: 1.25;
    color: #24123d;
}

.internet-offer-card em {
    white-space: nowrap;
    font-style: normal;
    font-weight: 900;
    font-size: 13px;
    color: #063;
}

.internet-offer-card span {
    display: block;
    color: #536079;
    font-size: 12px;
    margin-top: 5px;
}

.internet-offer-card small {
    display: block;
    color: #536079;
    font-size: 11.5px;
    margin-top: 4px;
}

.internet-extra-choice-wrap {
    display: grid;
    gap: 10px;
    max-height: 48vh;
    overflow: auto;
    padding: 2px 4px 2px 0;
}

.internet-option-box {
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 11px 12px;
    margin: 0;
    background: #fff;
}

.internet-option-box h3 {
    margin: 0 0 8px;
    font-size: 15px;
    color: #1b1230;
}

.internet-option-box .address-help {
    font-size: 12px;
    line-height: 1.45;
    padding: 9px 10px;
    margin-bottom: 8px;
}

.internet-check-row {
    display: flex;
    gap: 9px;
    align-items: flex-start;
    padding: 9px 10px;
    border: 1px solid #eee6ff;
    border-radius: 12px;
    margin-bottom: 7px;
    background: #fff;
    cursor: pointer;
}

.internet-check-row:hover {
    background: #fbf8ff;
}

.internet-check-row input {
    margin-top: 3px;
    flex: 0 0 auto;
}

.internet-check-row strong {
    display: block;
    color: #22133b;
    font-size: 13px;
    line-height: 1.25;
}

.internet-check-row small {
    display: block;
    color: #697386;
    font-size: 11.5px;
    margin-top: 2px;
}

.internet-check-row-strong {
    border-color: #d8c8ff;
    background: #fbf8ff;
}

.internet-sub-choice-title {
    font-weight: 800;
    color: #2a1746;
    font-size: 13px;
    margin: 9px 2px 7px;
}

.internet-sub-choice-title strong {
    color: #006b37;
}

.internet-option-box-error {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, .12);
}

.internet-step-footer {
    position: sticky;
    bottom: 0;
    z-index: 5;
    background: #fff;
    padding: 13px 0 16px;
    margin-top: 12px;
    border-top: 1px solid #eee;
}

#basvuruModal .modal-content.modal-step-internet-active .field-error-message {
    margin: 8px 0;
}

@media (max-width: 820px) {
    #basvuruModal .modal-content.modal-step-internet-active {
        width: 94vw;
        padding: 18px 16px 0;
        overflow: auto;
    }

    .internet-options-layout {
        grid-template-columns: 1fr;
    }

    .internet-offer-list,
    .internet-extra-choice-wrap {
        max-height: none;
        overflow: visible;
    }

    .internet-step-footer {
        position: sticky;
    }
}

.internet-sub-choice-required {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    color: #9a3412;
}

.internet-sub-choice-required strong {
    color: #7c2d12;
}


/* Ana sayfa kompakt kampanya kartları */
.packages-compact-home {
    padding: 22px 0 34px;
}

.packages-compact-home + .packages-compact-home {
    padding-top: 6px;
}

.compact-section-head {
    text-align: left;
    margin-bottom: 18px;
}

.compact-section-head h2 {
    font-size: 27px;
    margin-bottom: 5px;
}

.compact-section-head p {
    font-size: 14px;
}

.compact-package-grid,
.package-price-grid {
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 16px;
    max-width: 100%;
    justify-content: stretch;
    align-items: stretch;
}

.package-card.package-price-card,
.package-price-card {
    width: 100%;
    max-width: none;
    min-height: 0;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(15, 23, 42, .08);
    border-color: #e6e2ef;
}

.package-price-card .package-image,
.package-price-card .package-image img {
    height: 118px;
    min-height: 118px;
    max-height: 118px;
    flex-basis: 118px;
}

.package-price-card .package-body {
    padding: 13px 14px 15px;
}

.package-price-card h3 {
    font-size: 16px;
    line-height: 1.2;
    min-height: 38px;
    margin: 0 0 8px;
}

.package-pricing {
    min-height: 0;
    margin-bottom: 9px;
}

.price-row {
    gap: 4px;
    margin-bottom: 2px;
}

.price-row .price-text {
    font-size: 11px;
    width: 100%;
}

.price-row strong {
    font-size: 22px;
}

.price-row em {
    font-size: 13px;
}

.price-row-small strong {
    font-size: 17px;
}

.price-row-small em {
    font-size: 12px;
}

.package-floating-label {
    font-size: 10px;
    padding: 5px 8px;
}

.package-features,
.package-short-text {
    min-height: 0;
    font-size: 12px;
    line-height: 1.35;
    max-height: 92px;
    overflow: hidden;
}

.package-features li {
    padding-left: 18px;
    margin-bottom: 5px;
}

.package-features li::before {
    font-size: 15px;
    top: 0;
}

.package-detail-toggle {
    min-height: 0;
    padding-top: 7px;
    margin-top: 7px;
}

.package-detail-toggle summary {
    font-size: 12px;
}

.package-detail-content {
    font-size: 12px;
    max-height: 120px;
    overflow: auto;
}

.package-actions {
    margin-top: 9px;
    padding-top: 10px;
}

.package-apply-btn {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    height: 38px;
    border-radius: 10px;
    font-size: 13px;
}

@media (min-width: 1280px) {
    .container {
        width: min(1320px, 94%);
    }

    .compact-package-grid,
    .package-price-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

@media (max-width: 1180px) {
    .compact-package-grid,
    .package-price-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 920px) {
    .compact-package-grid,
    .package-price-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .packages-compact-home {
        padding: 16px 0 24px;
    }

    .compact-section-head {
        margin-bottom: 12px;
    }

    .compact-section-head h2 {
        font-size: 22px;
    }

    .compact-package-grid,
    .package-price-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        max-width: none;
    }

    .package-price-card .package-image,
    .package-price-card .package-image img {
        height: 92px;
        min-height: 92px;
        max-height: 92px;
        flex-basis: 92px;
    }

    .package-price-card .package-body {
        padding: 10px;
    }

    .package-price-card h3 {
        font-size: 13px;
        min-height: 31px;
        margin-bottom: 6px;
    }

    .price-row .price-text {
        font-size: 10px;
    }

    .price-row strong {
        font-size: 18px;
    }

    .package-features,
    .package-short-text {
        font-size: 11px;
        max-height: 58px;
    }

    .package-detail-toggle {
        display: none;
    }

    .package-apply-btn {
        height: 34px;
        font-size: 12px;
    }
}


/* Kampanya kart görünüm düzeltmeleri - taglar, hizalama, açılır özellikler */
.packages-compact-home .package-section-head,
.compact-section-head,
.package-section-head {
    text-align: center;
}

.packages-compact-home .package-section-head > div,
.compact-section-head > div,
.package-section-head > div {
    width: 100%;
}

.package-card.package-price-card,
.package-price-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.package-price-card .package-image {
    position: relative;
}

/* Etiketler artık görsel üzerinde değil, fiyatın altında renkli tag olarak gösteriliyor. */
.package-floating-label {
    display: none !important;
}

.package-price-card .package-body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    height: auto;
}

.package-price-card h3 {
    height: 58px;
    min-height: 58px;
    max-height: 58px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: center;
}

.package-pricing {
    height: 72px;
    min-height: 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    margin-bottom: 8px;
}

.price-row .price-text {
    line-height: 1.22;
}

.package-tag-list {
    min-height: 48px;
    max-height: 54px;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: center;
    gap: 5px;
    margin: 2px 0 8px;
}

.package-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 20px;
    padding: 4px 8px;
    border-radius: 999px;
    font-size: 10.5px;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: .01em;
    text-transform: uppercase;
    text-align: center;
    border: 1px solid transparent;
}

.package-tag-1 {
    background: #f3e8ff;
    color: #5b21b6;
    border-color: #d8b4fe;
}

.package-tag-2 {
    background: #e0f2fe;
    color: #075985;
    border-color: #7dd3fc;
}

.package-tag-3 {
    background: #dcfce7;
    color: #166534;
    border-color: #86efac;
}

.package-tag-4 {
    background: #fff7ed;
    color: #9a3412;
    border-color: #fed7aa;
}

.package-collapsible-area {
    display: grid;
    gap: 6px;
    margin-top: 2px;
}

.package-card-toggle,
.package-detail-toggle,
.package-feature-toggle {
    border-top: 1px solid #e5e7eb;
    padding-top: 7px;
    min-height: 0;
    margin: 0;
}

.package-card-toggle summary,
.package-detail-toggle summary,
.package-feature-toggle summary {
    cursor: pointer;
    color: #5c2d91;
    font-weight: 900;
    font-size: 12px;
    line-height: 1.2;
    list-style: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.package-card-toggle summary::-webkit-details-marker,
.package-detail-toggle summary::-webkit-details-marker,
.package-feature-toggle summary::-webkit-details-marker {
    display: none;
}

.package-card-toggle summary::before,
.package-detail-toggle summary::before,
.package-feature-toggle summary::before {
    content: "▾";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #5c2d91;
    color: #fff;
    width: 15px;
    height: 15px;
    border-radius: 3px;
    font-size: 10px;
    line-height: 1;
}

.package-card-toggle[open] summary::before,
.package-detail-toggle[open] summary::before,
.package-feature-toggle[open] summary::before {
    content: "▴";
}

.package-toggle-content {
    margin-top: 8px;
    color: #667085;
    font-size: 12px;
    line-height: 1.45;
    max-height: 150px;
    overflow: auto;
    padding-right: 4px;
}

.package-features,
.package-features-collapsed,
.package-short-text {
    min-height: 0 !important;
    max-height: none !important;
    overflow: visible !important;
    font-size: 12px;
    line-height: 1.38;
}

.package-features li {
    margin-bottom: 6px;
}

.package-actions {
    margin-top: auto;
    padding-top: 12px;
}

.package-apply-btn {
    margin-top: 0;
}

@media (min-width: 1280px) {
    .compact-package-grid,
    .package-price-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        align-items: stretch;
    }
}

@media (max-width: 1180px) {
    .compact-package-grid,
    .package-price-grid {
        align-items: stretch;
    }
}

@media (max-width: 680px) {
    .package-price-card h3 {
        height: 48px;
        min-height: 48px;
        max-height: 48px;
        -webkit-line-clamp: 3;
    }

    .package-pricing {
        height: 62px;
        min-height: 62px;
        margin-bottom: 6px;
    }

    .package-tag-list {
        min-height: 42px;
        max-height: 46px;
        gap: 4px;
        margin-bottom: 7px;
    }

    .package-tag {
        font-size: 9px;
        padding: 3px 6px;
        min-height: 18px;
    }

    .package-detail-toggle,
    .package-feature-toggle,
    .package-card-toggle {
        display: block !important;
    }

    .package-card-toggle summary,
    .package-detail-toggle summary,
    .package-feature-toggle summary {
        font-size: 11px;
    }

    .package-toggle-content {
        max-height: 120px;
        font-size: 11px;
    }

    .package-actions {
        padding-top: 9px;
    }
}


/* Slider sabit yükseklik düzeltmesi
   Amaç: Slider görsellerinin oranı farklı olsa bile sayfa aşağı-yukarı zıplamasın. */

   .top-slider-track {
    position: relative;
    height: clamp(120px, 13vw, 185px);
    overflow: hidden;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 12px 30px rgba(20, 16, 45, .14);
    background: #26083f;
}

.top-slide {
    position: absolute;
    inset: 0;
    display: block !important;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s ease;
    line-height: 0;
}

.top-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.top-slide picture,
.top-banner-img {
    width: 100%;
    height: 100%;
    display: block;
}

.top-banner-img {
    max-width: none;
    object-fit: cover;
    object-position: center center;
    border-radius: 0;
    box-shadow: none;
}

.top-slider-dots,
.top-slider-arrow {
    z-index: 5;
}

@media (max-width: 768px) {
    .top-slider-track {
        height: clamp(155px, 42vw, 260px);
        border-radius: 0;
    }

    .top-banner-img {
        object-position: center center;
    }
}


/* Slider oran / kırpılma düzeltmesi
   Önceki sabit yükseklik kısa kaldığı için görsel ortadan kırpılıyordu.
   Bu override slider alanını 1920x500 banner oranına yaklaştırır ve sayfa zıplamasını engeller. */

   .top-banner .top-slider-track {
    position: relative;
    height: clamp(220px, 18vw, 315px) !important;
    overflow: hidden;
    border-radius: 0 0 20px 20px;
    background: #26083f;
    box-shadow: 0 12px 30px rgba(20, 16, 45, .14);
}

.top-banner .top-slide {
    position: absolute;
    inset: 0;
    display: block !important;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s ease;
    line-height: 0;
}

.top-banner .top-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.top-banner .top-slide picture,
.top-banner .top-banner-img {
    width: 100%;
    height: 100%;
    display: block;
}

.top-banner .top-banner-img {
    max-width: none;
    object-fit: cover;
    object-position: center center;
    border-radius: 0;
    box-shadow: none;
}

.top-banner .top-slider-dots,
.top-banner .top-slider-arrow {
    z-index: 5;
}

@media (max-width: 768px) {
    .top-banner .top-slider-track {
        height: clamp(170px, 54vw, 300px) !important;
        border-radius: 0;
    }

    .top-banner .top-banner-img {
        object-position: center center;
    }
}


/* Slider tam görünüm düzeltmesi
   - Görseller farklı boyutta olsa bile alan yüksekliği sabit kalır.
   - object-fit: contain kullanıldığı için görsel üstten/alttan kırpılmaz.
   - Önceki slider yükseklik / cover kodlarının üzerine yazması için en alta eklenmelidir. */

   .top-banner .container {
    position: relative !important;
}

.top-slider-track {
    position: relative !important;
    width: 100% !important;
    aspect-ratio: 1920 / 500 !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: hidden !important;
    border-radius: 0 0 20px 20px !important;
    background: #26083f !important;
    box-shadow: 0 12px 30px rgba(20, 16, 45, .14) !important;
}

.top-slide {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    line-height: 0 !important;
}

.top-slide.active {
    display: block !important;
}

.top-slide picture {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
}

.top-banner-img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    max-height: none !important;
    object-fit: contain !important;
    object-position: center center !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: #26083f !important;
}

/* Ok ve noktalar yeni sabit alanın üzerinde kalsın */
.top-slider-arrow,
.top-slider-dots {
    z-index: 6 !important;
}

@media (max-width: 768px) {
    .top-banner {
        padding: 0 0 14px !important;
    }

    .top-banner .container {
        width: 100% !important;
    }

    .top-slider-track {
        aspect-ratio: 16 / 9 !important;
        border-radius: 0 !important;
    }

    .top-banner-img {
        object-fit: contain !important;
        object-position: center center !important;
        border-radius: 0 !important;
    }
}
/* İnternetli başvuru mobil UX düzeltmeleri
   Bu dosyayı assets/css/style.css dosyasının en altına ekleyin. */

   .package-churn-note {
    margin: 0 auto 8px;
    width: fit-content;
    max-width: 100%;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    color: #9a3412;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 11px;
    line-height: 1.2;
    font-weight: 900;
    text-align: center;
}

.internet-churn-strong-warning {
    background: #fff1f2;
    border: 1px solid #fda4af;
    color: #9f1239;
    border-radius: 12px;
    padding: 10px 12px;
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 1.45;
    font-weight: 800;
}

.internet-churn-strong-warning strong {
    display: block;
    color: #881337;
    font-size: 14px;
    margin-bottom: 3px;
}

.internet-adsl-alert-strong {
    background: #fff7ed !important;
    border-color: #fb923c !important;
    box-shadow: 0 0 0 3px rgba(251, 146, 60, .10);
}

.internet-mobile-stepper,
.internet-selected-summary {
    display: none;
}

.internet-selected-summary {
    background: #f0fdf4;
    border: 1px solid #86efac;
    border-radius: 13px;
    padding: 9px 11px;
    margin: 8px 0 10px;
    color: #14532d;
}

.internet-selected-summary strong {
    display: block;
    font-size: 12px;
    margin-bottom: 2px;
}

.internet-selected-summary span {
    display: block;
    font-weight: 900;
    font-size: 13px;
}

.internet-selected-summary small {
    display: block;
    margin-top: 2px;
    color: #166534;
    font-size: 11px;
}

@media (max-width: 820px) {
    body.site-body.modal-open {
        overflow: hidden;
    }

    #basvuruModal.modal.active {
        padding: 0 !important;
        align-items: stretch !important;
        justify-content: stretch !important;
    }

    #basvuruModal .modal-content,
    #basvuruModal .modal-content.modal-step-address-active,
    #basvuruModal .modal-content.modal-step-internet-active,
    #basvuruModal .modal-content.modal-step-info-active {
        width: 100vw !important;
        max-width: 100vw !important;
        height: 100dvh !important;
        max-height: 100dvh !important;
        margin: 0 !important;
        border-radius: 0 !important;
        border-top-width: 5px !important;
        padding: 16px 14px 0 !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
    }

    #basvuruModal .close {
        position: sticky;
        top: 0;
        float: right;
        z-index: 20;
        background: #fff;
        border-radius: 999px;
        width: 34px;
        height: 34px;
        line-height: 30px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 3px 12px rgba(15, 23, 42, .10);
    }

    #basvuruModal .modal-content h2 {
        font-size: 22px !important;
        margin: 0 42px 4px 0 !important;
        line-height: 1.15;
    }

    #modalPackageName {
        font-size: 13px !important;
        margin-bottom: 10px !important;
    }

    #modalStepAddress:not(.modal-step-hidden) {
        display: block !important;
    }

    #modalStepAddress .selected-payment-box,
    #modalStepInternetOptions .selected-payment-box,
    #modalStepInfo .selected-payment-box {
        position: sticky;
        top: 0;
        z-index: 12;
        margin: 0 -2px 10px !important;
        padding: 9px 10px !important;
        border-radius: 13px !important;
        background: #f4efff !important;
        box-shadow: 0 4px 14px rgba(92, 45, 145, .08);
    }

    #modalStepAddress > label {
        display: block !important;
        margin: 9px 0 5px !important;
        font-size: 12px !important;
        color: #2b1744;
    }

    #modalStepAddress .address-combo {
        margin-bottom: 6px !important;
    }

    #modalStepAddress .address-combo-toggle {
        height: 42px !important;
        min-height: 42px !important;
        font-size: 13px !important;
        border-radius: 11px !important;
        background: #fff !important;
    }

    #modalStepAddress .address-combo-panel {
        position: relative !important;
        top: 4px !important;
        z-index: 30 !important;
        margin-bottom: 8px !important;
        max-height: 48dvh;
        overflow: hidden;
    }

    #modalStepAddress .address-combo-options {
        max-height: 34dvh !important;
        overflow-y: auto !important;
    }

    #internetAdslBox {
        padding: 11px 12px !important;
        border-radius: 14px !important;
        margin: 9px 0 !important;
    }

    #internetAdslBox input {
        height: 46px !important;
        font-weight: 800;
        border-color: #fb923c;
        background: #fff !important;
    }

    .internet-mobile-stepper {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 5px;
        margin: 8px 0 10px;
    }

    .internet-mobile-stepper span {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 30px;
        border-radius: 999px;
        background: #f2f4f7;
        color: #667085;
        font-size: 10.5px;
        line-height: 1.1;
        font-weight: 900;
        text-align: center;
        padding: 5px 4px;
    }

    .internet-mobile-stepper span.active {
        background: #5c2d91;
        color: #fff;
    }

    .internet-selected-summary {
        display: block;
    }

    #basvuruModal .modal-content.modal-step-internet-active #basvuruForm,
    #basvuruModal .modal-content.modal-step-internet-active #modalStepInternetOptions {
        display: block !important;
    }

    .internet-options-layout {
        display: block !important;
        margin-top: 8px !important;
    }

    .internet-list-title {
        position: sticky;
        top: 49px;
        z-index: 10;
        background: #fff;
        padding: 7px 0 6px;
        margin: 0 0 6px !important;
        border-bottom: 1px solid #eee7fb;
    }

    .internet-offer-list,
    .internet-extra-choice-wrap {
        max-height: none !important;
        overflow: visible !important;
        padding: 0 !important;
    }

    .internet-offer-card {
        padding: 12px 13px !important;
        margin-bottom: 8px;
        border-radius: 14px !important;
    }

    .internet-offer-card.active {
        border-color: #5c2d91 !important;
        background: #f7f2ff !important;
        box-shadow: 0 0 0 3px rgba(92, 45, 145, .13) !important;
    }

    .internet-offer-main {
        display: grid !important;
        grid-template-columns: 1fr auto;
        align-items: start;
        gap: 8px;
    }

    .internet-offer-card strong {
        font-size: 14px !important;
    }

    .internet-offer-card em {
        font-size: 12px !important;
        padding: 4px 7px;
        border-radius: 999px;
        background: #ecfdf3;
        color: #047857 !important;
    }

    .internet-extras-column {
        margin-top: 12px;
    }

    .internet-option-box {
        margin: 10px 0 !important;
        padding: 12px !important;
        border-radius: 15px !important;
        background: #fff !important;
        box-shadow: 0 4px 14px rgba(15, 23, 42, .05);
    }

    .internet-option-box h3 {
        font-size: 16px !important;
        margin-bottom: 8px !important;
    }

    .internet-check-row {
        padding: 11px 10px !important;
        border-radius: 13px !important;
        margin-bottom: 8px !important;
    }

    .internet-check-row input {
        transform: scale(1.15);
        margin-top: 4px !important;
    }

    .internet-check-row strong {
        font-size: 13px !important;
    }

    .internet-step-footer,
    #modalStepAddress .modal-step-buttons {
        position: sticky !important;
        bottom: 0 !important;
        z-index: 15 !important;
        background: #fff !important;
        margin: 12px -14px 0 !important;
        padding: 10px 14px calc(10px + env(safe-area-inset-bottom)) !important;
        border-top: 1px solid #eef0f4;
        box-shadow: 0 -7px 18px rgba(15, 23, 42, .08);
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 9px !important;
    }

    #modalStepInfo button[type="submit"] {
        position: sticky;
        bottom: 0;
        z-index: 15;
        margin: 12px 0 0 !important;
        height: 48px !important;
    }
}

@media (max-width: 420px) {
    .internet-mobile-stepper span {
        font-size: 9.5px;
    }

    #basvuruModal .modal-content,
    #basvuruModal .modal-content.modal-step-address-active,
    #basvuruModal .modal-content.modal-step-internet-active,
    #basvuruModal .modal-content.modal-step-info-active {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    .internet-step-footer,
    #modalStepAddress .modal-step-buttons {
        margin-left: -12px !important;
        margin-right: -12px !important;
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
}


/* ADSL No uyarısı - alert yerine özel modal */
.adsl-warning-dialog {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease;
}

.adsl-warning-dialog.active {
    opacity: 1;
    pointer-events: auto;
}

.adsl-warning-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 8, 32, .58);
    backdrop-filter: blur(3px);
}

.adsl-warning-box {
    position: relative;
    width: min(430px, 100%);
    background: #fff;
    border-radius: 22px;
    padding: 24px 22px 20px;
    box-shadow: 0 22px 70px rgba(15, 23, 42, .28);
    border-top: 6px solid #f59e0b;
    transform: translateY(10px) scale(.98);
    transition: transform .18s ease;
}

.adsl-warning-dialog.active .adsl-warning-box {
    transform: translateY(0) scale(1);
}

.adsl-warning-close {
    position: absolute;
    right: 13px;
    top: 9px;
    border: none;
    background: transparent;
    color: #475467;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.adsl-warning-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff7ed;
    color: #c2410c;
    border: 1px solid #fed7aa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 13px;
}

.adsl-warning-box h3 {
    margin: 0 0 9px;
    color: #1f1235;
    font-size: 22px;
    line-height: 1.2;
}

.adsl-warning-box p {
    margin: 0;
    color: #475467;
    font-size: 14px;
    line-height: 1.55;
}

.adsl-warning-box p strong {
    color: #9a3412;
}

.adsl-warning-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 18px;
}

.adsl-warning-actions button {
    min-height: 44px;
    border-radius: 12px;
    border: none;
    font-family: inherit;
    font-weight: 900;
    cursor: pointer;
    padding: 10px 12px;
}

.adsl-warning-edit {
    background: #5c2d91;
    color: #fff;
}

.adsl-warning-continue {
    background: #fff7ed;
    color: #9a3412;
    border: 1px solid #fed7aa !important;
}

@media (max-width: 520px) {
    .adsl-warning-dialog {
        align-items: flex-end;
        padding: 12px;
    }

    .adsl-warning-box {
        width: 100%;
        border-radius: 22px 22px 16px 16px;
        padding: 22px 18px 18px;
    }

    .adsl-warning-box h3 {
        font-size: 19px;
    }

    .adsl-warning-box p {
        font-size: 13px;
    }

    .adsl-warning-actions {
        grid-template-columns: 1fr;
    }
}


/* Kampanya kartı tag görünüm düzeltmesi
   Amaç: Churn/ADSL uyarısı ve çoklu etiketlerde alttaki tagların kesilmesini engellemek.
   Bu kodu assets/css/style.css dosyasının en altına ekleyin. */

   .package-tag-list {
    min-height: 0 !important;
    max-height: none !important;
    height: auto !important;
    overflow: visible !important;
    display: flex !important;
    flex-wrap: wrap !important;
    align-content: flex-start !important;
    justify-content: center !important;
    gap: 5px 6px !important;
    margin: 6px 0 10px !important;
    padding: 0 2px !important;
}

.package-tag {
    flex: 0 1 auto !important;
    max-width: 100% !important;
    white-space: normal !important;
    line-height: 1.15 !important;
}

.package-churn-note {
    margin: 0 auto 8px !important;
    max-width: 100% !important;
    white-space: normal !important;
}

.package-churn-note + .package-tag-list {
    margin-top: 8px !important;
}

.package-collapsible-area {
    margin-top: 6px !important;
    clear: both !important;
}

.package-card.package-price-card,
.package-price-card {
    overflow: hidden;
}

.package-price-card .package-body {
    overflow: visible !important;
}

@media (max-width: 680px) {
    .package-tag-list {
        max-height: none !important;
        min-height: 0 !important;
        gap: 4px 5px !important;
        margin: 5px 0 8px !important;
    }

    .package-tag {
        font-size: 8.5px !important;
        padding: 3px 5px !important;
        min-height: 17px !important;
    }

    .package-churn-note {
        font-size: 9.5px !important;
        padding: 5px 8px !important;
        margin-bottom: 6px !important;
    }
}


/* Kampanya kartı başlık altı hediye / kampanya badge alanı
   Bu kodu assets/css/style.css dosyasının en altına ekleyin. */

   .package-gift-badge {
    width: fit-content;
    max-width: 100%;
    margin: 0 auto 9px;
    padding: 7px 11px;
    border-radius: 999px;
    background: linear-gradient(90deg, #fff7ed, #ffedd5);
    border: 1px solid #fdba74;
    color: #9a3412;
    font-size: 11px;
    line-height: 1.18;
    font-weight: 900;
    text-align: center;
    box-shadow: 0 5px 14px rgba(251, 146, 60, .14);
}

.package-gift-badge::before {
    content: "🎁";
    margin-right: 5px;
}

@media (max-width: 680px) {
    .package-gift-badge {
        padding: 6px 8px;
        margin-bottom: 7px;
        font-size: 9.5px;
        line-height: 1.15;
    }
}


/* Güvenli 4'lü kart + daha okunaklı görsel düzeltmesi
   Sadece grid kolon sayısı ve kart görsel yüksekliği değişir.
   Tag, hediye badge, ADSL uyarısı, slider ve modal yapısına dokunmaz. */

   @media (min-width: 1200px) {
    .compact-package-grid,
    .package-price-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
        gap: 18px !important;
        align-items: stretch !important;
    }

    .package-price-card .package-image,
    .package-price-card .package-image img {
        height: 155px !important;
        min-height: 155px !important;
        max-height: 155px !important;
        flex-basis: 155px !important;
    }
}

@media (min-width: 921px) and (max-width: 1199px) {
    .compact-package-grid,
    .package-price-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 16px !important;
    }

    .package-price-card .package-image,
    .package-price-card .package-image img {
        height: 145px !important;
        min-height: 145px !important;
        max-height: 145px !important;
        flex-basis: 145px !important;
    }
}

@media (min-width: 681px) and (max-width: 920px) {
    .compact-package-grid,
    .package-price-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 14px !important;
    }

    .package-price-card .package-image,
    .package-price-card .package-image img {
        height: 145px !important;
        min-height: 145px !important;
        max-height: 145px !important;
        flex-basis: 145px !important;
    }
}

@media (max-width: 680px) {
    .compact-package-grid,
    .package-price-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
    }

    .package-price-card .package-image,
    .package-price-card .package-image img {
        height: 105px !important;
        min-height: 105px !important;
        max-height: 105px !important;
        flex-basis: 105px !important;
    }
}

/* Kampanya kart görselleri - kırpmadan daha büyük / okunaklı */
@media (min-width: 921px) {
    .compact-package-grid,
    .package-price-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
        gap: 22px !important;
    }
}

/* Kart görsel alanını büyüt, görseli kırpma */
.package-price-card .package-image {
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    flex: 0 0 auto !important;
    aspect-ratio: 16 / 9 !important;
    background: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
}

/* Görsel kırpılmadan tam otursun */
.package-price-card .package-image img {
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    max-height: none !important;
    object-fit: contain !important;
    object-position: center center !important;
    background: #ffffff !important;
    display: block !important;
}

/* Daha küçük ekranlarda 2 veya 3 kart düzeni bozulmasın */
@media (max-width: 920px) {
    .compact-package-grid,
    .package-price-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 520px) {
    .compact-package-grid,
    .package-price-grid {
        grid-template-columns: 1fr !important;
    }

    .package-price-card .package-image {
        aspect-ratio: 16 / 9 !important;
    }
}

/* Mobil alt bardaki FORM butonunu kaldır */
@media (max-width: 768px) {
    .mobile-bar .mobile-cta-form {
        display: none !important;
    }

    .mobile-bar {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Mobil alt bar: Ara | WhatsApp ayraçlı görünüm */
@media (max-width: 768px) {
    .mobile-bar {
        position: relative;
    }

    .mobile-bar::after {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 1px;
        height: 26px;
        background: #d9d9d9;
        border-radius: 2px;
    }

    .mobile-bar a,
    .mobile-bar .mobile-cta-call,
    .mobile-bar .mobile-cta-whatsapp {
        position: relative;
        z-index: 1;
    }
}

/* Mobil alt bar düzeltme: fixed yapı korunsun, FORM gizli, Ara | WhatsApp arası çizgi */
@media (max-width: 768px) {
    .mobile-bar {
        position: fixed !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        height: 68px !important;
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        z-index: 45 !important;
        background: #fff !important;
        border-top: 1px solid var(--border) !important;
        box-shadow: 0 -8px 24px rgba(15, 23, 42, .10) !important;
    }

    .mobile-bar::after {
        display: none !important;
        content: none !important;
    }

    .mobile-bar .mobile-cta-form {
        display: none !important;
    }

    .mobile-bar .mobile-cta-whatsapp {
        border-left: 1px solid #eee7f6 !important;
    }
}

/* Mobil alt bar: Ara ve WhatsApp arasına sabit orta ayraç */
@media (max-width: 768px) {
    .mobile-bar {
        position: fixed !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        height: 68px !important;
        background: #fff !important;
        z-index: 45 !important;
        border-top: 1px solid var(--border) !important;
        box-shadow: 0 -8px 24px rgba(15, 23, 42, .10) !important;
    }

    .mobile-bar .mobile-cta-form {
        display: none !important;
    }

    .mobile-bar::before {
        content: "" !important;
        position: absolute !important;
        left: 50% !important;
        top: 14px !important;
        bottom: 14px !important;
        width: 1px !important;
        background: #e2d6ef !important;
        z-index: 10 !important;
        pointer-events: none !important;
    }

    .mobile-bar .mobile-cta-item {
        position: relative !important;
        z-index: 11 !important;
    }
}

/* Mobil alt bar: FORM gizli, Ara | WhatsApp arası net orta çizgi */
@media (max-width: 768px) {
    .mobile-bar {
        position: fixed !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        height: 68px !important;
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        z-index: 45 !important;
        border-top: 1px solid var(--border) !important;
        box-shadow: 0 -8px 24px rgba(15, 23, 42, .10) !important;

        background:
            linear-gradient(
                to right,
                #ffffff 0%,
                #ffffff calc(50% - 1px),
                #d7c3ee calc(50% - 1px),
                #d7c3ee calc(50% + 1px),
                #ffffff calc(50% + 1px),
                #ffffff 100%
            ) !important;
    }

    .mobile-bar .mobile-cta-form {
        display: none !important;
    }

    .mobile-bar .mobile-cta-item,
    .mobile-bar a,
    .mobile-bar button {
        background: transparent !important;
    }

    .mobile-bar::before,
    .mobile-bar::after {
        display: none !important;
        content: none !important;
    }
}

/* Footer - yasal uyarı / yetkili bayi odaklı koyu görünüm */
.footer.footer-legal-mode {
    background: #111315 !important;
    color: #aab2c0 !important;
    padding: 28px 0 20px !important;
    margin-top: auto !important;
    border-top: 1px solid rgba(255,255,255,.08) !important;
}

.footer-legal-mode .container {
    width: min(1180px, 92%) !important;
}

.footer-legal-text {
    text-align: center;
    max-width: 1040px;
    margin: 0 auto;
    font-size: 13px;
    line-height: 1.75;
}

.footer-legal-text p {
    margin: 0 0 14px;
    color: #aab2c0;
}

.footer-legal-text strong {
    color: #d7dce7;
    font-weight: 900;
}

.footer-quick-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 22px;
    margin: 18px auto 0;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,.08);
    max-width: 1040px;
}

.footer-quick-links a {
    color: #d7dce7;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
}

.footer-quick-links a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-legal-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    margin-top: 20px;
    color: #c3cad7;
    font-size: 13px;
    font-weight: 800;
}

@media (max-width: 768px) {
    .footer.footer-legal-mode {
        padding: 24px 0 92px !important;
    }

    .footer-legal-text {
        font-size: 12px;
        line-height: 1.65;
        text-align: center;
    }

    .footer-quick-links {
        gap: 9px 14px;
        margin-top: 16px;
        padding-top: 14px;
    }

    .footer-quick-links a {
        font-size: 12px;
    }

    .footer-legal-bottom {
        display: grid;
        grid-template-columns: 1fr;
        text-align: center;
        gap: 8px;
        font-size: 12px;
    }
}
/* SMS OTP doğrulama modalı */
.sms-otp-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: rgba(21, 8, 36, .62);
    backdrop-filter: blur(5px);
}

.sms-otp-modal-overlay.active {
    display: flex;
}

.sms-otp-modal {
    width: min(96vw, 520px);
    height: min(88vh, 720px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 24px 70px rgba(12, 8, 22, .28);
}

.sms-otp-modal-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px 12px;
    border-bottom: 1px solid #eadff6;
    background: linear-gradient(135deg, #f8f1ff, #ffffff);
}

.sms-otp-modal-head strong {
    display: block;
    color: #331056;
    font-size: 18px;
    margin-bottom: 4px;
}

.sms-otp-modal-head p {
    margin: 0;
    color: #6b5b7c;
    font-size: 13px;
    line-height: 1.35;
}

.sms-otp-close {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: #efe4fa;
    color: #4a1c75;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.sms-otp-status {
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 700;
    color: #4c2a6f;
    background: #fbf8ff;
    border-bottom: 1px solid #eadff6;
}

.sms-otp-frame {
    flex: 1;
    width: 100%;
    border: 0;
    background: #fff;
}

.sms-otp-fallback {
    padding: 10px 14px;
    text-align: center;
    font-size: 12px;
    color: #6b5b7c;
    background: #fbf8ff;
    border-top: 1px solid #eadff6;
}

.sms-otp-fallback a {
    color: #5b2c90;
    font-weight: 800;
    text-decoration: none;
}

.sms-otp-open {
    overflow: hidden;
}

@media (max-width: 600px) {
    .sms-otp-modal-overlay {
        padding: 8px;
        align-items: flex-end;
    }

    .sms-otp-modal {
        width: 100%;
        height: 92vh;
        border-radius: 18px 18px 0 0;
    }

    .sms-otp-modal-head {
        padding: 14px 14px 10px;
    }

    .sms-otp-modal-head strong {
        font-size: 16px;
    }

    .sms-otp-modal-head p,
    .sms-otp-status {
        font-size: 12px;
    }
}
