/* RESET & BASE */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg: #050608;
    --bg-soft: #0a0d13;
    --card: #080a0f;
    --accent: #f3b562;
    --text: #f7f7f7;
    --muted: rgba(255,255,255,0.65);
    --border-soft: rgba(255,255,255,0.06);
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    font-size: 15px;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 16px;
}

/* HEADER */

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(5, 6, 8, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(18px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}

.logo a {
    font-weight: 700;
    letter-spacing: 0.08em;
    font-size: 14px;
    text-transform: uppercase;
}

.logo span {
    color: var(--accent);
}

.nav {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
}

.nav a {
    opacity: 0.85;
}

.nav a:hover {
    opacity: 1;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    opacity: 0.8;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #f7f7f7;
    margin: 4px 0;
}

/* BUTTONS */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 9px 20px;
    border: 1px solid rgba(243, 181, 98, 0.7);
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    background: transparent;
}

.btn-small {
    padding: 6px 14px;
    font-size: 11px;
}

.btn-full {
    background: var(--accent);
    color: #050608;
    border-color: var(--accent);
}

.btn-ghost {
    border-color: rgba(255,255,255,0.35);
}

.btn:hover {
    transform: translateY(-1px);
}

/* HERO */

.hero {
    padding: 64px 0 40px;
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    gap: 40px;
    align-items: center;
}

.overline {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 10px;
}

.hero h1 {
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.1;
    margin-bottom: 16px;
}

.subtitle,
.lead {
    font-size: 15px;
    color: var(--muted);
}

.hero-actions {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-card {
    border-radius: 18px;
    padding: 20px;
    border: 1px solid var(--border-soft);
    background: radial-gradient(circle at top left, rgba(243,181,98,0.12), #090b10 55%);
    font-size: 13px;
}

.hero-card h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.hero-card ul {
    list-style: none;
    margin-bottom: 8px;
}

.hero-card li {
    margin-bottom: 4px;
}

.hero-note {
    font-size: 12px;
    color: var(--muted);
}

/* SECTIONS */

.section {
    padding: 40px 0;
}

.section-muted {
    background: var(--bg-soft);
}

.section-heading {
    margin-bottom: 24px;
}

.section-heading h2,
.section-heading h1 {
    font-size: 22px;
    margin-bottom: 6px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 18px;
}

.card {
    padding: 18px;
    border-radius: 18px;
    border: 1px solid var(--border-soft);
    background: linear-gradient(135deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    font-size: 14px;
}

.card h3 {
    font-size: 16px;
    margin-bottom: 6px;
}

.meta-list {
    list-style: none;
    margin-top: 8px;
    font-size: 12px;
    color: var(--muted);
}

/* STEPS */

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.step h3 {
    font-size: 15px;
    margin-bottom: 6px;
}

/* BLOG */

.post-date {
    font-size: 11px;
    color: var(--muted);
    margin-bottom: 4px;
}

.read-more {
    display: inline-block;
    margin-top: 6px;
    font-size: 12px;
    color: var(--accent);
}

.breadcrumbs {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.post-header h1 {
    font-size: 24px;
    margin-bottom: 6px;
}

.post-excerpt {
    color: var(--muted);
    margin-bottom: 16px;
}

.post-body {
    font-size: 15px;
}

.post-body h2 {
    font-size: 18px;
    margin: 18px 0 6px;
}

.post-body p {
    margin-bottom: 10px;
}

.post-lead {
    font-size: 16px;
    color: var(--muted);
    margin-bottom: 12px;
}

/* CONTACT */

.contact-section {
    padding: 48px 0 56px;
    border-top: 1px solid var(--border-soft);
}

.contact-inner {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 4fr);
    gap: 40px;
    align-items: start;
}

.contact-text h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.contact-text .subtitle {
    max-width: 420px;
}

.contact-form-wrapper {
    border-radius: 18px;
    border: 1px solid var(--border-soft);
    background: var(--card);
    padding: 20px;
}

.contact-tabs {
    display: flex;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 16px;
}

.contact-tab {
    flex: 1;
    border: none;
    background: transparent;
    color: rgba(255,255,255,0.7);
    padding: 8px 4px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
}

.contact-tab.active {
    color: var(--accent);
    border-bottom: 2px solid var(--accent);
}

.contact-form .field {
    margin-bottom: 12px;
    font-size: 13px;
}

.contact-form label,
.contact-form .label {
    display: block;
    margin-bottom: 4px;
    color: rgba(255,255,255,0.8);
    font-size: 12px;
}

.contact-form input,
.contact-form select {
    width: 100%;
    padding: 9px 10px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(8,10,15,0.9);
    color: #f7f7f7;
    font-size: 13px;
}

.field-row {
    display: flex;
    gap: 12px;
}

.field-phone-code {
    max-width: 130px;
    position: relative;
}

.field-phone-code select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 28px; /* space for arrow */
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='white' stroke-width='1.2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 10px 6px;
}

.phone-code-select {
    background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
    border-color: rgba(255,255,255,0.28);
    font-variant-numeric: tabular-nums;
}

.phone-code-select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 1px rgba(243,181,98,0.35);
}

.checkbox input {
    width: auto;
    margin-right: 8px;
}

.radio-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.radio-row input {
    margin-right: 4px;
    width: auto;
}

.form-note {
    font-size: 11px;
    color: var(--muted);
    margin-top: 8px;
}

.alert {
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 12px;
    margin-bottom: 10px;
}

.alert.success {
    background: rgba(56, 142, 60, 0.15);
    border: 1px solid rgba(76,175,80,0.6);
}

.alert.error {
    background: rgba(211,47,47,0.12);
    border: 1px solid rgba(239,83,80,0.8);
}

/* FOOTER */

.site-footer {
    border-top: 1px solid var(--border-soft);
    padding: 16px 0 24px;
    font-size: 12px;
    color: var(--muted);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

/* ADMIN */

.admin-body {
    background: var(--bg);
    color: var(--text);
}

.admin-login-wrapper {
    max-width: 360px;
    margin: 80px auto;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid var(--border-soft);
    background: var(--card);
}

.admin-header {
    border-bottom: 1px solid var(--border-soft);
    padding: 12px 0;
}

.admin-main {
    padding: 24px 16px;
}

.table-wrapper {
    overflow-x: auto;
}

.leads-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
}

.leads-table th,
.leads-table td {
    padding: 6px 8px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.leads-table th {
    text-align: left;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
}

/* UTILITY */

.narrow {
    max-width: 720px;
}

.lead {
    margin-bottom: 12px;
}

/* RESPONSIVE */

@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .hero {
        padding-top: 40px;
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        inset: 56px 0 auto;
        flex-direction: column;
        background: rgba(5,6,8,0.98);
        padding: 16px 18px 20px;
        transform: translateY(-130%);
        transition: transform 0.25s ease;
    }
    .nav.open {
        transform: translateY(0);
    }
    .nav-toggle {
        display: inline-flex;
    }
    .contact-inner {
        grid-template-columns: 1fr;
    }
    .field-row {
        flex-direction: column;
    }
    .footer-inner {
        flex-direction: column;
    }
    .hero-card {
        order: -1;
    }
}



/* PHONE CODE SELECTOR - MODERN */
.phone-code-selector {
    position: relative;
}

.phone-code-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(8,10,15,0.9);
    color: #f7f7f7;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.phone-code-button:hover {
    border-color: rgba(255,255,255,0.3);
    background: rgba(8,10,15,1);
}

