/*
Theme Name: Gezici Oto Lastik
Theme URI: http://localhost/geziciotolastik
Author: Gezici Oto Lastik
Description: Gezici Oto Lastik & Yol Yardım - SEO Optimized Theme
Version: 1.0.0
License: GPL v2 or later
Text Domain: gezici-lastik
Tags: business, seo, local-business
*/

/* ===== LUCIDE ICONS ===== */
.gl-icon {
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}

/* ===== CSS RESET & BASE ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary: #e63012;
    --primary-dark: #c0260f;
    --secondary: #1a1a2e;
    --accent: #f5a623;
    --text: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #111827;
    --border: #e2e8f0;
    --shadow: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.15);
    --radius: 8px;
    --radius-lg: 16px;
    --font-main: 'Manrope', 'Segoe UI', Arial, sans-serif;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    color: var(--text);
    line-height: 1.7;
    background: var(--white);
    overflow-x: hidden;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 1.3;
    color: var(--secondary);
}

h1 { font-size: clamp(1.8rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1rem; }

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.section-title p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 1rem auto 0;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 48, 18, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-accent {
    background: var(--accent);
    color: var(--secondary);
}

.btn-accent:hover {
    background: #e0951f;
    color: var(--secondary);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.1rem;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--secondary);
    color: rgba(255,255,255,0.85);
    padding: 8px 0;
    font-size: 0.875rem;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.top-bar-contact {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.top-bar-contact a {
    color: rgba(255,255,255,0.85);
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-contact a:hover {
    color: var(--accent);
}

.top-bar-badge {
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    animation: pulse 2s infinite;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.badge-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* ===== HEADER ===== */
.site-header {
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    gap: 2rem;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

/* Custom logo (uploaded via Customizer) */
.site-logo--image {
    gap: 0;
}

.site-logo--image .custom-logo-link {
    display: flex;
    align-items: center;
}

.site-logo--image .custom-logo {
    display: block;
    max-height: 56px;
    width: auto;
    max-width: 220px;
}

/* Footer logo — slightly smaller */
.site-logo--footer .custom-logo {
    max-height: 48px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
}

.logo-text .site-name {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.2;
}

.logo-text .site-tagline {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
}

/* ===== NAVIGATION ===== */
.main-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.main-nav > ul {
    display: flex;
    gap: 0.25rem;
    align-items: center;
}

.main-nav > ul > li {
    position: relative;
}

.main-nav > ul > li > a {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    color: var(--text);
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: var(--transition);
}

.main-nav > ul > li > a:hover,
.main-nav > ul > li.current-menu-item > a {
    color: var(--primary);
    background: rgba(230, 48, 18, 0.08);
}

/* Dropdown */
.main-nav .sub-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    border: 1px solid var(--border);
    z-index: 100;
}

.main-nav > ul > li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-nav .sub-menu li a {
    display: block;
    padding: 10px 16px;
    color: var(--text);
    font-size: 0.9rem;
    transition: var(--transition);
    border-bottom: 1px solid var(--border);
}

.main-nav .sub-menu li:last-child a {
    border-bottom: none;
}

.main-nav .sub-menu li a:hover {
    background: var(--bg-light);
    color: var(--primary);
    padding-left: 22px;
}

.nav-cta {
    background: var(--primary);
    padding: 0 !important;
    border-radius: var(--radius) !important;
}

.main-nav > ul > li.nav-cta > a {
    color: #ffffff !important;
    padding: 10px 20px !important;
    border-radius: var(--radius) !important;
    background: transparent !important;
}

.nav-cta:hover {
    background: var(--primary-dark) !important;
}

