/* ========================================
   JET TAKSİ - Ana Stil Dosyası
   ======================================== */

:root {
    --yellow: #eab308;
    --yellow-dark: #ca8a04;
    --yellow-light: #fde047;
    --black: #111111;
    --white: #ffffff;
    --dark-gray: #1f2937;
    --green: #16a34a;
    --green-dark: #15803d;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark-gray);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

/* ---- HEADER / NAV ---- */
.top-bar {
    background: var(--black);
    color: var(--gray-400);
    font-size: 0.8rem;
    padding: 0.4rem 0;
}

.top-bar a {
    color: var(--yellow);
}

.top-bar a:hover {
    color: var(--yellow-light);
}

.navbar {
    background: var(--white);
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s;
}

.navbar.scrolled {
    box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}

.nav-brand {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--black);
}

.nav-brand span {
    color: var(--yellow);
}

.nav-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--dark-gray) !important;
    padding: 0.5rem 1rem !important;
    border-radius: 0.5rem;
    transition: all 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--yellow-dark) !important;
    background: rgba(234, 179, 8, 0.08);
}

.nav-cta {
    background: var(--yellow) !important;
    color: var(--black) !important;
    font-weight: 600 !important;
    border-radius: 9999px !important;
    padding: 0.5rem 1.5rem !important;
}

.nav-cta:hover {
    background: var(--yellow-dark) !important;
    transform: translateY(-1px);
}

/* ---- HAMBURGER ---- */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 4px;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: var(--black);
    border-radius: 3px;
    transition: 0.3s;
}

@media (max-width: 991px) {
    .hamburger {
        display: flex;
    }
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    }
    .nav-menu.open {
        display: flex;
    }
}

/* ---- HERO ---- */
.hero {
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: var(--yellow);
    opacity: 0.04;
    border-radius: 50%;
    transform: rotate(-15deg);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(234, 179, 8, 0.15);
    color: var(--yellow);
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(234, 179, 8, 0.25);
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    color: var(--white);
    margin-bottom: 1.5rem;
}

.hero h1 .highlight {
    color: var(--yellow);
    position: relative;
}

.hero p {
    font-size: 1.15rem;
    color: var(--gray-400);
    max-width: 540px;
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stats .stat h3 {
    font-size: 1.8rem;
    color: var(--yellow);
}

.hero-stats .stat p {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-bottom: 0;
}

.hero-visual {
    position: relative;
    text-align: center;
}

.hero-visual .taxi-icon {
    font-size: 14rem;
    color: var(--yellow);
    opacity: 0.25;
    animation: floatCar 4s ease-in-out infinite;
}

@keyframes floatCar {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* ---- BUTTONS ---- */
.btn-yellow {
    background: var(--yellow);
    color: var(--black);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    padding: 0.85rem 2rem;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-yellow:hover {
    background: var(--yellow-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(234, 179, 8, 0.35);
    color: var(--black);
}

.btn-outline {
    border: 2px solid var(--yellow);
    color: var(--yellow);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    background: transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-outline:hover {
    background: var(--yellow);
    color: var(--black);
    transform: translateY(-2px);
}

.btn-green {
    background: var(--green);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    padding: 0.85rem 2rem;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-green:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(22, 163, 74, 0.35);
    color: var(--white);
}

/* ---- SECTIONS ---- */
.section {
    padding: 5rem 0;
}

.section-dark {
    background: var(--dark-gray);
    color: var(--white);
}

.section-gray {
    background: var(--gray-100);
}

.section-title {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-title .label {
    display: inline-block;
    color: var(--yellow);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.section-title h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--black);
    margin-bottom: 1rem;
}

.section-dark .section-title h2 {
    color: var(--white);
}

.section-title p {
    font-size: 1.05rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

.section-dark .section-title p {
    color: var(--gray-400);
}

/* ---- SERVICE CARD ---- */
.service-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.4s;
    border: 1px solid var(--gray-200);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--yellow);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--yellow);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card .icon-box {
    width: 60px;
    height: 60px;
    background: rgba(234, 179, 8, 0.1);
    color: var(--yellow);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    transition: all 0.3s;
}

.service-card:hover .icon-box {
    background: var(--yellow);
    color: var(--black);
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--black);
}

.service-card p {
    color: var(--gray-500);
    font-size: 0.95rem;
}

/* ---- FLEET CARD ---- */
.fleet-card {
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.4s;
    border: 1px solid var(--gray-200);
    height: 100%;
}

.fleet-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.fleet-card .card-visual {
    background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
    padding: 2.5rem;
    text-align: center;
    position: relative;
}

.fleet-card .card-visual i {
    font-size: 4rem;
    color: var(--dark-gray);
}

.fleet-card .card-visual .badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--yellow);
    color: var(--black);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
}

.fleet-card .card-body {
    padding: 1.5rem;
}

.fleet-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.fleet-card .specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1rem 0;
}