.phone-code-button:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 1px rgba(243,181,98,0.35);
}

.phone-code-button .selected-code {
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    margin-right: 8px;
}

.phone-code-button .selected-country {
    flex: 1;
    text-align: left;
    opacity: 0.7;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.phone-code-button .dropdown-arrow {
    margin-left: 8px;
    opacity: 0.6;
    transition: transform 0.2s ease;
}

.phone-code-button.active .dropdown-arrow {
    transform: rotate(180deg);
}

.phone-code-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    max-height: 320px;
    background: #0a0d13;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    z-index: 100;
    display: none;
    overflow: hidden;
}

.phone-code-dropdown.active {
    display: block;
    animation: dropdownFadeIn 0.2s ease;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.phone-code-search {
    padding: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    position: sticky;
    top: 0;
    background: #0a0d13;
    z-index: 1;
}

.phone-code-search input {
    width: 100%;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(8,10,15,0.8);
    color: #f7f7f7;
    font-size: 13px;
}

.phone-code-search input:focus {
    outline: none;
    border-color: var(--accent);
}

.phone-code-list {
    max-height: 260px;
    overflow-y: auto;
    padding: 4px;
}

.phone-code-list::-webkit-scrollbar {
    width: 6px;
}

.phone-code-list::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.02);
}

.phone-code-list::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.15);
    border-radius: 3px;
}

.phone-code-list::-webkit-scrollbar-thumb:hover {
    background: rgba(255,255,255,0.25);
}

.phone-code-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.15s ease;
    font-size: 13px;
}

.phone-code-item:hover {
    background: rgba(243,181,98,0.08);
}

.phone-code-item.popular {
    background: rgba(243,181,98,0.06);
}

.phone-code-item.popular:hover {
    background: rgba(243,181,98,0.12);
}

.phone-code-item .code {
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    min-width: 60px;
    color: var(--accent);
}

