/* ===========================
   GENEL TEMA & YAPI
   =========================== */

:root {
    --bg: #020617;
    --bg-soft: #020617;
    --card: rgba(15, 23, 42, 0.92);
    --border-soft: rgba(148, 163, 184, 0.35);
    --accent: #f97316;
    --accent-soft: rgba(249, 115, 22, 0.15);
    --accent-strong: #fb923c;
    --text-main: #e5e7eb;
    --text-muted: #9ca3af;
    --radius-lg: 22px;
    --radius-xl: 26px;
    --shadow-soft: 0 22px 60px rgba(15, 23, 42, 0.9);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(56, 189, 248, 0.10), transparent 55%),
        radial-gradient(circle at top right, rgba(249, 115, 22, 0.10), transparent 55%),
        radial-gradient(circle at bottom, rgba(79, 70, 229, 0.12), transparent 55%),
        var(--bg);
    color: var(--text-main);
    -webkit-font-smoothing: antialiased;
}

.page {
    max-width: 1120px;
    margin: 0 auto;
    padding: 24px 16px 72px;
}

/* Küçük ekranlar için genel yumuşatma */
@media (max-width: 768px) {
    .page {
        padding: 16px 14px 56px;
    }
}

/* ===========================
   LOADER
   =========================== */

.loader-overlay {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at top, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 1));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.4s ease;
}

.loader-inner {
    text-align: center;
    padding: 24px 32px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.8));
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.loader-logo {
    animation: logoSpinIn 0.9s ease-out;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.65);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: var(--accent-strong);
    background: radial-gradient(circle at top, rgba(249, 115, 22, 0.12), transparent);
    position: relative;
    overflow: hidden;
}

@keyframes logoSpinIn {
    0% {
        transform: scale(0.6) rotate(-25deg);
        opacity: 0;
    }
    60% {
        transform: scale(1.05) rotate(8deg);
        opacity: 1;
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.loader-logo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(248, 250, 252, 0.15), transparent);
    transform: translateX(-120%);
    animation: loader-shine 1.4s infinite;
}

.loader-text {
    font-weight: 600;
    letter-spacing: 0.04em;
    font-size: 14px;
    color: var(--text-main);
}

@keyframes loader-shine {
    to {
        transform: translateX(120%);
    }
}

/* ===========================
   NAVBAR
   =========================== */

.nav {
    position: sticky;
    top: 14px;
    z-index: 40;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 16px;
    margin-bottom: 32px;
    background: rgba(15, 23, 42, 0.92);
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(18px);
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.brand-icon {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.55);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--accent-strong);
    background:
        radial-gradient(circle at top, rgba(249, 115, 22, 0.16), transparent 60%),
        rgba(15, 23, 42, 1);
}

.brand-name {
    font-weight: 700;
    letter-spacing: 0.06em;
    font-size: 13px;
    text-transform: uppercase;
    color: #f9fafb;
}

.btn-nav {
    padding: 9px 18px;
    border-radius: 999px;
    border: 1px solid rgba(248, 250, 252, 0.18);
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    color: #0b1120;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 16px 30px rgba(249, 115, 22, 0.45);
    transition: transform 0.16s ease, box-shadow 0.16s ease, filter 0.16s ease;
    white-space: nowrap;
}

.btn-nav:hover {
    transform: translateY(-1px);
    box-shadow: 0 22px 40px rgba(249, 115, 22, 0.55);
    filter: brightness(1.05);
}

/* Küçük ekranlarda navbar */
@media (max-width: 640px) {
    .nav {
        position: static;
        border-radius: 18px;
        padding: 10px 12px;
    }

    .brand-name {
        font-size: 12px;
    }

    .btn-nav {
        padding-inline: 14px;
        font-size: 12px;
    }
}

/* ===========================
   HERO BÖLÜMÜ
   =========================== */

.hero {
    position: relative;
    margin-top: 18px;
    margin-bottom: 48px;
    padding: 26px 24px;
    border-radius: 32px;
    background:
        radial-gradient(circle at top left, rgba(248, 250, 252, 0.06), transparent 55%),
        radial-gradient(circle at bottom right, rgba(249, 115, 22, 0.22), transparent 55%),
        rgba(15, 23, 42, 0.98);
    border: 1px solid rgba(148, 163, 184, 0.38);
    box-shadow: var(--shadow-soft);
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
    gap: 28px;
    overflow: hidden;
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(42px);
    opacity: 0.7;
    pointer-events: none;
}

.hero::before {
    width: 260px;
    height: 260px;
    top: -110px;
    right: -80px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.35), transparent);
}

.hero::after {
    width: 220px;
    height: 220px;
    bottom: -120px;
    left: -70px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.25), transparent);
}

/* HERO hizalama & müsait rozeti */
.hero-text {
    text-align: center;
}

