﻿/* ============================================================
   WEB TASARIM MERKEZI / MUĞLA WEB TASARIM - ANA STİL DOSYASI
   Tüm sayfalar için ortak stiller
   ============================================================ */

/* ----- YUMUŞAK KAYMA ----- */
html {
    scroll-behavior: smooth;
}

/* ----- SICAK, TOPRAK VE KREM RENK PALETİ ----- */
:root {
    --cream: #FBF3EC;
    --sand: #F5E4D8;
    --terracotta: #D87A4A;
    --terracotta-dark: #B85D32;
    --deep-brown: #3D2A1E;
    --soft-gray: #FCF8F4;
    --text-color: #4A3728;
    --shadow-warm: rgba(100, 70, 50, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', 'Helvetica Neue', system-ui, sans-serif;
    padding-top: 76px;
    background-color: var(--cream);
    color: var(--text-color);
}

/* ---------- NAVBAR ---------- */
.navbar {
    background: rgba(251, 243, 236, 0.94) !important;
    backdrop-filter: blur(14px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--deep-brown) !important;
    letter-spacing: -0.3px;
}

    .navbar-brand i {
        color: var(--terracotta);
    }

.nav-link {
    font-weight: 500;
    color: var(--text-color) !important;
    margin: 0 4px;
    padding: 8px 18px !important;
    border-radius: 40px;
    transition: all 0.25s ease;
}

    .nav-link:hover,
    .nav-link.active {
        background: var(--terracotta);
        color: #fff !important;
    }

.btn-phone-nav {
    border: 2px solid var(--terracotta);
    color: var(--terracotta);
    border-radius: 40px;
    padding: 6px 20px;
    font-weight: 600;
    font-size: 0.9rem;
    background: transparent;
    transition: 0.3s;
    text-decoration: none;
}

    .btn-phone-nav:hover {
        background: var(--terracotta);
        color: #fff;
    }

/* ---------- BUTONLAR ---------- */
.btn-terracotta {
    background: var(--terracotta);
    color: #fff;
    font-weight: 600;
    padding: 14px 40px;
    border-radius: 60px;
    border: none;
    box-shadow: 0 10px 28px rgba(216, 122, 74, 0.3);
    transition: all 0.3s ease;
}

    .btn-terracotta:hover {
        background: var(--terracotta-dark);
        transform: translateY(-4px);
        box-shadow: 0 18px 36px rgba(216, 122, 74, 0.4);
        color: #fff;
    }

.btn-outline-brown {
    border: 2px solid var(--deep-brown);
    color: var(--deep-brown);
    border-radius: 60px;
    padding: 12px 34px;
    font-weight: 600;
    background: transparent;
    transition: 0.3s;
}

    .btn-outline-brown:hover {
        background: var(--deep-brown);
        color: #fff;
    }

.btn-outline-terracotta-sm {
    border: 2px solid var(--terracotta);
    color: var(--terracotta);
    border-radius: 40px;
    padding: 6px 26px;
    font-weight: 600;
    background: transparent;
    transition: 0.3s;
}

    .btn-outline-terracotta-sm:hover {
        background: var(--terracotta);
        color: #fff;
    }

/* ---------- HERO (ANA SAYFA) ---------- */
.hero-section {
    background: linear-gradient(135deg, var(--cream) 0%, var(--sand) 100%);
    padding: 90px 0 60px 0;
    border-bottom: 6px solid var(--terracotta);
    position: relative;
    overflow: hidden;
}

    .hero-section::after {
        content: '';
        position: absolute;
        bottom: -20%;
        right: -10%;
        width: 600px;
        height: 600px;
        background: rgba(216, 122, 74, 0.06);
        border-radius: 50%;
        pointer-events: none;
    }

    .hero-section h1 {
        font-size: 3.5rem;
        font-weight: 700;
        color: var(--deep-brown);
        line-height: 1.2;
    }

        .hero-section h1 .highlight {
            color: var(--terracotta);
            background: rgba(216, 122, 74, 0.12);
            padding: 0 14px;
            border-radius: 40px;
            display: inline-block;
        }

    .hero-section .lead {
        font-size: 1.25rem;
        color: var(--text-color);
        opacity: 0.85;
    }

/* ---------- PAGE HERO (İÇ SAYFALAR) ---------- */
.page-hero {
    background: linear-gradient(135deg, var(--cream) 0%, var(--sand) 100%);
    padding: 80px 0 60px 0;
    border-bottom: 6px solid var(--terracotta);
    position: relative;
    overflow: hidden;
}

    .page-hero::after {
        content: '';
        position: absolute;
        bottom: -20%;
        right: -10%;
        width: 500px;
        height: 500px;
        background: rgba(216, 122, 74, 0.05);
        border-radius: 50%;
        pointer-events: none;
    }

    .page-hero h1 {
        font-size: 3.2rem;
        font-weight: 700;
        color: var(--deep-brown);
    }

        .page-hero h1 .highlight {
            color: var(--terracotta);
            background: rgba(216, 122, 74, 0.12);
            padding: 0 14px;
            border-radius: 40px;
            display: inline-block;
        }

    .page-hero .breadcrumb {
        background: transparent;
        padding: 0;
        margin-top: 15px;
    }

        .page-hero .breadcrumb a {
            color: var(--terracotta);
            text-decoration: none;
        }

        .page-hero .breadcrumb .active {
            color: var(--deep-brown);
        }

/* ---------- HERO GÖRSEL ---------- */
.hero-image {
    border-radius: 32px;
    box-shadow: 0 30px 50px rgba(60, 40, 30, 0.20);
    transition: transform 0.5s ease;
    width: 100%;
    height: auto;
    object-fit: cover;
}

    .hero-image:hover {
        transform: scale(1.02) rotate(-0.5deg);
    }

/* ---------- BİLGİ KARTI ---------- */
.info-card {
    background: #fff;
    border-radius: 24px;
    padding: 20px 30px;
    box-shadow: 0 10px 30px var(--shadow-warm);
    border-left: 6px solid var(--terracotta);
    margin-top: 30px;
}

    .info-card i {
        color: var(--terracotta);
        width: 30px;
        font-size: 1.2rem;
    }

/* ---------- BÖLÜM BAŞLIKLARI ---------- */
.section-title {
    font-weight: 700;
    color: var(--deep-brown);
    position: relative;
    display: inline-block;
}

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 70px;
        height: 5px;
        background: var(--terracotta);
        border-radius: 10px;
    }

