/* ========================================
   Security Rent Style - Professional Design
   ======================================== */

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

:root {
    /* Security Rent Primary Colors */
    --primary-red: #dc2626;
    --primary-red-hover: #b91c1c;
    --black: #000000;
    --white: #ffffff;
    --dark-purple: #1e1b4b;
    /* Top banner */
    --gray-dark: #333333;
    --gray-medium: #666666;
    --gray-light: #999999;
    --bg-light: #f8f8f8;
    --whatsapp-green: #25D366;
    --whatsapp-green-hover: #20ba5a;

    /* Borders & Shadows */
    --border-color: #e1ded9;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.16);

    /* Transitions */
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--gray-medium);
    background: var(--bg-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* ========================================
   Top Banner - AVIS Red
   ======================================== */
.top-banner {
    background-color: var(--primary-red);
    padding: 8px 0;
    text-align: center;
}

.banner-text {
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0;
}

/* ========================================
   Navbar - Security Style (Black)
   ======================================== */
.navbar-security {
    background: var(--black);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-md);
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.navbar-logo a {
    text-decoration: none;
}

.navbar-logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.logo-main {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    font-family: 'Arial Black', sans-serif;
    letter-spacing: -1px;
}

.logo-accent {
    font-size: 28px;
    font-weight: 700;
    font-style: italic;
    color: var(--primary-red);
    text-transform: uppercase;
    font-family: 'Arial Black', sans-serif;
    letter-spacing: -1px;
}

.navbar-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-red);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-red);
}

.navbar-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--primary-red);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    transition: var(--transition);
}

.navbar-cta:hover {
    background: var(--primary-red-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cta-icon {
    font-size: 18px;
}

/* ========================================
   Hero Section - Security Style
   ======================================== */
.hero-security {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(212, 0, 42, 0.4));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary-red);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    margin-bottom: 24px;
}

.hero-title-security {
    font-size: 3.5rem;
    font-weight: 900;
    font-style: italic;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.hero-subtitle-security {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
}

.hero-btn-primary {
    background: var(--primary-red);
    color: var(--white);
    border-color: var(--primary-red);
}

.hero-btn-primary:hover {
    background: var(--primary-red-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 0, 42, 0.4);
}

.hero-btn-secondary {
    background: transparent;
    border-color: var(--white);
    color: var(--white);
}

.hero-btn-secondary:hover {
    background: var(--white);
    color: var(--black);
}

.hero-btn-tertiary {
    background: rgba(0, 0, 0, 0.5);
    border-color: #00d4ff;
    color: #00d4ff;
}

.hero-btn-tertiary:hover {
    background: #00d4ff;
    color: var(--black);
}

/* ========================================
   New Hero Buttons with Animations
   ======================================== */
.hero-buttons-new {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
}

.hero-btn-new {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 0px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.hero-btn-new svg {
    transition: transform 0.3s ease;
}

.hero-btn-new:hover svg {
    transform: scale(1.1);
}

/* Primary Red Button */
.hero-btn-primary {
    background: var(--primary-red);
    color: var(--white);
    border-color: var(--primary-red);
}

.hero-btn-primary:hover {
    background: var(--primary-red-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 0, 42, 0.4);
}

.hero-btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(212, 0, 42, 0.3);
}

/* White Outline Button */
.hero-btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.hero-btn-outline-white:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.hero-btn-outline-white:active {
    transform: translateY(-1px);
}

/* Cyan Outline Button */
.hero-btn-outline-cyan {
    background: transparent;
    color: #00d4ff;
    border-color: #00d4ff;
}

.hero-btn-outline-cyan:hover {
    background: #00d4ff;
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.4);
}

.hero-btn-outline-cyan:active {
    transform: translateY(-1px);
}

/* ========================================
   Clean Hero Buttons - Security Rent Style (NO ICONS)
   ======================================== */
.hero-buttons-clean {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
}

.hero-btn-clean {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    border-radius: 8px;
    white-space: nowrap;
}

/* Red Solid Button */
.hero-btn-red {
    background: #C8102E;
    color: var(--white);
    border-color: #C8102E;
}

.hero-btn-red:hover {
    background: #A00D26;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(200, 16, 46, 0.5);
}

.hero-btn-red svg {
    transition: transform 0.3s ease;
}

.hero-btn-red:hover svg {
    transform: scale(1.1);
}

/* WhatsApp Green Solid Button */
.hero-btn-white-outline {
    background: #25D366;
    color: var(--white);
    border-color: #25D366;
}

.hero-btn-white-outline:hover {
    background: #1ea952;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
}

.hero-btn-white-outline svg {
    transition: transform 0.3s ease;
}

