*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 20px; }

:root {
    --bg:           #eef4ff;
    --surface:      #ffffff;
    --surface2:     #f5f8ff;
    --border:       #dde6f5;
    --border-focus: #3b82f6;
    --text:         #0f1f3d;
    --text-body:    #334155;
    --muted:        #64748b;
    --muted2:       #94a3b8;
    --primary:      #2563eb;
    --primary-bg:   #eff6ff;
    --primary-hover:#1d4ed8;
    --green:        #059669;
    --green-bg:     #ecfdf5;
    --warm:         #ea580c;
    --shadow-sm:    0 1px 2px rgba(15,31,61,0.05), 0 0 0 1px rgba(15,31,61,0.04);
    --shadow:       0 2px 8px rgba(15,31,61,0.07), 0 0 0 1px rgba(15,31,61,0.04);
    --shadow-md:    0 8px 24px rgba(15,31,61,0.1), 0 0 0 1px rgba(15,31,61,0.04);
    --radius:       18px;
    --radius-sm:    11px;
    --radius-xs:    8px;
    --space:        20px;   /* Tüm dış kenar boşlukları bu değeri kullanır */
    --col-gap:      24px;   /* Kolon arası boşluk */
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    height: 100vh;
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
}

.page-wrap {
    max-width: 1320px;
    margin: 0 auto;
    height: 100vh;
    display: flex;
    flex-direction: column;
}


/* ═══════════════════════════════════════
   SITE LAYOUT (İki kolon)
═══════════════════════════════════════ */
.site-layout {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) 2fr;
    flex: 1;
    overflow: hidden;
    gap: var(--col-gap);
    padding: var(--space) 0;
}

/* ─── Sol panel ─── */
.site-left {
    border: 1px solid var(--border);
    background: var(--surface);
    overflow-y: auto;
    scrollbar-width: none;
    border-radius: 24px;
    box-shadow: var(--shadow);
    margin-left: var(--space);
}
.site-left::-webkit-scrollbar { display: none; }

.site-left-inner {
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.hero-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.hero-cloud { font-size: 2.2rem; line-height: 1; }
.hero-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -1px;
    line-height: 1;
}
.hero-dot { color: var(--muted2); font-weight: 600; }

.hero-tagline {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
    letter-spacing: -0.2px;
}

.hero-desc {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 28px;
    font-weight: 500;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.feature-icon {
    font-size: 1.2rem;
    width: 32px;
    height: 32px;
    background: var(--primary-bg);
    border-radius: var(--radius-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    line-height: 1;
}

.feature-item strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 2px;
}

.feature-item span {
    font-size: 0.78rem;
    color: var(--muted);
    font-weight: 500;
    line-height: 1.5;
}

.left-footer {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    border-radius: var(--radius-sm);
    padding: 11px 20px;
    font-size: 0.88rem;
    font-weight: 700;
    width: fit-content;
    transition: background 0.15s;
}
.btn-contact:hover { background: var(--primary-hover); }
.btn-contact i { width: 15px; height: 15px; }

.left-credit {
    font-size: 0.75rem;
    color: var(--muted2);
    font-weight: 500;
}

/* ─── Sağ panel (Hava uygulaması) ─── */
.site-right {
    padding: 0 var(--space) 40px 0;
    overflow-y: auto;
    scrollbar-width: none;
    height: 100%;
}
.site-right::-webkit-scrollbar { display: none; }

#app { max-width: 100%; }

/* ─── App header (sağ içindeki) ─── */
.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 18px;
    box-shadow: var(--shadow-sm);
}

.app-header-left {}


/* ═══════════════════════════════════════
   UTILITIES
═══════════════════════════════════════ */
.hidden { display: none !important; }
.greeting { font-size: 0.72rem; font-weight: 600; color: var(--muted); letter-spacing: 0.3px; text-transform: uppercase; margin-bottom: 2px; }
.header-city { font-size: 1.1rem; font-weight: 800; color: var(--text); letter-spacing: -0.3px; }

.empty-state { text-align: center; padding: 60px 20px; color: var(--muted); }
.empty-icon { font-size: 3.5rem; margin-bottom: 16px; }
.empty-state p { margin-bottom: 24px; font-size: 0.95rem; font-weight: 500; }

