:root {
    --primary: #E69700; /* İstenen Taksi Rengi */
    --primary-dark: #CC8500;
    --dark: #000000;
    --dark-light: #1a1a1a;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-600: #6c757d;
    --white: #ffffff;
    --radius: 8px;
    --shadow: 0 4px 12px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { 
    font-family: var(--font-body); 
    background: var(--white); 
    color: var(--dark); 
    line-height: 1.6; 
    overflow-x: hidden; 
}
body.menu-open { overflow: hidden; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
a { text-decoration: none; color: inherit; display: inline-block; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 800; letter-spacing: -0.5px; line-height: 1.2; word-wrap: break-word; }
.section-title { font-size: clamp(28px, 5vw, 36px); text-align: center; margin-bottom: 40px; }
.section-title span { color: var(--primary); }

/* ── BUTTONS ── */
.btn { padding: 14px 28px; border-radius: 50px; font-weight: 700; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; border: none; font-size: 15px; }
.btn-primary { background: var(--primary); color: var(--dark); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-3px); }
.btn-secondary { background: var(--white); color: var(--dark); border: 2px solid var(--primary); }
.btn-secondary:hover { background: var(--primary); transform: translateY(-3px); }
.btn-white { background: var(--white); color: var(--dark); }
.btn-white:hover { background: var(--primary); transform: translateY(-3px); }

/* ── HEADER ── */
header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}
header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 24px rgba(0,0,0,0.4);
    padding: 12px 0;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { font-family: var(--font-heading); font-size: 24px; font-weight: 900; color: var(--white); }
.logo span { color: var(--primary); }

/* Desktop Nav */
.header-nav-desktop { 
    display: flex; 
    align-items: center; 
    flex: 1;
    justify-content: center;
    gap: 8px; 
}
.header-nav-links {
    display: flex;
    align-items: center;
    gap: 5px;
}
.header-nav-desktop a {
    color: rgba(255,255,255,0.85);
    font-weight: 600;
    font-size: 14px;
    padding: 8px 14px;
    border-radius: 6px;
    transition: var(--transition);
    position: relative;
}
.header-nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 14px; right: 14px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.header-nav-desktop a:hover { color: var(--white); }
.header-nav-desktop a:hover::after { transform: scaleX(1); }
.nav-cta {
    background: var(--primary);
    color: var(--dark) !important;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}
.nav-cta:hover { 
    background: var(--primary-dark); 
    transform: translateY(-2px); 
    color: var(--dark) !important;
}
.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger {
    display: none;
    cursor: pointer;
    padding: 10px;
    border: none;
    background: transparent;
    z-index: 9999;
}
.hamburger i {
    color: #fff;
    font-size: 26px;
    transition: all 0.3s;
}
.hamburger.open {
    position: fixed;
    top: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    background: var(--primary) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(230, 151, 0, 0.4);
    z-index: 10001;
}
.hamburger.open i {
    color: #000 !important;
    font-size: 20px;
}

/* Mobile Nav */
.header-nav-mobile {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.97);
    backdrop-filter: blur(16px);
    z-index: 1050;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 100px;
    gap: 15px;
}
.header-nav-mobile.open {
    display: flex;
    transform: translateY(0);
}
.header-nav-mobile a {
    color: rgba(255,255,255,0.8);
    font-size: 22px;
    font-family: var(--font-heading);
    font-weight: 800;
    padding: 10px 30px;
    border-radius: 12px;
    width: auto;
    text-align: center;
    transition: var(--transition);
    letter-spacing: -0.5px;
}
.header-nav-mobile a:hover { color: var(--primary); background: rgba(255,255,255,0.05); }
.header-nav-mobile .nav-cta-mobile {
    background: var(--primary);
    color: var(--dark) !important;
    border-radius: 50px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 18px;
}

/* ── HERO ── */
.hero { height: 100vh; min-height: 600px; display: flex; align-items: center; position: relative; color: var(--white); text-align: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: -1; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 100%); }
.hero-content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.hero-content h1 { font-size: 64px; margin-bottom: 20px; }
.hero-content p { font-size: 20px; margin-bottom: 40px; color: var(--gray-300); }
.hero-btns { display: flex; align-items: center; justify-content: center; gap: 20px; }

