/* ===== GENEL STILLER ===== */
:root {
    --primary-color: #1a2847;      /* Koyu lacivert */
    --secondary-color: #2c3e50;    /* Koyu gri */
    --accent-orange: #ff8c42;      /* Turuncu vurgu */
    --accent-green: #27ae60;       /* Yeşil vurgu */
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-hover: 0 5px 20px rgba(0,0,0,0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

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

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

/* ===== BUTONLAR ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 15px;
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent-orange);
    color: var(--white);
}

.btn-primary:hover {
    background: #ff7528;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

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

.btn-secondary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.btn-call {
    background: var(--accent-green);
    color: var(--white);
}

.btn-call:hover {
    background: #229954;
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #1fb855;
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

/* ===== ANIMASYONLU ANAHTAR İKONU ===== */
.floating-key {
    position: fixed;
    font-size: 40px;
    color: var(--accent-orange);
    opacity: 0.3;
    z-index: 1;
    pointer-events: none;
    animation: floatKey 15s infinite ease-in-out;
}

@keyframes floatKey {
    0%, 100% {
        top: 20%;
        left: 10%;
        transform: rotate(0deg);
    }
    25% {
        top: 70%;
        left: 80%;
        transform: rotate(90deg);
    }
    50% {
        top: 30%;
        left: 70%;
        transform: rotate(180deg);
    }
    75% {
        top: 80%;
        left: 20%;
        transform: rotate(270deg);
    }
}

/* ===== HEADER ===== */
.header {
    background: var(--primary-color);
    color: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s;
}

.logo:hover {
    opacity: 0.85;
}

.logo img {
    height: 60px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-menu a {
    color: #ffffff !important;
    font-weight: 500 !important;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 5px 0;
    font-size: 16px;
}

.nav-menu a:visited {
    color: #ffffff !important;
}

.nav-menu a:hover {
    color: #f0f0f0 !important;
    opacity: 0.9;
}

.nav-menu a.active {
    color: #ff8c42 !important;
    font-weight: 500 !important;
}

.nav-menu a.active:visited {
    color: #ff8c42 !important;
}

.header-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* Dil Seçici */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-right: 15px;
    padding: 8px 12px;
    background: rgba(255,255,255,0.1);
    border-radius: 6px;
}

.lang-switcher a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.3s;
    text-decoration: none;
}

.lang-switcher a:hover {
    color: var(--white);
    background: rgba(255,255,255,0.1);
}

.lang-switcher a.active {
    color: var(--white);
    background: var(--accent-orange);
}

.lang-switcher span {
    color: rgba(255,255,255,0.4);
    font-size: 12px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
}


/* ===== SLIDER BÖLÜMÜ ===== */
.slider-section {
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 10;
    width: 100%;
}

.slider-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
}

.slider {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
    background: #1a2847;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(26, 40, 71, 0.7);
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    backdrop-filter: blur(5px);
}

.slider-btn:hover {
    background: rgba(26, 40, 71, 0.9);
    border-color: var(--accent-orange);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
    left: 30px;
}

.slider-btn.next {
    right: 30px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: 2px solid rgba(255,255,255,0.6);
    cursor: pointer;
    transition: all 0.4s;
}

.slider-dot.active {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    width: 40px;
    border-radius: 6px;
}

/* ===== SECTION GENEL ===== */
section {
    padding: 50px 0;
}

.section-title {
    font-size: 32px;
    text-align: center;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 35px;
}

/* ===== ANA HİZMET KARTLARI ===== */
.main-services {
    background: var(--light-bg);
    padding: 50px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    font-size: 60px;
    color: var(--accent-orange);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
}

/* ===== HİZMET KUTULARI ===== */
.services-grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.service-box {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--light-bg);
    transition: all 0.3s;
}