/* Rozeti tam ortaya al */
.badge-new {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    justify-content: center;
    margin: 0 auto 16px;
    padding: 5px 11px 5px 5px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-muted);
    background: radial-gradient(circle at left, rgba(22, 163, 74, 0.2), transparent 55%),
                rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(55, 65, 81, 0.9);
}

/* Yeşil nokta: daha ferah + kıpırdayan animasyon */
.badge-dot {
    width: 11px;
    height: 11px;
    border-radius: 999px;
    background: #22c55e;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.25);
    animation: badgePulse 1.6s ease-out infinite;
}

@keyframes badgePulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.25);
    }
    60% {
        transform: scale(1.15);
        box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 4px rgba(34, 197, 94, 0);
    }
}

/* Başlık */
.hero-title {
    font-size: clamp(30px, 4vw, 36px);
    line-height: 1.1;
    margin: 0 0 16px;
    letter-spacing: -0.03em;
    color: #f9fafb;
    text-align: center;
}

.hero-title .highlight {
    background: linear-gradient(120deg, #f97316, #fb923c, #fed7aa);
    -webkit-background-clip: text;
    color: transparent;
}

/* Alt başlık */
.hero-subtitle {
    margin: 0 auto;
    max-width: 520px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
    text-align: center;
}

/* HERO TAGS – ikon + text premium görünüm */
.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    margin: 22px 0 24px;
    justify-content: center;
}

.hero-tags span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid var(--border-soft);
    font-size: 12px;
    color: #cbd5f5;
    backdrop-filter: blur(12px);
}

/* İKON – text arası boşluk */
.hero-tags span i,
.hero-tags span .icon-space {
    margin-right: 4px;
}

/* CTA Butonları */
.hero-btns {
    margin-top: 10px;
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary,
.btn-submit {
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 18px;
    border: 1px solid transparent;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease, border-color 0.15s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    color: #0b1120;
    box-shadow: 0 18px 40px rgba(249, 115, 22, 0.55);
}

.btn-primary:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
    box-shadow: 0 22px 50px rgba(249, 115, 22, 0.65);
}

.btn-secondary {
    background: rgba(15, 23, 42, 0.9);
    border-color: rgba(148, 163, 184, 0.7);
    color: var(--text-main);
}

.btn-secondary:hover {
    border-color: rgba(249, 250, 251, 0.8);
    transform: translateY(-1px);
}

/* Form gönder butonu */
.btn-submit {
    width: 100%;
    justify-content: center;
    display: inline-flex;
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    color: #020617;
    box-shadow: 0 16px 40px rgba(249, 115, 22, 0.5);
}

.btn-submit:hover {
    transform: translateY(-1px);
    filter: brightness(1.04);
}

/* Sağdaki Kart (Nasıl Çalışır) */
.hero-card {
    text-align: center;
    position: relative;
    z-index: 1;
    border-radius: 24px;
    padding: 18px 18px 16px;
    background: linear-gradient(145deg,
        rgba(15, 23, 42, 0.96),
        rgba(15, 23, 42, 0.92)
    );
    border: 1px solid rgba(148, 163, 184, 0.45);
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
}

.card-head span {
    font-size: 13px;
    margin-bottom: 8px;
    font-weight: 600;
    color: #e5e7eb;
}

.card-head small {
    display: block;
    margin-top: 2px;
    margin-bottom: 8px;
    font-size: 11px;
    color: var(--text-muted);
}

/* Liste */
.hero-list {
    text-align: left;
    list-style: none;
    padding: 0;
    margin: 14px 0 16px;
}

.hero-list li {
    display: flex;
    gap: 10px;
    padding: 10px 0;
}

.hero-list .num {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.6);
    font-size: 11px;
    font-weight: 600;
    color: #e5e7eb;
}

.list-content b {
    font-size: 13px;
    color: #e5e7eb;
}

.list-content p {
    margin: 2px 0 0;
    font-size: 12px;
    color: var(--text-muted);
}

/* ESCROW kutusu */
.escrow-box {
    margin-top: 10px;
    padding: 10px 11px;
    border-radius: 16px;
    background: radial-gradient(circle at left, var(--accent-soft), transparent 60%);
    border: 1px dashed rgba(248, 250, 252, 0.35);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.escrow-icon {
    font-size: 18px;
}

.escrow-text strong {
    font-size: 13px;
    color: #fefce8;
}

.escrow-text p {
    margin: 2px 0 0;
    font-size: 12px;
    color: #f9fafb;
    opacity: 0.85;
}

/* HERO – mobil düzen */
@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 22px 18px;
        border-radius: 26px;
    }

    .hero-card {
        margin-top: 10px;
    }

    .hero-subtitle {
        font-size: 13px;
    }

    .hero-tags {
        justify-content: center;
    }
}

/* ===========================
   HİZMETLER (SERVICES)
   =========================== */

.section {
    margin-bottom: 56px;
}