.section-title-left::after {
    left: 0;
    transform: none;
}

/* ---------- HİZMET KARTLARI ---------- */
.service-card {
    border: none;
    border-radius: 32px;
    background: #fff;
    padding: 2.2rem 1.8rem;
    box-shadow: 0 12px 40px var(--shadow-warm);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    border-bottom: 5px solid transparent;
}

    .service-card:hover {
        transform: translateY(-14px);
        box-shadow: 0 30px 55px rgba(100, 70, 50, 0.15);
        border-bottom-color: var(--terracotta);
    }

    .service-card i {
        font-size: 3.6rem;
        color: var(--terracotta);
        background: var(--cream);
        padding: 18px;
        border-radius: 30px;
        transition: 0.3s;
    }

    .service-card:hover i {
        background: var(--terracotta);
        color: #fff;
    }

    .service-card h3 {
        color: var(--deep-brown);
        font-weight: 600;
    }

    .service-card .feature-list {
        text-align: left;
        padding-left: 0;
        list-style: none;
    }

        .service-card .feature-list li {
            padding: 4px 0;
            font-size: 0.95rem;
        }

            .service-card .feature-list li i {
                font-size: 1rem;
                padding: 0;
                background: transparent;
                color: var(--terracotta);
                margin-right: 8px;
            }

                .service-card .feature-list li i:hover {
                    background: transparent;
                    color: var(--terracotta);
                }

