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

:root {
    --black: #0a0a0a;
    --dark: #111111;
    --darker: #1a1a1a;
    --dark-medium: #222222;
    --dark-light: #2a2a2a;
    --red: #dc2626;
    --red-dark: #b91c1c;
    --red-light: #ef4444;
    --red-glow: rgba(220, 38, 38, 0.3);
    --white: #ffffff;
    --gray: #9ca3af;
    --gray-light: #d1d5db;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--red) var(--black);
}

body {
    font-family: var(--font);
    background: var(--black);
    color: var(--gray-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--red-dark); }

/* ===== SCROLL PROGRESS BAR ===== */
#progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--red-dark), var(--red), var(--red-light));
    z-index: 10001;
    transition: width 0.05s linear;
    box-shadow: 0 0 10px var(--red-glow);
}

/* ===== CANVAS ===== */
#car-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    object-fit: cover;
    /* Ölçekleme scroll-animation.js içinde yapılıyor (görsel daha uzaktan görünsün) */
    transform: scale(1);
}

/* Araba görselinin üst ve alt bitiş çizgilerini gizleyen siyah yumuşak geçiş katmanı.
   Mobilde görsel küçük ölçekte ortalandığı için üstte ve altta boşluk + bitiş çizgisi belirir.
   Siyah gradient (gölge) ile bu kenarlar kaybolur, görsel arka plana gömülür. */
#car-edge-fade {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg,
            var(--black) 0%,
            rgba(10, 10, 10, 0.85) 8%,
            rgba(10, 10, 10, 0) 22%,
            rgba(10, 10, 10, 0) 78%,
            rgba(10, 10, 10, 0.85) 92%,
            var(--black) 100%);
}

/* Mobilde bitiş çizgileri daha belirgin olduğu için fade'i koyulaştır ve genişlet */
@media (max-width: 768px) {
    #car-edge-fade {
        background:
            linear-gradient(180deg,
                var(--black) 0%,
                rgba(10, 10, 10, 0.95) 10%,
                rgba(10, 10, 10, 0) 30%,
                rgba(10, 10, 10, 0) 70%,
                rgba(10, 10, 10, 0.95) 90%,
                var(--black) 100%);
    }
}

/* ===== SCROLL CONTAINER ===== */
#scroll-container {
    position: relative;
    z-index: 1;
    min-height: 500vh;
    pointer-events: auto;
}

/* ===== NAVIGATION ===== */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    padding: 1rem 0;
    transition: var(--transition);
    background: transparent;
}

#navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.5rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.nav-logo img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: brightness(1) drop-shadow(0 0 8px var(--red-glow));
}

.nav-logo span {
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--white), var(--red-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--gray);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
    letter-spacing: 0.5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 2px;
    background: var(--red);
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { transform: translateX(-50%) scaleX(1); }

/* === NAV CALL BUTTON === */
.nav-call-btn {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, var(--red-dark), var(--red));
    color: #ffffff !important;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(220, 38, 38, 0.3);
    box-shadow: 0 4px 15px var(--red-glow);
    transition: var(--transition);
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.nav-call-btn:hover {
    background: linear-gradient(135deg, var(--red), var(--red-light));
    box-shadow: 0 6px 25px var(--red-glow);
    transform: translateY(-2px);
    color: #ffffff !important;
}

.nav-call-btn i { font-size: 1rem; animation: phonePulse 2s infinite; }

@keyframes phonePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 5px;
}

.hamburger .bar {
    width: 28px;
    height: 2.5px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active .bar:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active .bar:nth-child(2) { opacity: 0; }
.hamburger.active .bar:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== SECTIONS ===== */
.section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 6rem 2rem;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-top: 1.5rem;
}

/* Divider */
.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
}

.divider-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.divider-icon {
    width: 50px;
    height: 50px;
    border: 2px solid var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 1.1rem;
}

/* ===== HERO SECTION ===== */
#hero {
    min-height: 100vh;
    position: relative;
    justify-content: center;
    padding-top: 8rem;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.6) 50%, rgba(10,10,10,0.9) 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.hero-logo img {
    width: 220px;
    height: 220px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 20px var(--red-glow));
    /* Giriş animasyonu ve loading geçişi tamamlandıktan sonra (2.6s) sakin bir şekilde süzülmeye başlar */
    animation: floatLogo 4s ease-in-out 2.6s infinite;
}