.main-nav > ul > li.nav-cta:hover > a {
    color: #ffffff !important;
    background: transparent !important;
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(135deg, var(--secondary) 0%, #16213e 50%, #0f3460 100%);
    color: var(--white);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='40' fill='none' stroke='rgba(255,255,255,0.03)' stroke-width='2'/%3E%3C/svg%3E") repeat;
    opacity: 0.5;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(230, 48, 18, 0.2);
    border: 1px solid rgba(230, 48, 18, 0.4);
    color: #ff8f7a;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-title span {
    color: var(--accent);
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.hero-stat-item {
    text-align: center;
}

.hero-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.hero-stat-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    margin-top: 4px;
}

.hero-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.hero-card-title {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-phone-card {
    background: var(--primary);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.hero-phone-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-phone-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 1px;
}

.hero-services-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hero-service-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
}

.hero-service-item::before {
    content: '✓';
    color: var(--accent);
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
}

/* ===== URGENCY BAR ===== */
.urgency-bar {
    background: var(--primary);
    color: var(--white);
    padding: 12px 0;
    text-align: center;
}

.urgency-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.urgency-bar p {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.urgency-bar a {
    color: var(--accent);
    font-weight: 800;
    font-size: 1.2rem;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(230, 48, 18, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: var(--white);
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--secondary);
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

.service-vehicles {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1.25rem;
}

.vehicle-tag {
    background: var(--bg-light);
    color: var(--text);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    border: 1px solid var(--border);
}

.service-link {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.service-link:hover {
    gap: 8px;
}

/* ===== WHY US SECTION ===== */
.why-us-section {
    padding: 80px 0;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-us-content h2 {
    margin-bottom: 1.5rem;
}

.why-us-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.why-us-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.why-us-icon {
    width: 48px;
    height: 48px;
    background: rgba(230, 48, 18, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.why-us-text h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: var(--secondary);
}

.why-us-text p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* "Neden Biz" görsel kolonu */
.why-us-image-col {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: var(--bg-light);
}

.why-us-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.why-us-img-placeholder {
    width: 100%;
    height: 100%;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--text-light);
    text-align: center;
    padding: 2rem;
    border: 2px dashed var(--border);
    border-radius: var(--radius-lg);
}

.why-us-img-placeholder p {
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 0;
}

/* ===== STATS BAND ===== */
.stats-band {
    background: var(--primary);
    padding: 50px 0;
}

.stats-band-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stats-band-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stats-band-number {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.stats-band-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-card {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    border: 2px solid transparent;
    transition: var(--transition);
}

.stat-card:hover {
    border-color: var(--primary);
    background: white;
    box-shadow: var(--shadow);
}

.stat-card:first-child {
    background: var(--primary);
    color: white;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stat-card:first-child .stat-number {
    color: white;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 6px;
}

.stat-card:first-child .stat-label {
    color: rgba(255,255,255,0.85);
}

/* ===== SERVICE AREAS SECTION ===== */
.areas-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.areas-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.area-tab {
    background: var(--white);
    border: 2px solid var(--border);
    color: var(--text);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.area-tab.active,
.area-tab:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.area-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: var(--transition);
    text-decoration: none;
    color: var(--text);
    border: 1px solid var(--border);
    font-weight: 600;
    font-size: 0.9rem;
}

.area-card:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.area-card .gl-icon {
    flex-shrink: 0;
}

/* ===== VEHICLES SECTION ===== */
.vehicles-section {
    padding: 80px 0;
}

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.vehicle-card {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 1.5rem 1rem;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: default;
}

.vehicle-card:hover {
    background: white;
    border-color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.vehicle-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.vehicle-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--secondary);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
}

.contact-info-content h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 4px;
}

.contact-info-content p,
.contact-info-content a {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary);
    margin: 0;
}

.contact-info-content a:hover {
    color: var(--primary);
}

.contact-cta-box {
    background: var(--secondary);
    border-radius: var(--radius-lg);
    padding: 2rem;
    color: white;
    text-align: center;
}

.contact-cta-box h3 {
    color: white;
    margin-bottom: 0.75rem;
}

.contact-cta-box p {
    color: rgba(255,255,255,0.75);
    margin-bottom: 1.5rem;
}

.contact-phone-big {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.map-placeholder {
    background: var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 350px;
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
    background: linear-gradient(135deg, var(--secondary) 0%, #0f3460 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-hero h1 {
    color: white;
    margin-bottom: 0.75rem;
}

.page-hero p {
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    align-items: center;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 1rem;
}

.breadcrumb a {
    color: rgba(255,255,255,0.7);
}

.breadcrumb a:hover {
    color: var(--accent);
}

.breadcrumb-sep {
    opacity: 0.5;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.75);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo-text .site-name {
    color: white;
}

.footer-brand p {
    margin-top: 1rem;
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-phone-cta {
    background: var(--primary);
    border-radius: var(--radius);
    padding: 1rem;
    text-align: center;
    margin-top: 1rem;
}

.footer-phone-cta span {
    display: block;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.8);
}

.footer-phone-cta a {
    display: block;
    font-size: 1.3rem;
    font-weight: 800;
    color: white;
    margin-top: 2px;
}

.footer-col h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a {
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-links a::before {
    content: '›';
    color: var(--primary);
    font-size: 1.1rem;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.9rem;
}

.footer-contact-item span:first-child {
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    padding: 1.25rem 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
}

/* ===== FLOATING PHONE ===== */
.floating-phone {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.floating-btn-phone,
.floating-btn-wa {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-btn-phone {
    background: var(--primary);
    box-shadow: 0 4px 20px rgba(230, 48, 18, 0.5);
    animation: floatPulse 2s infinite;
}

.floating-btn-wa {
    background: #25D366;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
}

.floating-btn-wa:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.65);
}

@keyframes floatPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 20px rgba(230, 48, 18, 0.5); }
    50% { transform: scale(1.08); box-shadow: 0 8px 30px rgba(230, 48, 18, 0.7); }
}

/* ===== LOCATION PAGE ===== */
.location-content {
    padding: 60px 0;
}

.location-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.location-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary);
}

.sidebar-card h4 {
    margin-bottom: 1rem;
    color: var(--secondary);
}

.sidebar-phone-link {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: white;
    padding: 1rem;
    border-radius: var(--radius);
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    text-align: center;
    justify-content: center;
}

.sidebar-phone-link:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
}

.sidebar-services-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.sidebar-services-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text);
    padding: 6px 0;
    border-bottom: 1px solid var(--border);
}

