/* =========================================
   TRENDS SPA - CLEAN DESIGN SYSTEM
   ========================================= */

/* ===== VARIABLES ===== */
:root {
    /* Colors */
    --primary: #ff6b35;
    --primary-hover: #ff8556;
    --primary-light: rgba(255, 107, 53, 0.15);
    
    --bg-dark: #1a0b2e;
    --bg-card: rgba(255, 255, 255, 0.04);
    --bg-card-hover: rgba(255, 255, 255, 0.08);
    
    --text: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.6);
    --text-subtle: rgba(255, 255, 255, 0.4);
    
    --border: rgba(255, 255, 255, 0.1);
    --border-hover: rgba(255, 255, 255, 0.2);
    
    --success: #25D366;
    --error: #ef4444;
    
    /* Spacing */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-8: 32px;
    --space-10: 40px;
    --space-12: 48px;
    --space-16: 64px;
    --space-20: 80px;
    
    /* Typography */
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --text-xs: 12px;
    --text-sm: 14px;
    --text-base: 16px;
    --text-lg: 18px;
    --text-xl: 20px;
    --text-2xl: 24px;
    --text-3xl: 32px;
    --text-4xl: 40px;
    --text-5xl: 48px;
    
    /* Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
    --shadow-primary: 0 4px 20px rgba(255, 107, 53, 0.25);
    
    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --duration: 0.2s;
}

/* ===== RESET ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body {
    font-family: var(--font);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--text);
    background: var(--bg-dark);
    overflow-x: hidden;
    max-width: 100vw;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ===== ACCESSIBILITY ===== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    z-index: 10000;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 12px;
}

button {
    font-family: inherit;
    cursor: pointer;
}

/* ===== LAYOUT ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.section {
    padding: var(--space-20) 0;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-5);
    font-size: var(--text-sm);
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    min-height: 44px;
    min-width: 44px;
    transition: all var(--duration) var(--ease);
    white-space: nowrap;
}

.btn svg {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-hover);
    box-shadow: var(--shadow-primary);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-ghost:hover {
    background: var(--bg-card);
    border-color: var(--border-hover);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}
.btn-whatsapp {
    background: var(--success);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}


.btn-outline:hover {
    background: var(--bg-card);
    border-color: var(--primary);
    color: var(--primary);
}

.btn-lg {
    padding: var(--space-4) var(--space-6);
    font-size: var(--text-base);
}

.btn-block {
    width: 100%;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(26, 11, 46, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
    overflow: hidden;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--text-xl);
    min-height: 44px;
    font-weight: 700;
    color: var(--text);
}

.logo img {
    width: 36px;
    height: 36px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-sm);
    color: var(--text-muted);
    border-radius: var(--radius-full);
    transition: all var(--duration) var(--ease);
}

.nav-phone:hover {
    color: var(--text);
    background: var(--bg-card);
}

.nav-phone svg {
    width: 18px;
    height: 18px;
}

.nav-cta {
    display: flex;
}

/* ===== HERO ===== */
.hero {
    padding: calc(72px + var(--space-16)) 0 var(--space-16);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.hero-content {
    max-width: 540px;
}

.hero-badge {
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
    background: var(--primary-light);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-6);
}

.hero h1 {
    font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--space-6);
}

.hero-desc {
    font-size: var(--text-lg);
    color: var(--text-muted);
    margin-bottom: var(--space-8);
}

.hero-price {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-8);
}

.price-amount {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--primary);
}

