/* Gelişmiş Reset & Variables */
:root {
    --brand: #1e3a8a;
    /* Deep Navy Blue */
    --brand-light: #3b82f6;
    --action: #f59e0b;
    /* Amber warning color */
    --action-hover: #d97706;
    --text-dark: #0f172a;
    --text-body: #475569;
    --bg-main: #ffffff;
    --bg-alt: #f8fafc;
    --border: #e2e8f0;
    --wa: #25D366;

    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

    --border-radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: 'Outfit', sans-serif;
}

body {
    background: var(--bg-main);
    color: var(--text-body);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--bg-alt);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: var(--action);
    color: #fff;
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4);
}

.btn-primary:hover {
    background: var(--action-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--wa);
    color: #fff;
}

.btn-secondary:hover {
    background: #1da851;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.2rem;
}

/* Top Banner */
.top-banner {
    background: var(--brand);
    color: #fff;
    font-size: 0.85rem;
    padding: 8px 0;
    font-weight: 500;
}

.banner-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.banner-left i {
    margin-right: 5px;
    color: var(--action);
}

.banner-link {
    color: #fff;
    font-weight: 700;
}

.banner-link i {
    margin-right: 5px;
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--border);
    transition: 0.3s;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-icon {
    font-size: 2rem;
    color: var(--brand);
}

.brand-text .site-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
}

.brand-text span {
    color: var(--action);
}

.tagline {
    font-size: 0.75rem;
    color: var(--text-body);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-menu ul {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    font-weight: 600;
    color: var(--text-dark);
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--brand);
}

.nav-btn {
    background: var(--wa);
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
}

/* Hero */
.hero {
    position: relative;
    padding: 100px 0;
    background: url('https://images.unsplash.com/photo-1542282088-72c9c27ed0cd?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #0f172ae6 0%, #0f172acc 50%, #0f172a80 100%);
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
}

.badge {
    display: inline-block;
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.4);
    padding: 6px 16px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.hero-content .hero-title,
.hero-content h2 {
    font-size: 3.5rem;
    color: #fff;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-content .highlight {
    color: var(--action);
}

.hero-content p {
    color: #cbd5e1;
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 550px;
}

.action-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.trust-indicators {
    display: flex;
    gap: 30px;
    color: #94a3b8;
    font-size: 0.95rem;
    font-weight: 500;
}

.trust-item i {
    color: var(--wa);
    margin-right: 5px;
}

/* Hero Right Card */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 35px;
    color: #fff;
    box-shadow: var(--shadow-lg);
}

.kart-baslik {
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.pulsing-dot {
    width: 12px;
    height: 12px;
    background: #ef4444;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

.kart-desc {
    font-size: 0.95rem;
    margin-bottom: 20px;
    color: #cbd5e1;
}

.kart-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
}

.info-row .label {
    color: #94a3b8;
}

.info-row .val {
    font-weight: 600;
    color: #fff;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
    background: #fff;
    color: var(--brand);
    padding: 15px;
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 8px;
    transition: 0.3s;
}

.btn-block:hover {
    background: var(--action);
    color: #fff;
}

/* Features Band */
.features-band {
    background: var(--brand);
    color: #fff;
    padding: 25px 0;
    border-top: 4px solid var(--action);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 20px;
}

.feature {
    font-size: 1rem;
    font-weight: 500;
}

.feature strong {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 5px;
    color: var(--action);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h3 {
    color: var(--action);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    font-weight: 800;
    margin-bottom: 20px;
}

.divider {
    width: 60px;
    height: 4px;
    background: var(--brand);
    margin: 0 auto;
    border-radius: 2px;
}

.divider.align-left {
    margin: 0;
}

.subtitle {
    margin-top: 15px;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--brand-light);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-alt);
    color: var(--brand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    transition: 0.3s;
}

.service-card:hover .card-icon {
    background: var(--brand);
    color: #fff;
}

.service-card h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

/* Why Us */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-content p {
    margin: 25px 0;
    font-size: 1.1rem;
}

.why-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.check-icon {
    min-width: 24px;
    color: var(--action);
    font-size: 1.2rem;
    margin-top: 3px;
}

.why-list strong {
    display: block;
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.why-image {
    position: relative;
}

.rounded-img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--action);
    color: #fff;
    padding: 25px 30px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 3px solid #fff;
}

.experience-badge span {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

/* Districts (SEO) */
.districts-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.district-box {
    background: #fff;
    border-radius: var(--border-radius);
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.box-header {
    background: var(--brand);
    color: #fff;
    padding: 20px;
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.district-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 20px;
    gap: 10px;
}

.district-grid li {
    color: var(--text-body);
    font-weight: 500;
    font-size: 0.95rem;
}

.district-grid li::before {
    content: '•';
    color: var(--brand-light);
    margin-right: 8px;
}

.seo-long-tail {
    background: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border);
    font-size: 0.95rem;
    color: var(--text-body);
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
    transition: 0.3s;
}

.faq-question:hover {
    background: var(--bg-alt);
    color: var(--brand);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 300px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-question i {
    transition: 0.3s;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: #cbd5e1;
}

.footer-cta {
    background: var(--brand);
    text-align: center;
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-inner h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-inner p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.footer-bottom {
    background: #020617;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
}

/* Floating WA */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
    z-index: 99;
    transition: 0.3s;
    text-decoration: none;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    background: #1da851;
}

/* Responsive */
@media(max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-content h2 {
        font-size: 2.8rem;
    }

    .hero-image-box {
        max-width: 400px;
        margin: 0 auto;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .districts-wrapper {
        grid-template-columns: 1fr;
    }
}

@media(max-width: 768px) {

    .nav-btn,
    .top-banner {
        display: none;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        padding: 20px;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        border-top: 1px solid var(--border);
    }

    .nav-menu.active {
        display: block;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .nav-menu a {
        display: block;
        padding: 10px;
    }

    .mobile-toggle {
        display: block;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-content h2 {
        font-size: 2.2rem;
    }
}