/* Base Styles */
:root {
    --primary-color: #FF6600;
    --secondary-color: #333333;
    --light-color: #F8F9FA;
    --dark-color: #212529;
    --gray-color: #6C757D;
    --border-color: #DEE2E6;
    --success-color: #28A745;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
}

/* Uygulama Yakında Modal Popup */
.app-announcement-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-out;
}

.app-announcement-modal.hidden {
    animation: fadeOut 0.3s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.announcement-card {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 50px 40px 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease-out;
    z-index: 1;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #666;
}

.modal-close-btn:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

.modal-close-btn i {
    font-size: 1.2rem;
}

.announcement-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF6600, #FF8533);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.announcement-icon-large i {
    font-size: 2.5rem;
    color: white;
}

.announcement-card h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.store-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.store-icons i {
    font-size: 2.5rem;
    color: #666;
}

.store-icons .fa-apple {
    color: #000;
}

.store-icons .fa-google-play {
    color: #3DDC84;
}

.announcement-card p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.announcement-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #FF6600, #FF8533);
    margin: 25px auto;
    border-radius: 2px;
}

.announcement-cta {
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 10px;
    border-left: 4px solid #28A745;
    margin: 20px 0 30px;
}

.announcement-cta i {
    color: #28A745;
    margin-right: 8px;
}

.btn-announcement-ok {
    background: linear-gradient(135deg, #FF6600, #FF8533);
    color: white;
    border: none;
    padding: 15px 50px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

.btn-announcement-ok:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.4);
}

@media (max-width: 768px) {
    .announcement-card {
        padding: 40px 25px 30px;
        border-radius: 15px;
    }
    
    .announcement-card h2 {
        font-size: 1.4rem;
    }
    
    .announcement-icon-large {
        width: 70px;
        height: 70px;
    }
    
    .announcement-icon-large i {
        font-size: 2rem;
    }
    
    .store-icons i {
        font-size: 2rem;
    }
    
    .announcement-card p {
        font-size: 0.95rem;
    }
    
    .btn-announcement-ok {
        padding: 12px 40px;
        font-size: 1rem;
    }
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero bölümü için özel konteyner */
.hero .container {
    margin-left: 0;
    max-width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    color: var(--secondary-color);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray-color);
    max-width: 700px;
    margin: 0 auto;
}

.left-align {
    text-align: left;
}

.highlight {
    color: var(--primary-color);
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--dark-color);
    transition: var(--transition);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
}

.btn-download {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    font-size: 0.9rem;
    padding: 8px 20px;
}

.btn-panel-login {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    font-size: 0.9rem;
    padding: 8px 20px;
}

.btn-block {
    width: 100%;
    display: block;
    padding: 15px 20px;
    font-size: 1rem;
}

.btn-block i {
    margin-right: 10px;
}

.btn-submit {
    background-color: var(--primary-color);
    color: white;
    width: 100%;
    font-size: 1rem;
}