/* ---------- BÖLGE ETİKETLERİ ---------- */
.area-badge {
    background: #fff;
    color: var(--deep-brown);
    padding: 12px 30px;
    border-radius: 60px;
    font-weight: 600;
    border: 2px solid #E6D5C8;
    transition: 0.3s;
    display: inline-block;
    margin: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

    .area-badge:hover {
        background: var(--terracotta);
        color: #fff;
        border-color: var(--terracotta);
        transform: scale(1.05);
    }

/* ---------- SEO İÇERİK KUTUSU ---------- */
.seo-content-box {
    background: #fff;
    padding: 40px 38px;
    border-radius: 32px;
    border-left: 8px solid var(--terracotta);
    box-shadow: 0 12px 35px var(--shadow-warm);
}

    .seo-content-box h4 {
        color: var(--deep-brown);
        font-weight: 700;
    }

    .seo-content-box .keyword-highlight {
        color: var(--terracotta);
        font-weight: 600;
    }

/* ---------- HAKKIMIZDA ÖZEL ---------- */
.about-image {
    border-radius: 32px;
    box-shadow: 0 30px 50px rgba(60, 40, 30, 0.20);
    transition: transform 0.5s ease;
    width: 100%;
    height: auto;
    object-fit: cover;
}

    .about-image:hover {
        transform: scale(1.02) rotate(-0.5deg);
    }

.value-card {
    background: #fff;
    border-radius: 24px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow-warm);
    transition: all 0.3s ease;
    height: 100%;
    border-bottom: 4px solid transparent;
}

    .value-card:hover {
        transform: translateY(-10px);
        border-bottom-color: var(--terracotta);
    }

    .value-card i {
        font-size: 2.8rem;
        color: var(--terracotta);
        background: var(--cream);
        padding: 18px;
        border-radius: 30px;
        margin-bottom: 15px;
    }

    .value-card h5 {
        color: var(--deep-brown);
        font-weight: 700;
    }

.team-card {
    background: #fff;
    border-radius: 24px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow-warm);
    transition: all 0.3s ease;
}

    .team-card:hover {
        transform: translateY(-8px);
    }

    .team-card img {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        object-fit: cover;
        border: 4px solid var(--terracotta);
        margin-bottom: 15px;
    }

    .team-card h5 {
        color: var(--deep-brown);
        font-weight: 700;
        margin-bottom: 0;
    }

    .team-card .role {
        color: var(--terracotta);
        font-weight: 600;
        font-size: 0.9rem;
    }

/* ---------- İLETİŞİM ÖZEL ---------- */
.contact-info-card {
    background: #fff;
    border-radius: 24px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow-warm);
    transition: all 0.3s ease;
    height: 100%;
    border-bottom: 4px solid transparent;
}

    .contact-info-card:hover {
        transform: translateY(-8px);
        border-bottom-color: var(--terracotta);
    }

    .contact-info-card i {
        font-size: 2.5rem;
        color: var(--terracotta);
        background: var(--cream);
        padding: 18px;
        border-radius: 30px;
        margin-bottom: 15px;
    }

    .contact-info-card h5 {
        color: var(--deep-brown);
        font-weight: 700;
    }

    .contact-info-card p {
        color: var(--text-color);
        margin-bottom: 0;
    }

    .contact-info-card a {
        color: var(--text-color);
        text-decoration: none;
        transition: 0.3s;
    }

        .contact-info-card a:hover {
            color: var(--terracotta);
        }

/* ---------- İLETİŞİM FORMU ---------- */
.contact-form-wrapper {
    background: #fff;
    border-radius: 32px;
    padding: 45px 40px;
    box-shadow: 0 15px 40px var(--shadow-warm);
}

    .contact-form-wrapper h3 {
        color: var(--deep-brown);
        font-weight: 700;
    }

