/* ===================================================
   Tasimaks Tur Yönetimi Sayfası - Özel Stiller
   =================================================== */
:root {
    --product-accent: #3f9271;
    --product-accent-dark: #32765b;
    --product-accent-light: rgba(130, 205, 176, 0.16);
}

/* ===== HERO - İki Kolon ===== */
.product-hero {
    background: linear-gradient(135deg, #3f9271 0%, #5faf8f 60%, #82cdb0 100%);
    padding: 140px 0 80px;
    color: #fff;
    text-align: left;
    overflow: hidden;
    position: relative;
}

.product-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(130, 205, 176, 0.28) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text { z-index: 2; }

.hero-text .eyebrow {
    justify-content: flex-start !important;
    color: rgba(255,255,255,0.85);
    margin-bottom: 1.25rem;
}

.product-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.18;
    margin-bottom: 1.25rem;
    color: #fff !important;
}

.product-hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-start !important;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.hero-visual svg {
    width: 100%;
    max-width: 460px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

/* ===== PAKET TABLOSU ===== */
.packages-section {
    padding: 100px 0;
    background: var(--mist, #F5F7FB);
}

.packages-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.packages-section .section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--ink, #0E1B2C) !important;
    margin-top: 0.75rem;
}

.packages-section .section-header p {
    color: var(--light-text, #6b7280);
    font-size: 1.05rem;
    margin-top: 0.5rem;
}

/* Web / Mobil Kartlar */
.product-type-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.product-type-card {
    background: #fff;
    border-radius: 24px;
    padding: 2.5rem 2rem;
    border: 1.5px solid #e5e7eb;
    box-shadow: 0 8px 24px -8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-type-card:hover {
    border-color: var(--product-accent);
    box-shadow: 0 16px 40px -12px rgba(63, 146, 113, 0.22);
    transform: translateY(-4px);
}

.card-type-label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--product-accent);
    margin-bottom: 1.5rem;
}

/* Telefon Mockup */
.phone-mockup-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 1.75rem;
}

.phone-mockup {
    width: 130px;
    height: 220px;
    background: #0E1B2C;
    border-radius: 22px;
    border: 3px solid #2d3f55;
    box-shadow: 0 12px 32px rgba(0,0,0,0.25), inset 0 0 0 1px rgba(255,255,255,0.06);
    position: relative;
    overflow: hidden;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 5px;
    background: #2d3f55;
    border-radius: 3px;
    z-index: 2;
}

.phone-screen {
    position: absolute;
    inset: 20px 5px 5px;
    background: var(--product-accent-light);
    border-radius: 14px;
    overflow: hidden;
    padding: 5px;
}

.phone-screen-inner {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--product-accent) 30%, #fff 30%);
    border-radius: 10px;
    position: relative;
}

.phone-screen-inner::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
}

.phone-screen-inner::after {
    content: '';
    position: absolute;
    top: 40px;
    left: 8px;
    right: 8px;
    height: 5px;
    background: rgba(130, 205, 176, 0.2);
    border-radius: 3px;
    box-shadow: 0 9px 0 rgba(130,205,176,0.13), 0 18px 0 rgba(130,205,176,0.1), 0 27px 0 rgba(130,205,176,0.07);
}

/* Browser Mockup */
.browser-mockup-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 1.75rem;
}

.browser-mockup {
    width: 240px;
    height: 160px;
    background: #fff;
    border-radius: 10px;
    border: 2px solid #e5e7eb;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    overflow: hidden;
}

.browser-bar {
    height: 28px;
    background: #f3f4f6;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    padding: 0 10px;
    gap: 5px;
}