@keyframes floatLogo {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--white) 30%, var(--red-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 4px;
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--red-light);
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    font-family: var(--font);
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--red-dark), var(--red));
    color: var(--white);
    border-color: var(--red);
    box-shadow: 0 4px 15px var(--red-glow);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--red), var(--red-light));
    box-shadow: 0 6px 25px var(--red-glow);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--gray);
}

.btn-outline:hover {
    border-color: var(--red);
    color: var(--red-light);
    background: rgba(220, 38, 38, 0.1);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
    /* Butonların hemen altında, normal akış içinde ortalanmış */
    position: static;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    margin-top: 2.5rem;
    gap: 0.75rem;
    color: var(--gray);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeInUp 2s ease 1s both;
}

/* "AŞAĞI KAYDIRIN" yazısı: kırmızı neon gibi yanıp söner */
.scroll-indicator span {
    animation: scrollBlink 1.6s ease-in-out infinite;
}

@keyframes scrollBlink {
    0%, 100% {
        opacity: 1;
        text-shadow: 0 0 8px rgba(220, 38, 38, 0.5);
    }
    50% {
        opacity: 0.3;
        text-shadow: 0 0 18px rgba(220, 38, 38, 0.9), 0 0 40px rgba(220, 38, 38, 0.4);
    }
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid var(--gray);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 3px;
    height: 8px;
    background: var(--red);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/* ===== SERVICES ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    width: 100%;
}

.service-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--glass-shadow);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(220, 38, 38, 0.3);
    box-shadow: 0 12px 40px rgba(220, 38, 38, 0.15);
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(220,38,38,0.15), rgba(220,38,38,0.05));
    border: 2px solid rgba(220,38,38,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--red);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, rgba(220,38,38,0.25), rgba(220,38,38,0.1));
    border-color: var(--red);
    box-shadow: 0 0 20px var(--red-glow);
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.7;
}

/* ===== FORM CONTAINER ===== */
.form-container {
    max-width: 860px;
    width: 100%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 3.5rem;
    box-shadow: var(--glass-shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem;
    margin-bottom: 0.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
    min-width: 0;
}

.form-group-full {
    grid-column: 1 / -1;
    margin-top: 0.5rem;
}

/* Şase Numarası (VIN) alanı yardımcı notu */
.form-hint {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: var(--gray);
    opacity: 0.8;
    letter-spacing: 0.2px;
    line-height: 1.5;
}

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-light);
    margin-bottom: 0.7rem;
    letter-spacing: 0.3px;
}

.form-group label i {
    color: var(--red);
    margin-right: 0.5rem;
    width: 18px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.25rem 1.4rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--white);
    font-size: 1.05rem;
    font-family: var(--font);
    transition: var(--transition);
    outline: none;
    line-height: 1.5;
    min-height: 60px;
    height: 60px;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px var(--red-glow);
    background: rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.95rem;
}

.form-group select {
    cursor: pointer;
    color: var(--gray);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath fill='%239ca3af' d='M7 9.5L2 4.5h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 48px;
    background-size: 14px;
}

.form-group select option {
    background: var(--dark);
    color: var(--white);
    padding: 10px;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
    height: auto;
    padding: 1.25rem 1.4rem;
}

.form-group input[type="date"] {
    color: var(--gray-light);
    cursor: pointer;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(0.6);
    cursor: pointer;
    width: 18px;
    height: 18px;
}

/* ===== CUSTOM DATE PICKER (Özel Türkçe Takvim) ===== */
.custom-date-picker {
    position: relative;
    width: 100%;
}

.custom-date-picker input {
    cursor: pointer;
    padding-right: 3rem;
    color: var(--gray-light);
    background: rgba(255, 255, 255, 0.05);
}

.custom-date-picker input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.custom-date-picker input:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px var(--red-glow);
    background: rgba(255, 255, 255, 0.08);
}

.date-picker-toggle {
    position: absolute;
    top: 50%;
    right: 0.5rem;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    color: var(--red);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border-radius: 8px;
}

.date-picker-toggle:hover {
    color: var(--red-light);
    background: rgba(220, 38, 38, 0.1);
}

/* Popup takvim */
.date-picker-popup {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 320px;
    max-width: 100%;
    background: var(--dark);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    z-index: 1000;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.98);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.date-picker-popup.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dp-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    gap: 0.5rem;
}