.sidebar-services-list li:last-child {
    border-bottom: none;
}

.sidebar-services-list li::before {
    content: '✓';
    color: var(--primary);
    font-weight: 800;
}

/* ===== PROSE CONTENT ===== */
.prose h2 { margin: 2rem 0 1rem; }
.prose h3 { margin: 1.5rem 0 0.75rem; }
.prose p { margin-bottom: 1rem; color: var(--text); }
.prose ul { margin: 1rem 0 1rem 1.5rem; list-style: disc; }
.prose ul li { margin-bottom: 0.5rem; color: var(--text); }
.prose strong { color: var(--secondary); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-inner,
    .why-us-grid,
    .contact-grid,
    .location-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-section {
        padding: 60px 0 40px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        box-shadow: -4px 0 20px rgba(0,0,0,0.15);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        transition: right 0.3s ease;
        overflow-y: auto;
        z-index: 999;
    }

    .main-nav.open {
        right: 0;
    }

    .main-nav > ul {
        flex-direction: column;
        width: 100%;
    }

    .main-nav > ul > li {
        width: 100%;
    }

    .main-nav > ul > li > a {
        padding: 12px 0;
        border-bottom: 1px solid var(--border);
        border-radius: 0;
    }

    .main-nav .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: var(--bg-light);
        margin-left: 1rem;
        border-radius: var(--radius);
        margin-top: 0.5rem;
        display: none;
    }

    .main-nav > ul > li.open .sub-menu {
        display: block;
    }

    .top-bar-inner {
        flex-direction: column;
        gap: 0.4rem;
        text-align: center;
    }

    .hero-inner {
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .why-us-image-col {
        aspect-ratio: 16 / 9;
    }

    .stats-band-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vehicles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .floating-phone {
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .btn-lg {
        padding: 14px 24px;
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* ==============================================
   HIZMET BÖLGELERI PAGE
   ============================================== */

.areas-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.areas-info-card {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    text-align: center;
    border: 1px solid var(--border);
    transition: box-shadow var(--transition);
}

.areas-info-card:hover {
    box-shadow: var(--shadow-md);
}

.areas-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: rgba(230, 48, 18, 0.1);
    border-radius: 50%;
    margin: 0 auto 1rem;
    color: var(--primary);
}

.areas-info-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.areas-info-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* ==============================================
   FAQ LIST
   ============================================== */

/* FAQ two-column layout */
.faq-two-col {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 4rem;
    align-items: start;
}

.faq-col-questions {
    min-width: 0;
}

.faq-col-image {
    position: sticky;
    top: 100px;
}

.faq-side-image {
    width: 100%;
    height: 100%;
    max-height: 560px;
    object-fit: cover;
    border-radius: var(--radius-lg, 12px);
    display: block;
    box-shadow: var(--shadow-lg, 0 8px 32px rgba(0,0,0,0.12));
}

.faq-img-placeholder {
    background: var(--bg);
    border-radius: var(--radius-lg, 12px);
    border: 2px dashed var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 3rem 2rem;
    text-align: center;
    color: var(--text-light);
    min-height: 320px;
}

.faq-img-placeholder svg {
    color: var(--primary);
    opacity: 0.4;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #f8f9fa;
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
    overflow: hidden;
    transition: box-shadow var(--transition);
}

.faq-item.faq-open {
    box-shadow: var(--shadow);
}

.faq-item h4 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary);
    cursor: pointer;
    margin: 0;
    user-select: none;
    transition: color var(--transition);
}