.price-note {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.hero-cta {
    display: flex;
    gap: var(--space-4);
}

/* Hero Features */
.hero-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.features-title {
    font-size: var(--text-2xl);
    font-weight: 600;
    color: var(--primary);
    margin-bottom: var(--space-2);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 1fr;
    gap: var(--space-4);
}

/* Mobilde yatay slider */
@media (max-width: 768px) {
    .hero-features {
        overflow: hidden;
    }

    .features-scroll {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: var(--space-4);

        /* Görünür scrollbar */
        scrollbar-width: thin;
        scrollbar-color: var(--primary) rgba(255, 255, 255, 0.1);
    }

    .features-scroll::-webkit-scrollbar {
        height: 6px;
    }

    .features-scroll::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.08);
        border-radius: 3px;
    }

    .features-scroll::-webkit-scrollbar-thumb {
        background: var(--primary);
        border-radius: 3px;
    }

    .features-grid {
        display: flex;
        gap: var(--space-3);
        width: max-content;
    }

    .features-grid .feature-card {
        flex: 0 0 200px;
        scroll-snap-align: start;
    }
}

.feature-card {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-5);
    background: var(--bg-card);
    border: 1px solid rgb(255, 107, 53);
    border-radius: var(--radius-lg);
    transition: all var(--duration) var(--ease);
    min-height: 80px;
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary);
}

.feature-text {
    min-width: 0;
}

.feature-text strong {
    display: block;
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: 2px;
    white-space: nowrap;
}

.feature-text span {
    font-size: var(--text-xs);
    color: var(--text-muted);
    white-space: nowrap;
}

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto var(--space-12);
}

.section-header h2 {
    font-size: var(--text-3xl);
    font-weight: 700;
    margin-bottom: var(--space-4);
}

.section-header p {
    font-size: var(--text-lg);
    color: var(--text-muted);
}

/* ===== WHY SECTION ===== */
.why-section {
    background: linear-gradient(180deg, transparent 0%, rgba(255, 107, 53, 0.03) 100%);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.why-card {
    padding: var(--space-8);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--duration) var(--ease);
    display: flex;
    flex-direction: column;
}

.why-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.why-number {
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--space-4);
}

.why-card h3 {
    font-size: var(--text-xl);
    font-weight: 600;
    margin-bottom: var(--space-3);
}

.why-card p {
    font-size: var(--text-sm);
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== SHOWROOM ===== */
.showroom-section {
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.showroom-section .portfolio-cta {
    background: transparent;
    border: none;
    border-top: 1px solid var(--border);
    border-radius: 0;
    margin-top: var(--space-8);
    padding-top: var(--space-6);
}

.showroom-filters {
    display: flex;
    gap: var(--space-2);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-8);
}

.filter-btn {
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--text-muted);
    background: transparent;
    min-height: 44px;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--duration) var(--ease);
    font-family: var(--font);
}

.filter-btn:hover {
    color: var(--text);
    border-color: var(--primary);
}

.filter-btn.active {
    color: #fff;
    background: var(--primary);
    border-color: var(--primary);
}

.showroom-scroll {
    overflow-x: auto;
    overflow-y: visible;
    padding: var(--space-2) 0 var(--space-4);
    scrollbar-width: thin;
    scrollbar-color: var(--primary) rgba(255, 255, 255, 0.1);
}

.showroom-scroll::-webkit-scrollbar {
    height: 6px;
}

.showroom-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
}

.showroom-scroll::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}

.showroom-track {
    display: inline-flex;
    gap: var(--space-5);
}

.showroom-card {
    flex: 0 0 280px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.3s var(--ease);
    display: flex;
    flex-direction: column;
}

.showroom-card .showroom-img {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    overflow: hidden;
}

.showroom-card:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.15);
}

.showroom-img {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
}

.showroom-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--ease);
}

.showroom-card:hover .showroom-img img {
    transform: scale(1.05);
}

.showroom-info {
    padding: var(--space-5);
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.showroom-badge {
    display: inline-block;
    width: fit-content;
    padding: 3px 10px;
    font-size: 11px;
    font-weight: 600;
    color: var(--primary);
    background: var(--primary-light);
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.showroom-info h3 {
    font-size: var(--text-lg);
    font-weight: 600;
}

.showroom-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px;
    margin: 0 calc(-1 * var(--space-5)) calc(-1 * var(--space-5));
    font-size: var(--text-xs);
    font-weight: 500;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.04);
    border-top: 1px solid var(--border);
    transition: all var(--duration) var(--ease);
}