.dp-month-year {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.dp-nav {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--gray);
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.dp-nav:hover {
    background: rgba(220, 38, 38, 0.15);
    border-color: var(--red);
    color: var(--red-light);
}

.dp-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    margin-bottom: 0.5rem;
}

.dp-weekdays span {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--red);
    padding: 0.4rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dp-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

.dp-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--gray-light);
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font);
    padding: 0;
}

.dp-day:hover:not(.disabled):not(.selected) {
    background: rgba(220, 38, 38, 0.15);
    color: var(--white);
}

.dp-day.empty {
    pointer-events: none;
}

.dp-day.disabled {
    color: rgba(255, 255, 255, 0.2);
    cursor: not-allowed;
    background: transparent;
}

.dp-day.selected {
    background: linear-gradient(135deg, var(--red-dark), var(--red));
    color: var(--white);
    font-weight: 700;
    box-shadow: 0 4px 12px var(--red-glow);
}

.dp-day.today:not(.selected) {
    border: 1px solid var(--red);
    color: var(--red-light);
    font-weight: 600;
}

.dp-footer {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

.dp-today-btn {
    width: 100%;
    padding: 0.6rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--red-light);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font);
}

.dp-today-btn:hover {
    background: rgba(220, 38, 38, 0.15);
    border-color: var(--red);
    color: var(--white);
}

/* Form Submit Button */
.form-submit {
    margin-top: 2.5rem;
    padding-top: 0.5rem;
}

.form-submit .btn-full {
    padding: 1.2rem 2rem !important;
    font-size: 1.15rem !important;
    border-radius: 12px;
    letter-spacing: 0.5px;
}

.form-message {
    margin-top: 1.5rem;
    padding: 1rem 1.2rem;
    border-radius: 10px;
    font-size: 0.95rem;
    display: none;
    text-align: center;
}

.form-message.success {
    display: block;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.form-message.error {
    display: block;
    background: rgba(220, 38, 38, 0.15);
    border: 1px solid rgba(220, 38, 38, 0.3);
    color: var(--red-light);
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    width: 100%;
    margin-bottom: 3rem;
}

.contact-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--glass-shadow);
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: rgba(220, 38, 38, 0.3);
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(220,38,38,0.15), rgba(220,38,38,0.05));
    border: 2px solid rgba(220,38,38,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.5rem;
    color: var(--red);
}

.contact-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.8rem;
}

.contact-card p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.8;
}

.contact-card a {
    color: var(--red-light);
    text-decoration: none;
    transition: var(--transition);
}

.contact-card a:hover { color: var(--white); }

/* E-posta kartındaki mesaj gönder butonu */
.contact-email-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, var(--red-dark), var(--red));
    color: #ffffff !important;
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(220, 38, 38, 0.3);
    box-shadow: 0 4px 15px var(--red-glow);
    transition: var(--transition);
    margin-top: 1rem;
    letter-spacing: 0.3px;
}

.contact-email-btn:hover {
    background: linear-gradient(135deg, var(--red), var(--red-light));
    box-shadow: 0 6px 25px var(--red-glow);
    transform: translateY(-2px);
    color: #ffffff !important;
}

.contact-email-btn i { font-size: 1rem; }

/* Telefon kartındaki hızlı destek & usta danışman butonları */
.contact-phone-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, var(--red-dark), var(--red));
    color: #ffffff !important;
    padding: 0.8rem 1.4rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(220, 38, 38, 0.3);
    box-shadow: 0 4px 15px var(--red-glow);
    transition: var(--transition);
    margin-top: 1rem;
    letter-spacing: 0.3px;
    width: 100%;
}

.contact-phone-btn:first-of-type {
    margin-top: 1.2rem;
}

.contact-phone-btn:hover {
    background: linear-gradient(135deg, var(--red), var(--red-light));
    box-shadow: 0 6px 25px var(--red-glow);
    transform: translateY(-2px);
    color: #ffffff !important;
}

.contact-phone-btn i { font-size: 1rem; }

/* Adres kartındaki "Yol Tarifi Al" linki */
.map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: var(--red-light);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.map-link:hover { color: var(--white); text-decoration: underline; }

/* ===== GOOGLE MAPS ===== */
.contact-map {
    max-width: 900px;
    width: 100%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--glass-shadow);
    margin-bottom: 3rem;
}

.map-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--glass-border);
}

.map-title {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.map-title i {
    font-size: 1.8rem;
    color: var(--red);
}

.map-title h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.2rem;
}

