/* ==========================================================================
   Forkliftçi Ömer - Modern Industrial Hybrid Aesthetic (Version 4.0)
   Combining the clean lightness of Aslan Forklift with authentic fleet & service depth
   ========================================================================== */

:root {
    --bg-white: #ffffff;
    --bg-slate: #f8fafc;
    --bg-card: #ffffff;
    --bg-dark: #0f172a;
    --bg-dark-subtle: #1e293b;
    
    --text-main: #0f172a;
    --text-body: #334155;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --text-white: #ffffff;
    
    --accent: #f59e0b; /* Industrial Amber */
    --accent-hover: #d97706;
    --accent-light: rgba(245, 158, 11, 0.1);
    --accent-border: rgba(245, 158, 11, 0.3);
    
    --whatsapp: #25d366;
    --whatsapp-hover: #20ba5a;
    
    --border-light: #e2e8f0;
    --border-subtle: #edf2f7;
    
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    
    --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.04);
    --shadow-card: 0 10px 25px -5px rgba(15, 23, 42, 0.06), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
    --shadow-float: 0 20px 40px -10px rgba(15, 23, 42, 0.12);
    --shadow-lg: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
    
    --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-white);
    color: var(--text-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--text-main);
    font-weight: 700;
    line-height: 1.25;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

.container {
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
}

.bg-slate {
    background-color: var(--bg-slate);
}

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

.w-100 {
    width: 100%;
}

/* Section Header Typography */
.sub-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.9rem;
    background: var(--accent-light);
    color: #b45309;
    border: 1px solid var(--accent-border);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.75px;
    border-radius: var(--radius-full);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-main);
    margin-bottom: 0.75rem;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto 3rem auto;
    line-height: 1.6;
}

/* ==========================================================================
   Header (Clean & Minimal: Logo, Filomuz, Hizmetler, WhatsApp, Arama)
   ========================================================================== */

.header {
    background: var(--bg-white);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
    transition: box-shadow 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 82px;
}

.logo-img {
    height: 48px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--text-main);
    position: relative;
    padding: 0.5rem 0.25rem;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--accent);
    transition: width 0.25s ease;
    border-radius: var(--radius-full);
}

.nav-link:hover {
    color: var(--accent-hover);
}

.nav-link:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 1.35rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
}

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

.btn-whatsapp:hover {
    background: var(--whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
}

.btn-call {
    background: var(--bg-dark);
    color: white;
}

.btn-call:hover {
    background: #1e293b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.25);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--text-main);
    cursor: pointer;
    padding: 0.5rem;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
    position: relative;
    padding: 4.5rem 0 7rem 0;
    color: var(--text-white);
    background: var(--bg-dark);
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.82) 55%, rgba(15, 23, 42, 0.65) 100%);
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1.15fr 0.95fr;
    gap: 3rem;
    align-items: center;
}

.hero-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    margin-bottom: 1.25rem;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px #22c55e;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 1.25rem;
}

.hero-title span {
    color: var(--accent);
}

.hero-desc {
    font-size: 1.1rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 1.75rem;
}

.hero-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.hero-hl-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    color: #e2e8f0;
    font-weight: 500;
}

.hero-hl-item i {
    color: var(--accent);
}

/* Floating Booking & Quote Card */
.quote-card-wrapper {
    position: relative;
    z-index: 5;
}

.quote-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-float);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-main);
}

.quote-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-light);
}

.quote-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    color: #b45309;
    background: var(--accent-light);
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-full);
    margin-bottom: 0.35rem;
    letter-spacing: 0.5px;
}

.quote-title-box h3 {
    font-size: 1.25rem;
    font-weight: 800;
}

.quote-tabs {
    display: flex;
    background: var(--bg-slate);
    padding: 0.25rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-light);
}

.quote-tab {
    background: none;
    border: none;
    padding: 0.4rem 0.85rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-muted);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
}

.quote-tab.active {
    background: var(--bg-dark);
    color: white;
    box-shadow: var(--shadow-sm);
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.35rem;
}

.form-group label i {
    color: var(--accent);
}

.form-select, .form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-family: inherit;
    color: var(--text-main);
    background: var(--bg-slate);
    outline: none;
    transition: var(--transition);
}

.form-select:focus, .form-input:focus {
    border-color: var(--accent);
    background: var(--bg-white);
    box-shadow: 0 0 0 3px var(--accent-light);
}

