/* MUŞ VİP TAKSİ - Ana Stil Dosyası */
:root {
    --primary-color: #f8b400;
    --primary-dark: #e6a200;
    --secondary-color: #2c3e50;
    --secondary-light: #34495e;
    --accent-color: #e74c3c;
    --whatsapp-color: #25d366;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --gray-color: #6c757d;
    --light-gray: #e9ecef;
    --border-color: #dee2e6;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --border-radius-sm: 4px;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #fff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-size: 1rem;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

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

.btn-whatsapp:hover {
    background-color: #1da851;
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

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

.btn-secondary:hover {
    background-color: var(--secondary-light);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

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

.btn-emergency {
    background-color: var(--accent-color);
    color: white;
    font-weight: 700;
}

.btn-emergency:hover {
    background-color: #c0392b;
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Navbar */
.navbar {
    background-color: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--secondary-color);
}

.logo:hover {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--secondary-color);
    font-weight: 600;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.nav-buttons .btn-call {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
}

.nav-buttons .btn-call:hover {
    background-color: var(--primary-dark);
    color: white;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--secondary-color);
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/taxi-hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 0;
}

.hero h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.9);
}

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

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--light-color);
}

.section-title {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 10px auto 30px;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--gray-color);
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

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

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

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Reviews Slider */
.reviews {
    padding: 80px 0;
    background-color: white;
}

.reviews-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.slides-container {
    display: flex;
    overflow: hidden;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
}

.slide {
    min-width: 100%;
    transition: transform 0.5s ease;
    padding: 20px;
}