.showroom-link::after {
    content: '→';
    transition: transform var(--duration) var(--ease);
}

.showroom-card:hover .showroom-link {
    color: var(--primary);
    background: var(--primary-light);
}

.showroom-card:hover .showroom-link::after {
    transform: translateX(4px);
}

/* Gizlenen kartlar */
.showroom-card.hidden {
    display: none;
}

/* ===== FORM SECTION ===== */
.form-section {
    background: linear-gradient(180deg, transparent 0%, rgba(255, 107, 53, 0.05) 100%);
}

.form-wrapper {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: var(--space-12);
    max-width: 900px;
    margin: 0 auto;
    padding: var(--space-12);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.form-content h2 {
    font-size: var(--text-2xl);
    font-weight: 700;
    margin-bottom: var(--space-3);
}

.form-content > p {
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin-bottom: var(--space-8);
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: var(--space-4);
    font-size: var(--text-base);
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: all var(--duration) var(--ease);
}

.form-group input::placeholder {
    color: var(--text-subtle);
}

.form-group input:focus-visible,
.form-group select:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    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='rgba(255,255,255,0.5)' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right var(--space-4) center;
}

.form-group select option {
    background: var(--bg-dark);
    color: var(--text);
}


.form-side {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
    padding-top: var(--space-4);
}

.form-side-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
}

.form-side-item svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.form-side-item strong {
    display: block;
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: 2px;
}

.form-side-item a {
    font-size: var(--text-sm);
    color: var(--text-muted);
    transition: color var(--duration) var(--ease);
}

.form-side-item a:hover {
    color: var(--primary);
}

/* ===== FOOTER ===== */
.footer {
    padding: var(--space-10) 0;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-lg);
    min-height: 44px;
    font-weight: 700;
}

.footer-logo img {
    width: 28px;
    height: 28px;
}

.footer-note,
.footer-copy {
    font-size: var(--text-xs);
    color: var(--text-subtle);
}

/* ===== TOAST ===== */
.toast {
    position: fixed;
    bottom: var(--space-6);
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    padding: var(--space-4) var(--space-6);
    font-size: var(--text-sm);
    font-weight: 500;
    color: white;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    opacity: 0;
    transition: all 0.3s var(--ease);
    z-index: 1000;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.toast.success {
    border-color: var(--success);
}

.toast.error {
    border-color: var(--error);
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: var(--space-12);
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .form-wrapper {
        grid-template-columns: 1fr;
        padding: var(--space-8);
    }
    
    .form-side {
        flex-direction: row;
        justify-content: center;
        gap: var(--space-8);
        padding-top: var(--space-6);
        border-top: 1px solid var(--border);
    }
}

/* Tablet Small */
@media (max-width: 768px) {
    .nav-phone span {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding-top: calc(72px + var(--space-10));
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
    
    .why-card {
        padding: var(--space-6);
    }
    
    .form-side {
        flex-direction: column;
        align-items: center;
    }
    
    .footer {
        padding-bottom: var(--space-10);
    }
}

/* Mobile */
@media (max-width: 480px) {
    :root {
        --space-6: 20px;
    }
    
    .nav {
        height: 64px;
    }
    
    .hero-badge {
        font-size: 10px;
    }
    
    .hero h1 {
        font-size: var(--text-2xl);
    }
    
    .hero-desc {
        font-size: var(--text-base);
    }
    
    .hero-price {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--space-1);
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
        font-size: var(--text-sm);
    }

    .feature-card {
        padding: var(--space-4);
    }
    
    .section-header h2 {
        font-size: var(--text-2xl);
    }
    
    
    .form-wrapper {
        padding: var(--space-6);
    }
    
    .toast {
        left: var(--space-4);
        right: var(--space-4);
        transform: translateX(0) translateY(100px);
    }
    
    .toast.show {
        transform: translateX(0) translateY(0);
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus states */
:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}
/* ===== CUSTOM DROPDOWN ===== */

.custom-dropdown {
    position: relative;
    width: 100%;
}
 
/* Trigger (kapalı hali) */
.dropdown-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.dropdown-trigger:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.dropdown-trigger:hover {
    border-color: rgba(255, 107, 53, 0.5);
    background: rgba(255, 255, 255, 0.08);
}
 
.dropdown-trigger:focus,
.custom-dropdown.open .dropdown-trigger {
    border-color: #ff6b35;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.15);
}
 
/* Seçim yapılınca text rengi değişsin */
.dropdown-trigger.has-value {
    color: #fff;
}
 
/* Ok ikonu */
.dropdown-arrow {
    width: 20px;
    height: 20px;
    stroke: #ff6b35;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}
 
.custom-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
}
 
/* Dropdown menü */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #1a0b2e;
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 10px;
    padding: 8px 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}
 
.custom-dropdown.open .dropdown-menu {
    max-height: 300px;
    overflow-y: auto;
    opacity: 1;
    visibility: visible;
}
 
/* Dropdown seçenekleri */
.dropdown-option {
    padding: 12px 16px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    transition: all 0.15s ease;
}
 
.dropdown-option:hover {
    background: rgba(255, 107, 53, 0.15);
    color: #ff6b35;
}
 
.dropdown-option.selected {
    background: rgba(255, 107, 53, 0.2);
    color: #ff6b35;
    font-weight: 500;
}
 
/* Scrollbar stili */
.dropdown-menu::-webkit-scrollbar {
    width: 6px;
}
 
.dropdown-menu::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}
 