/* ---------- TALEP FORMU ---------- */
.request-form-wrapper {
    background: #fff;
    border-radius: 32px;
    padding: 50px 45px;
    box-shadow: 0 15px 40px var(--shadow-warm);
}

    .request-form-wrapper h3 {
        color: var(--deep-brown);
        font-weight: 700;
    }

    .request-form-wrapper .form-text {
        color: var(--text-color);
        opacity: 0.7;
    }

/* ---------- ORTAK FORM ELEMANLARI ---------- */
.form-control,
.form-select {
    border: 2px solid #e8ddd5;
    border-radius: 16px;
    padding: 14px 18px;
    background: var(--cream);
    transition: 0.3s;
    font-size: 1rem;
}

    .form-control:focus,
    .form-select:focus {
        border-color: var(--terracotta);
        box-shadow: 0 0 0 4px rgba(216, 122, 74, 0.15);
        background: #fff;
    }

.form-label {
    font-weight: 600;
    color: var(--deep-brown);
}

    .form-label .required {
        color: #dc3545;
        font-weight: 700;
    }

/* ---------- HARİTA ---------- */
.map-wrapper {
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 15px 40px var(--shadow-warm);
}

    .map-wrapper iframe {
        width: 100%;
        height: 450px;
        border: none;
        display: block;
    }

/* ---------- BİLGİ KUTUSU (İLETİŞİM/TALEP) ---------- */
.info-box {
    background: var(--cream);
    border-radius: 24px;
    padding: 30px 25px;
    border-left: 6px solid var(--terracotta);
}

    .info-box i {
        color: var(--terracotta);
        font-size: 1.5rem;
        width: 40px;
    }

/* ---------- WEB TASARIM SAYFASI ÖZEL ---------- */
.service-image {
    border-radius: 32px;
    box-shadow: 0 30px 50px rgba(60, 40, 30, 0.20);
    transition: transform 0.5s ease;
    width: 100%;
    height: auto;
    object-fit: cover;
}

    .service-image:hover {
        transform: scale(1.02) rotate(-0.5deg);
    }

.feature-card {
    background: #fff;
    border-radius: 24px;
    padding: 30px 25px;
    box-shadow: 0 10px 30px var(--shadow-warm);
    transition: all 0.3s ease;
    height: 100%;
    border-bottom: 4px solid transparent;
}

    .feature-card:hover {
        transform: translateY(-10px);
        border-bottom-color: var(--terracotta);
    }

    .feature-card i {
        font-size: 2.8rem;
        color: var(--terracotta);
        background: var(--cream);
        padding: 18px;
        border-radius: 30px;
        margin-bottom: 15px;
    }

    .feature-card h5 {
        color: var(--deep-brown);
        font-weight: 700;
    }

/* ---------- SÜREÇ KARTLARI ---------- */
.process-card {
    background: #fff;
    border-radius: 24px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow-warm);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

    .process-card:hover {
        transform: translateY(-8px);
    }

    .process-card .step-number {
        display: inline-block;
        background: var(--terracotta);
        color: #fff;
        font-weight: 700;
        font-size: 1.5rem;
        width: 50px;
        height: 50px;
        line-height: 50px;
        border-radius: 50%;
        margin-bottom: 15px;
    }

    .process-card h5 {
        color: var(--deep-brown);
        font-weight: 700;
    }

/* ---------- TEKNOLOJİ BADGE ---------- */
.tech-badge {
    display: inline-block;
    background: #fff;
    padding: 12px 24px;
    border-radius: 60px;
    font-weight: 600;
    color: var(--deep-brown);
    border: 2px solid #E6D5C8;
    margin: 5px;
    transition: 0.3s;
}

    .tech-badge:hover {
        background: var(--terracotta);
        color: #fff;
        border-color: var(--terracotta);
        transform: scale(1.05);
    }

    .tech-badge i {
        color: var(--terracotta);
        margin-right: 8px;
    }

    .tech-badge:hover i {
        color: #fff;
    }