.map-title p {
    font-size: 0.9rem;
    color: var(--gray);
}

.map-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--red-dark), var(--red));
    color: #ffffff;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 15px var(--red-glow);
    transition: var(--transition);
    white-space: nowrap;
}

.map-cta:hover {
    background: linear-gradient(135deg, var(--red), var(--red-light));
    box-shadow: 0 6px 25px var(--red-glow);
    transform: translateY(-2px);
    color: #ffffff;
}

.map-embed {
    width: 100%;
    height: 380px;
    position: relative;
    overflow: hidden;
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    filter: grayscale(0.2) contrast(1.05) brightness(0.95);
    transition: filter 0.4s ease;
}

.map-embed iframe:hover {
    filter: grayscale(0) contrast(1) brightness(1);
}

/* Mobil harita yüksekliği */
@media (max-width: 768px) {
    .map-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.2rem 1.5rem;
    }
    .map-embed { height: 300px; }
}

/* ===== HAVALE / EFT ÖDEME BİLGİLERİ ===== */
.payment-section {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto 3rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--glass-shadow);
}

.payment-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.payment-title-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.25), rgba(220, 38, 38, 0.1));
    border: 2px solid rgba(220, 38, 38, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--red-light);
}

.payment-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.payment-subtitle {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.8;
    max-width: 650px;
    margin: 0 auto;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.payment-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.payment-card:hover {
    transform: translateY(-6px);
    border-color: rgba(220, 38, 38, 0.35);
    box-shadow: 0 12px 40px rgba(220, 38, 38, 0.15);
}

.payment-card-header {
    padding: 1.4rem 1.5rem;
    border-bottom: 3px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Banka kimlik rengine göre üst şerit */
.header-halkbank { border-bottom-color: #005696; }
.header-finansbank { border-bottom-color: #305da2; }
.header-ziraat { border-bottom-color: #e74011; }

.bank-logo-badge {
    width: 100%;
    max-width: 200px;
    background: #ffffff;
    border-radius: 12px;
    padding: 0.85rem 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.bank-logo-img {
    height: 30px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

.payment-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    flex: 1;
}

.payment-row {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.payment-label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray);
}

.payment-value {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--gray-light);
    word-break: break-word;
    line-height: 1.5;
}

.payment-iban-row {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px dashed var(--glass-border);
}

.iban-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.iban-value {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--white);
    font-family: monospace;
    word-break: break-all;
    line-height: 1.5;
}

.iban-copy-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, var(--red-dark), var(--red));
    color: #fff;
    border: none;
    padding: 0.55rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
    font-family: var(--font);
}

.iban-copy-btn:hover {
    background: linear-gradient(135deg, var(--red), var(--red-light));
    box-shadow: 0 4px 15px var(--red-glow);
    transform: translateY(-2px);
}

.iban-copy-btn.copied {
    background: linear-gradient(135deg, #16a34a, #22c55e);
}

/* Güvenlik uyarı kutusu */
.payment-security {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.25);
    border-radius: 12px;
    padding: 1.2rem 1.5rem;
    margin-bottom: 1.5rem;
}

.payment-security i {
    font-size: 1.4rem;
    color: #f59e0b;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.payment-security p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.7;
}

.payment-security strong {
    color: #fbbf24;
}

/* Ödeme destek iletişim */
.payment-support {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    text-align: center;
}

.payment-support > i {
    font-size: 1.5rem;
    color: var(--red-light);
}

.payment-support span {
    font-size: 0.95rem;
    color: var(--gray);
}

.payment-support a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--red-light);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.payment-support a:hover {
    color: var(--white);
}

@media (max-width: 1024px) {
    .payment-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .payment-section { padding: 1.75rem; }
    .payment-title { font-size: 1.5rem; }
    .payment-grid { grid-template-columns: 1fr; }
    .payment-subtitle { font-size: 0.95rem; }
    .payment-support { flex-direction: column; }
}

/* ===== TESTIMONIALS (MÜŞTERİ YORUMLARI) ===== */
#testimonials {
    padding-bottom: 8rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    width: 100%;
}

.testimonial-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--glass-shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(220, 38, 38, 0.3);
    box-shadow: 0 12px 40px rgba(220, 38, 38, 0.15);
}

.testimonial-top {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red-dark), var(--red));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 12px var(--red-glow);
}

.testimonial-user {
    flex: 1;
}

.testimonial-user h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.15rem;
}