.review-card {
    background: var(--light-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.stars {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.review-text {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.review-author {
    font-weight: 600;
    color: var(--primary-color);
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.slider-prev,
.slider-next {
    background-color: var(--primary-color);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.slider-prev:hover,
.slider-next:hover {
    background-color: var(--primary-dark);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--light-gray);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background-color: var(--primary-color);
}

.all-reviews-link {
    text-align: center;
    margin-top: 40px;
}

/* Services Preview */
.services-preview {
    padding: 80px 0;
    background-color: var(--light-color);
}

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

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

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

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 15px;
}

.text-center {
    text-align: center;
}

/* Emergency Buttons */
.emergency-buttons {
    padding: 80px 0;
    background-color: white;
}

.buttons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 50px auto 0;
}

.emergency-btn {
    display: flex;
    align-items: center;
    padding: 30px;
    border-radius: var(--border-radius);
    color: white;
    transition: var(--transition);
    text-decoration: none;
}

.emergency-btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.phone-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.whatsapp-btn {
    background: linear-gradient(135deg, var(--whatsapp-color), #1da851);
}

.emergency-icon {
    font-size: 3rem;
    margin-right: 20px;
}

.emergency-content h3 {
    color: white;
    margin-bottom: 5px;
}

.emergency-content p {
    margin-bottom: 10px;
    opacity: 0.9;
}

.emergency-number,
.emergency-action {
    font-size: 1.2rem;
    font-weight: 700;
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 60px 0 0;
}

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

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 20px;
}

.footer-description {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-call-small,
.btn-whatsapp-small {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    color: white;
}

.btn-call-small {
    background-color: var(--primary-color);
}

.btn-whatsapp-small {
    background-color: var(--whatsapp-color);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-info a {
    color: white;
}

.contact-info a:hover {
    color: var(--primary-color);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.working-hours p {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.9);
}

.working-hours .note {
    font-style: italic;
    margin-top: 15px;
    color: var(--primary-color);
}

.footer-bottom {
    background-color: var(--secondary-light);
    padding: 20px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-credits {
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.5);
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.floating-btn:hover {
    transform: scale(1.1);
    color: white;
}

.floating-call {
    background-color: var(--primary-color);
}

.floating-whatsapp {
    background-color: var(--whatsapp-color);
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/page-header.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 80px 0;
}

.page-header h1 {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* About Page */
.about-content {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.about-text h2 {
    margin-bottom: 20px;
}

.about-text h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.values-list {
    list-style: none;
    margin-top: 20px;
}

.values-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.values-list li i {
    color: var(--primary-color);
    margin-top: 5px;
}

.about-image {
    position: sticky;
    top: 100px;
}

.image-placeholder {
    width: 100%;
    height: 300px;
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gray-color);
    margin-bottom: 30px;
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.stats-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.stat-item {
    text-align: center;
}

.stat-item h4 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin: 0;
}

/* Driver Team */
.driver-team {
    padding: 80px 0;
    background-color: var(--light-color);
}

.drivers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

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

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

.driver-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 3rem;
    color: var(--primary-color);
}

.driver-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 5px;
}

.driver-exp {
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.driver-desc {
    font-size: 0.95rem;
    color: var(--secondary-light);
}

/* All Reviews */
.all-reviews {
    padding: 80px 0;
    background-color: white;
}

.reviews-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    background-color: var(--light-gray);
    border: none;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    color: var(--secondary-color);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

.all-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.review-item {
    background: var(--light-color);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.review-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.review-date {
    font-size: 0.9rem;
    color: var(--gray-color);
}

.review-text {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.author-info h4 {
    margin: 0;
    font-size: 1rem;
}

.author-info p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--gray-color);
}

.add-review {
    text-align: center;
    padding: 40px;
    background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)), url('images/review-bg.jpg');
    background-size: cover;
    background-position: center;
    border-radius: var(--border-radius);
    color: white;
}

.add-review h3 {
    color: white;
}

.add-review p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(rgba(248, 180, 0, 0.9), rgba(248, 180, 0, 0.9)), url('images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

.cta-section h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.95);
}

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

/* Services Detail Page */
.services-detail {
    padding: 80px 0;
}

.service-category {
    margin-bottom: 80px;
}

.service-category:last-child {
    margin-bottom: 0;
}

.service-category-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--light-gray);
}

.service-icon-large {
    font-size: 3rem;
    color: var(--primary-color);
}

.service-subtitle {
    color: var(--gray-color);
    font-size: 1.1rem;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 40px;
}

.service-content.reverse {
    direction: rtl;
}

.service-content.reverse > * {
    direction: ltr;
}

.service-image {
    border-radius: var(--border-radius);
    overflow: hidden;
}

.service-details h3 {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.service-features {
    list-style: none;
    margin: 25px 0;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.service-features li i {
    color: var(--primary-color);
    margin-top: 5px;
}

.service-pricing {
    background-color: var(--light-color);
    padding: 25px;
    border-radius: var(--border-radius);
    margin-top: 30px;
}

.service-pricing h4 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.service-pricing ul {
    list-style: none;
    margin-bottom: 15px;
}

.service-pricing li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.service-pricing li:last-child {
    border-bottom: none;
}

.price-note {
    font-size: 0.9rem;
    color: var(--gray-color);
    font-style: italic;
    margin: 0;
}

.service-areas {
    margin-top: 30px;
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.area-badge {
    background-color: var(--light-gray);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.service-booking {
    background: linear-gradient(rgba(44, 62, 80, 0.95), rgba(44, 62, 80, 0.95));
    color: white;
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
}

.service-booking h3 {
    color: white;
    margin-bottom: 15px;
}

.service-booking p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

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

/* Other Services */
.other-services {
    margin-top: 80px;
}

.other-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.other-service-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

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

.other-service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Contact Page */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-subtitle {
    color: var(--gray-color);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-details h3 {
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.contact-details p {
    color: var(--gray-color);
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.contact-details a{
    color: #F8B401;
}

.contact-link {
    display: inline-block;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin: 0;
}

.contact-time {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.emergency-contact {
    background-color: #fff8e1;
    padding: 25px;
    border-radius: var(--border-radius);
    border-left: 5px solid var(--accent-color);
}

.emergency-contact h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-color);
    margin-bottom: 15px;
}

/* Contact Form */
.contact-form-section {
    background-color: var(--light-color);
    padding: 40px;
    border-radius: var(--border-radius);
}

.contact-form {
    margin-top: 30px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(248, 180, 0, 0.2);
}

.form-submit {
    margin-top: 30px;
}

.form-note {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin-top: 15px;
}

.form-alternative {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.alternative-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.btn-call-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-call-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-whatsapp-outline {
    border: 2px solid var(--whatsapp-color);
    color: var(--whatsapp-color);
    background: transparent;
}

.btn-whatsapp-outline:hover {
    background-color: var(--whatsapp-color);
    color: white;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.map-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-top: 50px;
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-placeholder {
    height: 400px;
    background-color: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder-content {
    text-align: center;
    color: var(--gray-color);
}

.map-placeholder-content i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.map-areas {
    padding: 30px;
}

.areas-list {
    margin-top: 20px;
}

.area-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.area-item:last-child {
    border-bottom: none;
}

.area-item i {
    color: var(--primary-color);
}

/* Immediate Contact */
.immediate-contact {
    padding: 80px 0;
    background: linear-gradient(rgba(44, 62, 80, 0.95), rgba(44, 62, 80, 0.95));
    color: white;
    text-align: center;
}

.immediate-contact h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.immediate-contact p {
    font-size: 1.2rem;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.9);
}

.immediate-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.immediate-btn {
    display: flex;
    align-items: center;
    padding: 30px;
    border-radius: var(--border-radius);
    color: white;
    transition: var(--transition);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.immediate-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    color: white;
}

.call-now .immediate-icon {
    color: var(--primary-color);
}

.whatsapp-now .immediate-icon {
    color: var(--whatsapp-color);
}

.immediate-icon {
    font-size: 3rem;
    margin-right: 20px;
}

.immediate-content h3 {
    color: white;
    margin-bottom: 5px;
    text-align: left;
}

.immediate-content p {
    text-align: left;
    margin-bottom: 10px;
    opacity: 0.9;
    font-size: 1rem;
}

.immediate-number,
.immediate-action {
    font-size: 1.3rem;
    font-weight: 700;
    text-align: left;
    display: block;
}

.immediate-note {
    margin-top: 40px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.immediate-note p {
    margin: 0;
    font-size: 1rem;
}

.immediate-note i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* Footer Contact Buttons */
.footer-contact-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    transition: var(--transition);
}

.footer-contact-btn:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.footer-contact-btn.whatsapp:hover {
    background-color: var(--whatsapp-color);
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-grid,
    .contact-grid,
    .service-content,
    .map-container {
        grid-template-columns: 1fr;
    }
    
    .service-content.reverse {
        direction: ltr;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .navbar .container {
        flex-wrap: wrap;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 15px;
        margin-top: 20px;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .hero-buttons,
    .cta-buttons,
    .booking-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn,
    .cta-buttons .btn,
    .booking-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .contact-form-section,
    .service-booking,
    .emergency-contact {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 70px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .features-grid,
    .services-grid,
    .drivers-grid,
    .all-reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-box {
        grid-template-columns: 1fr;
    }
    
    .buttons-grid,
    .immediate-buttons {
        grid-template-columns: 1fr;
    }
    
    .emergency-btn,
    .immediate-btn {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
    
    .emergency-icon,
    .immediate-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .emergency-content h3,
    .immediate-content h3,
    .emergency-content p,
    .immediate-content p,
    .emergency-number,
    .immediate-action {
        text-align: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}


/* ============================================
   CANLI DESTEK SOHBET WIDGET
   ============================================ */
#musvip-chat-widget {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 9999;
}

.chat-toggle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
}

.chat-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(248, 180, 0, 0.3);
}

.chat-toggle.active {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
}

.chat-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--accent-color);
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
}

.chat-window {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 350px;
    max-width: 90vw;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.chat-window.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.chat-header {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h4 {
    color: white;
    margin: 0;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.8;
    transition: var(--transition);
}

.chat-close:hover {
    opacity: 1;
}

.chat-body {
    height: 400px;
    display: flex;
    flex-direction: column;
    background: #f8f9fa;
}

.welcome-message {
    padding: 20px;
    background: white;
    border-bottom: 1px solid var(--border-color);
}

.welcome-message p {
    margin-bottom: 10px;
}

.quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.quick-btn {
    background: var(--light-color);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 8px 12px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    flex: 1;
    min-width: 100px;
}

.quick-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.message {
    max-width: 80%;
    animation: messageAppear 0.3s ease;
}

@keyframes messageAppear {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.user-message {
    align-self: flex-end;
}

.support-message {
    align-self: flex-start;
}

.message-content {
    padding: 12px 15px;
    border-radius: 18px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.user-message .message-content {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-bottom-right-radius: 5px;
}

.support-message .message-content {
    background: white;
    color: var(--dark-color);
    border: 1px solid var(--border-color);
    border-bottom-left-radius: 5px;
}

.support-message .message-content .inline-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
    margin: 5px 0;
    display: inline-block;
    text-decoration: none;
}

.support-message .message-content .inline-btn:hover {
    background: var(--primary-dark);
}

.message-time {
    font-size: 0.75rem;
    color: var(--gray-color);
    margin-top: 5px;
    text-align: right;
}

.user-message .message-time {
    text-align: right;
}

.support-message .message-time {
    text-align: left;
}

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

.typing-indicator {
    padding: 10px 20px;
    font-size: 0.85rem;
    color: var(--gray-color);
    display: none;
}

.typing-indicator span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.typing-indicator span::after {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--gray-color);
    border-radius: 50%;
    animation: typing 1.5s infinite;
}

@keyframes typing {
    0%, 60%, 100% { opacity: 0.3; }
    30% { opacity: 1; }
}

.chat-input-container {
    display: flex;
    padding: 15px;
    gap: 10px;
    border-top: 1px solid var(--border-color);
}

.chat-input-container input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 0.95rem;
    transition: var(--transition);
}

.chat-input-container input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(248, 180, 0, 0.1);
}

.chat-input-container button {
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: var(--light-gray);
    color: var(--gray-color);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-input-container button:hover {
    background: var(--primary-color);
    color: white;
}

.chat-options {
    display: flex;
    padding: 0 15px 15px;
    gap: 10px;
}

.option-btn {
    flex: 1;
    padding: 10px;
    background: var(--light-color);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.option-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* ============================================
   FİYAT HESAPLAMA SİSTEMİ
   ============================================ */
#priceCalculator {
    position: fixed;
    bottom: 170px;
    right: 30px;
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

#priceCalculator.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.price-calculator-widget {
    width: 350px;
    max-width: 90vw;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.calculator-header {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.calculator-header h4 {
    color: white;
    margin: 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.calculator-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.8;
}

.calculator-close:hover {
    opacity: 1;
}

.calculator-body {
    padding: 20px;
    max-height: 500px;
    overflow-y: auto;
}

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

.calculator-body label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 0.95rem;
}

.calculator-body select,
.calculator-body input[type="text"],
.calculator-body input[type="number"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-size: 0.95rem;
    transition: var(--transition);
}

.calculator-body select:focus,
.calculator-body input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(248, 180, 0, 0.1);
}

.passenger-control {
    display: flex;
    align-items: center;
    gap: 10px;
}

.passenger-btn {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-color);
    background: white;
    color: var(--primary-color);
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.passenger-btn:hover {
    background: var(--primary-color);
    color: white;
}

#passengerCount {
    flex: 1;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: normal;
    cursor: pointer;
    font-size: 0.9rem;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.calculator-result {
    background: var(--light-color);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-top: 20px;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.result-placeholder {
    text-align: center;
    color: var(--gray-color);
}

.result-placeholder i {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--light-gray);
}

.result-error {
    text-align: center;
    color: var(--accent-color);
}

.result-error i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.result-success {
    width: 100%;
}

.result-price {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px dashed var(--border-color);
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    line-height: 1;
}

.price-note {
    font-size: 0.9rem;
    color: var(--gray-color);
    font-style: italic;
}

.result-details p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.result-details i {
    color: var(--primary-color);
    width: 20px;
}

.result-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.btn-call-now,
.btn-whatsapp-book {
    padding: 12px;
    border: none;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-call-now {
    background: var(--primary-color);
    color: white;
}

.btn-call-now:hover {
    background: var(--primary-dark);
}

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

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

.calculator-footer {
    padding: 15px 20px;
    background: var(--light-color);
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 10px;
}

.btn-calculate,
.btn-book {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

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

.btn-calculate:hover {
    background: var(--secondary-light);
}

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

.btn-book:hover {
    background: var(--primary-dark);
}

/* Fiyat Hesapla Butonu */
#calculatorToggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9997;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    border: none;
    transition: var(--transition);
}

#calculatorToggle:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.3);
}

/* ============================================
   KONUM TABANLI TAKSİ ÇAĞIRMA
   ============================================ */
.location-based-booking {
    padding: 80px 0;
    background: linear-gradient(rgba(44, 62, 80, 0.05), rgba(44, 62, 80, 0.05));
}

.location-widget {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    padding: 40px;
    margin-top: 40px;
}

.location-input-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.location-input {
    position: relative;
}

.location-input input {
    width: 100%;
    padding: 15px 15px 15px 50px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.location-input input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(248, 180, 0, 0.1);
    outline: none;
}

.location-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1.2rem;
}

.location-swap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.swap-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--light-gray);
    border: none;
    color: var(--gray-color);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.swap-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: rotate(180deg);
}

.current-location-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--light-color);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-weight: 600;
    color: var(--secondary-color);
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
}

.current-location-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.estimated-time {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
    margin: 30px 0;
}

.estimated-time h3 {
    color: white;
    margin-bottom: 10px;
}

.time-display {
    font-size: 3rem;
    font-weight: 800;
    margin: 10px 0;
}

.time-unit {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ============================================
   ARAÇ SEÇENEKLERİ
   ============================================ */
.vehicle-selection {
    padding: 80px 0;
    background: var(--light-color);
}

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.vehicle-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

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

.vehicle-card.recommended {
    border: 3px solid var(--primary-color);
}

.recommended-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 1;
}

.vehicle-image {
    height: 180px;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-color);
}

.vehicle-image i {
    font-size: 4rem;
    color: var(--primary-color);
}

.vehicle-details {
    padding: 25px;
}

.vehicle-type {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.vehicle-type h3 {
    margin: 0;
    font-size: 1.3rem;
}

.vehicle-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.vehicle-price span {
    font-size: 0.9rem;
    color: var(--gray-color);
    font-weight: normal;
}

.vehicle-specs {
    list-style: none;
    margin: 20px 0;
}

.vehicle-specs li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.vehicle-specs i {
    color: var(--primary-color);
    width: 20px;
}

.book-vehicle-btn {
    width: 100%;
    padding: 12px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.book-vehicle-btn:hover {
    background: var(--primary-dark);
}

/* ============================================
   İSTATİSTİKLER
   ============================================ */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)), url('images/stats-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-box {
    padding: 30px;
}

.stat-box i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin: 15px 0;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ============================================
   DEĞERLENDİRME SİSTEMİ
   ============================================ */
.rating-system {
    padding: 80px 0;
}

.rating-form {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
}

.star-rating {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0 30px;
}

.star-rating input {
    display: none;
}

.star-rating label {
    font-size: 2.5rem;
    color: var(--light-gray);
    cursor: pointer;
    transition: var(--transition);
}

.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
    color: var(--primary-color);
}

.rating-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.rating-category {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: var(--light-color);
    border-radius: var(--border-radius);
}

.category-stars {
    display: flex;
    gap: 5px;
}

.category-stars i {
    color: var(--light-gray);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.category-stars i.active,
.category-stars i:hover {
    color: var(--primary-color);
}

/* ============================================
   RESPONSIVE DÜZENLEMELER
   ============================================ */
@media (max-width: 768px) {
    #musvip-chat-widget {
        right: 15px;
        bottom: 90px;
    }
    
    .chat-window {
        width: calc(100vw - 30px);
        right: -100vw;
    }
    
    .chat-window.open {
        right: 0;
    }
    
    #priceCalculator {
        right: 15px;
        bottom: 160px;
    }
    
    .price-calculator-widget {
        width: calc(100vw - 30px);
    }
    
    #calculatorToggle {
        right: 15px;
        bottom: 15px;
    }
    
    .location-input-group {
        grid-template-columns: 1fr;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .chat-toggle,
    #calculatorToggle {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .chat-window {
        bottom: 60px;
    }
    
    .vehicles-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}