/* ---------- İSTATİSTİK ---------- */
.stat-box {
    background: #fff;
    border-radius: 24px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow-warm);
    transition: 0.3s;
}

    .stat-box:hover {
        transform: translateY(-5px);
    }

    .stat-box .number {
        font-size: 3rem;
        font-weight: 700;
        color: var(--terracotta);
    }

    .stat-box .label {
        color: var(--text-color);
        font-weight: 500;
    }

/* ---------- E-TİCARET PLATFORM KARTLARI ---------- */
.platform-card {
    background: #fff;
    border-radius: 24px;
    padding: 35px 30px;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow-warm);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

    .platform-card:hover {
        transform: translateY(-10px);
        border-color: var(--terracotta);
    }

    .platform-card .platform-icon {
        font-size: 4rem;
        color: var(--terracotta);
        margin-bottom: 15px;
    }

    .platform-card h4 {
        color: var(--deep-brown);
        font-weight: 700;
    }

    .platform-card .price-tag {
        display: inline-block;
        background: var(--cream);
        padding: 6px 20px;
        border-radius: 30px;
        font-weight: 600;
        color: var(--terracotta);
        margin: 10px 0;
    }

    .platform-card ul {
        list-style: none;
        padding: 0;
        text-align: left;
    }

        .platform-card ul li {
            padding: 6px 0;
            border-bottom: 1px solid #f0ece8;
        }

            .platform-card ul li:last-child {
                border-bottom: none;
            }

            .platform-card ul li i {
                color: var(--terracotta);
                margin-right: 10px;
            }

/* ---------- KARŞILAŞTIRMA TABLOSU ---------- */
.comparison-table {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-warm);
}

    .comparison-table table {
        margin-bottom: 0;
    }

    .comparison-table th {
        background: var(--deep-brown);
        color: #fff;
        padding: 15px 20px;
        font-weight: 600;
    }

    .comparison-table td {
        padding: 14px 20px;
        border-bottom: 1px solid #f0ece8;
        vertical-align: middle;
    }

    .comparison-table tr:last-child td {
        border-bottom: none;
    }

    .comparison-table .check {
        color: var(--terracotta);
        font-size: 1.2rem;
    }

    .comparison-table .times {
        color: #999;
        font-size: 1.2rem;
    }

/* ---------- SSS (ACCORDION) ---------- */
.accordion-item {
    border: none;
    border-radius: 16px !important;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.accordion-button {
    background: #fff;
    padding: 20px 25px;
    font-weight: 600;
    color: var(--deep-brown);
    border: none;
    border-radius: 16px !important;
}

    .accordion-button:not(.collapsed) {
        background: var(--cream);
        color: var(--terracotta);
        box-shadow: none;
    }

    .accordion-button:focus {
        box-shadow: none;
        border-color: transparent;
    }

.accordion-body {
    background: #fff;
    padding: 20px 25px;
    color: var(--text-color);
}

.accordion-button::after {
    background-size: 1.2rem;
}

/* ---------- FOOTER ---------- */
.footer {
    background: var(--deep-brown);
    color: #D4C5B8;
}

    .footer h5 {
        color: var(--sand);
        font-weight: 600;
    }

    .footer a {
        color: #D4C5B8;
        text-decoration: none;
        transition: 0.3s;
    }

        .footer a:hover {
            color: var(--terracotta);
        }

    .footer .social-icon {
        display: inline-block;
        background: rgba(255, 255, 255, 0.06);
        width: 44px;
        height: 44px;
        line-height: 44px;
        text-align: center;
        border-radius: 50%;
        transition: 0.3s;
        color: #fff;
        margin-right: 8px;
    }

        .footer .social-icon:hover {
            background: var(--terracotta);
            transform: translateY(-4px);
        }

    .footer .contact-info-footer i {
        color: var(--terracotta);
        width: 25px;
    }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.3rem;
    }

    .hero-section {
        padding: 70px 0 40px 0;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .request-form-wrapper {
        padding: 30px 20px;
    }

    .map-wrapper iframe {
        height: 300px;
    }

    .comparison-table {
        overflow-x: auto;
    }
}