.btn-quote-submit {
    background: var(--accent);
    color: var(--bg-dark);
    font-weight: 800;
    font-size: 1rem;
    padding: 0.9rem 1.5rem;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 0.5rem;
    transition: var(--transition);
}

.btn-quote-submit i {
    font-size: 1.2rem;
    color: #15803d;
}

.btn-quote-submit:hover {
    background: var(--accent-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(245, 158, 11, 0.4);
}

.btn-quote-submit:hover i {
    color: white;
}

/* ==========================================================================
   Key Trust & Stats Strip
   ========================================================================== */

.trust-strip {
    background: var(--bg-white);
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-light);
    position: relative;
    z-index: 10;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.trust-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: var(--radius-md);
    background: var(--bg-slate);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.trust-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card);
    border-color: var(--accent-border);
}

.trust-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--accent-light);
    color: #b45309;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
}

.trust-info h4 {
    font-size: 0.98rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 0.2rem;
}

.trust-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.35;
}

/* ==========================================================================
   Filomuz (Our Fleet Showcase)
   ========================================================================== */

.section-fleet {
    background: var(--bg-white);
}

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

.fleet-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.fleet-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-float);
    border-color: var(--accent-border);
}

.fleet-img-box {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: #e2e8f0;
}

.fleet-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.fleet-card:hover .fleet-img-box img {
    transform: scale(1.04);
}

.fleet-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--accent);
    color: var(--bg-dark);
    font-weight: 800;
    font-size: 0.78rem;
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-full);
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.fleet-tag.badge-heavy {
    background: var(--bg-dark);
    color: var(--accent);
}

.fleet-content {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.fleet-brand {
    font-size: 0.75rem;
    font-weight: 800;
    color: #b45309;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
}

.fleet-title {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.fleet-desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.fleet-specs {
    background: var(--bg-slate);
    border-radius: var(--radius-sm);
    padding: 1rem;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    border: 1px solid var(--border-light);
}

.spec-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
}

.spec-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.spec-label {
    color: var(--text-muted);
    font-weight: 500;
}

.spec-value {
    color: var(--text-main);
    font-weight: 700;
}

.btn-outline-fleet {
    margin-top: auto;
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--bg-dark);
    background: transparent;
    color: var(--bg-dark);
    font-weight: 700;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    transition: var(--transition);
}

.btn-outline-fleet i {
    color: #16a34a;
    font-size: 1.1rem;
}

.btn-outline-fleet:hover {
    background: var(--bg-dark);
    color: white;
}

.btn-outline-fleet:hover i {
    color: var(--accent);
}

/* Special Feature: Liftli Kamyonet Banner */
.special-feature-box {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    border-radius: var(--radius-lg);
    padding: 2.25rem 2.5rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
    box-shadow: var(--shadow-card);
}

.special-icon-box {
    width: 68px;
    height: 68px;
    border-radius: 16px;
    background: var(--accent);
    color: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    flex-shrink: 0;
}

.special-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 0.4rem;
}

.special-text h3 {
    font-size: 1.35rem;
    color: white;
    margin-bottom: 0.4rem;
}

.special-text p {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.5;
}

.special-text strong {
    color: #ffffff;
}

.btn-special {
    background: var(--accent);
    color: var(--bg-dark);
    font-weight: 800;
    padding: 0.85rem 1.6rem;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    white-space: nowrap;
    transition: var(--transition);
}

.btn-special i {
    color: #15803d;
    font-size: 1.2rem;
}

.btn-special:hover {
    background: var(--accent-hover);
    color: white;
    transform: translateY(-2px);
}

.btn-special:hover i {
    color: white;
}

/* ==========================================================================
   Hizmetlerimiz (Services Grid)
   ========================================================================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.service-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-float);
    border-color: var(--accent-border);
}

.service-img {
    position: relative;
    height: 190px;
    background: #e2e8f0;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.service-cat-badge {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(4px);
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 800;
    padding: 0.25rem 0.65rem;
    border-radius: var(--radius-full);
    letter-spacing: 0.5px;
}

.service-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--accent-light);
    color: #b45309;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.service-body h3 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 0.65rem;
    color: var(--text-main);
}

.service-body p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

.service-bullets {
    list-style: none;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.service-bullets li {
    font-size: 0.82rem;
    color: var(--text-body);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.service-bullets li i {
    color: var(--accent);
    font-size: 0.75rem;
}

/* ==========================================================================
   Neden Forkliftçi Ömer? (Trust & Persona)
   ========================================================================== */