/* Sadece Neler Yapıyoruz başlığını ortala ve daralt */
#services .section-head {
    text-align: center;
    max-width: 480px;
    margin: 0 auto 20px;
}

#services .section-head h2 {
    margin: 0 0 8px;
    font-size: 22px;
    letter-spacing: -0.02em;
    color: #f9fafb;
}

#services .section-head p {
    margin: 0;
    font-size: 13px;
    color: var(--text-muted);
}

/* Grid – kutuları ortaya al ve küçült */
#services .grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    max-width: 880px;   /* tam genişlik olmasın */
    margin: 0 auto;     /* ortaya gelsin */
}

@media (max-width: 900px) {
    #services .grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    #services .grid-3 {
        grid-template-columns: 1fr;
    }
}

/* Kartlar – küçültülmüş hal */
.box {
    position: relative;
    padding: 10px 10px 9px;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.94);
    border: 1px solid rgba(148, 163, 184, 0.32);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.7);
    transition: transform 0.14s ease, box-shadow 0.14s ease, border-color 0.14s ease, background 0.14s ease;
}

.box:hover {
    transform: translateY(-3px);
    border-color: rgba(248, 250, 252, 0.6);
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.95);
    background: rgba(15, 23, 42, 0.98);
}

.box-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.58);
    font-size: 14px;
    margin-bottom: 6px;
}

.box h3 {
    margin: 0 0 4px;
    font-size: 13px;
    color: #f9fafb;
}

.box p {
    margin: 0;
    font-size: 11px;
    line-height: 1.5;
    color: var(--text-muted);
}

/* Vurgulu kutu */
.highlight-box {
    border-color: rgba(249, 115, 22, 0.8);
    background: linear-gradient(140deg,
        rgba(15, 23, 42, 0.95),
        rgba(249, 115, 22, 0.12)
    );
}

/* Desktop’ta biraz daha küçült – kutular aşırı büyük görünmesin */
@media (min-width: 1024px) {
    #services .box {
        transform: scale(0.95);
    }

    #services .box:hover {
        transform: scale(0.98) translateY(-2px);
    }
}


/* ===========================
   İLETİŞİM BÖLÜMÜ
   =========================== */

.contact-area {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 26px;
    padding: 14px 12px;
    border-radius: 20px;
    background: rgba(15, 23, 42, 0.97);
    border: 1px solid rgba(148, 163, 184, 0.38);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.85);
}

.contact-text h2 {
    margin: 0 0 8px;
    font-size: 18px;
    color: #f9fafb;
}

/* Açıklama yazısı */
.contact-text p {
    margin: 0 0 14px;
    font-size: 12px;
    color: var(--text-muted);
}

/* Yeşil nokta – parlayan efekt */
.green-dot {
    display: inline-block;
    font-size: 14px;
    color: #22c55e;
    text-shadow: 0 0 6px rgba(34, 197, 94, 0.9);
    animation: greenGlow 1.8s ease-in-out infinite alternate;
}

@keyframes greenGlow {
    0% {
        text-shadow: 0 0 4px rgba(34, 197, 94, 0.7);
        transform: scale(1);
    }
    100% {
        text-shadow: 0 0 10px rgba(34, 197, 94, 1);
        transform: scale(1.08);
    }
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 4px;
}

.info-item {
    font-size: 13px;
    color: #e5e7eb;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Form kutusu */
.form-box {
    background: rgba(15, 23, 42, 0.98);
    border-radius: 16px;
    padding: 10px 10px 12px;
    border: 1px solid rgba(148, 163, 184, 0.4);
}

.form-box label {
    display: block;
    font-size: 12px;
    margin-bottom: 4px;
    color: #e5e7eb;
}

.form-box input,
.form-box textarea {
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(55, 65, 81, 0.9);
    background: rgba(15, 23, 42, 0.96);
    padding: 9px 11px;
    font-size: 13px;
    color: #e5e7eb;
    margin-bottom: 10px;
    outline: none;
    transition: border-color 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
    font-family: inherit;
}

.form-box textarea {
    min-height: 90px;
    resize: vertical;
}

.form-box input:focus,
.form-box textarea:focus {
    border-color: var(--accent-strong);
    box-shadow: 0 0 0 1px rgba(249, 115, 22, 0.45);
    background: rgba(15, 23, 42, 0.98);
}

.success-msg {
    margin-top: 10px;
    font-size: 12px;
    padding: 9px 10px;
    border-radius: 12px;
    background: rgba(22, 163, 74, 0.18);
    border: 1px solid rgba(22, 163, 74, 0.7);
    color: #bbf7d0;
}

/* İletişim - mobil */
@media (max-width: 900px) {
    .contact-area {
        grid-template-columns: 1fr;
        padding: 16px 14px;
    }
}

/* ===========================
   FOOTER
   =========================== */

footer {
    margin-top: 28px;
    text-align: center;
    font-size: 11px;
    color: var(--text-muted);
    opacity: 0.85;
}