.hero-btn-white-outline:hover svg {
    transform: rotate(10deg) scale(1.1);
}

/* Cyan/Blue Solid Button */
.hero-btn-cyan-outline {
    background: #0066CC;
    color: var(--white);
    border-color: #0066CC;
}

.hero-btn-cyan-outline:hover {
    background: #0052A3;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 102, 204, 0.5);
}

.hero-btn-cyan-outline svg {
    transition: transform 0.3s ease;
}

.hero-btn-cyan-outline:hover svg {
    transform: scale(1.15) rotate(-5deg);
}


/* ========================================
   Why Us Section - Modern Security Rent Style
   ======================================== */
.why-us-section {
    padding: 80px 0;
    background: #f5f5f5;
}

.section-title-security {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--black);
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
}

.section-title-security span {
    color: var(--primary-red);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-us-card {
    background: var(--white);
    text-align: center;
    padding: 50px 30px 30px;
    transition: var(--transition);
    position: relative;
    border-bottom: 4px solid var(--primary-red);
}

.why-us-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.card-icon-circle {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    color: var(--primary-red);
}

.card-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

/* ========================================
   Page Header (for /araclar)
   ======================================== */
.page-header {
    background: linear-gradient(135deg, var(--black) 0%, var(--gray-dark) 100%);
    padding: 60px 0;
    text-align: center;
    color: var(--white);
}

.page-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    text-transform: uppercase;
    font-style: italic;
}

.page-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ========================================
   Category Filter - Light Style
   ======================================== */
.category-filter {
    background: var(--white);
    padding: 24px 0;
    position: sticky;
    top: 82px;
    z-index: 90;
    border-bottom: 1px solid var(--border-color);
}

.category-tabs {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-red) var(--bg-light);
}

.category-tabs::-webkit-scrollbar {
    height: 4px;
}

.category-tabs::-webkit-scrollbar-track {
    background: var(--bg-light);
}

.category-tabs::-webkit-scrollbar-thumb {
    background: var(--primary-red);
    border-radius: 2px;
}

.category-tab {
    padding: 12px 28px;
    border: 1px solid var(--border-color);
    background: var(--white);
    color: var(--gray-medium);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 24px;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition);
}

.category-tab:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
}

.category-tab.active {
    background: var(--primary-red);
    color: var(--white);
    border-color: var(--primary-red);
}

/* ========================================
   Vehicles Section
   ======================================== */
.vehicles-section {
    padding: 60px 0 80px;
    background: var(--bg-light);
}

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 kolon - Avis stili */
    gap: 30px;
}

/* ========================================
   Vehicle Card - Exact Avis Style
   ======================================== */
.vehicle-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    min-height: 650px;
    display: flex;
    flex-direction: column;
    position: relative;
    /* For discount badge positioning */
}

.vehicle-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.vehicle-card.hidden {
    display: none;
}

.vehicle-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.vehicle-category-wrapper {
    flex: 1;
}

.vehicle-category {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-red);
    margin-bottom: 8px;
}

.vehicle-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    margin: 0;
}

.rent-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 13px 24px;
    background: var(--primary-red);
    color: var(--white);
    border: none;
    border-radius: 24px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.rent-btn:hover {
    background: var(--primary-red-hover);
    transform: scale(1.05);
}

/* Featured Rent Button - Hero Style */
.rent-btn-featured {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #C8102E;
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rent-btn-featured:hover {
    background: #A00D26;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(200, 16, 46, 0.5);
}

.rent-btn-featured svg {
    transition: transform 0.3s ease;
}

.rent-btn-featured:hover svg {
    transform: rotate(10deg) scale(1.1);
}

.vehicle-image {
    text-align: center;
    padding: 30px 0;
    margin-bottom: 24px;
}

.vehicle-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: contain;
}

.vehicle-details {
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
}

.details-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 16px;
}

.spec-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--gray-medium);
}

.spec-text {
    font-weight: 400;
}

/* ========================================
   Discount Badge - Dynamic Feature
   ======================================== */
.discount-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #dc2626 0%, #f97316 100%);
    color: white;
    padding: 10px 16px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    animation: pulse-badge 2s ease-in-out infinite;
    min-width: 80px;
}

.discount-percent {
    font-size: 18px;
    font-weight: 900;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.discount-text {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.95;
    white-space: nowrap;
}

@keyframes pulse-badge {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 16px rgba(220, 38, 38, 0.6);
    }
}

/* ========================================
   Footer - Security Style (Black)
   ======================================== */
.footer-security {
    background: var(--black);
    color: var(--gray-light);
    padding: 60px 0 24px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-brand .footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 16px;
}

.footer-description {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary-red);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-red);
    padding-left: 4px;
}

