/* Premium Car Rental (Forklift) Adapted Theme */
:root {
    --bg-white: #ffffff;
    --bg-light: #f4f5f7;
    --bg-dark: #0f1115;
    --text-main: #111111;
    --text-muted: #6b7280;
    --accent: #F59E0B; /* Mustard Yellow / Orange */
    --accent-hover: #D97706;
    --border: #e5e7eb;
    --shadow-widget: 0 20px 40px rgba(0,0,0,0.08);
    --shadow-card: 0 10px 20px rgba(0,0,0,0.04);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Nunito', sans-serif;
}

body {
    background-color: var(--bg-white);
    color: var(--text-main);
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.fw-bold { font-weight: 800; }
.section { padding: 6rem 0; }
.bg-light { background-color: var(--bg-light); }
.section-title { font-size: 2.5rem; font-weight: 800; margin-bottom: 3rem; font-family: 'Outfit', sans-serif; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
}

.btn-outline { border: 1px solid var(--border); background: transparent; }
.btn-outline:hover { background: var(--bg-light); }
.btn-dark { background: var(--text-main); color: white; }
.btn-dark:hover { background: #333; }
.btn-accent { background: var(--accent); color: white; }
.btn-accent:hover { background: var(--accent-hover); }
.btn-whatsapp { background: #25D366; color: white; }
.btn-whatsapp:hover { background: #1eb954; color: white; }
.btn-outline-accent { background: transparent; border: 1px solid var(--accent); color: var(--accent); }
.btn-light-border { border: 1px solid var(--border); background: white; border-radius: 50px; }

/* Header */
.header {
    background: var(--bg-white);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}
.logo {
    display: flex;
    align-items: center;
}
.logo img { height: 60px; }
.nav {
    display: flex;
    gap: 2.5rem;
}
.nav a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-main);
    transition: color 0.2s;
}
.nav a:hover { color: var(--accent); }
.header-actions {
    display: flex;
    gap: 1rem;
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: 150px;
    padding-bottom: 210px;
    color: white;
}
.hero-slides-container {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -2;
    overflow: hidden;
}
.hero-slides-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 1.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}
.hero-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.8) 100%);
    z-index: -1;
}
.hero-content {
    position: relative;
    z-index: 1;
}
.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    line-height: 1.1;
    margin-bottom: 1rem;
}
.hero-subtitle {
    font-size: 1.1rem;
    max-width: 450px;
    color: #e5e7eb;
}

/* Booking Widget */
.widget-container {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 10;
}
.booking-widget {
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    padding: 1.5rem 2rem;
    color: var(--text-main);
}
.widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}
.widget-header h3 {
    font-size: 1.25rem;
    font-family: 'Outfit', sans-serif;
}
.widget-tabs-modern {
    display: flex;
    background: var(--bg-light);
    border-radius: 8px;
    padding: 0.25rem;
}
.widget-tabs-modern button {
    padding: 0.5rem 1.5rem;
    border: none;
    background: transparent;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s;
}
.widget-tabs-modern button.active {
    background: var(--bg-white);
    color: var(--text-main);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.widget-form-modern {
    display: flex;
    align-items: center;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0.5rem;
}
.input-box {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 1.5rem;
    cursor: text;
}
.input-box i {
    color: var(--accent);
    font-size: 1.2rem;
}
.input-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}
.input-content label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.2rem;
}
.input-content input {
    border: none;
    background: transparent;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    width: 100%;
}
.input-content input:focus {
    outline: none;
    color: var(--text-main);
}
.date-inputs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.date-inputs input {
    width: auto;
    flex: 1;
}
.divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}
.widget-btn-modern {
    padding: 1rem 2rem;
    border-radius: 8px;
    height: 100%;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
}

/* Categories */
.categories { margin-top: 50px; }
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.cat-card {
    position: relative;
    height: 380px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s;
}
.cat-card:hover {
    transform: translateY(-5px);
}
.cat-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, transparent 100%);
}
.cat-title {
    position: absolute;
    top: 2rem; left: 2rem;
    color: white;
    font-size: 1.8rem;
    font-family: 'Outfit', sans-serif;
    line-height: 1.2;
    z-index: 2;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    width: 100%;
}

.gallery-card-item {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.gallery-card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(245, 158, 11, 0.15);
    border-color: var(--accent);
}