/* ── VEHICLE & GALLERY ── */
.vehicle { padding: 100px 0; background: var(--gray-100); }
.vehicle-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.vehicle-gallery { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); position: relative; }
.vehicle-gallery::after { content: ''; position: absolute; border: 4px solid var(--primary); inset: 15px; z-index: 10; pointer-events: none; border-radius: var(--radius); }
.vehicleSwiper { width: 100%; height: 450px; background: var(--dark); border-radius: var(--radius); }
.vehicleSwiper img { width: 100%; height: 100%; object-fit: cover; }
.swiper-button-next, .swiper-button-prev { color: var(--primary) !important; background: rgba(0,0,0,0.5); padding: 30px 20px; border-radius: 8px; transform: scale(0.7); }
.swiper-pagination-bullet-active { background: var(--primary) !important; }

.v-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 30px; }
.v-feature-item { display: flex; align-items: center; gap: 10px; background: white; padding: 12px 16px; border-radius: var(--radius); font-weight: 600; font-size: 14px; }
.v-feature-item i { color: var(--primary); font-size: 18px; }

/* ── SERVICES ── */
.services { padding: 100px 0; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.service-card { background: var(--white); padding: 40px 30px; border-radius: var(--radius); text-align: center; border: 1px solid var(--gray-200); position: relative; transition: var(--transition); }
.service-card:hover { border-color: var(--primary); transform: translateY(-10px); box-shadow: var(--shadow); }
.service-card .icon { font-size: 44px; color: var(--primary); margin-bottom: 20px; }
.service-card h3 { font-size: 20px; margin-bottom: 12px; }
.service-card p { font-size: 14px; color: var(--gray-600); }

/* ── WHY US ── */
.why-us { padding: 80px 0; background: var(--dark); color: var(--white); text-align: center; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; margin-top: 50px; }
.why-item i { font-size: 36px; color: var(--primary); margin-bottom: 20px; display: block; }
.why-item h4 { font-size: 18px; margin-bottom: 10px; }
.why-item p { font-size: 14px; color: var(--gray-600); }

/* ── TESTIMONIALS ── */
.testimonials { padding: 100px 0; background: var(--gray-100); }
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.test-card { background: var(--white); padding: 30px; border-radius: 12px; box-shadow: var(--shadow); }
.stars { color: var(--primary); margin-bottom: 15px; }
.test-text { font-style: italic; margin-bottom: 20px; font-size: 15px; }
.test-name { font-weight: 800; font-family: var(--font-heading); color: var(--dark); }

/* ── CONTACT ── */
.contact { padding: 100px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; }
.contact-info-list { margin-top: 30px; }
.contact-info-item { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
.contact-info-item i { width: 44px; height: 44px; background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.contact-form { padding: 40px; background: var(--white); border: 1px solid var(--gray-300); border-radius: var(--radius); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 700; margin-bottom: 8px; font-size: 14px; }
.form-group input, .form-group textarea { width: 100%; padding: 14px 18px; border: 1px solid var(--gray-300); border-radius: var(--radius); outline: none; transition: var(--transition); font-size: 15px; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(255,215,0,0.1); }

/* ── MAP ── */
.map-wrapper { position: relative; margin-top: 60px; border-radius: 16px; overflow: hidden; box-shadow: 0 15px 40px rgba(0,0,0,0.1); border: 6px solid var(--white); background: var(--gray-100); }
.map-wrapper iframe { filter: contrast(1.05) saturate(1.2); transition: var(--transition); opacity: 0.85; }
.map-wrapper:hover iframe { opacity: 1; filter: contrast(1.1) saturate(1.4); }

.map-pulse-marker { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 10; display: flex; flex-direction: column; align-items: center; pointer-events: none; }
.map-pulse-marker i { width: 56px; height: 56px; background: var(--primary); color: var(--dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; box-shadow: 0 0 20px var(--primary); z-index: 2; position: relative; animation: floatBtn 3s ease-in-out infinite; }
.pulse-ring { position: absolute; top: 0; left: 0; width: 56px; height: 56px; background: rgba(255, 215, 0, 0.6); border-radius: 50%; z-index: 1; animation: mapPulse 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
.pulse-text { margin-top: 15px; font-weight: 800; font-family: var(--font-heading); color: var(--dark); background: var(--primary); padding: 5px 15px; border-radius: 20px; font-size: 14px; box-shadow: 0 4px 15px rgba(0,0,0,0.2); animation: floatBtn 3s ease-in-out infinite; animation-delay: 0.1s; }

@keyframes mapPulse { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(3.5); opacity: 0; } }
@keyframes floatBtn { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ── PHOTO GALLERY ── */
.photo-gallery { padding: 80px 0; background: var(--gray-100); }
.photo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.photo-item { position: relative; height: 250px; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); border: 2px solid #fff; }
.photo-item:hover { transform: scale(1.03); border-color: var(--primary); box-shadow: 0 10px 30px rgba(0,0,0,0.15); }
.photo-item img { width: 100%; height: 100%; object-fit: cover; }

/* ── FOOTER ── */
footer { padding: 60px 0 30px; background: var(--dark); color: var(--white); text-align: center; }
.footer-logo { font-size: 28px; margin-bottom: 20px; }
.footer-nav { margin-bottom: 30px; display: flex; align-items: center; justify-content: center; gap: 24px; }
.footer-copy { padding-top: 30px; border-top: 1px solid var(--dark-light); font-size: 13px; color: var(--gray-600); }

/* ── FLOATING FAB BUTTONS ── */
.fab-container {
    position: fixed;
    bottom: 30px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

/* Ortak FAB stili */
.fab-btn {
    position: relative;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: visible;
}
.fab-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 10px 28px rgba(0,0,0,0.35);
}

/* WhatsApp FAB */
.fab-whatsapp { background: #25d366; }
.fab-whatsapp::before,
.fab-whatsapp::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.5);
    animation: waPulse 2.2s ease-out infinite;
}
.fab-whatsapp::after  { animation-delay: 1.1s; }

/* Ara FAB */
.fab-call { background: #d62929; }
.fab-call::before,
.fab-call::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(214, 41, 41, 0.5);
    animation: callPulse 2.2s ease-out infinite;
}
.fab-call::after { animation-delay: 1.1s; }

/* Tooltip etiketler */
.fab-btn .fab-label {
    position: absolute;
    right: 74px;
    background: rgba(0,0,0,0.75);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    font-family: var(--font-heading);
    padding: 5px 12px;
    border-radius: 20px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateX(8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}
.fab-btn:hover .fab-label {
    opacity: 1;
    transform: translateX(0);
}

/* Pulse animasyonları */
@keyframes waPulse {
    0%   { transform: scale(1);   opacity: 0.8; }
    70%  { transform: scale(2.0); opacity: 0; }
    100% { transform: scale(2.0); opacity: 0; }
}
@keyframes callPulse {
    0%   { transform: scale(1);   opacity: 0.8; }
    70%  { transform: scale(2.0); opacity: 0; }
    100% { transform: scale(2.0); opacity: 0; }
}

/* ── HERO BADGE STRIP ── */
.hero-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
    flex-wrap: wrap;
}
.hero-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    padding: 8px 18px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
}
.hero-badge i { color: var(--primary); font-size: 15px; }

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
    .hero-content h1 { font-size: clamp(36px, 8vw, 64px); }
    .vehicle-inner { grid-template-columns: 1fr; gap: 40px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .why-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .test-grid { grid-template-columns: 1fr; gap: 20px; }
    .contact-grid { grid-template-columns: 1fr; gap: 30px; }
    /* Hamburger göster, desktop nav gizle */
    .hamburger { display: flex; }
    .header-nav-desktop, .header-cta-desktop { display: none; }
    .container { padding: 0 15px; }
}
@media (max-width: 768px) {
    .hero { height: auto; padding: 150px 0 80px; }
    .hero-btns { flex-direction: column; width: 100%; max-width: 300px; margin: 0 auto; }
    .hero-btns .btn { width: 100%; justify-content: center; }
    .fab-btn { width: 54px; height: 54px; font-size: 22px; }
    .fab-container { bottom: 20px; right: 15px; gap: 12px; }
    .photo-grid { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
}
@media (max-width: 480px) {
    .services-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .v-features { grid-template-columns: 1fr; }
    .footer-nav { flex-direction: column; gap: 15px; }
}