.testimonial-user span {
    font-size: 0.8rem;
    color: var(--gray);
}

.testimonial-g {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4285F4;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    color: #FBBC04;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.8;
    font-style: italic;
    position: relative;
    padding-left: 1rem;
    border-left: 3px solid var(--red);
    flex: 1;
}

.testimonials-cta {
    margin-top: 3.5rem;
    display: flex;
    justify-content: center;
}

@media (max-width: 1024px) {
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .testimonials-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .testimonials-cta .btn { width: 100%; justify-content: center; }
}

.contact-cta {
    text-align: center;
    margin-top: 1rem;
}

/* ===== CINEMATIC SECTION TITLES (HİZMETLERİMİZ, RANDEVU AL, vb.) ===== */
/* Eski .section-header h2 boyutunda beyaz başlık.
   Ekrana girerken yumuşak fade-in; sayfa aşağı kayarken yukarıdan aşağıya
   sinematik silinme (clip-path wipe). Zoom/scale yok — harfler yer değiştirmez. */

.section-header .cinematic-title {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.2;
    color: var(--white);
    font-family: var(--font);
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
    will-change: clip-path, opacity, transform;
}

/* Scroll ile görünür olunca başlık sadece yumuşakça belirir (zoom yok) */
.section-header.scrolled-visible .cinematic-title {
    opacity: 1;
}

/* Mobil başlık boyutları (eskisi gibi küçük) */
@media (max-width: 768px) {
    .section-header .cinematic-title {
        font-size: 2rem;
        letter-spacing: 1.5px;
    }
}

@media (max-width: 480px) {
    .section-header .cinematic-title { font-size: 1.6rem; letter-spacing: 1px; }
}

/* ===== ABOUT TITLE (HARİTA ALTINDAKİ HAKKIMIZDA BAŞLIĞI) ===== */
.about-title {
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
    padding: 2rem 0 1rem;
    position: relative;
    will-change: transform, opacity;
}

.about-headline {
    font-size: 4.8rem;
    font-weight: 900;
    letter-spacing: 14px;
    text-transform: uppercase;
    line-height: 1.15;
    background: linear-gradient(
        135deg,
        #ff6b35 0%,
        #dc2626 20%,
        #b91c1c 40%,
        #d4d4d8 60%,
        #a1a1aa 75%,
        #e5e7eb 100%
    );
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transform: translateY(60px) scale(0.92);
    filter: blur(12px);
    animation: gradientSlide 7s ease-in-out infinite;
    transition: clip-path 0.15s linear;
    font-family: var(--font);
    text-shadow: none;
    position: relative;
    display: inline-block;
}

/* Yazının altında ince bir çizgi efekti (profesyonel duruş) */
.about-headline::after {
    content: '';
    display: block;
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, var(--red), transparent);
    margin: 0.6rem auto 0;
    border-radius: 2px;
    -webkit-text-fill-color: initial; /* reset for pseudo-element */
}

/* Scroll ile görünür olunca başlık slow-motion kayarak belirir */
.about-title.scrolled-visible .about-headline {
    animation: gradientSlide 7s ease-in-out infinite, headlineReveal 2.8s cubic-bezier(0.12, 1, 0.3, 1) forwards;
}

@keyframes gradientSlide {
    0% { background-position: 0% 50%; }
    25% { background-position: 50% 50%; }
    50% { background-position: 100% 50%; }
    75% { background-position: 50% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes headlineReveal {
    0% {
        opacity: 0;
        transform: translateY(70px) scale(0.88);
        letter-spacing: 50px;
        filter: blur(16px);
    }
    50% {
        opacity: 1;
        transform: translateY(-8px) scale(1.03);
        letter-spacing: 18px;
        filter: blur(0);
    }
    70% {
        transform: translateY(2px) scale(0.99);
        letter-spacing: 14px;
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        letter-spacing: 14px;
        filter: blur(0);
    }
}

.about-title p {
    color: var(--gray);
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 2;
    margin-top: 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.about-title.scrolled-visible p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

@media (max-width: 768px) {
    .about-headline {
        font-size: 3rem;
        letter-spacing: 10px;
    }
    @keyframes headlineReveal {
        0% {
            opacity: 0;
            transform: translateY(40px) scale(0.92);
            letter-spacing: 25px;
            filter: blur(8px);
        }
        60% {
            opacity: 1;
            transform: translateY(-4px) scale(1.01);
            letter-spacing: 12px;
            filter: blur(0);
        }
        100% {
            opacity: 1;
            transform: translateY(0) scale(1);
            letter-spacing: 10px;
            filter: blur(0);
        }
    }
    .about-title p { font-size: 1rem; }
}

@media (max-width: 480px) {
    .about-headline { font-size: 2.2rem; letter-spacing: 6px; }
}

/* ===== FOOTER ===== */
#footer {
    padding: 4rem 2rem;
    text-align: center;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.footer-logo span {
    font-size: 1.3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--white), var(--red-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: footerGlow 3s ease-in-out infinite;
}

/* Footer WOSMERS yazısı neon glow animasyonu */
@keyframes footerGlow {
    0%, 100% {
        filter: drop-shadow(0 0 4px rgba(220,38,38,0.3));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 0 18px rgba(220,38,38,0.8)) drop-shadow(0 0 40px rgba(220,38,38,0.3));
        transform: scale(1.06);
    }
}

#footer p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 1.2rem;
    transition: var(--transition);
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--gray);
    opacity: 0.7;
}

