/* style.css - DK Reklam Ajansı */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #1a1a1a;
    line-height: 1.5;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* TEMA RENKLERİ */
:root {
    --turuncu: #F05A28;
    --turuncu-koyu: #d44a1a;
    --turuncu-acik: #fff0e8;
    --siyah: #1a1a1a;
    --gri-koyu: #2c2c2c;
    --beyaz: #ffffff;
    --gri-acik: #f8f9fa;
    --gri-border: #e9ecef;
    --whatsapp: #25D366;
    --whatsapp-hover: #128C7E;
}

/* WHATSAPP BUTONU - SAĞ ALT KÖŞE */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--whatsapp);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    z-index: 1000;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: var(--whatsapp-hover);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* HEADER */
.navbar {
    background: var(--beyaz);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 16px 0;
    border-bottom: 3px solid var(--turuncu);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    text-decoration: none;
}

.logo-img {
    height: 55px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--siyah);
}

.logo-text span {
    color: var(--turuncu);
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    font-weight: 600;
    color: var(--siyah);
    transition: 0.2s;
    font-size: 1rem;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--turuncu);
}

.menu-btn {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--siyah);
}

/* BUTONLAR */
.btn-turuncu {
    display: inline-block;
    background: var(--turuncu);
    color: white;
    padding: 12px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.2s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-turuncu:hover {
    background: var(--turuncu-koyu);
    transform: translateY(-2px);
}

.btn-siyah {
    background: var(--siyah);
    color: white;
    padding: 10px 24px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
    display: inline-block;
}

.btn-siyah:hover {
    background: var(--turuncu);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--turuncu);
    color: var(--turuncu);
    padding: 10px 24px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
    display: inline-block;
    text-decoration: none;
}

.btn-outline:hover {
    background: var(--turuncu);
    color: white;
}

/* BÖLÜM BAŞLIKLARI */
.section-title {
    text-align: center;
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 50px;
    color: var(--siyah);
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background: var(--turuncu);
    margin: 12px auto 0;
    border-radius: 4px;
}

/* HERO */
.hero {
    background: linear-gradient(135deg, #fff 0%, var(--turuncu-acik) 100%);
    padding: 70px 0 80px;
    border-bottom: 1px solid var(--gri-border);
}

.hero-grid {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--siyah);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: var(--turuncu);
}

.hero-content p {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 30px;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.hero-stats div strong {
    font-size: 1.5rem;
}

.hero-img {
    flex: 1;
    text-align: center;
}

.hero-img img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 30px -10px rgba(0,0,0,0.1);
}

/* HİZMET KARTLARI */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--gri-acik);
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    transition: 0.3s;
    border: 1px solid var(--gri-border);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: var(--turuncu);
}

.service-icon {
    font-size: 2.8rem;
    color: var(--turuncu);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--siyah);
}

.service-card p {
    color: #555;
    font-size: 0.95rem;
}

/* TÜM HİZMET LİSTESİ */
.services-full-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    list-style: none;
    margin: 40px 0;
}

.services-full-list li {
    background: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 500;
    border: 1px solid var(--gri-border);
    color: var(--siyah);
}

.services-full-list li i {
    color: var(--turuncu);
    margin-right: 8px;
}

/* HAKKIMIZDA */
.about-content {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--turuncu);
}

.about-text p {
    margin-bottom: 20px;
    color: #444;
    line-height: 1.7;
}

.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 20px;
}

.values {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    text-align: center;
    padding: 20px;
    background: var(--gri-acik);
    border-radius: 16px;
}

.value-item i {
    font-size: 2.5rem;
    color: var(--turuncu);
    margin-bottom: 15px;
}

/* WEB SİTESİ TANITIM */
.website-showcase {
    background: linear-gradient(135deg, var(--siyah) 0%, #2a2a2a 100%);
    border-radius: 30px;
    padding: 40px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.website-info {
    color: white;
    flex: 1;
}

.website-info h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

/* İLETİŞİM */
.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-detail i {
    font-size: 1.8rem;
    color: var(--turuncu);
    width: 40px;
}

.social-links a {
    display: inline-flex;
    background: var(--siyah);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.4rem;
    transition: 0.2s;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--turuncu);
    transform: scale(1.05);
}

.contact-form {
    flex: 1;
    background: var(--gri-acik);
    padding: 30px;
    border-radius: 30px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 20px;
    border: 1px solid var(--gri-border);
    border-radius: 50px;
    font-family: inherit;
}

.contact-form textarea {
    border-radius: 25px;
    resize: vertical;
}

.map {
    margin-top: 40px;
    border-radius: 20px;
    overflow: hidden;
}

/* FORM MESAJLARI */
.form-success {
    color: green;
    text-align: center;
    padding: 10px;
    background: #e8f5e9;
    border-radius: 10px;
    margin-top: 15px;
}

.form-error {
    color: red;
    text-align: center;
    padding: 10px;
    background: #ffebee;
    border-radius: 10px;
    margin-top: 15px;
}

/* FOOTER */
footer {
    background: var(--siyah);
    color: #ccc;
    padding: 40px 0;
    text-align: center;
    margin-top: 60px;
}

footer a {
    color: var(--turuncu);
    text-decoration: none;
}

/* SAYFA BAŞLIK BANNER */
.page-header {
    background: var(--turuncu-acik);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.8rem;
    color: var(--siyah);
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

/* MOBİL */
@media (max-width: 900px) {
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        background: white;
        padding: 20px;
        margin-top: 15px;
        gap: 20px;
        border-radius: 20px;
    }

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

    .menu-btn {
        display: block;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .hero-grid,
    .about-content,
    .contact-grid {
        flex-direction: column;
    }

    .page-header h1 {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-wrap: wrap;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
        bottom: 20px;
        right: 20px;
    }
}

/* İÇERİK BLOKLARI */
.content-section {
    padding: 60px 0;
}

.bg-light {
    background: var(--gri-acik);
}