.gallery-card-img-wrapper {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.gallery-card-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

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

.gallery-card-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.gallery-card-info h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

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

/* Features Bar */
.features-bar {
    background: var(--bg-dark);
    color: white;
    padding: 4rem 0;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.feature-item i {
    font-size: 2.5rem;
    color: white;
    opacity: 0.9;
}
.feature-item p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #ccc;
}

/* Promo */
.promo-box {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    padding: 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
}
.promo-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 100%);
}
.promo-content {
    position: relative;
    z-index: 1;
}
.promo-title {
    font-size: 3rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.1;
}
.promo-badge {
    position: relative;
    z-index: 1;
    background: var(--accent);
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.badge-content strong {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    line-height: 1;
}
.badge-content span {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Footer & Map */
.map-container {
    width: 100%;
    display: block;
}

.footer {
    background: var(--bg-white);
    padding: 5rem 0 2rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}
.footer-brand .logo {
    margin-bottom: 2rem;
}
.newsletter p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
    line-height: 1.6;
}
.newsletter-form {
    display: flex;
    background: var(--bg-light);
    border-radius: 50px;
    padding: 0.3rem 0.3rem 0.3rem 1.5rem;
}
.newsletter-form input {
    border: none;
    background: transparent;
    flex: 1;
    font-size: 0.95rem;
}
.newsletter-form input:focus { outline: none; }
.newsletter-form button {
    background: var(--text-main);
    color: white;
    border: none;
    width: 40px; height: 40px;
    border-radius: 50%;
    cursor: pointer;
}
.footer-links h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}
.footer-links ul {
    list-style: none;
}
.footer-links li {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
}
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    font-size: 0.85rem;
    color: var(--text-muted);
}
.footer-bottom-links {
    display: flex;
    gap: 2rem;
}
.socials {
    display: flex;
    gap: 1rem;
}
.socials a {
    color: var(--text-muted);
}
.socials a:hover { color: var(--text-main); }

/* KVKK Banner */
.kvkk-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 17, 21, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    z-index: 9999;
    padding: 1.5rem 0;
    box-shadow: 0 -10px 20px rgba(0,0,0,0.1);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}
.kvkk-banner.show {
    transform: translateY(0);
}
.kvkk-banner.hidden {
    display: none;
}
.kvkk-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.kvkk-content p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    color: #e5e7eb;
}
.kvkk-actions button {
    white-space: nowrap;
}

/* SEO Intro */
.seo-intro {
    margin-top: 140px;
    margin-bottom: 4rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .widget-form-modern { flex-direction: column; align-items: stretch; border-radius: 12px; }
    .widget-tabs-modern { overflow-x: auto; }
    .input-box { border-bottom: 1px solid var(--border); }
    .divider { display: none; }
    .widget-btn-modern { width: 100%; justify-content: center; padding: 1.5rem; margin-top: 1rem; }
    .date-inputs { flex-direction: column; align-items: flex-start; }
    
    .category-grid, .features-grid { grid-template-columns: repeat(2, 1fr); }
    .promo-box { flex-direction: column; align-items: flex-start; gap: 3rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-title { font-size: 3.5rem; }
}

@media (max-width: 768px) {
    .nav { display: none; }
    .header-actions .btn-whatsapp { display: none; }
    .header-actions .btn-dark { padding: 0.5rem 0.8rem; font-size: 0.85rem; }
    .logo img { height: 32px; }
    
    /* Hero */
    .hero { padding-top: 100px; padding-bottom: 80px; min-height: 60vh; display: flex; flex-direction: column; justify-content: center; }
    .hero-title { font-size: 2.2rem; text-align: left; }
    .hero-subtitle { font-size: 1rem; text-align: left; margin: 0; }
    
    /* Mobile Widget adjustments */
    .widget-container { display: none; }
    
    /* Centering Titles and Text */
    .section-title { text-align: left; font-size: 2rem; }
    .seo-intro h2 { text-align: left; margin-bottom: 1rem !important; }
    .seo-intro p { text-align: left; }
    .seo-intro { margin-top: 3rem; margin-bottom: 2rem; }
    
    /* Features Bar (Black area) */
    .features-grid { grid-template-columns: 1fr; gap: 1rem; }
    .feature-item { 
        flex-direction: column; 
        text-align: center; 
        background: rgba(255,255,255,0.05); 
        padding: 1.5rem; 
        border-radius: 12px; 
        border: 1px solid rgba(255,255,255,0.1); 
    }
    .feature-item i { margin-bottom: 0.5rem; font-size: 2rem; }
    .feature-item p { font-size: 1.1rem; }
    
    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; margin-bottom: 2rem; }
    .footer-links:nth-child(2), .footer-links:nth-child(3) { display: none; }
    .footer-brand { text-align: left; }
    .footer-brand .logo { justify-content: flex-start; }
    .footer-links h4 { text-align: left; }
    .footer-links ul { text-align: left; }
    
    .footer-bottom-links, .socials { display: none; }
    .footer-bottom { justify-content: center; text-align: center; padding-top: 1rem; }
    
    /* Gallery and Promo */
    .category-grid { grid-template-columns: 1fr; }
    .gallery-item { width: 280px; height: 220px; }
    .promo-box { padding: 2.5rem 1.5rem; text-align: left; }
    .promo-title { font-size: 2rem; text-align: left; }
    .badge-content strong { font-size: 2.5rem; }
    
    /* KVKK Mobile adjustments */
    .kvkk-container { flex-direction: column; text-align: center; gap: 1rem; }
    .kvkk-actions { width: 100%; }
    .kvkk-actions button { width: 100%; padding: 1rem; font-size: 0.95rem; }
    .kvkk-banner { padding: 1.5rem 1rem; }
    .kvkk-content p { font-size: 0.85rem; }
}