.faq-item h4:hover {
    color: var(--primary);
}

.faq-chevron {
    flex-shrink: 0;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-open .faq-chevron {
    transform: rotate(180deg);
}

.faq-content {
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-content p,
.faq-content ul,
.faq-content li {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.65;
}

.faq-content > * {
    padding: 0 1.5rem 1.25rem;
    margin: 0;
}

/* ==============================================
   HIZMETLERIMIZ PAGE
   ============================================== */

.services-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-detail-item {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: box-shadow var(--transition), transform var(--transition);
}

.service-detail-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.service-detail-header {
    background: linear-gradient(135deg, var(--primary) 0%, #c0270f 100%);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #fff;
}

.service-detail-header .gl-icon {
    flex-shrink: 0;
    opacity: 0.95;
}

.service-detail-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.service-detail-body {
    padding: 1.5rem;
}

.service-detail-body p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.65;
    margin-bottom: 1rem;
}

.service-detail-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.service-detail-body ul li {
    font-size: 0.9rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-detail-body ul li .gl-icon {
    color: var(--primary);
    flex-shrink: 0;
}

.vehicles-compat-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 4rem;
}

.vehicle-compat-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 0.5rem 1rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--secondary);
    transition: all var(--transition);
}

.vehicle-compat-tag:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.vehicle-compat-tag .gl-icon {
    flex-shrink: 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
    counter-reset: step;
}

.process-step {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    position: relative;
}

.process-step-number {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    margin: 0 auto 1rem;
}

.process-step h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* ==============================================
   HAKKIMIZDA PAGE
   ============================================== */

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-intro-text h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.about-intro-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-visual-card {
    background: linear-gradient(135deg, var(--secondary) 0%, #2d2d5e 100%);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    color: #fff;
    text-align: center;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.about-stat {
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 1.25rem;
}

.about-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.about-stat-label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.3;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.value-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary);
    transition: box-shadow var(--transition);
}

.value-card:hover {
    box-shadow: var(--shadow-md);
}

.value-icon {
    width: 52px;
    height: 52px;
    background: rgba(230, 48, 18, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--primary);
}

