:root {
    --primary-blue: #1e3a8a;
    --accent-orange: #f97316;
    --bg-light: #f8fafc;
    --text-dark: #0f172a;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
}

/* Header */
header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 2rem;
}

.brand-logo-text {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    line-height: 1.1;
    user-select: none;
}

.brand-main {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0.5px;
}

.brand-blue { color: var(--primary-blue); }
.brand-orange { color: var(--accent-orange); }

.brand-tagline {
    font-size: 0.6rem;
    font-weight: 700;
    color: #64748b;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: color 0.3s;
}
.nav-links a:hover { color: var(--accent-orange); }

.highlight-link {
    background: #f1f5f9;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    color: var(--primary-blue) !important;
}

/* Hamburger Menü */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 101;
}

.menu-toggle span {
    height: 3px;
    width: 100%;
    background-color: var(--primary-blue);
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

/* Hero Section */
.hero {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    text-align: center;
}

.hero-text h1 {
    font-size: 2.2rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.hero-image {
    width: 100%;
    max-width: 450px;
    margin: 0 auto 1.5rem auto;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 15px 25px -5px rgba(0, 0, 0, 0.1);
}

.hero-slogan {
    font-size: 1.25rem;
    color: var(--accent-orange);
    margin-bottom: 0.5rem;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #475569;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn {
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: transform 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent-orange); color: var(--white); }
.btn-secondary { background: var(--primary-blue); color: var(--white); }

/* Ne Taşıyoruz Section */
.services-section {
    padding: 4rem 1.5rem;
    background-color: var(--bg-light);
}

.section-title {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-title h2 {
    color: var(--primary-blue);
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 0.5px;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.service-header {
    padding: 1.8rem 1.2rem 1.2rem 1.2rem;
    text-align: center;
}

.service-icon-box {
    margin-bottom: 0.8rem;
    display: flex;
    justify-content: center;
}

.service-header h3 {
    color: var(--primary-blue);
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

.service-header p {
    color: #475569;
    font-size: 0.88rem;
    line-height: 1.5;
}

.service-img {
    width: 100%;
    height: 160px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Harita Arka Planlı Hizmet Bölgemiz */
.location-banner-map {
    background: url('../images/edremit-map-bg.png') center/cover no-repeat;
    position: relative;
    border-top: 1px solid #dbeafe;
    border-bottom: 1px solid #dbeafe;
}

.location-overlay {
    background: rgba(239, 246, 255, 0.88);
    padding: 3.5rem 1.5rem;
    text-align: center;
    backdrop-filter: blur(2px);
}

.location-container {
    max-width: 900px;
    margin: 0 auto;
}

.map-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-blue);
    margin-bottom: 0.6rem;
}

.map-icon svg {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.location-container h3 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 0.8rem;
    letter-spacing: 0.5px;
}

.location-container p {
    color: #334155;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Features & Testimonials */
.features, .testimonials { padding: 4rem 2rem; }
.features { background: var(--white); }

.features-container, .testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 768px) {
    .features-container, .testimonials-container {
        grid-template-columns: 1fr 1fr;
    }
}

.feature-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    border-top: 4px solid var(--accent-orange);
}
.feature-card .icon { font-size: 2.5rem; margin-bottom: 1rem; }
.feature-card h3 { color: var(--primary-blue); margin-bottom: 0.5rem; }

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
}
.stars { color: #fbbf24; margin-bottom: 1rem; font-size: 1.2rem; }
.google-user { display: flex; align-items: center; gap: 10px; margin-top: 1.5rem; }
.g-icon {
    width: 35px;
    height: 35px;
    background: #4285F4;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Küçük & Sade Footer */
.site-footer {
    background: var(--primary-blue);
    color: #93c5fd;
    text-align: center;
    padding: 1.5rem;
    font-size: 0.85rem;
}

/* Transparan Sabit Butonlar */
.floating-btn {
    position: fixed;
    bottom: 20px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}
.floating-btn:hover { transform: translateY(-3px) scale(1.05); }

.floating-btn svg {
    display: block;
}

.btn-call { left: 20px; background-color: rgba(37, 99, 235, 0.88); }
.btn-whatsapp { right: 20px; background-color: rgba(34, 197, 94, 0.88); }

/* Mobil & Tablet Uyumluluğu */
@media (max-width: 1024px) {
    .services-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .brand-main { font-size: 1.3rem; }
    .brand-tagline { font-size: 0.52rem; }

    .menu-toggle { display: flex; }
    
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        padding: 1.5rem;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        gap: 1.2rem;
        border-top: 1px solid #e2e8f0;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8.5px) rotate(45deg);
    }
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8.5px) rotate(-45deg);
    }

    .services-container {
        grid-template-columns: 1fr;
    }

    .floating-btn .btn-text { display: none; }
    .floating-btn { padding: 14px; border-radius: 50%; }
}