.footer-contact .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 2px;
    fill: var(--primary-red);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    font-size: 0.85rem;
    color: var(--gray-light);
}

.footer-badges {
    display: flex;
    gap: 20px;
}

.badge-item {
    font-size: 0.85rem;
    color: var(--gray-light);
}

/* ========================================
   Sticky Call Buttons
   ======================================== */
.sticky-btn {
    position: fixed;
    bottom: 20px;
    padding: 14px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 999;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.sticky-phone {
    background: var(--primary-red);
    color: var(--white);
}

.sticky-phone:hover {
    background: var(--primary-red-hover);
    transform: translateY(-3px);
}

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

.sticky-whatsapp:hover {
    background: var(--whatsapp-green-hover);
    transform: translateY(-3px);
}

/* ========================================
   Google Ads Placements
   ======================================== */
.ad-placement {
    padding: 24px 0;
    background: var(--white);
}

.ad-container {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}

.ad-header {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.ad-footer {
    border-top: 1px solid var(--border-color);
}

/* ========================================
   Empty State
   ======================================== */
.empty-state {
    text-align: center;
    padding: 80px 20px;
    color: var(--gray-medium);
    font-size: 1.1rem;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1200px) {
    .vehicles-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 kolon - Tablet */
    }
}

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

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

@media (max-width: 768px) {
    .vehicles-grid {
        grid-template-columns: 1fr;
        /* 1 kolon - Mobil */
    }

    .navbar-links {
        display: none;
    }

    .navbar-cta {
        font-size: 12px;
        padding: 10px 16px;
    }

    .hero-security {
        min-height: 400px;
    }

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

    .hero-subtitle-security {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

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

    /* New hero buttons responsive */
    .hero-buttons-new {
        flex-wrap: wrap;
    }

    .hero-btn-new {
        min-width: 280px;
        justify-content: center;
    }

    /* Clean hero buttons responsive */
    .hero-buttons-clean {
        flex-wrap: wrap;
    }

    .hero-btn-clean {
        min-width: 280px;
        text-align: center;
    }

    .page-title {
        font-size: 2rem;
    }

    .section-title-security {
        font-size: 2rem;
    }

    .footer-columns {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .vehicle-card {
        padding: 20px;
    }

    .vehicle-header {
        flex-direction: column;
        gap: 12px;
    }

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

    .spec-list {
        grid-template-columns: 1fr;
    }

    .sticky-btn {
        font-size: 12px;
        padding: 12px 16px;
    }
}

/* ========================================
   Cookie Consent Banner - Security Style
   ======================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-red);
    color: var(--white);
    padding: 20px 0;
    box-shadow: 0 -4px 12px rgba(220, 38, 38, 0.3);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.4s ease-out;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--white);
    min-width: 300px;
}

.cookie-text a {
    color: var(--white);
    text-decoration: underline;
    font-weight: 700;
    transition: var(--transition);
}

.cookie-text a:hover {
    opacity: 0.8;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    white-space: nowrap;
}

.cookie-accept {
    background: var(--white);
    color: var(--primary-red);
    border-color: var(--white);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-accept:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.cookie-details {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-details:hover {
    background: var(--white);
    color: var(--primary-red);
    transform: translateY(-2px);
}

/* ========================================
   KVKK / Privacy Policy Page
   ======================================== */
.kvkk-page {
    padding: 60px 0;
    background: var(--white);
}

.kvkk-content {
    max-width: 900px;
    margin: 0 auto;
}

.kvkk-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 40px;
    text-align: center;
    text-transform: uppercase;
}

.kvkk-section {
    margin-bottom: 40px;
}

.kvkk-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 16px;
    border-left: 4px solid var(--primary-red);
    padding-left: 16px;
}

.kvkk-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gray-dark);
    margin: 20px 0 12px;
}

.kvkk-section p {
    font-size: 1rem;
    color: var(--gray-medium);
    line-height: 1.8;
    margin-bottom: 16px;
}

.kvkk-section ul,
.kvkk-section ol {
    margin-left: 24px;
    margin-bottom: 16px;
}

.kvkk-section li {
    font-size: 1rem;
    color: var(--gray-medium);
    line-height: 1.8;
    margin-bottom: 8px;
}

/* ========================================
   Contact Page
   ======================================== */
.contact-page {
    padding: 60px 0;
    background: var(--bg-light);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.contact-info-section h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 32px;
    text-transform: uppercase;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    padding: 20px;
    background: var(--white);
    border-radius: 8px;
    transition: var(--transition);
}

.contact-info-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-info-text h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
}

.contact-info-text p {
    font-size: 1rem;
    color: var(--gray-medium);
    line-height: 1.6;
    margin: 0;
}