.service-box:hover {
    border-color: var(--accent-orange);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.service-box-icon {
    font-size: 48px;
    color: var(--accent-orange);
    margin-bottom: 15px;
}

.service-box h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.service-box p {
    color: var(--text-light);
    font-size: 14px;
}

/* ===== BİSİKLET HİZMETLERİ ===== */
.bike-services {
    background: var(--light-bg);
}

.bike-services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.bike-service-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.bike-service-item i {
    font-size: 24px;
    color: var(--accent-green);
}

.bike-service-item span {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 500;
}

/* ===== MÜŞTERİ YORUMLARI ===== */
.testimonials {
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--accent-orange);
}

.testimonial-stars {
    color: #f39c12;
    margin-bottom: 15px;
}

.testimonial-card p {
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author strong {
    color: var(--primary-color);
    font-size: 16px;
    display: block;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 14px;
}

/* ===== SON ÇAĞRI ===== */
.cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    text-align: center;
    padding: 50px 0;
}

.cta h2 {
    font-size: 38px;
    margin-bottom: 15px;
}

.cta p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: var(--accent-orange);
}

.footer-section p {
    margin-bottom: 10px;
    opacity: 0.9;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--white);
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--accent-orange);
}

.social-links {
    display: flex;
    gap: 15px;
    font-size: 24px;
}

.social-links a {
    color: var(--white);
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--accent-orange);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.7;
}

/* ===== MOBİL SABİT ARAMA BUTONU ===== */
.mobile-call-btn {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-green);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 999;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 18px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
    }
    50% {
        transform: translateX(-50%) scale(1.05);
    }
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    background: #20ba5a;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.7);
}

@keyframes whatsappPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 30px rgba(37, 211, 102, 0.8);
    }
}

/* ===== AKORDEON (SSS İÇİN) ===== */
.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.accordion-header {
    background: var(--light-bg);
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--primary-color);
    transition: background 0.3s;
}

.accordion-header:hover {
    background: #e8eaf0;
}

.accordion-header i {
    transition: transform 0.3s;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content-inner {
    padding: 20px;
    color: var(--text-dark);
    line-height: 1.8;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
}

/* ===== İLETİŞİM FORMU ===== */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--light-bg);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-orange);
}

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

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.contact-box {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
}

.contact-box i {
    font-size: 48px;
    color: var(--accent-orange);
    margin-bottom: 15px;
}

.contact-box h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-box p {
    color: var(--text-dark);
}

.map-container {
    margin-top: 50px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* ===== RESPONSIVE TASARIM ===== */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--primary-color);
        flex-direction: column;
        padding: 40px 20px;
        transition: left 0.3s ease;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu a {
        font-size: 20px;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        width: 100%;
        text-align: center;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .header-buttons {
        display: none;
    }
    
    .mobile-call-btn {
        display: flex;
    }
    
    .slider {
        height: 300px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .slider-btn.prev {
        left: 10px;
    }
    
    .slider-btn.next {
        right: 10px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .cta h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 35px 0;
    }
    
    .page-header {
        padding: 70px 0 30px;
    }
    
    .page-banner {
        height: 200px;
    }
    
    .services-grid,
    .services-grid-4,
    .bike-services-list,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .slider {
        height: 250px;
    }
    
    .service-card,
    .service-box {
        padding: 25px;
    }
    
    .contact-form {
        padding: 25px;
    }
}

/* ===== SAYFA DETAY STİLLERİ ===== */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 80px 0 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 16px;
    opacity: 0.9;
}

/* ===== SAYFA BANNER ===== */
.page-banner {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.page-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-section {
    padding: 40px 0;
}

.content-box {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 25px;
}

.content-box h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 24px;
}

.content-box p,
.content-box ul {
    line-height: 1.8;
    color: var(--text-dark);
}

.content-box ul {
    list-style: none;
    padding-left: 0;
}

.content-box ul li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.content-box ul li:before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent-green);
}

.price-note {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 15px;
    margin-top: 20px;
    border-radius: 4px;
}

.price-note p {
    margin: 0;
    color: #856404;
}

/* Cache buster: 1764335461 */