.phone-code-item .country {
    flex: 1;
    text-align: left;
    margin-left: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.phone-code-item.hidden {
    display: none;
}

.code-separator {
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin: 8px 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .phone-code-dropdown {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        max-height: 70vh;
        border-radius: 16px 16px 0 0;
    }
}


/* BLOG POST LAYOUT - 2 COLUMN */
.blog-post-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start;
    margin-top: 24px;
}

.blog-post-content {
    min-width: 0; /* Prevent overflow */
}

/* POST HEADER */
.post-header {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-soft);
}

.post-header h1 {
    font-size: clamp(24px, 4vw, 36px);
    line-height: 1.2;
    margin: 12px 0 16px;
}

.post-date {
    font-size: 13px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.post-excerpt {
    font-size: 17px;
    color: var(--muted);
    line-height: 1.6;
}

/* POST BODY */
.post-body {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
}

.post-body h2 {
    font-size: 24px;
    margin: 32px 0 16px;
    color: #f7f7f7;
}

.post-body h3 {
    font-size: 20px;
    margin: 24px 0 12px;
    color: #f7f7f7;
}

.post-body p {
    margin-bottom: 20px;
}

.post-body ul,
.post-body ol {
    margin: 20px 0;
    padding-left: 24px;
}

.post-body li {
    margin-bottom: 8px;
}

.post-body a {
    color: var(--accent);
    text-decoration: underline;
}

.post-body blockquote {
    margin: 24px 0;
    padding: 20px 24px;
    border-left: 4px solid var(--accent);
    background: rgba(243,181,98,0.05);
    font-style: italic;
    color: rgba(255,255,255,0.9);
}

.post-body img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 24px 0;
}

.post-body strong {
    color: #f7f7f7;
    font-weight: 600;
}

/* POST FOOTER */
.post-footer {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--border-soft);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.post-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(243,181,98,0.1);
    border: 1px solid rgba(243,181,98,0.3);
    border-radius: 4px;
    font-size: 12px;
    color: var(--accent);
}

/* SIDEBAR */
.blog-sidebar {
    position: relative;
}

.sidebar-sticky {
    position: sticky;
    top: 88px; /* Header height + margin */
}

.sidebar-widget {
    background: var(--card);
    border: 1px solid var(--border-soft);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
}

.sidebar-widget h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.widget-subtitle {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 20px;
}

/* SIDEBAR CONTACT FORM */
.sidebar-form .field {
    margin-bottom: 12px;
}

.sidebar-form input[type="text"],
.sidebar-form input[type="email"],
.sidebar-form input[type="tel"] {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(8,10,15,0.8);
    color: #f7f7f7;
    font-size: 14px;
}

.sidebar-form input::placeholder {
    color: rgba(255,255,255,0.4);
}

.sidebar-form .checkbox label {
    display: flex;
    align-items: start;
    gap: 8px;
    font-size: 12px;
}

.sidebar-form .checkbox input {
    margin-top: 2px;
}

.sidebar-form .btn {
    width: 100%;
    font-size: 14px;
    padding: 10px 20px;
}