.section-why {
    background: var(--bg-white);
}

.why-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3.5rem;
    align-items: center;
}

.why-image-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-float);
}

.why-image-card img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.why-experience-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: var(--accent);
    color: var(--bg-dark);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.exp-number {
    font-size: 2.5rem;
    font-weight: 900;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
}

.exp-text {
    font-size: 0.85rem;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
}

.why-lead {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.why-features-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.25rem;
}

.why-feature-item, .wf-feature-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.wf-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--accent-light);
    color: #b45309;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.wf-text {
    flex: 1;
}

.wf-text h4 {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
    color: var(--text-main);
}

.wf-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.btn-call-large {
    background: var(--bg-dark);
    color: white;
    font-size: 1.05rem;
    padding: 0.95rem 1.85rem;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-weight: 800;
    transition: var(--transition);
}

.btn-call-large:hover {
    background: #1e293b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.2);
}

/* ==========================================================================
   Gallery Section
   ========================================================================== */

.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}

.filter-btn {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    padding: 0.55rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

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

.filter-btn.active {
    background: var(--bg-dark);
    color: white;
    border-color: var(--bg-dark);
    box-shadow: var(--shadow-sm);
}

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

.gallery-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.gallery-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-float);
    border-color: var(--accent);
}

.gallery-img-box {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #e2e8f0;
}

.gallery-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-img-box img {
    transform: scale(1.06);
}

.gallery-overlay-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(4px);
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 800;
    padding: 0.25rem 0.65rem;
    border-radius: var(--radius-full);
}

.gallery-tonaj-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: var(--accent);
    color: var(--bg-dark);
    font-size: 0.72rem;
    font-weight: 800;
    padding: 0.25rem 0.65rem;
    border-radius: var(--radius-full);
}

.gallery-info {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.gallery-info h4 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 0.4rem;
    color: var(--text-main);
}

.gallery-loc {
    font-size: 0.78rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 0.5rem;
}

.gallery-loc i {
    color: var(--accent);
}

.gallery-desc {
    font-size: 0.82rem;
    color: var(--text-body);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ==========================================================================
   SEO Yerel Rehber & FAQ Accordion
   ========================================================================== */

.faq-seo-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 3rem;
    align-items: flex-start;
}

.local-seo-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-card);
}

.seo-card-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.local-seo-card p {
    font-size: 0.92rem;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.local-info-box {
    background: var(--bg-slate);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.lib-row {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.lib-row i {
    color: var(--accent);
    font-size: 1.1rem;
    margin-top: 0.15rem;
}

.lib-row div strong {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.lib-row div span {
    font-size: 0.9rem;
    color: var(--text-main);
    font-weight: 600;
}

.seo-footer-note {
    font-size: 0.85rem !important;
    color: var(--text-muted) !important;
    line-height: 1.45 !important;
}

.btn-outline-dark {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.25rem;
    border-radius: var(--radius-full);
    border: 2px solid var(--bg-dark);
    color: var(--bg-dark);
    font-weight: 700;
    font-size: 0.92rem;
    transition: var(--transition);
}

.btn-outline-dark i {
    color: #16a34a;
    font-size: 1.1rem;
}

.btn-outline-dark:hover {
    background: var(--bg-dark);
    color: white;
}

/* Accordion */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-top: 1rem;
}

.accordion-item {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.accordion-item.active {
    border-color: var(--accent);
    box-shadow: var(--shadow-sm);
}

.accordion-header {
    width: 100%;
    padding: 1.15rem 1.25rem;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-main);
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

.accordion-header i {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
    color: var(--accent-hover);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 1.25rem;
    background: var(--bg-slate);
}

.accordion-item.active .accordion-body {
    max-height: 250px;
    padding: 0 1.25rem 1.25rem 1.25rem;
}

.accordion-body p {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.55;
}

/* ==========================================================================
   İletişim & Harita
   ========================================================================== */

.section-contact {
    background: var(--bg-white);
}

.contact-box-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 3rem;
    align-items: center;
}

.contact-lead {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.25rem;
    border-radius: var(--radius-md);
    background: var(--bg-slate);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.contact-method-card:hover {
    transform: translateX(4px);
    border-color: var(--accent);
    box-shadow: var(--shadow-sm);
}

.contact-method-card.whatsapp-card {
    background: rgba(37, 211, 102, 0.08);
    border-color: rgba(37, 211, 102, 0.3);
}

.contact-method-card.whatsapp-card .cm-icon {
    background: #25d366;
    color: white;
}

.contact-method-card.plain:hover {
    transform: none;
    border-color: var(--border-light);
}

.cm-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--accent-light);
    color: #b45309;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.cm-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
}

.cm-val {
    display: block;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-main);
}

.map-card-wrapper {
    height: 440px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-float);
    border: 1px solid var(--border-light);
}