.btn-small {
    padding: 10px 15px;
    font-size: 0.9rem;
    background-color: var(--primary-color);
    color: white;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.15rem;
    font-weight: 700;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background-color: #e45c00;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.3);
    border-color: white;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: var(--transition);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.header .logo {
    transition: background-color 0.3s ease, padding 0.3s ease, border-radius 0.3s ease;
}

.header.sticky {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 12px 0;
}

/* Keep logo area dark when header becomes sticky so white logo remains visible */
.header.sticky .logo {
    background-color: rgba(0, 0, 0, 0.85);
    padding: 6px 10px;
    border-radius: 6px;
}

.header.sticky .logo-image {
    filter: none;
}

.header.sticky .nav-list a {
    color: var(--dark-color);
}

.header.sticky .btn-panel-login {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.header.sticky .btn-panel-login:hover {
    background-color: var(--primary-color);
    color: white;
}
.header.sticky .btn-download {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 40px;
    width: auto;
}

/* Inline brand logo used in headings or inline text */

.logo-inline {
    height: 1.2em;
    vertical-align: -0.15em;
    display: inline-block;
}

.footer-logo-inline {
    height: 20px;
    margin-right: 8px;
    vertical-align: middle;
}

/* Use a subtle black shadow for inline/footer logos so white logo text
   remains readable on light backgrounds. Do NOT change the header logo
   (`.logo-image`) so the top logo appearance stays the same. */
.logo-inline,
.footer-logo-inline {
    /* Solid black slab for maximum contrast. Also add wider left/right
       shadow spreads so the visual appears more pronounced horizontally
       (keeps the header `.logo-image` unchanged). */
    background-color: #000000;
    padding: 4px 10px; /* slightly wider horizontally */
    border-radius: 6px;
    display: inline-block;
    /* vertical depth plus wider horizontal spread on both sides */
    box-shadow: 0 8px 18px rgba(0,0,0,0.6), 12px 0 20px rgba(0,0,0,0.32), -12px 0 20px rgba(0,0,0,0.32);
    transition: box-shadow 180ms ease, transform 180ms ease;
}


/* Screen-reader only helper */
.sr-only {
    position: absolute !important;
    height: 1px; width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap; /* added line */
}

.footer-logo {
    height: 50px;
    margin-bottom: 15px;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-list a {
    color: white;
    font-weight: 600;
    position: relative;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--primary-color);
}

.nav-list a.active::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

    .mobile-menu {
        display: none;
        font-size: 1.6rem;
        color: white;
        cursor: pointer;
        padding: 8px;
        border-radius: 8px;
        transition: background-color 0.25s ease, color 0.25s ease, transform 0.18s ease;
        z-index: 1300; /* ensure it stays above header layers */
        align-items: center;
        justify-content: center;
    }

    .mobile-menu:hover {
        background-color: rgba(255,255,255,0.06);
        transform: translateY(-1px);
    }

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    color: white;
    perspective: 1200px;
    overflow: hidden;
}

/* Background layer for 3D/parallax effect. The actual transform is driven
   by CSS variable `--hero-bg-transform` updated from JS. */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../2.webp');
    background-size: cover;
    background-position: center;
    will-change: transform;
    transform-origin: center center;
    z-index: 0;
    filter: brightness(0.6) saturate(1.05);
    transition: filter 300ms ease, transform 120ms linear;
    backface-visibility: hidden;
    /* default transform: slightly pushed back and scaled so 3D parallax has room */
    transform: var(--hero-bg-transform, translateZ(-40px) translateY(0px) scale(1.08));
}

/* Ensure content sits above the background layer */
.hero .container {
    position: relative;
    z-index: 2;
}

/* subtle overlay to keep text readable */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.35) 60%);
    z-index: 1;
    pointer-events: none;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 5%;
    padding-right: 5%;
    box-sizing: border-box;
}

.hero-content {
    max-width: 600px;
    text-align: left;
    margin-left: 0;
    padding-left: 15px;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.hero-content h1::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin-left: 0;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 90%;
    margin-left: 0;
}

.hero-driver-actions {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    margin-top: 40px;
}

.hero-cta {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    margin-top: 30px;
}

.hero-driver-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    margin-top: 20px;
}

.hero-image {
    display: none; /* Hero görselini gizledik */
}

.hero-img {
    max-height: 500px;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    background-color: white;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 102, 0, 0.1);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--gray-color);
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--light-color);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--gray-color);
}

.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

.about-image img:hover {
    transform: scale(1.02);
}

.about-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-text {
    font-size: 1rem;
    color: var(--gray-color);
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    background-color: white;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-image {
    height: 250px;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-content p {
    margin-bottom: 20px;
    color: var(--gray-color);
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.service-link:hover {
    gap: 10px;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background-color: var(--light-color);
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.step:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.step-content p {
    color: var(--gray-color);
}

/* Download Section */
.download {
    padding: 100px 0;
    background: linear-gradient(to right, var(--primary-color), #ff8533);
    color: white;
}

.download-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.download-text {
    flex: 1;
}

.download-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.download-text p {
    margin-bottom: 30px;
}

.download-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: white;
    color: var(--dark-color);
    padding: 10px 20px;
    border-radius: 10px;
    transition: var(--transition);
}

.download-btn i {
    font-size: 2rem;
}

.download-btn span {
    display: flex;
    flex-direction: column;
}

.download-btn small {
    font-size: 0.8rem;
    opacity: 0.8;
}

.download-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.download-image {
    flex: 1;
    text-align: center;
}

.download-image img {
    max-height: 600px;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
    transition: transform 0.5s ease, filter 0.5s ease;
}

.download-image img:hover {
    transform: translateY(-10px);
    filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.2));
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: white;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 15px;
}

.contact-item .icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 102, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-item h4 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 102, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.contact-form form {
    display: grid;
    gap: 20px;
}

.form-group {
    width: 100%;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(255, 102, 0, 0.2);
}

/* Footer Section */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 80px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-about {
    max-width: 300px;
}

.footer-about p {
    margin-top: 20px;
    opacity: 0.8;
}

.footer-links h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
}

.footer-links h4:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
    display: inline-block;
}

