@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

/* Global Styles */
:root {
    --primary-color: #FFC107;
    --secondary-color: #2b2f36; /* Demir tonlarında hafif koyu gri */
    --text-color: #212529;
    --light-color: #F8F9FA;
    --dark-color: #212529;
    --transition: all 0.3s ease;
    --accent-color: #17a2b8;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
    max-width: 100vw !important;
}

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

.section-title {
    position: relative;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
}

/* Navbar Styles */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.navbar-brand {
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* taksi section */
/* Taksi Kartları Stilleri */
.taxi-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.taxi-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ffc107 100%);
    opacity: 0.1;
    transition: all 0.4s ease;
    z-index: -1;
}

.taxi-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.taxi-card:hover::before {
    height: 100%;
}

.taxi-plate {
    display: inline-block;
    background: linear-gradient(to right, #f1f1f1, #ffffff);
    border: 2px solid #000;
    border-radius: 8px;
    padding: 10px 18px;
    font-weight: bold;
    font-size: 1.3rem;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.taxi-plate:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.plate-number {
    color: #000;
    letter-spacing: 2px;
    text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 2;
}

.taxi-plate::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transition: 0.5s;
}

.taxi-plate:hover::after {
    left: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('taksi6.jpg?v=5');
    background-size: cover;
    background-position: center;
    padding-top: 80px;
    display: flex;
    align-items: center;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.taxi-image-container {
    position: relative;
    height: 400px;
}

.taxi-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('../taksi6.jpg?v=5');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
    animation: float 3s ease-in-out infinite;
}

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

/* Services Section */
.service-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--dark-color);
    transition: var(--transition);
}

.service-card:hover .icon-box {
    transform: rotateY(360deg);
}

/* Features Section */
.feature {
    padding: 2rem;
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--dark-color);
    transition: var(--transition);
}

.feature:hover .feature-icon {
    transform: rotateY(360deg);
}

/* Pricing Section */
.price-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    overflow: hidden;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.price-card.featured {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--primary-color);
    z-index: 1;
}

.price-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.price-card .card-header {
    background-color: var(--secondary-color);
    color: white;
    border-bottom: none;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price small {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-color);
}

/* About Section */
.about-image {
    width: 100%;
    height: 400px;
    background: url('../taksi6.jpg?v=3');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 10px;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--dark-color);
}

/* Testimonials Section */
.testimonial-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    position: relative;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.testimonial-content::before {
    content: '\201C';
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.3;
}

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

/* Contact Section */
.contact-info {
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-right: 1rem;
}

.contact-form {
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
}

footer a {
    color: var(--light-color);
    transition: var(--transition);
}

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

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
    transform: translateY(-5px);
}

.contact-list li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.footer-wave {
    position: relative;
    width: 100%;
    height: 80px;
    overflow: hidden;
    margin-bottom: -1px;
}
.footer-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1px);
    height: 100%;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-section {
        height: auto;
        padding: 120px 0 80px;
    }
    
    .price-card.featured {
        transform: scale(1);
    }
    
    .price-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .hero-section {
        text-align: center;
    }
    
    .hero-section .btn-lg {
        margin-bottom: 1rem;
    }
    
    .d-flex {
        justify-content: center;
    }
    
    .about-image {
        margin-bottom: 2rem;
    }
    
    .contact-info {
        margin-bottom: 2rem;
    }
    .hero-section .col-md-7 {
        display: block !important;
    }
    .hero-section .col-md-5 {
        display: none !important;
        width: 100%;
        max-width: 100vw;
    }
}

/* Custom Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.fadeInUp {
    animation-name: fadeInUp;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.fadeInDown {
    animation-name: fadeInDown;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-40px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.fadeInLeft {
    animation-name: fadeInLeft;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translate3d(40px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.fadeInRight {
    animation-name: fadeInRight;
}

/* Mobil Sabit Butonlar */
.mobile-fixed-buttons {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 100vw !important;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 10px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.mobile-fixed-buttons .btn {
    width: 48%;
    padding: 12px;
    font-weight: 600;
    border-radius: 8px;
}

.mobile-fixed-buttons .btn-call {
    background-color: var(--primary-color);
    color: var(--dark-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-fixed-buttons .btn-location {
    background-color: #28a745;
    color: white;
    animation: pwa-button-pulse 1.7s infinite;
}

/* PWA indirme butonu için nabız animasyonu */
@keyframes pwa-button-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

/* PWA butonundaki ikon için nabız animasyonu */
.pwa-icon-pulse {
    animation: pwa-icon-pulse 1.5s infinite;
}

/* Konum Mesaj Kutusu */
.location-message {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    width: 90%;
    max-width: 400px;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: none;
    text-align: center;
    font-weight: 500;
}

@media (max-width: 767.98px) {
    .mobile-fixed-buttons {
        display: block;
    }
    
    body {
        padding-bottom: 80px;
    }
}

/* Floating Gift Button Styles */
.floating-gift-button {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}

.floating-gift-button button {
    width: 60px;
    height: 60px;
    border: none;
    background: linear-gradient(135deg, #ffc107 0%, #ffca2c 100%);
    color: white;
    font-size: 1.5rem;
    border-radius: 15px 0 0 15px;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.floating-gift-button button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.floating-gift-button button:hover::before {
    left: 100%;
}

.floating-gift-button button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.6);
}

.gift-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.gift-tooltip::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid rgba(0, 0, 0, 0.8);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

.floating-gift-button:hover .gift-tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

/* Mobile responsive for floating gift button */
@media (max-width: 768px) {
    .floating-gift-button {
        right: 0;
    }
    
    .floating-gift-button button {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        border-radius: 12px 0 0 12px;
    }
    
    .gift-tooltip {
        right: 60px;
        font-size: 0.7rem;
        padding: 6px 10px;
    }
    
    .floating-gift-button:hover .gift-tooltip {
        right: 65px;
    }
} 