/* RELATED POSTS */
.related-posts {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.related-post {
    display: block;
    padding: 12px;
    border-radius: 8px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.2s ease;
    text-decoration: none;
}

.related-post:hover {
    background: rgba(243,181,98,0.06);
    border-color: rgba(243,181,98,0.2);
}

.related-date {
    display: block;
    font-size: 11px;
    color: var(--muted);
    margin-bottom: 4px;
}

.related-title {
    display: block;
    font-size: 14px;
    color: #f7f7f7;
    line-height: 1.4;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .blog-post-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .sidebar-sticky {
        position: static;
    }
    
    .blog-sidebar {
        order: 2;
    }
}

@media (max-width: 768px) {
    .post-header h1 {
        font-size: 24px;
    }
    
    .post-body {
        font-size: 15px;
    }
}

/* ========================================
   MOBÄ°L OPTÄ°MÄ°ZASYON & RESPONSIVE UPDATES
   ======================================== */

/* Sidebar telefon kodu iÃ§in */
.field-row-sidebar {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 8px;
}

.sidebar-phone-select {
    width: 100%;
    padding: 10px 8px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(8,10,15,0.8);
    color: #f7f7f7;
    font-size: 13px;
    cursor: pointer;
}

.sidebar-phone-select:focus {
    outline: none;
    border-color: var(--accent);
}

/* Genel Mobil Ä°yileÅŸtirmeler */
@media (max-width: 768px) {
    /* Container padding */
    .container {
        padding: 0 20px;
    }

    /* Hero section */
    .hero {
        padding: 40px 0 32px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    /* Section spacing */
    .section {
        padding: 32px 0;
    }

    .section-heading h1,
    .section-heading h2 {
        font-size: 20px;
    }

    /* Cards grid */
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Steps grid */
    .steps-grid {
        grid-template-columns: 1fr;
    }

    /* Contact section */
    .contact-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contact-form-wrapper {
        padding: 16px;
    }

    /* Field rows */
    .field-row {
        flex-direction: column;
        gap: 12px;
    }

    .field-phone-code {
        max-width: 100%;
    }

    /* Buttons */
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    /* Header */
    .site-header {
        padding: 12px 0;
    }

    .header-inner {
        padding: 0 20px;
    }

    .logo a {
        font-size: 13px;
    }

    /* Nav mobile */
    .nav {
        position: fixed;
        inset: 60px 0 auto;
        flex-direction: column;
        background: rgba(5,6,8,0.98);
        backdrop-filter: blur(10px);
        padding: 20px;
        transform: translateY(-120%);
        transition: transform 0.3s ease;
        z-index: 999;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .nav.open {
        transform: translateY(0);
    }

    .nav a {
        width: 100%;
        padding: 12px 0;
        text-align: center;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .nav .btn-small {
        width: 100%;
        margin-top: 12px;
    }

    .nav-toggle {
        display: flex;
        flex-direction: column;
        gap: 4px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
    }

    .nav-toggle span {
        display: block;
        width: 24px;
        height: 2px;
        background: #f7f7f7;
        transition: all 0.3s ease;
    }

    /* Footer */
    .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    /* Blog post layout */
    .blog-post-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .sidebar-sticky {
        position: static;
    }

    .post-header h1 {
        font-size: 24px;
    }

    .post-body {
        font-size: 15px;
    }

    .post-body h2 {
        font-size: 20px;
    }

    .post-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    /* Breadcrumbs */
    .breadcrumbs {
        font-size: 11px;
        overflow-x: auto;
        white-space: nowrap;
    }

    /* Tables */
    .table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .leads-table {
        min-width: 800px;
        font-size: 11px;
    }

    /* Sidebar widgets mobilde */
    .sidebar-widget {
        padding: 20px;
    }

    .field-row-sidebar {
        grid-template-columns: 90px 1fr;
    }
}

/* KÃ¼Ã§Ã¼k telefonlar (iPhone SE vb.) */
@media (max-width: 375px) {
    .hero h1 {
        font-size: 24px;
    }

    .logo a {
        font-size: 11px;
    }

    .btn {
        font-size: 12px;
        padding: 10px 20px;
    }

    .field-row-sidebar {
        grid-template-columns: 80px 1fr;
        gap: 6px;
    }

    .sidebar-phone-select {
        font-size: 11px;
        padding: 10px 4px;
    }
}

/* Tablet (landscape) */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        max-width: 920px;
    }

    .blog-post-layout {
        grid-template-columns: 1fr 320px;
        gap: 32px;
    }

    .contact-inner {
        grid-template-columns: 1fr 1fr;
    }
}

/* Touch improvements */
@media (hover: none) and (pointer: coarse) {
    /* Daha bÃ¼yÃ¼k touch targets */
    .btn,
    button,
    a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }

    /* Input'lar iÃ§in */
    input,
    select,
    textarea {
        font-size: 16px !important; /* iOS zoom engellemek iÃ§in */
    }
}

/* Print iÃ§in */
@media print {
    .site-header,
    .site-footer,
    .nav,
    .sidebar-widget,
    .contact-section {
        display: none;
    }

    .blog-post-content {
        max-width: 100%;
    }
}


/* SIDEBAR FORM LOADER */
.btn-loader {
    display: inline-block;
    letter-spacing: 2px;
    animation: dotPulse 1.4s infinite;
}

@keyframes dotPulse {
    0%, 80%, 100% {
        opacity: 0.3;
    }
    40% {
        opacity: 1;
    }
}

#sidebar-form-messages {
    margin-bottom: 16px;
}

#sidebar-form-messages .alert {
    margin-bottom: 0;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sidebar-form button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* CTA BOX - Blog içi çağrı kutusu */
.cta-box {
    margin: 40px 0;
    padding: 32px;
    background: linear-gradient(135deg, rgba(243,181,98,0.12), rgba(243,181,98,0.04));
    border: 1px solid rgba(243,181,98,0.3);
    border-radius: 16px;
    text-align: center;
}

.cta-box h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #f7f7f7;
}

.cta-box p {
    font-size: 15px;
    color: var(--muted);
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-box .btn {
    display: inline-flex;
    padding: 14px 32px;
    font-size: 14px;
    color: #050608 !important;
    font-weight: 600;
    letter-spacing: 0.05em;
}