/* Genel Ayarlar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --primary-color: #FFC107; /* Taksi Sarısı */
    --dark-bg: #212121;
    --text-dark: #333;
    --text-light: #fff;
    --whatsapp-green: #25D366;
    --phone-blue: #3498db;
}

body {
    background-color: #f4f4f4;
    padding-bottom: 80px; /* Buton için boşluk */
}

/* Navigasyon */
.navbar {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
}

.highlight {
    color: var(--primary-color);
}

.nav-call-btn {
    background: var(--primary-color);
    color: var(--dark-bg);
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
}

.nav-call-btn2 {
    background: var(--primary-color);
    color: var(--dark-bg);
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
}

/* Hero Bölümü */
.hero {
    position: relative;
    height: 60vh; /* Ekranın %60'ı */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Karanlık filtre */
    z-index: -1;
}

.hero-content h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    padding: 0 10px;
}

.cta-button {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 25px;
    background: var(--whatsapp-green);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Galeri / Hizmetler */
.gallery-section {
    padding: 2rem 1rem;
    text-align: center;
}

.gallery-section h2 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr; /* Mobilde tek sütun */
    gap: 1.5rem;
}

.card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-info {
    padding: 1rem;
}

.card-info h3 {
    color: var(--dark-bg);
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    background: #FFC107;
    color: #000;
    text-align: center;
    padding: 1.5rem;
    font-size: 0.9rem;
}

/* Sağ Alt Sabit Buton (FAB) */
.fab-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.fab-main {
    background: var(--primary-color);
    color: var(--dark-bg);
    border: none;
    padding: 15px 20px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s;
}

.fab-main:active {
    transform: scale(0.95);
}

.fab-options {
    display: none; /* Başlangıçta gizli */
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.fab-options.active {
    display: flex;
}

.fab-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transform: translateY(10px);
    opacity: 0;
    animation: slideUp 0.3s forwards;
}

.fab-option.whatsapp { background: var(--whatsapp-green); }
.fab-option.phone { background: var(--phone-blue); }

@keyframes slideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Masaüstü Uyarlamaları */
@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr); /* Masaüstünde yan yana 3 */
    }
    
    .hero h1 {
        font-size: 3rem;
    }
}