.footer-legal {
    margin-top: 0.5rem;
    font-size: 0.8rem;
}

.footer-legal a {
    color: var(--gray);
    text-decoration: underline;
    transition: var(--transition);
}

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

/* ===== FLOATING SOCIAL BUTTONS (Instagram + WhatsApp) ===== */
.floating-social {
    position: fixed;
    bottom: 6.5rem;   /* yukarı ok butonunun hemen üstünde */
    right: 2rem;
    z-index: 998;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
}

.floating-social.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Footer'daki sosyal ikonlarla aynı şeffaf/glass görünüm */
.float-social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    text-decoration: none;
    color: var(--gray);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.float-social-btn:hover {
    transform: translateY(-3px) scale(1.05);
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
    box-shadow: 0 6px 25px var(--red-glow);
}

/* ===== BACK TO TOP ===== */
#back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red-dark), var(--red));
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px var(--red-glow);
    transition: var(--transition);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

#back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }

#back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px var(--red-glow);
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-title { font-size: 3.5rem; }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: var(--transition);
        border-left: 1px solid var(--glass-border);
        z-index: 9999;
    }
    .nav-menu.active { right: 0; }
    .nav-call-btn { display: none; }
    .hamburger { display: flex; z-index: 10001; }
    .hero-title { font-size: 2.8rem; }
    .hero-subtitle { font-size: 1.2rem; letter-spacing: 4px; }
    .hero-desc { font-size: 1rem; }
    .hero-logo img { width: 175px; height: 175px; }
    /* Mobil: "Aşağı Kaydırın" göstergesi hizmetler bölümüne taşmasın,
       hero içeriğinin (butonların) hemen altında düzgün dursun */
    .scroll-indicator {
        position: static;
        transform: none;
        margin-top: 3rem;
        animation: fadeInUp 2s ease 1s both;
    }
    .section-header h2 { font-size: 2rem; }
    .services-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .form-container { padding: 2rem 1.5rem; }
    .form-row { grid-template-columns: 1fr; gap: 1rem; }
    .form-group-full { grid-column: 1; }
    .form-submit { margin-top: 1.5rem; }
    .contact-grid { grid-template-columns: 1fr; }
    .btn-large { padding: 1rem 2rem; font-size: 1rem; }
    .section { padding: 4rem 1.5rem; }
    #back-to-top { bottom: 1rem; right: 1rem; width: 52px; height: 52px; font-size: 1rem; }
    /* Mobil: yüzen sosyal butonlar da back-to-top üstünde kalsın */
    .floating-social { bottom: 5.2rem; right: 1rem; }
    .float-social-btn { width: 48px; height: 48px; font-size: 1.2rem; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.2rem; letter-spacing: 2px; }
    .hero-subtitle { font-size: 1rem; letter-spacing: 3px; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .btn { width: 100%; justify-content: center; }
    .nav-container { padding: 0 1rem; }
}

/* ===== LOADING SCREEN ===== */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, #141414 0%, var(--black) 70%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    /* JS, logoyu anasayfadaki hero logosuyla aynı dikey konuma getirir */
    padding-top: calc(50vh - 160px);
    z-index: 99999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#loading-screen.hidden { opacity: 0; visibility: hidden; }