.dropdown-menu::-webkit-scrollbar-thumb {
    background: rgba(255, 107, 53, 0.4);
    border-radius: 3px;
}
 
.dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: #ff6b35;
}

/* ============================================
   CRO İYİLEŞTİRMELERİ - TESTIMONIALS & PROCESS
   style.css dosyasının sonuna ekleyin
   ============================================ */

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    background: linear-gradient(180deg, rgba(255, 107, 53, 0.03) 0%, transparent 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    padding: var(--space-8);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--duration) var(--ease);
}

.testimonial-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.testimonial-content {
    margin-bottom: var(--space-6);
}

.testimonial-stars {
    display: flex;
    gap: var(--space-1);
    margin-bottom: var(--space-4);
}

.testimonial-stars svg {
    width: 18px;
    height: 18px;
    fill: var(--primary);
}

.testimonial-text {
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--text);
    font-style: italic;
}

.testimonial-text a {
    display: inline-block;
    padding: 8px 0;
    min-height: 44px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding-top: var(--space-6);
    border-top: 1px solid var(--border);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: var(--radius-full);
    flex-shrink: 0;
}

.testimonial-avatar span {
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--primary);
}

/* Avatar yerine fotoğraf kullanmak için: */
.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-full);
}

.testimonial-info {
    flex: 1;
}

.testimonial-info strong {
    display: block;
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: 2px;
}

.testimonial-info span {
    font-size: var(--text-xs);
    color: var(--text-muted);
}

.testimonial-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: all var(--duration) var(--ease);
}

.testimonial-link:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.testimonial-link svg {
    width: 16px;
    height: 16px;
    stroke: var(--text-muted);
    transition: stroke var(--duration) var(--ease);
}

.testimonial-link:hover svg {
    stroke: white;
}

/* ===== PROCESS SECTION ===== */
.process-section {
    background: linear-gradient(180deg, transparent 0%, rgba(255, 107, 53, 0.03) 100%);
}

.process-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: var(--space-4);
    max-width: 1000px;
    margin: 0 auto;
}

.process-card {
    flex: 1;
    max-width: 280px;
    padding: var(--space-8);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
    transition: all var(--duration) var(--ease);
}

