/* 
   Taksi Akdeniz - Premium Design System 
   Focus: Fast, Modern, Mobile-First
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');

:root {
    --primary-color: #FFD700;
    /* Gold */
    --secondary-color: #1a1a1a;
    /* Dark Surface */
    --accent-color: #ffffff;
    --text-dark: #111111;
    --text-light: #f5f5f5;
    --success-color: #25D366;
    /* WhatsApp Green */
    --glass-bg: rgba(26, 26, 26, 0.85);
    --border-radius: 16px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    background-color: #f5f5f5;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.highlight {
    color: var(--primary-color);
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    padding: 1rem 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo span {
    color: var(--text-light);
}

.nav-cta {
    background: var(--primary-color);
    color: var(--text-dark);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    display: none;
    /* Mobile first hidden, shown on scroll/desktop */
}

@media(min-width: 768px) {
    .nav-cta {
        display: inline-block;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4)), url('assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
}

.hero-content {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-light);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-whatsapp {
    background-color: var(--success-color);
    color: white;
}

/* Features */
/* Features */
.features {
    padding: 3rem 0;
    /* Reduced from 5rem */
    background: #ffffff;
    /* Changed to white for cleaner look */
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Force 3 columns side-by-side */
    gap: 1.5rem;
    /* Reduced gap */
    margin-top: 2rem;
    /* Reduced margin */
}

@media(max-width: 900px) {
    .grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        /* Stack on smaller screens */
    }
}

.card {
    background: #f8f9fa;
    /* Light gray bg for contrast against white section */
    padding: 1.5rem;
    /* Compact padding */
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    background: white;
    border-color: var(--primary-color);
}

.icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(255, 215, 0, 0.15);
    border-radius: 50%;
    color: #e6c200;
    /* Darker gold for icon */
}

/* Phone Number Styling */
.phone-display {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    background: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: inline-block;
    margin-top: 1rem;
}

/* Mobile Bottom Bar */
.bottom-bar {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 400px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 10px;
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bottom-btn {
    flex: 1;
    text-align: center;
    padding: 12px;
    border-radius: 40px;
    font-weight: 700;
    text-decoration: none;
    margin: 0 5px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.call-btn {
    background: var(--primary-color);
    color: var(--text-dark);
}

.wp-btn {
    background: var(--success-color);
    color: white;
}

/* Footer */
footer {
    background: #111;
    color: #888;
    padding: 2rem 0;
    text-align: center;
    padding-bottom: 100px;
    /* Space for bottom bar */
}

/* Responsive Tweaks */
@media(max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .container {
        width: 95%;
    }
}