.loading-logo {
    /* Yumuşak, sıçramasız giriş */
    animation: logoEntrance 1.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.loading-logo img {
    width: 160px;
    height: 160px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 25px var(--red-glow));
    /* Merkezden büyür — anasayfadaki hero logosunun merkeziyle aynı hizada zoomlanır */
    transform-origin: center center;
    /* Logo yavaş ve yumuşak bir şekilde yanıp söner + küçük zoom hareketleriyle büyüyüp küçülür */
    animation: logoBlinkZoom 1.8s ease-in-out 0.7s infinite;
    transition: transform 1.3s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.3s ease;
}

/* Loading kapanırken logo (160px), anasayfadaki (hero) logonun boyutuna (220px) 
   merkezden zoomlanır ve kaybolur — hero logosu arkada aynı noktada hazır olduğu için 
   aralarında görünür bir kesinti yaşanmaz, tek parça akar. */
#loading-screen.hidden .loading-logo img {
    animation: none;
    transform: scale(1.375);
    opacity: 0;
}

@keyframes logoEntrance {
    0% { opacity: 0; transform: scale(0.75); }
    100% { opacity: 1; transform: scale(1); }
}

/* Logo yanıp sönme + yumuşak zoom büyüyüp küçülme */
@keyframes logoBlinkZoom {
    0%, 100% { 
        transform: scale(1); 
        opacity: 1; 
        filter: drop-shadow(0 0 8px rgba(220,38,38,0.4)); 
    }
    50% { 
        transform: scale(1.08); 
        opacity: 0.8; 
        filter: drop-shadow(0 0 35px var(--red-glow)); 
    }
}

.loading-title {
    font-size: 2.2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--white) 30%, var(--red-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 6px;
    margin-bottom: 0.3rem;
    animation: titleGlow 1.5s ease-in-out infinite;
    opacity: 0;
    animation-delay: 0.3s;
    animation-fill-mode: both;
}

@keyframes titleGlow {
    0%, 100% { filter: drop-shadow(0 0 5px rgba(220,38,38,0.3)); }
    50% { filter: drop-shadow(0 0 20px rgba(220,38,38,0.7)), drop-shadow(0 0 40px rgba(220,38,38,0.4)); }
}

.loading-sub {
    color: var(--gray);
    font-size: 0.9rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.5s forwards;
}

/* Yükleme çubuğunun üzerindeki yazı */
.loading-text {
    color: var(--red-light);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 0.6s ease 0.6s forwards, textPulse 1.2s ease-in-out 1.2s infinite;
}

@keyframes textPulse {
    0%, 100% { opacity: 0.7; text-shadow: 0 0 5px rgba(220,38,38,0.4); }
    50% { opacity: 1; text-shadow: 0 0 16px rgba(220,38,38,0.9), 0 0 32px rgba(220,38,38,0.4); }
}

.loading-bar {
    width: 260px;
    height: 6px;
    background: var(--dark-light);
    border-radius: 4px;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 0.6s ease 0.7s forwards;
    box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.6);
}

.loading-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--red-dark), var(--red), var(--red-light));
    border-radius: 4px;
    box-shadow: 0 0 15px var(--red-glow), 0 0 30px rgba(220, 38, 38, 0.4);
    animation: barGlow 1s ease-in-out infinite;
}

/* Kırmızı ışıklı bar parlaması */
@keyframes barGlow {
    0%, 100% { box-shadow: 0 0 8px var(--red-glow), 0 0 16px rgba(220, 38, 38, 0.2); }
    50% { box-shadow: 0 0 20px var(--red-glow), 0 0 40px rgba(220, 38, 38, 0.5); }
}

/* ===== PAGE LOAD ENTRANCE ===== */
@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

/* WOSMERS ana başlık giriş animasyonu — blur yok, temiz ve hızlı */
@keyframes heroTitleEntrance {
    0% {
        opacity: 0;
        transform: translateY(60px) scale(0.88);
        letter-spacing: 18px;
    }
    60% {
        opacity: 1;
        transform: translateY(-5px) scale(1.02);
        letter-spacing: 5px;
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        letter-spacing: 4px;
    }
}

/* WOSMERS ana başlık neon glow (hero) */
@keyframes heroGlow {
    0%, 100% {
        filter: drop-shadow(0 0 8px rgba(220,38,38,0.35)) drop-shadow(0 0 20px rgba(220,38,38,0.15));
    }
    50% {
        filter: drop-shadow(0 0 22px rgba(220,38,38,0.75)) drop-shadow(0 0 50px rgba(220,38,38,0.35));
    }
}