.process-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.process-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: var(--radius-lg);
    margin: 0 auto var(--space-5);
}

.process-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--primary);
}

.process-number {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: white;
    font-size: var(--text-xs);
    font-weight: 700;
    border-radius: var(--radius-full);
}

.process-card h3 {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--space-3);
}

.process-card p {
    font-size: var(--text-sm);
    color: var(--text-muted);
    line-height: 1.7;
}

.process-connector {
    display: flex;
    align-items: center;
    padding-top: var(--space-16);
}

.process-connector svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary);
    opacity: 0.5;
}

/* ===== RESPONSIVE - TESTIMONIALS & PROCESS ===== */

/* Tablet */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
    
    .testimonial-card {
        padding: var(--space-6);
    }
    
    .process-grid {
        flex-direction: column;
        align-items: center;
        gap: var(--space-6);
    }
    
    .process-card {
        max-width: 100%;
        width: 100%;
    }
    
    .process-connector {
        padding-top: 0;
        transform: rotate(90deg);
    }
}

/* Mobile */
@media (max-width: 480px) {
    .testimonial-text {
        font-size: var(--text-sm);
    }
    
    .process-connector {
        display: none;
    }
    
    .process-card {
        padding: var(--space-6);
    }
    
    .process-icon {
        width: 56px;
        height: 56px;
    }
    
    .process-icon svg {
        width: 28px;
        height: 28px;
    }
}

/* ===== ANIMATED TECH BACKGROUND ===== */
.bg-animated {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

/* Kayan grid */
.bg-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle 3px at center, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 50%, transparent 100%);
    background-size: 50px 50px;
    animation: grid-pulse 3s ease-in-out infinite;
}

@keyframes grid-pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Hareketli gradient orb'lar */
.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.bg-orb-1 {
    width: 500px;
    height: 500px;
    background: rgba(255, 107, 53, 0.07);
    top: 10%;
    left: 5%;
    animation: orb-float-1 18s ease-in-out infinite;
}

.bg-orb-2 {
    width: 400px;
    height: 400px;
    background: rgba(107, 77, 138, 0.09);
    top: 50%;
    right: 5%;
    animation: orb-float-2 22s ease-in-out infinite;
}

.bg-orb-3 {
    width: 350px;
    height: 350px;
    background: rgba(255, 107, 53, 0.05);
    bottom: 10%;
    left: 40%;
    animation: orb-float-3 20s ease-in-out infinite;
}

@keyframes orb-float-1 {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(80px, -60px); }
    50% { transform: translate(-40px, 40px); }
    75% { transform: translate(60px, 80px); }
}

@keyframes orb-float-2 {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(-70px, 50px); }
    50% { transform: translate(50px, -80px); }
    75% { transform: translate(-30px, -40px); }
}

@keyframes orb-float-3 {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(60px, -50px); }
    66% { transform: translate(-80px, 30px); }
}

/* Noktalar arası zıplayan ışık */
.bg-traveler {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(255, 107, 53, 0.5);
    border-radius: 50%;
    box-shadow: 0 0 6px 1px rgba(255, 107, 53, 0.2);
}

.bg-traveler-1 {
    animation: traveler-1 14s ease-in-out infinite;
}

.bg-traveler-2 {
    animation: traveler-2 18s ease-in-out infinite 4s;
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 5px 1px rgba(255, 255, 255, 0.15);
}

.bg-traveler-3 {
    animation: traveler-3 20s ease-in-out infinite 8s;
}

@keyframes traveler-1 {
    0%   { top: 15%; left: 10%; opacity: 0; }
    4%   { opacity: 1; }
    10%  { top: 15%; left: 20%; }
    18%  { top: 25%; left: 20%; }
    26%  { top: 25%; left: 35%; }
    34%  { top: 15%; left: 45%; }
    42%  { top: 35%; left: 55%; }
    50%  { top: 35%; left: 70%; }
    58%  { top: 25%; left: 80%; }
    66%  { top: 45%; left: 80%; }
    74%  { top: 45%; left: 65%; }
    82%  { top: 55%; left: 50%; }
    90%  { top: 55%; left: 30%; }
    96%  { opacity: 1; }
    100% { top: 65%; left: 15%; opacity: 0; }
}

