﻿@import url('css2');

/* --- Modo Rent A Car — brand tokens --- */
:root {
    --primary-color: #0284c7;
    --secondary-color: #0c4a6e;
    --accent-color: #f97316;
    --success-color: #059669;
    --bg-color: #ffffff;
    --bg-secondary: #f0f9ff;
    --text-primary: #0f172a;
    --text-muted: #64748b;
    --border-color: #bae6fd;
    --border-radius: 16px;
    --border-radius-sm: 8px;
    --border-radius-lg: 24px;
    --box-shadow: 0 4px 24px rgba(14, 165, 233, 0.08);
    --box-shadow-lg: 0 8px 40px rgba(14, 165, 233, 0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --gradient-primary: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    --gradient-accent: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

html {
    box-sizing: border-box;
    font-size: 16px;
}

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

body {
    margin: 0;
    padding: 0;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-color);
    color: var(--text-primary);
    min-height: 100vh;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

/* --- Buttons --- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(2, 132, 199, 0.25);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(2, 132, 199, 0.35);
}

/* --- Kiralama Formu --- */
.rental-form-section {
    background: var(--gradient-accent);
    padding: 4rem 0 3rem 0;
    min-height: 70vh;
    position: relative;
}

.rental-form-title {
    font-size: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    margin-bottom: 2rem;
    text-align: center;
}

.rental-form-card {
    background: var(--bg-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow-lg);
    max-width: 580px;
    margin: 0 auto;
    padding: 3rem 2.5rem 2.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    border: 1px solid var(--border-color);
    position: relative;
}

.rental-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.rental-form-card label {
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.form-input {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    background: var(--bg-secondary);
    font-size: 1rem;
    margin-bottom: 1rem;
    transition: var(--transition);
    font-family: inherit;
    color: var(--text-primary);
}

.form-input:focus {
    border: 2px solid var(--primary-color);
    outline: none;
    background: var(--bg-color);
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.15);
}

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

.rental-submit-btn {
    width: 100%;
    font-size: 1.12em;
    padding: 0.9em 0;
}

.whatsapp-hizli-btn {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #fff;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.2);
    position: relative;
    overflow: hidden;
}

.whatsapp-hizli-btn:hover {
    background: linear-gradient(135deg, #128c7e 0%, #075e54 100%);
    transform: translateY(-2px);
}

@media (max-width: 600px) {
    .rental-form-card {
        padding: 1.1rem 0.7rem;
        max-width: 99vw;
    }

    .rental-form-title {
        font-size: 1.35rem;
    }
}

/* --- Card Hover --- */
.card-hover {
    transition: transform .25s ease, box-shadow .25s ease;
}

.card-hover:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(14, 165, 233, .12);
}

/* --- WhatsApp Floating Button Pulse --- */
@keyframes wa-pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    50% {
        box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
    }
}

.wa-float {
    animation: wa-pulse 2s infinite;
}

.font-inter {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

@media (max-width: 767px) {
    body {
        padding-bottom: 4.25rem;
    }

    .wa-float {
        display: none;
    }

    .card-hover:hover {
        transform: none;
        box-shadow: 0 12px 28px rgba(14, 165, 233, .1);
    }

    input,
    select,
    textarea {
        font-size: 16px;
    }
}