.nav-logo,
.nav-menu,
.nav-call-btn {
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.3s forwards;
}

.nav-call-btn { animation-delay: 0.5s; }

/* WOSMERS logosu: blur'dan netleşip hafif büyüyerek ve neon glow açılarak girer */
.hero-logo { 
    opacity: 0; 
    animation: heroLogoEntrance 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards; 
}

@keyframes heroLogoEntrance {
    0% {
        opacity: 0;
        transform: scale(0.72) translateY(24px);
        filter: blur(12px) drop-shadow(0 0 0 rgba(220, 38, 38, 0));
    }
    55% {
        opacity: 1;
        transform: scale(1.06) translateY(-4px);
        filter: blur(0) drop-shadow(0 0 45px rgba(220, 38, 38, 0.75));
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
        filter: blur(0) drop-shadow(0 0 20px rgba(220, 38, 38, 0.3));
    }
}

/* WOSMERS ana başlık: yükleme ekranı kapanınca (2.2sn) hızlı ve net giriş yapar.
   Blur yok — hafif yukarı kayma + büyüme ile akıcı belirir,
   ardından (3.4sn) neon glow efektiyle sürekli parlar. */
.hero-title { 
    display: inline-block;
    will-change: transform, opacity, filter;
    position: relative;
    animation: heroTitleEntrance 0.9s cubic-bezier(0.22, 1, 0.36, 1) 2.2s both,
               heroGlow 3s ease-in-out 3.4s infinite;
}


.hero-subtitle { 
    opacity: 0; 
    animation: fadeInUp 1s ease 0.4s forwards; 
}

.hero-desc { 
    opacity: 0; 
    animation: fadeInUp 1s ease 0.6s forwards; 
}

.hero-buttons .btn-primary { 
    opacity: 0; 
    animation: fadeInUp 1s ease 0.8s forwards; 
}

.hero-buttons .btn-outline { 
    opacity: 0; 
    animation: fadeInUp 1s ease 1s forwards; 
}

/* Loading ekranı arka planda hero zaten animasyonunu oynatır.
   Böylece yükleme bitince logo kaybolup yeniden çıkmaz, kesintisiz akar. */

/* Service cards, contact cards ve form-container yukarıdaki varsayılan .reveal geçişiyle belirir */

/* ===== HONEYPOT SPAM KORUMASI ===== */
.honeypot-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* ===== COOKIE CONSENT BANNER (KVKK/Çerez Onayı) ===== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99998;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.5);
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
    padding: 1rem 0;
}

.cookie-consent.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.15), rgba(220, 38, 38, 0.05));
    border: 1px solid rgba(220, 38, 38, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--red);
}

.cookie-text {
    flex: 1;
    min-width: 250px;
}

.cookie-text h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.3rem;
}

.cookie-text p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.6;
}

.cookie-text a {
    color: var(--red-light);
    text-decoration: underline;
}

.cookie-text a:hover {
    color: var(--white);
}

.cookie-actions {
    display: flex;
    gap: 0.8rem;
    flex-shrink: 0;
}

/* Compact butonlar */
.btn-compact {
    padding: 0.7rem 1.5rem;
    font-size: 0.85rem;
}

.btn-compact.btn-outline {
    background: transparent;
    color: var(--gray);
    border-color: var(--glass-border);
}

.btn-compact.btn-outline:hover {
    border-color: var(--red);
    color: var(--red-light);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1rem 1.5rem;
    }
    .cookie-actions {
        width: 100%;
    }
    .cookie-actions .btn {
        flex: 1;
        justify-content: center;
    }
}

/* ===== KVKK MODAL ===== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show .modal-overlay {
    opacity: 1;
}

.modal-content {
    position: relative;
    background: var(--dark);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    max-width: 700px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(30px) scale(0.97);
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.modal.show .modal-content {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--gray);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 3;
}

.modal-close:hover {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}

.modal-content h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--red);
}

.modal-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--red-light);
    margin: 1.5rem 0 0.5rem;
}

.modal-body p {
    font-size: 0.92rem;
    color: var(--gray);
    line-height: 1.8;
}

.modal-body a {
    color: var(--red-light);
    text-decoration: underline;
}

.modal-close-btn {
    margin-top: 2rem;
    width: 100%;
    justify-content: center;
}

@media (max-width: 768px) {
    .modal { padding: 1rem; }
    .modal-content { padding: 2rem 1.5rem; }
}