@keyframes traveler-2 {
    0%   { top: 70%; left: 85%; opacity: 0; }
    4%   { opacity: 1; }
    12%  { top: 60%; left: 75%; }
    24%  { top: 50%; left: 60%; }
    36%  { top: 40%; left: 50%; }
    48%  { top: 30%; left: 40%; }
    60%  { top: 40%; left: 25%; }
    72%  { top: 55%; left: 15%; }
    84%  { top: 70%; left: 25%; }
    96%  { opacity: 1; }
    100% { top: 80%; left: 40%; opacity: 0; }
}

@keyframes traveler-3 {
    0%   { top: 40%; left: 50%; opacity: 0; }
    3%   { opacity: 1; }
    10%  { top: 30%; left: 60%; }
    20%  { top: 20%; left: 70%; }
    30%  { top: 20%; left: 85%; }
    40%  { top: 35%; left: 90%; }
    50%  { top: 50%; left: 80%; }
    60%  { top: 65%; left: 70%; }
    70%  { top: 75%; left: 55%; }
    80%  { top: 65%; left: 40%; }
    90%  { top: 50%; left: 30%; }
    97%  { opacity: 1; }
    100% { top: 40%; left: 20%; opacity: 0; }
}

/* Yüzen parçacıklar */
.bg-particles {
    position: absolute;
    inset: 0;
}

.bg-particles span {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(255, 107, 53, 0.6);
    border-radius: 50%;
    animation: particle-rise linear infinite;
}

.bg-particles span:nth-child(1)  { left: 5%;  animation-duration: 12s; animation-delay: 0s; }
.bg-particles span:nth-child(2)  { left: 12%; animation-duration: 15s; animation-delay: -2s; width: 3px; height: 3px; background: rgba(255,255,255,0.3); }
.bg-particles span:nth-child(3)  { left: 22%; animation-duration: 10s; animation-delay: -4s; }
.bg-particles span:nth-child(4)  { left: 30%; animation-duration: 18s; animation-delay: -1s; width: 1px; height: 1px; background: rgba(255,255,255,0.4); }
.bg-particles span:nth-child(5)  { left: 38%; animation-duration: 14s; animation-delay: -6s; }
.bg-particles span:nth-child(6)  { left: 48%; animation-duration: 11s; animation-delay: -3s; width: 3px; height: 3px; }
.bg-particles span:nth-child(7)  { left: 55%; animation-duration: 16s; animation-delay: -8s; background: rgba(255,255,255,0.25); }
.bg-particles span:nth-child(8)  { left: 65%; animation-duration: 13s; animation-delay: -5s; }
.bg-particles span:nth-child(9)  { left: 72%; animation-duration: 17s; animation-delay: -7s; width: 1px; height: 1px; background: rgba(255,255,255,0.35); }
.bg-particles span:nth-child(10) { left: 80%; animation-duration: 12s; animation-delay: -9s; }
.bg-particles span:nth-child(11) { left: 88%; animation-duration: 14s; animation-delay: -2s; width: 3px; height: 3px; background: rgba(255,255,255,0.2); }
.bg-particles span:nth-child(12) { left: 93%; animation-duration: 16s; animation-delay: -4s; }
.bg-particles span:nth-child(13) { left: 18%; animation-duration: 19s; animation-delay: -10s; width: 1px; height: 1px; }
.bg-particles span:nth-child(14) { left: 42%; animation-duration: 11s; animation-delay: -6s; background: rgba(255,255,255,0.3); }
.bg-particles span:nth-child(15) { left: 75%; animation-duration: 15s; animation-delay: -3s; }