.fleet-card .spec-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--gray-500);
}

.fleet-card .spec-item i {
    color: var(--yellow);
}

.fleet-card .price {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--green);
}

.fleet-card .price small {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--gray-500);
}

/* ---- PRICE CALCULATOR ---- */
.calc-box {
    background: var(--white);
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border: 1px solid var(--gray-200);
}

.calc-box label {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    display: block;
}

.calc-box input,
.calc-box select {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: 0.75rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s;
    background: var(--white);
    color: var(--dark-gray);
}

.calc-box input:focus,
.calc-box select:focus {
    outline: none;
    border-color: var(--yellow);
    box-shadow: 0 0 0 3px rgba(234, 179, 8, 0.15);
}

.result-box {
    background: linear-gradient(135deg, var(--black), var(--dark-gray));
    border-radius: 1rem;
    padding: 2rem;
    color: var(--white);
    text-align: center;
    margin-top: 1.5rem;
}

.result-box .amount {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--yellow);
}

/* ---- CTA / DOWNLOAD ---- */
.cta-section {
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    transform: rotate(15deg);
}

.cta-section h2 {
    color: var(--black);
}

.cta-section p {
    color: rgba(0,0,0,0.7);
}

/* ---- CONTACT ---- */
.contact-info-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
    height: 100%;
}

.contact-info-card:hover {
    border-color: var(--yellow);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.contact-info-card .icon-circle {
    width: 64px;
    height: 64px;
    background: rgba(234, 179, 8, 0.1);
    color: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 1rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: 0.75rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s;
    margin-bottom: 1rem;
    background: var(--white);
    color: var(--dark-gray);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--yellow);
    box-shadow: 0 0 0 3px rgba(234, 179, 8, 0.15);
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
}

/* ---- ABOUT ---- */
.timeline-item {
    position: relative;
    padding-left: 3rem;
    padding-bottom: 2rem;
    border-left: 2px solid var(--gray-200);
}

.timeline-item:last-child {
    border-left-color: transparent;
    padding-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--yellow);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 2px var(--yellow);
}

.timeline-item h4 {
    font-size: 1.05rem;
    color: var(--black);
    margin-bottom: 0.25rem;
}

.timeline-item .year {
    font-size: 0.8rem;
    color: var(--yellow-dark);
    font-weight: 700;
}

.timeline-item p {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
}

.value-card .icon-wrap {
    width: 72px;
    height: 72px;
    background: rgba(234, 179, 8, 0.1);
    color: var(--yellow);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1rem;
}

.value-card h4 {
    font-size: 1.05rem;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.value-card p {
    color: var(--gray-500);
    font-size: 0.9rem;
}

/* ---- FOOTER ---- */
.footer {
    background: var(--black);
    color: var(--gray-400);
    padding-top: 4rem;
}

.footer h5 {
    color: var(--white);
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
}

.footer a {
    color: var(--gray-400);
    font-size: 0.9rem;
}

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

.footer-links li {
    list-style: none;
    margin-bottom: 0.6rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.5rem 0;
    margin-top: 3rem;
}

/* ---- PAGE BANNER ---- */
.page-banner {
    background: linear-gradient(135deg, var(--black), var(--dark-gray));
    padding: 6rem 0 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 50%;
    height: 160%;
    background: var(--yellow);
    opacity: 0.03;
    border-radius: 50%;
}

.page-banner h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--white);
    margin-bottom: 0.5rem;
}

.page-banner .breadcrumb {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-banner .breadcrumb li {
    color: var(--gray-400);
    font-size: 0.9rem;
}

.page-banner .breadcrumb li a {
    color: var(--yellow);
}

.page-banner .breadcrumb li + li::before {
    content: '/';
    margin-right: 0.5rem;
    color: var(--gray-600);
}

/* ---- WHATSAPP FLOAT ---- */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--white);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ---- UTILITIES ---- */
.text-yellow { color: var(--yellow) !important; }
.bg-yellow { background-color: var(--yellow) !important; }
.text-green { color: var(--green) !important; }

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 767px) {
    .hero {
        min-height: auto;
        padding: 4rem 0;
    }
    .hero-stats {
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    .hero-visual {
        display: none;
    }
    .section {
        padding: 3rem 0;
    }
    .calc-box {
        padding: 1.5rem;
    }
    .whatsapp-float {
        bottom: 1rem;
        right: 1rem;
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
    }
}

/* ---------- Overflow / Tasma Korumasi ---------- */
*, *::before, *::after {
    overflow-wrap: break-word;
    word-wrap: break-word;
}

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

table {
    max-width: 100%;
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