.map-card-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
    background: var(--bg-dark);
    color: #cbd5e1;
    padding: 4.5rem 0 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 3.5rem;
}

.footer-logo {
    height: 44px;
    margin-bottom: 1.25rem;
}

.footer-about {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-phones {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-phones a {
    color: var(--accent);
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-col h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-col ul li a {
    color: #94a3b8;
    font-size: 0.9rem;
}

.footer-col ul li a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-quick-call {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 1.25rem;
}

.fq-input {
    flex-grow: 1;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.65rem 0.9rem;
    border-radius: var(--radius-sm);
    color: white;
    font-size: 0.88rem;
    outline: none;
}

.fq-input:focus {
    border-color: var(--accent);
}

.fq-btn {
    background: var(--accent);
    border: none;
    color: var(--bg-dark);
    padding: 0 1rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 700;
    transition: var(--transition);
}

.fq-btn:hover {
    background: var(--accent-hover);
    color: white;
}

.footer-social-links {
    display: flex;
    gap: 0.75rem;
}

.footer-social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
}

.footer-social-links a:hover {
    background: var(--accent);
    color: var(--bg-dark);
    transform: translateY(-2px);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: #64748b;
}

.footer-tags {
    color: #475569;
}

/* ==========================================================================
   Lightbox Modal
   ========================================================================== */

.lightbox-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 1.5rem;
}

.lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.88);
    backdrop-filter: blur(8px);
}

.lightbox-content {
    position: relative;
    z-index: 2001;
    background: var(--bg-white);
    max-width: 720px;
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    background: rgba(15, 23, 42, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition);
}

.lightbox-close:hover {
    background: var(--accent);
    color: var(--bg-dark);
}

.lightbox-image {
    width: 100%;
    max-height: 480px;
    object-fit: contain;
    background: #000;
}

.lightbox-caption {
    padding: 1.5rem;
}

.lightbox-caption h4 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 0.4rem;
}

.lightbox-caption p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.lightbox-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-main);
}

.lightbox-meta i {
    color: var(--accent);
}

/* ==========================================================================
   Floating WhatsApp & Mobile Sticky Bar
   ========================================================================== */

.float-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: var(--whatsapp);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.float-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
}

.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    padding: 0.65rem 1rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-top: 1px solid var(--border-light);
    gap: 0.75rem;
}

.mob-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 0.5rem;
    border-radius: var(--radius-full);
    font-size: 0.92rem;
    font-weight: 700;
    text-align: center;
}

.mob-call {
    background: var(--bg-dark);
    color: white;
}

.mob-whatsapp {
    background: var(--whatsapp);
    color: white;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-image-card img {
        height: 380px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-seo-grid {
        grid-template-columns: 1fr;
    }

    .contact-box-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .header-container {
        height: 70px;
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    .logo-img {
        height: 38px;
    }

    .header-actions {
        gap: 0.5rem;
    }

    .header-actions .btn {
        padding: 0.5rem 0.85rem;
        font-size: 0.85rem;
    }

    .header-actions .btn-call span {
        display: none;
    }

    .header-actions .btn-whatsapp span {
        display: inline;
    }

    .hero {
        padding: 3rem 0 5rem 0;
    }

    .hero-title {
        font-size: 2.1rem;
    }

    .quote-card {
        padding: 1.5rem;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .fleet-grid {
        grid-template-columns: 1fr;
    }

    .special-feature-box {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 1.75rem;
    }

    .special-icon-box {
        margin: 0 auto;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding-bottom: 4rem; /* room for mobile sticky bar */
    }

    .float-whatsapp {
        bottom: 5.5rem;
        right: 1.25rem;
        width: 52px;
        height: 52px;
        font-size: 1.7rem;
    }

    .mobile-bottom-bar {
        display: flex;
    }
}