@keyframes particle-rise {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    5% {
        opacity: 1;
        transform: translateY(95vh) scale(1);
    }
    95% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-5vh) scale(0.5);
        opacity: 0;
    }
}

/* İçerik z-index (arka planın üstünde) */
main, .hero, .footer {
    position: relative;
    z-index: 1;
    overflow-x: hidden;
}

.section {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(2px);
}

.section > .container {
    position: relative;
    z-index: 1;
}

/* ===== PORTFOLIO CTA ===== */
.portfolio-cta {
    text-align: center;
    margin-top: var(--space-10);
    padding: var(--space-6) var(--space-8);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.portfolio-cta-trust {
    display: flex;
    justify-content: center;
    gap: var(--space-6);
    margin-bottom: var(--space-4);
}

.portfolio-cta-trust span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: var(--text-sm);
    color: var(--text-muted);
    font-weight: 500;
}

.portfolio-cta-trust span::before {
    content: '✓';
    color: var(--success);
    font-weight: 700;
}

.portfolio-cta p {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--text);
    margin-bottom: var(--space-5);
}

.portfolio-cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
}

@media (max-width: 768px) {
    .portfolio-cta-trust {
        flex-direction: column;
        gap: var(--space-2);
        align-items: center;
    }

    .portfolio-cta-buttons {
        flex-direction: column;
        gap: var(--space-3);
    }

    .portfolio-cta-buttons .btn {
        width: 100%;
    }
}

/* ===== FORM SIDE ADDRESS ===== */
.form-side-address {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

/* ===== KVKK CHECKBOX ===== */
.kvkk-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: var(--text-xs);
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1.5;
}

.kvkk-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    accent-color: var(--primary);
    cursor: pointer;
}

.kvkk-checkbox a {
    color: var(--primary);
    text-decoration: underline;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    padding: var(--space-4) var(--space-6);
    background: rgba(26, 11, 46, 0.97);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--border);
    z-index: 200;
    transform: translateY(0);
    transition: transform 0.4s var(--ease);
}

.cookie-banner.hidden {
    transform: translateY(100%);
    pointer-events: none;
}

.cookie-banner p {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.cookie-banner a {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-accept {
    padding: 8px 20px;
    font-size: var(--text-sm);
    font-weight: 600;
    color: #fff;
    background: var(--primary);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-family: var(--font);
    white-space: nowrap;
    transition: background var(--duration) var(--ease);
}

.cookie-accept:hover {
    background: var(--primary-hover);
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        gap: var(--space-3);
        padding: var(--space-4);
    }
}

/* ===== FOOTER LEGAL ===== */
.footer-legal {
    display: flex;
    gap: var(--space-4);
}

.footer-legal a {
    font-size: var(--text-xs);
    color: var(--text-subtle);
    transition: color var(--duration) var(--ease);
}

.footer-legal a:hover {
    color: var(--primary);
}

@media (max-width: 480px) {
    .footer-legal {
        flex-direction: column;
        gap: var(--space-2);
        align-items: center;
    }
}

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    border-radius: 50%;
    box-shadow:
        0 4px 16px rgba(37, 211, 102, 0.4),
        0 0 0 0 rgba(37, 211, 102, 0.4);
    z-index: 90;
    transition: all 0.3s var(--ease);
    animation: wa-pulse 2s ease-in-out infinite;
}

.wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
    animation: none;
}

@keyframes wa-pulse {
    0%, 100% {
        box-shadow:
            0 4px 16px rgba(37, 211, 102, 0.4),
            0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow:
            0 4px 20px rgba(37, 211, 102, 0.5),
            0 0 0 12px rgba(37, 211, 102, 0);
    }
}

.wa-float svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}

@media (max-width: 768px) {
    .wa-float {
        bottom: 20px;
        right: 16px;
        width: 48px;
        height: 48px;
    }

    .wa-float svg {
        width: 24px;
        height: 24px;
    }
}

