/*
|--------------------------------------------------------------------------
| Oluşturulma Tarihi : 03.07.2026
| Değişiklik Tarihi  : 03.07.2026
| Yaratan            : Özgür Elibol
| Dokümanın Amacı    : Giriş seçim ekranı ve iki ayrı hizmet sayfası için ek stil dosyasıdır.
|--------------------------------------------------------------------------
*/

/* GİRİŞ SEÇİM EKRANI */

.choice-home-body {
    min-height: 100vh;
    background: #07111f;
    overflow-x: hidden;
}

.choice-home {
    position: relative;
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 40px 18px;
    background:
        radial-gradient(circle at top left, rgba(249, 115, 22, 0.24), transparent 34%),
        radial-gradient(circle at bottom right, rgba(37, 99, 235, 0.24), transparent 34%),
        linear-gradient(135deg, #07111f 0%, #111827 55%, #1e293b 100%);
    overflow: hidden;
}

.choice-bg-orb {
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    filter: blur(8px);
    opacity: 0.32;
    animation: choiceFloat 8s ease-in-out infinite;
}

.choice-bg-orb-one {
    top: 8%;
    left: 6%;
    background: rgba(249, 115, 22, 0.42);
}

.choice-bg-orb-two {
    right: 6%;
    bottom: 8%;
    background: rgba(59, 130, 246, 0.38);
    animation-delay: -3s;
}

.choice-hero {
    position: relative;
    z-index: 2;
    width: min(1180px, 100%);
    text-align: center;
    color: #ffffff;
    animation: choiceFadeUp 0.9s ease both;
}

.choice-logo-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 999px;
    padding: 12px 20px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
    margin-bottom: 24px;
}

.choice-logo {
    height: 58px;
    width: auto;
    display: block;
}

.choice-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fbbf24;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 18px;
}

.choice-hero h1 {
    max-width: 880px;
    margin: 0 auto 18px;
    font-size: clamp(38px, 6vw, 76px);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.choice-hero p {
    max-width: 760px;
    margin: 0 auto 38px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 18px;
    line-height: 1.75;
}

.choice-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: 26px;
    max-width: 980px;
    margin: 0 auto;
}

.choice-card {
    position: relative;
    min-height: 360px;
    padding: 34px;
    border-radius: 34px;
    text-align: left;
    text-decoration: none;
    color: #ffffff;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
    transform: translateY(0);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    animation: choiceCardIn 0.9s ease both;
}

.choice-card:nth-child(2) {
    animation-delay: 0.15s;
}

.choice-card::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.92;
    transition: transform 0.4s ease;
}

.choice-social-card::before {
    background:
        linear-gradient(135deg, rgba(249, 115, 22, 0.94), rgba(190, 24, 93, 0.84)),
        url("../img/social/gastrozgur-phone.jpg") center/cover;
}

.choice-web-card::before {
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(37, 99, 235, 0.82)),
        url("../img/hero.jpg") center/cover;
}

.choice-card > * {
    position: relative;
    z-index: 2;
}

.choice-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 34px 100px rgba(0, 0, 0, 0.36);
    border-color: rgba(251, 191, 36, 0.65);
}

.choice-card:hover::before {
    transform: scale(1.08);
}

.choice-card-icon {
    display: inline-flex;
    width: 62px;
    height: 62px;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.18);
    font-size: 31px;
    margin-bottom: 24px;
}