.footer-newsletter h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
}

.footer-newsletter h4:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-newsletter p {
    margin-bottom: 20px;
    opacity: 0.8;
}

.footer-newsletter form {
    display: flex;
    gap: 10px;
}

.footer-newsletter input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    font-family: 'Poppins', sans-serif;
}

.footer-newsletter input:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.2);
}

.footer-newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.copyright {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Small affiliate notice styling */
.affiliate {
    width: 100%;
    text-align: center;
    margin-top: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
}

/* Consent modal styles */

/* Consent banner (bottom-right) */
.consent-banner {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 3000;
    display: none;
    pointer-events: auto;
}

.consent-banner.visible,
.consent-banner[aria-hidden="false"] {
    display: block;
    animation: consentSlideUp 320ms cubic-bezier(.2,.9,.2,1) both;
}

.consent-banner-content {
    background: #ffffff;
    color: #222;
    width: 360px;
    max-width: calc(100vw - 40px);
    padding: 16px 16px;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.18);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.consent-banner-content h4 {
    margin: 0;
    font-size: 1rem;
}

.consent-banner-content .small {
    font-size: 0.9rem;
    color: #444;
}

.consent-banner .consent-actions {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    margin-top: 8px;
}

.consent-banner .consent-links {
    font-size: 0.85rem;
    color: #666;
}

/* Ensure the 'Reddet' (decline) button is visible on the white banner background */
.consent-banner .btn-secondary {
    background: transparent;
    border: 1px solid rgba(0,0,0,0.08);
    color: #222;
    box-shadow: none;
}

.consent-banner .btn-secondary:hover {
    background: rgba(0,0,0,0.04);
    color: #000;
}

@keyframes consentSlideUp {
    from { transform: translateY(12px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@media (max-width: 600px) {
    .consent-banner {
        left: 0;
        right: 0;
        bottom: 0;
        padding: 12px;
    }
    .consent-banner-content {
        width: 100%;
        border-radius: 0;
    }
}

/* Decline blocking screen */
.consent-block {
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.98);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2999;
    text-align: center;
    padding: 30px;
}

.consent-block .consent-block-content {
    max-width: 700px;
}

.consent-block.visible {
    display: flex;
}

/* Slightly override button styles inside modal to ensure contrast */
.consent-content .btn-primary {
    background: linear-gradient(90deg, rgba(255,102,0,0.95), rgba(255,133,51,0.95));
    color: #fff;
}
.consent-content .btn-secondary {
    background: transparent;
    border: 1px solid rgba(0,0,0,0.08);
    color: #333;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .mobile-menu {
        display: block;
    }

    .nav {
        display: none;
    }
    
    .cta-buttons {
        display: none;
    }

    .nav.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        /* dark translucent background so white logo/text remain readable */
        background-color: rgba(0, 0, 0, 0.92);
        padding: 12px 12px 18px 12px;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
        -webkit-backdrop-filter: blur(8px);
        backdrop-filter: blur(8px);
        animation: mobileMenuIn 240ms cubic-bezier(.2,.9,.2,1) forwards;
        transform-origin: top center;
        z-index: 1200;
    }

    /* Keep mobile menu dark and the hamburger visible when header becomes sticky
       (header.sticky sets a light background; without these overrides the
       mobile menu and button can become hard to see). */
    .header.sticky .nav.active {
        background-color: rgba(0, 0, 0, 0.92) !important;
        -webkit-backdrop-filter: blur(8px);
        backdrop-filter: blur(8px);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
        z-index: 1250;
    }

    .header.sticky .nav.active .nav-list a {
        color: #ffffff;
    }

    /* Make the mobile menu toggle/button use a dark (black) icon when header is sticky
       so it remains visible against the light sticky header background. */
    .header.sticky .mobile-menu {
        color: #000000;
        /* keep the button visually distinct; transparent bg so it doesn't clash */
        background-color: transparent;
        z-index: 1400; /* ensure it stays above the open nav */
    }

    .header.sticky .mobile-menu:hover {
        background-color: rgba(0,0,0,0.04);
        color: #000000;
    }

    .nav.active .nav-list {
        flex-direction: column;
        gap: 10px;
        padding: 6px 6px 10px 6px;
    }

    /* Modern mobile menu link styles */
    .nav.active .nav-list a {
        color: #ffffff;
        font-weight: 600;
        padding: 12px 14px;
        display: block;
        border-radius: 10px;
        transition: background-color 180ms ease, color 180ms ease, transform 120ms ease;
        background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    }

    .nav.active .nav-list a:hover {
        color: #fff;
        background-color: rgba(255, 102, 0, 0.12);
        transform: translateX(6px);
    }
    
    /* Mobil menüde sadece Panel Girişi linkini göster */
    .nav-list .mobile-only {
        display: none;
    }
    
    .nav.active .nav-list .mobile-only {
        display: block;
        margin-top: 8px;
    }
    
    .nav.active .nav-list .btn-panel-login-mobile {
        color: #ffffff !important;
        background: linear-gradient(90deg, rgba(255,102,0,0.95), rgba(255,133,51,0.95)) !important;
        border: 1px solid rgba(255,255,255,0.2);
        font-weight: 600;
        padding: 12px 14px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        transform: none !important;
    }
    
    .nav.active .nav-list .btn-panel-login-mobile:hover {
        background: linear-gradient(90deg, rgba(255,133,51,1), rgba(255,102,0,1)) !important;
        box-shadow: 0 4px 12px rgba(255,102,0,0.3);
        transform: translateY(-2px) !important;
    }


    /* CTA button in mobile menu - make it visible and modern */
    .nav.active .btn-download {
        color: #ffffff;
        border-color: rgba(255,255,255,0.2);
        background: linear-gradient(90deg, rgba(255,102,0,0.95), rgba(255,133,51,0.95));
        margin-top: 8px;
        padding: 10px 14px;
        border-radius: 10px;
        display: inline-flex;
    }

    @keyframes mobileMenuIn {
        from { opacity: 0; transform: translateY(-6px) scale(0.995); }
        to { opacity: 1; transform: translateY(0) scale(1); }
    }

    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        margin-bottom: 40px;
    }

    .hero-driver-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .about-content,
    .download-content {
        flex-direction: column;
    }

    .about-image {
        order: -1;
        margin-bottom: 40px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .service-card {
        max-width: 450px;
        margin: 0 auto;
    }

    .copyright {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .feature-card,
    .service-card {
        padding: 20px;
    }

    .download-buttons {
        flex-direction: column;
    }

    .step {
        padding: 20px;
    }
}

/* Driver modal styles */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 4000; /* above consent banner */
    padding: 20px;
}
.modal-overlay.visible {
    display: flex;
}
.modal {
    width: 100%;
    max-width: 760px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
    overflow: hidden;
}
.modal-header { padding: 18px 22px; border-bottom: 1px solid #eee; }
.modal-header h3 { margin: 0; color: var(--dark-color); }
.modal-body { padding: 18px 22px; }
.modal-close {
    position: absolute;
    right: 18px;
    top: 14px;
    border: none;
    background: transparent;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    color: #444;
}
.modal .form-group input[type="text"],
.modal .form-group input[type="email"],
.modal .form-group input[type="tel"],
.modal .form-group input[type="password"],
.modal .form-group input[type="datetime-local"],
.modal .form-group select,
.modal .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.95rem;
}
.modal .form-group select {
    background-color: white;
    cursor: pointer;
}
.modal .form-actions .btn { min-width: 120px; }
.modal .form-actions .btn-secondary {
    background-color: #f0f0f0;
    color: #000000;
    border: 1px solid #ddd;
}
.modal .form-group { margin-bottom: 10px; }

/* Success notification */
.success-notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.7);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px 40px;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 5000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    text-align: center;
    min-width: 320px;
    max-width: 500px;
}

