:root {
    --primary-color: #fbc531;
    --dark-bg: #121212;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --text-color: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    -webkit-tap-highlight-color: transparent;
    
}

body {
    background-color: var(--dark-bg);
    color: var(--text-color);
    overflow: hidden;backdrop-filter: var(--glass-bg);

}

.app-container {
    height: 100vh;
    width: 100%;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)), 
                url('images/yildirimtaksibanner.png') center ;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
}

/* Header Tasarımı */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5px;
}

.logo {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -1px;
}

.logo span {
    color: var(--primary-color);
}

.status-badge {
    background: rgba(46, 213, 115, 0.2);
    color: #2ed573;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(46, 213, 115, 0.3);
}

.mainc

.cart{
    max-width: 50%;
}

/* Orta Kart (Glassmorphism) */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 30px;
    padding: 40px 25px;
    text-align: center;
    margin-bottom: 50px;
    justify-self: center;
    display: grid;
    grid-template-rows: max-content max-content 3em 3em;
    row-gap: 1em;
}

.glass-card h1 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.glass-card p {
    color: #ccc;
    font-size: 0.95rem;
    margin-bottom: 30px;
}

/* Ana Çağrı Butonu (Profesyonel Dokunuş) */
.main-call-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: var(--primary-color);
    color: #000;
    text-decoration: none;
    width: 100%;
    padding: 20px;
    border-radius: 18px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 15px 30px rgba(251, 197, 49, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.main-call-button:active {
    transform: scale(0.97);
}

/* WhatsApp Butonu */
.whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 100px; /* Nav bar üstünde dursun */
    background: #25d366;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
    z-index: 10;
    text-decoration: none;
}

.whatsapp-float i{
    size: 1em;
}

/* Bottom Nav */
.bottom-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 15px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.nav-item {
    color: #888;
    font-size: 1.2rem;
}

.nav-item.active {
    color: var(--primary-color);
}

.serviceinf{
    justify-items: center;
    align-self: center;
    color: transparent;
    
}

.main-whatsapp-button{    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background:#2ed573;
    color: #000;
    text-decoration: none;
    width: 100%;
    padding: 20px;
    border-radius: 18px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 15px 30px rgba(49, 251, 49, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

@media (max-width: 767px) {
.app-container {
    height: 100vh;
    width: 100%;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)), 
                url('images/yildirimtaksibanner.png') center ;
                background-size: contain;
                background-repeat: space;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
}

.glass-card{
    margin-bottom: 3em;
}

.header {
    margin-top: 3em;
}

    .whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 50px; /* Nav bar üstünde dursun */
    background: #25d366;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
    z-index: 10;
    text-decoration: none;
}

}


@media (max-width: 375px) {
    .whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 25px; /* Nav bar üstünde dursun */
    background: #25d366;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
    z-index: 10;
    text-decoration: none;
}
}