/* ─── Skeleton ─── */
.skeleton {
    background: linear-gradient(90deg, #e8eef8 25%, #f0f5ff 50%, #e8eef8 75%);
    background-size: 200% 100%;
    animation: shimmer 1.4s infinite;
    border-radius: var(--radius);
    margin-bottom: 10px;
}
.skeleton.tall   { height: 200px; }
.skeleton.medium { height: 140px; }
.skeleton.short  { height: 100px; }
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* ═══════════════════════════════════════
   CARDS
═══════════════════════════════════════ */
.card {
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 20px;
    margin-bottom: 10px;
    border: 1px solid var(--border);
}

/* ─── Decision card ─── */
.decision-card { padding: 0; overflow: hidden; border-top: 3px solid var(--primary); }

.decision-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 13px 18px 12px; border-bottom: 1px solid var(--border); background: var(--surface2);
}

.ai-badge {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 0.72rem; font-weight: 800; color: var(--primary);
    text-transform: uppercase; letter-spacing: 0.8px;
}
.ai-badge i { width: 13px; height: 13px; }
.decision-city-label { font-size: 0.78rem; color: var(--muted); font-weight: 500; }

.decision-skeleton { padding: 16px 18px 12px; display: flex; flex-direction: column; gap: 10px; }

.sk { height: 11px; border-radius: 6px; background: linear-gradient(90deg, #e8eef8 25%, #f0f5ff 50%, #e8eef8 75%); background-size: 200% 100%; animation: shimmer 1.4s infinite; }
.sk.w-3\/4 { width: 75%; }
.sk.w-1\/2 { width: 50%; }
.sk.w-2\/3 { width: 66%; }

.decision-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1px; background: var(--border); border-bottom: 1px solid var(--border); }

.d-item { background: var(--surface); padding: 14px 10px 12px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 4px; }
.d-item.umbrella-yes { background: #fff7ed; }
.d-item.umbrella-no  { background: var(--green-bg); }
.d-icon-wrap { margin-bottom: 2px; }
.d-emoji { font-size: 1.4rem; line-height: 1; }
.d-label { font-size: 0.63rem; font-weight: 700; color: var(--muted2); text-transform: uppercase; letter-spacing: 0.6px; }
.d-val { font-size: 0.77rem; font-weight: 600; color: var(--text-body); line-height: 1.4; }
.d-summary { padding: 14px 18px 16px; font-size: 0.87rem; color: var(--muted); line-height: 1.65; font-weight: 500; }

.planner-card { padding: 20px; }
.planner-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.planner-item {
    padding: 0;
}
.planner-label {
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 10px;
}
.planner-text {
    font-size: 0.87rem;
    color: var(--muted);
    line-height: 1.65;
    font-weight: 500;
    padding-top: 10px;
    border-top: 1px solid var(--border);
}

/* ─── Current weather ─── */
.current-card { padding: 22px 20px 16px; }
.current-main { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 16px; }
.temp-main { font-size: 4rem; font-weight: 800; color: var(--text); line-height: 1; letter-spacing: -4px; }
.weather-desc { font-size: 1rem; font-weight: 700; color: var(--text-body); margin-top: 8px; }
.feels-like { font-size: 0.82rem; color: var(--muted); font-weight: 500; margin-top: 3px; }
.weather-icon-big { font-size: 3.6rem; line-height: 1; }
.divider { height: 1px; background: var(--border); margin-bottom: 14px; }

.current-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.current-chips + .current-chips { margin-top: 8px; }
.chip { display: inline-flex; align-items: center; gap: 6px; background: var(--surface2); border: 1px solid var(--border); color: var(--text-body); font-size: 0.8rem; font-weight: 600; padding: 6px 12px; border-radius: 20px; }
.chip i { width: 14px; height: 14px; color: var(--primary); flex-shrink: 0; }
.uv-low      { background: #f0fdf4 !important; border-color: #86efac !important; color: #166534 !important; }
.uv-moderate { background: #fefce8 !important; border-color: #fde047 !important; color: #854d0e !important; }
.uv-high     { background: #fff7ed !important; border-color: #fdba74 !important; color: #9a3412 !important; }
.uv-very-high{ background: #fef2f2 !important; border-color: #fca5a5 !important; color: #991b1b !important; }
.uv-extreme  { background: #fdf4ff !important; border-color: #d8b4fe !important; color: #6b21a8 !important; }

/* ─── Section label ─── */
.section-label { display: flex; align-items: center; gap: 7px; font-size: 0.72rem; font-weight: 800; color: var(--muted); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 14px; }
.section-label i { width: 14px; height: 14px; color: var(--primary); flex-shrink: 0; }

/* ─── Hourly ─── */
.hourly-scroll { display: flex; gap: 7px; overflow-x: auto; padding-bottom: 4px; scrollbar-width: none; }
.hourly-scroll::-webkit-scrollbar { display: none; }

.hour-item { flex-shrink: 0; width: 60px; background: var(--surface2); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 10px 0 9px; display: flex; flex-direction: column; align-items: center; gap: 5px; }
.hour-item.now { background: var(--primary-bg); border-color: #93c5fd; }
.hour-item.rain { background: #fff7ed; border-color: #fed7aa; }
.h-time { font-size: 0.68rem; font-weight: 700; color: var(--muted); }
.hour-item.now .h-time { color: var(--primary); }
.h-icon { font-size: 1.25rem; line-height: 1; }
.h-temp { font-size: 0.83rem; font-weight: 800; color: var(--text); }
.h-rain { font-size: 0.65rem; font-weight: 700; color: var(--warm); }
.h-rain-empty { height: 14px; }
.h-hum { font-size: 0.63rem; font-weight: 600; color: var(--muted); }
.h-hum-empty { height: 12px; }
.h-uv { font-size: 0.6rem; font-weight: 800; padding: 1px 4px; border-radius: 4px; }
.h-uv-empty { height: 14px; }

/* ─── Forecast ─── */
#forecast-list { display: flex; flex-direction: column; }
.forecast-row { display: flex; align-items: center; padding: 10px 0; gap: 10px; border-bottom: 1px solid var(--border); }
.forecast-row:last-child { border-bottom: none; }
.forecast-row.weekend .f-day { color: var(--primary); }
.f-date { width: 65px; font-size: 0.78rem; font-weight: 500; color: var(--muted2); flex-shrink: 0; }
.f-day { width: 75px; font-size: 0.82rem; font-weight: 700; color: var(--text); flex-shrink: 0; }
.f-icon { font-size: 1.25rem; width: 32px; text-align: center; }
.f-desc { flex: 1; font-size: 0.78rem; font-weight: 500; color: var(--muted); }
.f-rain { font-size: 0.75rem; font-weight: 700; color: var(--primary); width: 38px; text-align: right; }
.f-rain.low { color: var(--muted2); }
.f-temps { display: flex; gap: 8px; }
.f-max { font-size: 0.88rem; font-weight: 800; color: var(--text); min-width: 28px; text-align: right; }
.f-min { font-size: 0.82rem; font-weight: 500; color: var(--muted2); min-width: 28px; text-align: right; }
.forecast-row { flex-wrap: wrap; }
.f-extra { width: 100%; display: flex; gap: 6px; padding: 5px 0 2px; }
.f-extra-item { font-size: 0.7rem; font-weight: 700; padding: 2px 7px; border-radius: 6px; background: var(--surface2); border: 1px solid var(--border); color: var(--muted); }
.f-sun { color: var(--warm) !important; }
.f-wind { color: var(--primary) !important; }

/* ═══════════════════════════════════════
   İLETİŞİM SAYFASI
═══════════════════════════════════════ */
.contact-page { padding: 48px var(--space) 80px; flex: 1; overflow-y: auto; scrollbar-width: none; }
.contact-page::-webkit-scrollbar { display: none; }

.terms-page { padding: 48px var(--space) 80px; flex: 1; overflow-y: auto; scrollbar-width: none; }
.terms-page::-webkit-scrollbar { display: none; }

.contact-hero { margin-bottom: 40px; }
.contact-title { font-size: 2.2rem; font-weight: 800; color: var(--text); letter-spacing: -1px; margin-bottom: 8px; }
.contact-subtitle { font-size: 1rem; color: var(--muted); font-weight: 500; }

.contact-grid { display: grid; grid-template-columns: 340px 1fr; gap: 32px; align-items: start; }

.terms-hero { margin-bottom: 40px; }

.terms-badge {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--primary-bg);
    color: var(--primary);
    font-size: 0.76rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.terms-grid {
    display: grid;
    grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
    gap: 32px;
    align-items: start;
}

.terms-summary {
    position: sticky;
    top: 24px;
}

.terms-summary-card,
.terms-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: var(--shadow-sm);
}

.terms-summary-card {
    padding: 22px;
}

.terms-summary-card p {
    color: var(--muted);
    font-size: 0.86rem;
    line-height: 1.7;
    margin-top: 10px;
}

.terms-summary-list {
    list-style: none;
    margin-top: 16px;
    padding-left: 0;
    color: var(--text-body);
    display: grid;
    gap: 10px;
    font-size: 0.84rem;
    line-height: 1.6;
}

.terms-summary-list li {
    position: relative;
    padding-left: 28px;
}

.terms-summary-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--green);
    font-weight: 800;
}

.terms-content {
    display: grid;
    gap: 18px;
}

.terms-card {
    padding: 24px 24px 22px;
}

.terms-card h2 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 12px;
    letter-spacing: -0.2px;
}

.terms-card p {
    color: var(--text-body);
    font-size: 0.88rem;
    line-height: 1.75;
}

.terms-card p + p {
    margin-top: 12px;
}

.contact-info { display: flex; flex-direction: column; gap: 20px; }

.contact-info-item { display: flex; gap: 14px; align-items: flex-start; }

.ci-icon {
    width: 40px; height: 40px; background: var(--primary-bg);
    border: 1px solid #bfdbfe; border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; color: var(--primary);
}
.ci-icon i { width: 18px; height: 18px; }
.ci-label { font-size: 0.72rem; font-weight: 700; color: var(--muted2); text-transform: uppercase; letter-spacing: 0.6px; margin-bottom: 3px; }
.ci-value { font-size: 0.9rem; font-weight: 600; color: var(--text-body); text-decoration: none; }
a.ci-value:hover { color: var(--primary); }

.contact-form {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 0.82rem; font-weight: 700; color: var(--text); }

.form-input {
    width: 100%;
    padding: 11px 14px;
    background: var(--surface2);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: 0.9rem;
    font-family: inherit;
    font-weight: 500;
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
    appearance: none;
}
.form-input:focus { border-color: var(--border-focus); box-shadow: 0 0 0 3px rgba(37,99,235,0.1); background: var(--surface); }
.form-input::placeholder { color: var(--muted2); font-weight: 400; }

.form-select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }

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

.btn-submit {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--primary); color: #fff; border: none;
    border-radius: var(--radius-sm); padding: 13px 24px;
    font-size: 0.92rem; font-weight: 700; font-family: inherit;
    cursor: pointer; transition: background 0.15s; width: fit-content;
}
.btn-submit:hover { background: var(--primary-hover); }
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; }
.btn-submit i { width: 16px; height: 16px; }

.form-status { padding: 12px 16px; border-radius: var(--radius-sm); font-size: 0.88rem; font-weight: 600; }
.form-status.success { background: var(--green-bg); color: var(--green); border: 1px solid #a7f3d0; }
.form-status.error { background: #fff1f2; color: #9f1239; border: 1px solid #fecdd3; }

/* ═══════════════════════════════════════
   TOAST
═══════════════════════════════════════ */
#toast {
    position: fixed;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--text);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 30px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s, transform 0.2s;
    z-index: 999;
    white-space: nowrap;
    max-width: calc(100vw - 40px);
    text-align: center;
}
#toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.site-footer {
    flex-shrink: 0;
    padding: 20px var(--space);
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.footer-brand-name {
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.3px;
}
.footer-brand-dot { color: var(--muted2); font-weight: 600; }

.footer-copy {
    flex: 1;
    font-size: 0.78rem;
    color: var(--muted2);
    font-weight: 500;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-left: auto;
    gap: 2px;
    flex-wrap: wrap;
}
.footer-link {
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--muted);
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 5px 12px;
    border-radius: var(--radius-xs);
    transition: all 0.15s;
}
.footer-link:hover {
    color: var(--primary);
    background: var(--primary-bg);
    border-color: #bfdbfe;
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 900px) {
    body {
        height: auto;
        min-height: 100vh;
        overflow: auto;
    }

    .page-wrap {
        height: auto;
        min-height: 100vh;
    }

    .site-layout { grid-template-columns: 1fr; }

    .site-layout {
        flex: 0 0 auto;
        overflow: visible;
        width: 100%;
    }

    .site-left {
        position: static;
        height: auto;
        border-radius: 18px;
        margin-bottom: 12px;
        margin-left: var(--space);
        margin-right: var(--space);
        min-width: 0;
    }

    .site-left-inner {
        padding: 28px 20px;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 24px;
        align-items: flex-start;
    }

    .hero-logo { margin-bottom: 0; }
    .hero-title { font-size: 1.6rem; }
    .hero-desc { display: none; }
    .feature-list { display: none; }
    .left-footer { margin-top: 0; padding-top: 0; border-top: none; flex-direction: row; align-items: center; }

    .site-right {
        height: auto;
        overflow: visible;
        padding: 0 var(--space) 24px;
        min-width: 0;
    }
    #app { max-width: 100%; }

    .contact-grid { grid-template-columns: 1fr; }
    .contact-page,
    .terms-page {
        padding: 28px var(--space) 36px;
    }

    .contact-hero,
    .terms-hero {
        margin-bottom: 24px;
    }

    .contact-title {
        font-size: 1.8rem;
        line-height: 1.1;
        letter-spacing: -0.8px;
    }

    .contact-subtitle {
        font-size: 0.92rem;
        line-height: 1.6;
    }

    .terms-grid { grid-template-columns: 1fr; }
    .terms-summary { position: static; }
    .terms-grid { gap: 32px; }
    .terms-summary-card,
    .terms-card,
    .contact-form {
        padding: 20px;
        border-radius: 18px;
    }

    .terms-card h2 {
        font-size: 0.96rem;
        line-height: 1.35;
    }

    .terms-card p,
    .terms-summary-card p,
    .terms-summary-list {
        font-size: 0.84rem;
        line-height: 1.65;
    }

    .site-footer {
        align-items: flex-start;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 8px;
        padding: 18px var(--space) 28px;
        background: rgba(255, 255, 255, 0.72);
        backdrop-filter: blur(10px);
    }

    .footer-copy {
        width: 100%;
        font-size: 0.74rem;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 6px;
    }

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

@media (max-width: 480px) {
    .temp-main { font-size: 4rem; }
    .f-desc { display: none; }
    .f-date { width: 55px; font-size: 0.74rem; }
    .f-day { width: 72px; font-size: 0.78rem; letter-spacing: -0.2px; }

    .contact-page,
    .terms-page {
        padding: 22px var(--space) 28px;
    }

    .contact-title {
        font-size: 1.5rem;
        letter-spacing: -0.6px;
    }

    .contact-subtitle {
        font-size: 0.86rem;
    }

    .terms-badge {
        font-size: 0.7rem;
        padding: 6px 10px;
    }

    .terms-summary-card,
    .terms-card,
    .contact-form {
        padding: 20px;
        border-radius: 16px;
    }

    .terms-summary-list {
        padding-left: 20px;
        gap: 8px;
    }

    .site-footer {
        padding: 16px var(--space) 24px;
        gap: 8px 12px;
    }

    .footer-brand-name { font-size: 0.92rem; }
    .footer-link { padding: 5px 10px; font-size: 0.78rem; }
}

/* ═══════════════════════════════════════
   HAVA UYARI BANNER
═══════════════════════════════════════ */
.weather-alert {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    border-radius: var(--radius);
    margin-bottom: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.4;
    border: 1px solid;
    animation: alert-slide-in 0.25s ease;
}
@keyframes alert-slide-in {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}
.weather-alert.alert-danger  { background: #fff1f2; border-color: #fecdd3; color: #9f1239; }
.weather-alert.alert-warning { background: #fff7ed; border-color: #fed7aa; color: #9a3412; }
.alert-icon { font-size: 1.2rem; flex-shrink: 0; }
.alert-text { flex: 1; }
.alert-dismiss {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1;
    color: inherit;
    opacity: 0.6;
    padding: 2px 4px;
    flex-shrink: 0;
    transition: opacity 0.15s;
}
.alert-dismiss:hover { opacity: 1; }