.success-notification.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.success-notification .success-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: successPulse 0.6s ease-out;
}

.success-notification .success-icon svg {
    width: 50px;
    height: 50px;
    stroke: white;
    stroke-width: 3;
    fill: none;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: checkmark 0.6s ease-out 0.2s forwards;
}

@keyframes successPulse {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes checkmark {
    to {
        stroke-dashoffset: 0;
    }
}

.success-notification h3 {
    font-size: 1.5rem;
    margin: 0 0 10px;
    font-weight: 700;
}

.success-notification p {
    font-size: 1rem;
    margin: 0 0 20px;
    opacity: 0.95;
    line-height: 1.5;
}

.success-notification .success-close {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 10px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.success-notification .success-close:hover {
    background-color: rgba(255, 255, 255, 0.3);
    border-color: white;
    transform: translateY(-2px);
}

@media (max-width: 480px) {
    .modal { max-width: 100%; border-radius: 8px; }
    .success-notification {
        min-width: 280px;
        max-width: 90%;
        padding: 25px 30px;
    }
    .success-notification h3 {
        font-size: 1.3rem;
    }
    .success-notification p {
        font-size: 0.95rem;
    }
}

/* Scroll Progress Road Animation */
.scroll-road-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.1) 100%);
    pointer-events: none;
    z-index: 999;
    overflow: hidden;
}