.choice-card-kicker {
    display: block;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.choice-card strong {
    display: block;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.05;
    letter-spacing: -0.035em;
    margin-bottom: 18px;
}

.choice-card small {
    display: block;
    max-width: 430px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 28px;
}

.choice-card em {
    display: inline-flex;
    font-style: normal;
    font-weight: 900;
    color: #111827;
    background: #fbbf24;
    padding: 13px 18px;
    border-radius: 999px;
}

.choice-footer-mini {
    margin-top: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.choice-footer-mini a,
.choice-footer-mini span {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
}

.choice-footer-mini a:hover {
    color: #fbbf24;
}

@keyframes choiceFadeUp {
    from {
        opacity: 0;
        transform: translateY(26px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes choiceCardIn {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes choiceFloat {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(22px, -18px, 0) scale(1.06);
    }
}

/* HİZMET SAYFALARI */

.service-hero {
    padding-top: 150px;
}

.service-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.social-service-hero {
    background:
        radial-gradient(circle at top right, rgba(249, 115, 22, 0.18), transparent 34%),
        linear-gradient(135deg, #fff7ed 0%, #ffffff 62%, #f8fafc 100%);
}

.web-service-hero {
    background:
        radial-gradient(circle at top right, rgba(37, 99, 235, 0.14), transparent 34%),
        linear-gradient(135deg, #eff6ff 0%, #ffffff 62%, #f8fafc 100%);
}

.service-hero h1 {
    font-size: clamp(42px, 6vw, 74px);
    line-height: 1.02;
    letter-spacing: -0.045em;
    color: #111827;
    margin-bottom: 22px;
}

.service-hero p {
    color: #475569;
    font-size: 18px;
    line-height: 1.8;
    max-width: 720px;
    margin-bottom: 28px;
}

.service-visual-card {
    position: relative;
    background: #111827;
    color: #ffffff;
    border-radius: 34px;
    padding: 34px;
    box-shadow: 0 28px 80px rgba(15, 23, 42, 0.18);
    overflow: hidden;
}

.service-visual-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(251, 191, 36, 0.22), transparent 36%),
        radial-gradient(circle at bottom left, rgba(59, 130, 246, 0.18), transparent 36%);
}

.service-visual-card > * {
    position: relative;
    z-index: 2;
}

.service-visual-card img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.08);
    margin-bottom: 22px;
}

.web-visual-card img {
    object-fit: cover;
}

.service-visual-card strong {
    display: block;
    font-size: 28px;
    margin-bottom: 10px;
}

.service-visual-card p {
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
}

.service-split-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.service-focus-card {
    background: #ffffff;
    border-radius: 26px;
    padding: 28px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 16px 44px rgba(15, 23, 42, 0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-focus-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
}

.service-focus-card div {
    font-size: 34px;
    margin-bottom: 18px;
}

.service-focus-card h3 {
    font-size: 23px;
    color: #111827;
    margin-bottom: 12px;
}

.service-focus-card p {
    color: #64748b;
    line-height: 1.7;
}

.page-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 42px;
    align-items: center;
}

.page-feature-grid h2 {
    color: #ffffff;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.08;
    margin-bottom: 18px;
}

.page-feature-grid p {
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.8;
    font-size: 18px;
}

.page-feature-list div {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(251, 191, 36, 0.26);
    color: #ffffff;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.process-grid > div {
    background: #ffffff;
    border-radius: 28px;
    padding: 30px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.process-grid strong {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 18px;
    align-items: center;
    justify-content: center;
    background: #f97316;
    color: #ffffff;
    font-size: 22px;
    margin-bottom: 20px;
}

.process-grid h3 {
    color: #111827;
    font-size: 24px;
    margin-bottom: 10px;
}

.process-grid p {
    color: #64748b;
    line-height: 1.7;
}

.contact-form input[readonly] {
    background: #f8fafc;
    color: #334155;
    cursor: not-allowed;
}

@media (max-width: 1024px) {
    .choice-card-grid,
    .service-hero-grid,
    .page-feature-grid {
        grid-template-columns: 1fr;
    }

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

    .process-grid {
        grid-template-columns: 1fr;
    }

    .service-visual-card {
        max-width: 620px;
    }
}

@media (max-width: 768px) {
    .choice-home {
        padding: 28px 16px;
        align-items: start;
    }

    .choice-hero {
        padding-top: 24px;
    }

    .choice-logo {
        height: 46px;
    }

    .choice-card-grid {
        gap: 18px;
    }

    .choice-card {
        min-height: auto;
        padding: 28px;
        border-radius: 28px;
    }

    .choice-card strong {
        font-size: 32px;
    }

    .choice-footer-mini {
        flex-direction: column;
        gap: 6px;
    }

    .service-hero {
        padding-top: 125px;
    }

    .service-split-grid {
        grid-template-columns: 1fr;
    }

    .service-visual-card img {
        height: 230px;
    }
}


/* === PREMIUM GİRİŞ ÜST ALAN - RESİMDEKİ DÜZENE GÖRE === */

.choice-hero {
    padding-top: 10px;
}

.choice-premium-brand {
    width: min(1220px, 100%);
    margin: 0 auto 34px;
    display: grid;
    grid-template-columns: 430px 1px minmax(360px, 1fr);
    align-items: center;
    gap: 48px;
    text-align: left;
    animation: choiceFadeUp 0.9s ease both;
}

.choice-premium-logo-card {
    position: relative;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 26px 36px;
    border-radius: 58px;
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(2, 6, 23, 0.92));
    border: 1px solid rgba(251, 191, 36, 0.68);
    box-shadow:
        0 28px 80px rgba(0, 0, 0, 0.34),
        inset 0 0 0 1px rgba(255, 255, 255, 0.06),
        0 0 40px rgba(251, 191, 36, 0.10);
    overflow: hidden;
}

.choice-premium-logo-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(251, 191, 36, 0.22), transparent 32%),
        linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    opacity: 0.86;
}

.choice-premium-logo-card::after {
    content: "";
    position: absolute;
    left: 38px;
    right: 38px;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.9), transparent);
    box-shadow: 0 0 18px rgba(251, 191, 36, 0.9);
}