.browser-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
}
.browser-dot:nth-child(1) { background: #ef4444; }
.browser-dot:nth-child(2) { background: #f59e0b; }
.browser-dot:nth-child(3) { background: #22c55e; }

.browser-url {
    flex: 1;
    height: 14px;
    background: #e5e7eb;
    border-radius: 7px;
    margin-left: 8px;
}

.browser-content {
    padding: 8px;
    background: #f9fafb;
    height: calc(100% - 28px);
}

.browser-content-inner {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--product-accent) 28%, #fff 28%);
    border-radius: 6px;
    position: relative;
}

.browser-content-inner::after {
    content: '';
    position: absolute;
    top: 36px;
    left: 8px;
    right: 8px;
    height: 5px;
    background: rgba(130, 205, 176, 0.16);
    border-radius: 3px;
    box-shadow: 0 9px 0 rgba(130,205,176,0.12), 0 18px 0 rgba(130,205,176,0.09), 0 27px 0 rgba(130,205,176,0.06);
}

/* Fiyat */
.card-price-box {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f3f4f6;
}

.card-price {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--ink, #0E1B2C);
    line-height: 1;
}

.card-price-period {
    font-size: 0.9rem;
    color: var(--light-text, #6b7280);
    font-weight: 500;
    margin-top: 0.3rem;
}

.card-price-note {
    font-size: 0.8rem;
    color: var(--product-accent);
    font-weight: 600;
    margin-top: 0.25rem;
}

/* Özellik Listesi */
.card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
    flex-grow: 1;
}

.card-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.5rem 0;
    font-size: 0.92rem;
    color: #374151;
    border-bottom: 1px solid #f9fafb;
}

.card-features li:last-child { border-bottom: none; }

.card-features li i {
    color: var(--product-accent);
    font-size: 0.85rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.card-btn {
    display: block;
    width: 100%;
    padding: 0.85rem 1rem;
    background: var(--product-accent);
    color: #fff !important;
    text-align: center;
    border-radius: 12px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none !important;
    transition: all 0.25s ease;
    margin-top: auto;
    border: none;
    cursor: pointer;
}

.card-btn:hover {
    background: var(--product-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(63, 146, 113, 0.22);
}

/* ===== EK MODÜLLER ===== */
.addons-section {
    padding: 80px 0 100px;
    background: #fff;
}

.addons-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.addons-heading h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--ink, #0E1B2C) !important;
    margin-bottom: 0.4rem;
}

.addons-heading p { color: var(--light-text, #6b7280); font-size: 1rem; }

.addon-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.addon-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.addon-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }

.addon-card {
    background: #fff;
    border: 1.5px solid #f3f4f6;
    border-radius: 18px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-align: center;
    align-items: center;
}

.addon-card:hover {
    border-color: var(--product-accent);
    background: var(--product-accent-light);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(63, 146, 113, 0.14);
}

.addon-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.3rem;
    color: var(--product-accent);
    background: var(--product-accent-light);
}

.addon-info h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink, #0E1B2C);
    margin-bottom: 0.2rem;
}

.addon-info p {
    font-size: 0.875rem;
    color: var(--light-text, #6b7280);
    margin-bottom: 0.4rem;
    line-height: 1.4;
}

.addon-price {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--product-accent);
}

/* Ek paket kartları servis sayfasıyla aynı görsel düzende */
.addon-card {
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 2rem 1.75rem;
    align-items: stretch;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.addon-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.addon-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.addon-info .addon-price {
    order: 1;
    display: block;
    font-family: var(--font-display);
    font-size: 2.1rem;
    font-weight: 800;
    line-height: 1;
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid #f3f4f6;
}

.addon-info p {
    order: 2;
    margin: 0;
    text-align: left;
    font-size: 0.9rem;
    line-height: 1.85;
    color: var(--light-text, #6b7280);
}

.addon-period {
    display: block;
    margin-bottom: 1rem;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--light-text, #6b7280);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.8;
}

.addon-price-box {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #f3f4f6;
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.addon-info .addon-price-box .addon-price {
    order: initial;
    margin: 0;
    padding: 0;
    border: 0;
}

.addon-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.addon-features li {
    font-size: 0.9rem;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.addon-features li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--product-accent);
}

/* Buton overrides */
.btn-primary {
    background-color: var(--product-accent) !important;
    border-color: var(--product-accent) !important;
    color: #fff !important;
    text-decoration: none !important;
}

.btn-primary:hover {
    background-color: var(--product-accent-dark) !important;
    border-color: var(--product-accent-dark) !important;
}

.product-hero .hero-buttons .btn-primary,
.product-hero .hero-buttons .btn-primary:hover,
.product-hero .hero-buttons .btn-primary:active {
    background-color: #ffffff !important;
    border-color: #ffffff !important;
    color: var(--product-accent) !important;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.45) !important;
}

.btn-ghost-white { text-decoration: none !important; }

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
    .hero-text .eyebrow { justify-content: center !important; }
    .hero-text p { max-width: 100%; margin: 0 auto 2rem; }
    .hero-buttons { justify-content: center !important; }
    .hero-visual svg { max-width: 320px; }
    .product-type-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .addon-grid { grid-template-columns: repeat(2, 1fr); }
    .addon-grid.cols-2 { max-width: 100%; }
}

@media (max-width: 640px) {
    .product-hero { padding: 104px 0 48px; }
    .product-hero p { font-size: 1rem; }
    .hero-visual svg { max-width: 280px; }
    .packages-section { padding: 52px 0; }
    .section-header { margin-bottom: 2rem; }
    .card-type-label { justify-content: center; }
    .product-type-card { padding: 1.75rem 1.25rem; }
    .card-features { font-size: 0.92rem; }
    .addon-grid, .addon-grid.cols-2 { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
    .addon-grid, .addon-grid.cols-2 { grid-template-columns: 1fr; }
    .product-hero { padding-top: 96px; }
    .hero-buttons a { width: 100%; }
}

/* Kullanıma açık transfer web ekranları */
.transfer-hero-screen { display: block; width: 100%; height: auto; filter: drop-shadow(0 20px 30px rgba(0,0,0,.2)); }
.transfer-package-title { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; margin-bottom: 1rem; }
.transfer-package-preview { display: flex; align-items: center; justify-content: center; height: 320px; margin-bottom: 1rem; }
.transfer-package-preview img { display: block; width: auto; max-width: 100%; height: 320px; object-fit: contain; }
a.transfer-package-preview { border-radius: 12px; cursor: zoom-in; }
a.transfer-package-preview:focus-visible { outline: 3px solid var(--product-accent); outline-offset: 4px; }
.transfer-package-status { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; color: var(--ink, #0E1B2C); line-height: 1.2; }
.packages-section .card-features { display: flex; flex-direction: column; gap: .5rem; text-align: left; }
.transfer-login-link { color: var(--product-accent-dark); }