.contact-form-section h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 32px;
    text-transform: uppercase;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--gray-dark);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--primary-red);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    background: var(--primary-red-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vehicle-card {
    animation: fadeIn 0.5s ease-out;
}

/* ========================================
   MOBILE RESPONSIVE STYLES
   ======================================== */

/* Tablet - Medium devices (768px and down) */
@media (max-width: 768px) {

    /* Navbar */
    .navbar-links {
        display: none;
        /* Hide menu on mobile - add hamburger menu if needed */
    }

    .navbar-cta {
        padding: 10px 16px;
        font-size: 12px;
    }

    /* Hero Section */
    .hero-security {
        min-height: 500px;
        padding: 60px 20px;
    }

    .hero-content h1 {
        font-size: 42px !important;
        letter-spacing: -1px !important;
    }

    .hero-content p {
        font-size: 16px !important;
        margin-bottom: 32px !important;
    }

    /* Hero Buttons - Stack vertically */
    .hero-buttons-clean {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .hero-btn-clean {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
        font-size: 13px;
    }

    /* Featured Vehicles */
    .vehicles-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    /* Why Us Section */
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Footer */
    .footer-columns {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    /* Contact Page */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Mobile - Small devices (480px and down) */
@media (max-width: 480px) {

    /* Base Container */
    .container {
        padding: 0 16px !important;
    }

    /* Navbar */
    .navbar-content {
        padding: 12px 0;
    }

    .logo-main,
    .logo-accent {
        font-size: 20px;
    }

    .navbar-cta {
        padding: 8px 12px;
        font-size: 11px;
        gap: 4px;
    }

    /* Hero Section */
    .hero-security {
        min-height: 450px;
        padding: 40px 16px !important;
    }

    .hero-content div[style*="PREMİUM FİLO"] {
        font-size: 11px !important;
        padding: 8px 16px !important;
        margin-bottom: 20px !important;
    }

    .hero-content h1 {
        font-size: 32px !important;
        margin-bottom: 16px !important;
        letter-spacing: 0 !important;
    }

    .hero-content p {
        font-size: 14px !important;
        margin-bottom: 24px !important;
        padding: 0 !important;
    }

    /* Hero Buttons */
    .hero-buttons-clean {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .hero-btn-clean {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 12px;
        letter-spacing: 0.5px;
    }

    .hero-btn-clean svg {
        width: 14px;
        height: 14px;
    }

    /* Featured Vehicles Title */
    .featured-vehicles-section h2 {
        font-size: 32px !important;
        margin-bottom: 12px !important;
    }

    .featured-vehicles-section div[style*="width: 120px"] {
        width: 80px !important;
        height: 3px !important;
    }

    .featured-vehicles-section p {
        font-size: 14px !important;
    }

    .featured-vehicles-section {
        padding: 60px 16px !important;
    }

    /* Vehicle Cards */
    .vehicles-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }

    .vehicle-card {
        padding: 16px !important;
    }

    .vehicle-header {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start !important;
    }

    /* Pricing Section Mobile */
    .pricing-winter-section {
        padding: 16px !important;
    }

    .pricing-winter-section h4 {
        font-size: 12px !important;
        margin-bottom: 12px !important;
    }

    .pricing-winter-section>div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }

    .rent-btn-featured {
        width: 100%;
        justify-content: center;
        padding: 12px 16px;
        font-size: 12px;
    }

    .rent-btn-featured svg {
        width: 12px;
        height: 12px;
    }

    .vehicle-category {
        font-size: 13px !important;
    }

    .vehicle-name {
        font-size: 16px !important;
    }

    /* Why Us Section */
    .why-us-section {
        padding: 60px 16px;
    }

    .section-title-security {
        font-size: 28px !important;
        margin-bottom: 40px;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .why-us-card {
        padding: 32px 20px 20px;
    }

    .card-title {
        font-size: 18px;
    }

    .card-description {
        font-size: 14px;
    }

    /* Footer */
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-security {
        padding: 40px 16px 20px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    /* Category Filter */
    .category-filter {
        padding: 16px 0;
        top: 72px;
    }

    .category-tab {
        padding: 10px 20px;
        font-size: 13px;
    }

    /* Page Header */
    .page-header {
        padding: 40px 16px;
    }

    .page-title {
        font-size: 28px;
    }

    .page-subtitle {
        font-size: 14px;
    }
}

/* Extra Small Mobile (320px - very small phones) */
@media (max-width: 380px) {
    .hero-content h1 {
        font-size: 28px !important;
    }

    .hero-btn-clean {
        padding: 12px 16px;
        font-size: 11px;
    }

    .featured-vehicles-section h2 {
        font-size: 26px !important;
    }

    .section-title-security {
        font-size: 24px !important;
    }
}