.value-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.value-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* ==============================================
   ILETISIM PAGE
   ============================================== */

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.contact-info-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-card {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    border: 1px solid var(--border);
    transition: box-shadow var(--transition);
}

.contact-card:hover {
    box-shadow: var(--shadow);
}

.contact-card-icon {
    width: 44px;
    height: 44px;
    background: rgba(230, 48, 18, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-card-body h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.contact-card-body p,
.contact-card-body a {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary);
    text-decoration: none;
    line-height: 1.4;
}

.contact-card-body a:hover {
    color: var(--primary);
}

.contact-form-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.contact-form-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.25rem;
}

.form-group label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--text);
    background: #fff;
    transition: border-color var(--transition);
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: 2.5rem;
    border: 1px solid var(--border);
}

/* Responsive overrides for new pages */
@media (max-width: 768px) {
    .about-intro-grid {
        grid-template-columns: 1fr;
    }

    .contact-page-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .services-detail-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr 1fr;
    }

    .faq-two-col {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .faq-col-image {
        position: static;
        order: -1;
    }

    .faq-side-image {
        max-height: 280px;
    }
}

@media (max-width: 480px) {
    .process-steps {
        grid-template-columns: 1fr;
    }

    .about-stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* =============================================
   GALLERY CAROUSEL
   ============================================= */

.gl-gallery-section {
    padding: 80px 0 60px;
    background: var(--bg-light);
    overflow: hidden;
}

.gl-gallery-wrap {
    position: relative;
    overflow: hidden;
    padding: 0 52px;
    margin-top: 2.5rem;
}

.gl-gallery-track {
    display: flex;
    gap: 16px;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    cursor: grab;
}

.gl-gallery-track:active {
    cursor: grabbing;
}

.gl-gallery-item {
    flex: 0 0 calc((100% - 32px) / 3);
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--border);
}

.gl-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
    cursor: zoom-in;
    user-select: none;
    pointer-events: none;
}

.gl-gallery-item:hover img {
    transform: scale(1.05);
}

.gl-gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    z-index: 2;
    color: var(--secondary);
    transition: background 0.2s, color 0.2s;
}

.gl-gallery-arrow:hover {
    background: var(--primary);
    color: white;
}

.gl-gallery-prev { left: 4px; }
.gl-gallery-next { right: 4px; }

.gl-gallery-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1.5rem;
    padding-bottom: 0.5rem;
}

.gl-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: var(--border);
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
}

.gl-dot.active {
    background: var(--primary);
    transform: scale(1.4);
}

@media (max-width: 768px) {
    .gl-gallery-item {
        flex: 0 0 calc((100% - 16px) / 2);
    }
}

@media (max-width: 480px) {
    .gl-gallery-item {
        flex: 0 0 100%;
    }

    .gl-gallery-wrap {
        padding: 0 40px;
    }
}

/* =============================================
   LIGHTBOX
   ============================================= */

.gl-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.gl-lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.gl-lb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.93);
}

.gl-lb-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    max-width: 92vw;
    max-height: 92vh;
}

.gl-lb-img {
    max-width: 88vw;
    max-height: 82vh;
    object-fit: contain;
    border-radius: var(--radius);
    display: block;
    user-select: none;
    -webkit-user-drag: none;
}

.gl-lb-counter {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.04em;
}

.gl-lb-close {
    position: fixed;
    top: 18px;
    right: 18px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.12);
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    transition: background 0.2s;
}

.gl-lb-close:hover {
    background: rgba(255, 255, 255, 0.28);
}

.gl-lb-arrow {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: rgba(255, 255, 255, 0.12);
    border: none;
    border-radius: 50%;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    transition: background 0.2s;
}

.gl-lb-arrow:hover {
    background: rgba(255, 255, 255, 0.28);
}

.gl-lb-prev { left: 14px; }
.gl-lb-next { right: 14px; }

@media (max-width: 480px) {
    .gl-lb-arrow { display: none; }
}