/* ===== TESTIMONIAL CTA CARD ===== */
.testimonial-cta-card {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed rgba(255, 107, 53, 0.3);
    background: transparent;
    transition: all 0.3s var(--ease);
    text-decoration: none;
    cursor: pointer;
}

.testimonial-cta-card:hover {
    border-color: var(--primary);
    background: var(--primary-light);
    transform: translateY(-4px);
}

.testimonial-cta-content {
    text-align: center;
    padding: var(--space-8);
}

.testimonial-cta-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-4);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: 50%;
}

.testimonial-cta-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary);
}

.testimonial-cta-content h3 {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--primary);
    margin-bottom: var(--space-2);
}

.testimonial-cta-content p {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

/* ===== STATS ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
    text-align: center;
}

.stat-item {
    padding: var(--space-6);
}

.stat-number {
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--primary);
}

.stat-suffix {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    display: block;
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin-top: var(--space-2);
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-4);
    }
}

@media (max-width: 480px) {
    .stat-number {
        font-size: var(--text-3xl);
    }
}

/* ===== SSS / FAQ ===== */
.faq-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--duration) var(--ease);
}

.faq-item.active {
    border-color: var(--primary);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: var(--space-5);
    font-size: var(--text-base);
    font-weight: 500;
    color: var(--text);
    background: var(--bg-card);
    border: none;
    cursor: pointer;
    font-family: var(--font);
    text-align: left;
    gap: var(--space-4);
    transition: background var(--duration) var(--ease);
}

.faq-question:hover {
    background: var(--bg-card-hover);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    stroke: var(--text-muted);
    transition: transform 0.3s var(--ease);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
    stroke: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s var(--ease);
}

.faq-answer p {
    padding: 0 var(--space-5) var(--space-5);
    font-size: var(--text-sm);
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== FOOTER GRID ===== */
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--space-10);
    padding-bottom: var(--space-8);
    border-bottom: 1px solid var(--border);
    margin-bottom: var(--space-6);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer-desc {
    font-size: var(--text-sm);
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-col h3 {
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: var(--space-4);
    color: var(--text);
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.footer-col ul li {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.footer-col ul li a {
    color: var(--text-muted);
    transition: color var(--duration) var(--ease);
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.footer-social {
    display: flex;
    gap: var(--space-3);
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-muted);
    transition: all var(--duration) var(--ease);
}

.footer-social a:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}

.footer-social a svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ===== RESPONSIVE - SHOWROOM ===== */
@media (max-width: 768px) {
    .showroom-filters {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        gap: var(--space-2);
        padding-bottom: var(--space-2);
        scrollbar-width: none;
    }

    .showroom-filters::-webkit-scrollbar {
        display: none;
    }

    .filter-btn {
        flex-shrink: 0;
        font-size: var(--text-xs);
        padding: var(--space-2) var(--space-3);
    }

    .showroom-card {
        flex: 0 0 240px;
    }
}

/* ===== RESPONSIVE - FOOTER ===== */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-8);
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-2);
        text-align: center;
    }

    /* Mobil form side düzeltmesi */
    .form-side {
        flex-direction: column;
        align-items: stretch;
        gap: var(--space-4);
    }

    .form-side-item {
        padding: var(--space-3);
        background: rgba(255, 255, 255, 0.03);
        border-radius: var(--radius-md);
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }

    /* Mobil nav */
    .nav-actions {
        gap: var(--space-2);
        flex-shrink: 0;
    }

    .nav-phone {
        padding: var(--space-2);
    }

    .nav-cta {
        display: flex;
    }

    .nav-cta .btn {
        padding: var(--space-2) var(--space-3);
        font-size: 11px;
        white-space: nowrap;
    }

    .features-title {
        text-align: center;
    }
}

/* ===== RESPONSIVE - TABLET FEATURES ===== */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 600px;
        margin: 0 auto;
    }

    .features-title {
        text-align: center;
    }
}