/* Asfalt yol - kenarları kıvrımlı (görseldeki gibi) */
.road-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 35px;
    background: linear-gradient(to bottom, 
        #4a4a4a 0%, 
        #3a3a3a 30%, 
        #2a2a2a 60%,
        #1a1a1a 100%
    );
    box-shadow: 
        inset 0 2px 4px rgba(0,0,0,0.4),
        inset 0 -2px 4px rgba(255,255,255,0.05),
        0 -3px 8px rgba(0,0,0,0.3);
    /* Kıvrımlı yol kenarları - dalga efekti */
    clip-path: polygon(
        0% 25%, 2% 20%, 4% 18%, 6% 20%, 8% 25%, 
        10% 28%, 12% 25%, 14% 20%, 16% 18%, 18% 20%, 
        20% 25%, 22% 28%, 24% 25%, 26% 20%, 28% 18%, 
        30% 20%, 32% 25%, 34% 28%, 36% 25%, 38% 20%,
        40% 18%, 42% 20%, 44% 25%, 46% 28%, 48% 25%,
        50% 20%, 52% 18%, 54% 20%, 56% 25%, 58% 28%,
        60% 25%, 62% 20%, 64% 18%, 66% 20%, 68% 25%,
        70% 28%, 72% 25%, 74% 20%, 76% 18%, 78% 20%,
        80% 25%, 82% 28%, 84% 25%, 86% 20%, 88% 18%,
        90% 20%, 92% 25%, 94% 28%, 96% 25%, 98% 20%, 100% 18%,
        100% 82%, 98% 80%, 96% 75%, 94% 72%, 92% 75%,
        90% 80%, 88% 82%, 86% 80%, 84% 75%, 82% 72%,
        80% 75%, 78% 80%, 76% 82%, 74% 80%, 72% 75%,
        70% 72%, 68% 75%, 66% 80%, 64% 82%, 62% 80%,
        60% 75%, 58% 72%, 56% 75%, 54% 80%, 52% 82%,
        50% 80%, 48% 75%, 46% 72%, 44% 75%, 42% 80%,
        40% 82%, 38% 80%, 36% 75%, 34% 72%, 32% 75%,
        30% 80%, 28% 82%, 26% 80%, 24% 75%, 22% 72%,
        20% 75%, 18% 80%, 16% 82%, 14% 80%, 12% 75%,
        10% 72%, 8% 75%, 6% 80%, 4% 82%, 2% 80%, 0% 75%
    );
}

/* Kıvrımlı yol çizgisi - SVG path */
.road-line::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 4px;
    transform: translateY(-50%);
    background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='4' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,2 Q50,0 100,2 T200,2 T300,2 T400,2 T500,2 T600,2 T700,2 T800,2 T900,2 T1000,2 T1100,2 T1200,2 T1300,2 T1400,2 T1500,2 T1600,2 T1700,2 T1800,2 T1900,2 T2000,2' stroke='%23FFD700' stroke-width='3' fill='none' stroke-dasharray='30,20'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-size: 100px 4px;
    opacity: 0.9;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.5));
}

/* İkinci yol çizgisi yok - sadece tek çizgi (görseldeki gibi) */
.road-line::after {
    content: none;
}


.road-car {
    position: absolute;
    bottom: 12px;
    left: 0;
    transform: translateX(0);
    transition: transform 0.1s ease-out;
    filter: drop-shadow(0 3px 6px rgba(0,0,0,0.4));
}

/* Araba animasyonu - hafif zıplama efekti */
@keyframes car-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
}

.road-car svg {
    animation: car-bounce 0.5s ease-in-out infinite;
}

/* Mobilde daha küçük */
@media (max-width: 768px) {
    .scroll-road-container {
        height: 50px;
    }
    
    .road-line {
        bottom: 8px;
        height: 28px;
    }
    
    .road-line::before {
        top: 8px;
        height: 2px;
    }
    
    .road-line::after {
        top: 18px;
        height: 2px;
    }
    
    .road-car {
        bottom: 10px;
    }
    
    .road-car svg {
        width: 60px;
        height: 26px;
    }
}