.choice-logo {
    position: relative;
    z-index: 2;
    width: auto;
    height: 82px;
    max-width: 330px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.26));
}

.choice-premium-divider {
    width: 1px;
    height: 154px;
    background:
        linear-gradient(180deg, transparent, rgba(251, 191, 36, 0.92), transparent);
    box-shadow:
        0 0 22px rgba(251, 191, 36, 0.65),
        0 0 54px rgba(249, 115, 22, 0.26);
}

.choice-premium-title {
    position: relative;
    padding: 8px 0;
}

.choice-premium-title::before,
.choice-premium-title::after {
    content: "";
    position: absolute;
    left: 0;
    width: min(620px, 100%);
    height: 1px;
    background: linear-gradient(90deg, rgba(251, 191, 36, 0.72), transparent);
}

.choice-premium-title::before {
    top: -18px;
}

.choice-premium-title::after {
    bottom: -18px;
}

.choice-premium-title strong {
    display: block;
    color: #fbbf24;
    font-size: clamp(32px, 4.5vw, 58px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-shadow: 0 0 24px rgba(251, 191, 36, 0.20);
}

.choice-premium-title span {
    display: block;
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(24px, 3.3vw, 42px);
    line-height: 1.1;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

/* Eski küçük üst başlık stilleri devre dışı */
.choice-logo-wrap,
.choice-brand-row,
.choice-brand-line,
.choice-eyebrow {
    margin-bottom: 0;
}

/* Ana başlığı premium alana göre biraz aşağı al */
.choice-hero h1 {
    margin-top: 10px;
}

@media (max-width: 1100px) {
    .choice-premium-brand {
        grid-template-columns: 360px 1px minmax(300px, 1fr);
        gap: 34px;
    }

    .choice-premium-logo-card {
        min-height: 132px;
        border-radius: 48px;
    }

    .choice-logo {
        height: 70px;
        max-width: 285px;
    }

    .choice-premium-divider {
        height: 132px;
    }
}

@media (max-width: 768px) {
    .choice-premium-brand {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 18px;
        margin-bottom: 26px;
        text-align: center;
    }

    .choice-premium-logo-card {
        width: min(330px, 100%);
        min-height: 104px;
        border-radius: 36px;
        padding: 20px 28px;
    }

    .choice-logo {
        height: 54px;
        max-width: 230px;
    }

    .choice-premium-divider {
        width: 220px;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.92), transparent);
    }

    .choice-premium-title::before,
    .choice-premium-title::after {
        left: 50%;
        transform: translateX(-50%);
        width: 280px;
    }

    .choice-premium-title strong {
        font-size: 24px;
        letter-spacing: 0.13em;
    }

    .choice-premium-title span {
        margin-top: 10px;
        font-size: 17px;
        letter-spacing: 0.14em;
    }

    .choice-hero h1 {
        margin-top: 4px;
    }
}
