﻿/*
Theme Name: Lastik Yol YardÄ±m
Theme URI: https://lastikyolyardimservisi.com
Author: Sukur AtaÃ§
Description: Mobil oto lastik yol yardÄ±m WordPress temasÄ±
Version: 1.0
Text Domain: lastikyolyardim
*/
/* ULTRA MODERN DARK THEME - LASTIK YOL YARDIM */
:root {
    --bg-body: #0f1115;
    --bg-card: #161b22;
    --bg-nav: rgba(15, 17, 21, 0.95);

    --primary: #ff3b30;
    /* ios-like red */
    --primary-glow: rgba(255, 59, 48, 0.4);

    --accent: #2980b9;
    /* sophisticated blue */
    --accent-glow: rgba(41, 128, 185, 0.4);

    --text-main: #ffffff;
    --text-muted: #8b949e;

    --border-color: #30363d;
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 8px;

    --font-display: 'Inter', system-ui, -apple-system, sans-serif;
}

body {
    background-color: var(--bg-body);
    color: var(--text-main);
    font-family: var(--font-display);
    line-height: 1.6;
    overflow-x: hidden;
}

/* === TYPOGRAPHY === */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-main);
    font-weight: 800;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

/* === NAVBAR === */
.navbar {
    background: var(--bg-nav) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 1.2rem 0;
}

.navbar-brand b {
    font-size: 1.2rem;
    background: linear-gradient(45deg, #fff, #bbb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-link {
    color: var(--text-muted) !important;
    font-weight: 600;
    margin: 0 10px;
    transition: 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
    text-shadow: 0 0 15px var(--primary-glow);
}

.btn-danger.flash-button {
    background: linear-gradient(135deg, var(--primary), #d63031);
    box-shadow: 0 4px 20px var(--primary-glow);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 var(--primary-glow);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 59, 48, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 59, 48, 0);
    }
}

/* === HERO SECTION === */
.hero-wrapper {
    position: relative;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 100px var(--bg-body);
    z-index: -1;
    filter: brightness(0.4) blur(2px);
    transform: scale(1.1);
}

.hero-content {
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4rem;
    background: linear-gradient(to right, #fff 20%, #aaa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* === CARDS & GRID === */
.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
    /* group hover effect wrapper */
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

.service-img-wrapper {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.service-card:hover img {
    transform: scale(1.1);
}

.service-body {
    padding: 1.5rem;
}

.service-title {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.btn-modern {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 10px 20px;
    width: 100%;
    margin-top: 1rem;
    transition: 0.3s;
}

.btn-modern:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* === STATS / FACTS === */
.stats-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--bg-body), #101216);
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
}

/* === FOOTER === */
.footer-new {
    background-color: #0b0d10;
    border-top: 1px solid var(--border-color);
    padding-top: 4rem;
    margin-top: 4rem;
    color: var(--text-muted);
}

.footer-input {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: white;
    padding: 15px;
    border-radius: var(--radius-sm);
}

.footer-input:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 2px var(--primary-glow);
}

/* === UTILS === */
.text-gradient {
    background: linear-gradient(45deg, var(--primary), #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-padding {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

/* Mobile Tweaks */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* Form Controls */
.form-modern {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: white;
    padding: 1rem;
    border-radius: var(--radius-sm);
}

.form-modern::placeholder {
    color: #555;
}

/* === NEW HEADER BUTTON === */
.btn-call-header {
    background: linear-gradient(135deg, #f1c40f, #f39c12);
    color: #000 !important;
    box-shadow: 0 4px 20px rgba(243, 156, 18, 0.4);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 800;
    animation: pulse-glow-yellow 2s infinite;
    transition: transform 0.3s;
}

.btn-call-header:hover {
    transform: scale(1.05);
    color: #000 !important;
}

@keyframes pulse-glow-yellow {
    0% {
        box-shadow: 0 0 0 0 rgba(243, 156, 18, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(243, 156, 18, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(243, 156, 18, 0);
    }
}

/* WordPress Admin Bar Fix */
.admin-bar .navbar.fixed-top {
    top: 32px;
}

@media (max-width: 782px) {
    .admin-bar .navbar.fixed-top {
        top: 46px;
    }
}